Thank you for your interest in contributing! 🎉
| Contribution type | Examples |
|---|---|
| New language SDK wrappers | PHP, C#, Ruby, Rust, Java |
| More examples | n8n workflow, Make (Integromat), Zapier webhooks |
| Bot patterns | Scalping bot, grid bot, VWAP strategy template |
| Bug fixes | See open Issues labeled bug |
| Docs improvements | Clearer docstrings, additional use-case walkthroughs |
git clone https://github.com/api2trade/api2trade-python-sdk.git
cd api2trade-python-sdk
pip install -e ".[dev]"
pytest tests/ -vAll tests use mocked HTTP — no real API key or live account required.
- Fork the repo and create a branch:
git checkout -b feature/your-feature - Make your changes with tests
- Run
pytest tests/ -v— all tests must pass - Open a PR against
mainwith a clear description
- Follow existing patterns in
api2trade_sdk/resources/ - Add docstrings to all public methods
- Type hints on all function signatures