A python client for the https://strike.me API. This client uses pydantic and encorages strict typing.
- Python version 3.7+
$ export STRIKE_API_KEY=<STRIKE_API_KEY>
from strike_api import rates
rates = rates.get_ticker()
rates[0].amount
python -m pip install --upgrade pip
pip install poetry
poetry install
cd docs
poetry run sphinx-apidoc -f -o . ../strike_api
poetry run make clean && poetry run make html
poetry run pytest --record-mode=once