A REST API for publishing quick /commands for HipChat and Slack rooms. Feed those coinbugs up-to-date quotes for their favorite cryptocoins c/o cryptocompare
Want to use it right now? Point your integration at:
https://lockefox.pythonanywhere.com/coins
Then use
/command COINTICKER CURRENCY[optional]
Tools have been included to deploy your own via Docker!
docker build -t slash-coins -f Dockerfile . docker run -d -p 8000:8000 slash-coins
Customize with docker ENV flags
PROSPER_LOGGING__discord_webhook
: log error messages to DiscordPROSPER_LOGGING__slack_webhook
: log error messages to SlackPROSPER_LOGGING__hipchat_webhook
: log error messages to HipChatPROSPER_FLASK__port
: change outgoing Flask port
/coins
: generate a coin quote from cryptocompare/version
: see current version/heath status/stocks
: get stock quote from Robinhood and relevant news headline
Only supports Python 3.6+
pip install -e . cp slash_coins/app.cfg slash_coins/app_local.cfg ## fill out app secrets in slash_coins/app_local.cfg ## slash_coin_launcher -v -d --config=slash_coins/app_local.cfg
Install requirements in a virtualenv and use the built-in launcher to run on localhost
.