GMOコインのAPIラッパーです。
https://api.coin.z.com/docs/#outline
- Python 3.6
pip install GmoCoin
- tests/api_conf.jsonを作成する
{
"API_KEY":"AAA",
"SECRET_KEY":"BBB"
}
- テストコマンド実行
pipenv run pytest
pipenv run sphinx-apidoc -f -o docs/source gmocoin
pipenv run sphinx-build -b html docs/source docs/build
python setup.py sdist --formats=zip
twine upload dist/*
twine upload -r pypitest dist/*
twine upload -r pypitest dist/*
twine upload dist/*
amashita