A demo application to consume Binance API
- web/all_tasks.py - 2 classes used in the tasks to prevent code duplication and store the state
- web/task1.py - question 1 code
- web/task2.py - question 2 code
- web/task3.py - question 3 code
- web/task4.py - question 4 code
- web/task5.py - question 5 code
- web/app.py - question 6 flask code
- web/templates/main.html - project welcome page
- Dockerfile - local environment Dockerfile with debug enabled (not for deployments)
You need to have the following installed on your local machine:
- Docker Engine - https://docs.docker.com/engine/install/
- Supply a list of all symbols available on Binance API to the global variable
symbols_global
inall_tasks.py
(there are a few suplied for the sake of the demo)
Please run the commands from the project's root directory
docker build -t mydocker .
docker run --name binance-demo -v $(pwd):/opt -p 8080:5000 --rm mydocker flask run --host 0.0.0.0 --port 5000
Once the following prerequisites met you can run the tasks separately by running docker commands below from another terminal window:
docker exec -it binance-demo python3 ./web/task1.py
docker exec -it binance-demo python3 ./web/task2.py
docker exec -it binance-demo python3 ./web/task3.py
docker exec -it binance-demo python3 ./web/task4.py
docker exec -it binance-demo python3 ./web/task5.py