Quick demonstration application to source crypto data and display relevant price information in a simple web application with Python.
(this is assuming you have the latest version of python installed and in your path)
-
Create virtual env
>> python -m venv venv -
Activate
>> venv\Scripts\activate.bat -
Install dependencies
>> pip install -r requirements.txt
-
Create virtual env
>> python3 -m venv venv -
Activate
>> source venv/bin/activate -
Install dependencies
>> pip3 install -r requirements.txt
- Run
app.pyfrom thesrcdirectory.>> cd src>> streamlit run app.py