davidpinhas / cryptoview

A personal dashboard for your Binance wallet, using Binance API.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Binance Community API

CryptoView

A personal dashboard for your Binance wallet, using Binance API. For the full Binance API documentation.

Prerequisites

export BINANCE_API="$API"
export BINANCE_SECRET="$SECRET"

Quick Start

Run Flask Application

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

Run Docker Container

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

Helm Deployment

#TODO

Contribution

  • Give a star ⭐
  • Feel free to Fork and Clone 🍻
  • Check my issues or create a new issue and give me a PR with your bugfix or improvement after. I appreciate any help! ❤️

License

MIT

About

A personal dashboard for your Binance wallet, using Binance API.

License:MIT License


Languages

Language:JavaScript 59.1%Language:CSS 19.5%Language:HTML 12.8%Language:Python 5.9%Language:Smarty 2.2%Language:Dockerfile 0.6%