π€ Contributing to WATA
This guide outlines how you can contribute to WATA and acknowledges the projects and individuals that have made it possible.
Contributorsβ
- @ioiti: Project author and maintainer
- @hootnot: Saxo OpenAPI library
How to Contributeβ
We welcome contributions to WATA! Here's how you can help:
-
Report Issues
- Submit bugs or suggest features via GitHub issues
- Provide clear steps to reproduce problems
- Include relevant logs or screenshots
-
Submit Pull Requests
- Fork the repository
- Create a feature branch for your changes
- Write clean, well-documented code
- Include tests where possible
- Submit a pull request with a clear description of changes
-
Share Feedback
- Let us know how you're using WATA
- Suggest improvements to documentation
- Propose new features or enhancements
Development Environmentβ
To set up a development environment:
- Clone the repository
- Install development dependencies
pip install -r requirements-dev.txt
- Run tests to ensure everything is working
pytest
Documentation Contributionsβ
Documentation improvements are especially welcome:
- Clone the repository
- Make changes to the documentation files in
wata-docs/docs/
- Test changes locally by running:
cd wata-docs
npm install
npm start - Submit a pull request with your changes
Code Styleβ
When contributing code, please follow these guidelines:
- Use Python type hints for function parameters and return values
- Write docstrings for functions and classes
- Follow PEP 8 standards
- Add unit tests for new functionality
Acknowledgementsβ
WATA would not be possible without these excellent projects and libraries:
- @hootnot: Saxo OpenAPI library
- Observable Framework: Powers the reporting dashboard
- DuckDB: Provides the analytical database capabilities
- FastAPI: Used for the webhook server
- RabbitMQ: Handles messaging between components
- Ansible: Automates deployment
Licenseβ
WATA is licensed under the MIT License:
MIT License
Copyright (c) 2025 IOITI
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.