A personal dashboard for your Binance wallet, using Binance API. For the full Binance API documentation.
- Create Binance API keys using the official documentation.
- Export API keys:
export BINANCE_API="$API"
export BINANCE_SECRET="$SECRET"
Use the package manager pip to install cryptoview.
git clone https://github.com/davidpinhas/cryptoview.git
cd cryptoview
python3 -m venv venv
source venv/bin/activate
pip3 install -r requirements.txt
flask run
Test application:
curl http://127.0.0.1:5000
sudo docker build -t cryptoview:1.0.0 .
sudo docker run -p 5001:5001 --restart unless-stopped -it -d --name cryptoview \
-e BINANCE_API=<BINANCE_API> -e BINANCE_SECRET=<BINANCE_SECRET> cryptoview:1.0.0
Test application:
curl http://127.0.0.1:5001
#TODO