This repository contains a Python wrapper for your API, making it easier to use in various projects.
- Easy-to-use methods for API endpoints
- Error handling with custom exceptions
- Configurable for different API keys
pip install -r requirements.txt
from api_wrapper import APIWrapper
api = APIWrapper(api_key="your_api_key")
response = api.get("endpoint")
print(response)
python -m unittest discover tests
- Fork the repository.
- Create a new branch (git checkout -b new-feature).
- Make your changes and commit them (git commit -am 'Add new feature').
- Push to the branch (git push origin new-feature).
- Create a new Pull Request.
This project is licensed under the MIT License - see the LICENSE file for details.