A very incomplete Python client library for the SeaSmart API.
pip install seasmart-python-api-client
from SeaSmartApiClient.api import SeaSmartApiClient
seasmart = SeaSmartApiClient(
username="test_username",
api_key="test_api_key"
)
cages = seasmart.get_cages()
Information on contributing to this python library.
To run the tests,
python3 -m venv venv
source venv/bin/activate
pip install -r requirements.txt
pytest
deactivate
to run the tests for this project.