strike-api

A python client for the strike api


Keywords
bitcoin, lightning-network, python
License
Apache-2.0
Install
pip install strike-api==0.2.1

Documentation

strike-python

A python client for the https://strike.me API.

PyPI version Documentation Status

Example Usage

$ export STRIKE_API_KEY=<STRIKE_API_KEY>

from strike_api import rates

rates = rates.get_ticker()

Build strike-api

Install Poetry

python -m pip install --upgrade pip
pip install poetry
poetry install

Build Docs

poetry run sphinx-apidoc -f -o ./docs ../strike_api
cd docs && poetry run make clean && poetry run make html