Skip to content

Latest commit

 

History

History
40 lines (22 loc) · 740 Bytes

README.md

File metadata and controls

40 lines (22 loc) · 740 Bytes

Crypto App

Quick demonstration application to source crypto data and display relevant price information in a simple web application with Python.

Installation

(this is assuming you have the latest version of python installed and in your path)

Windows

  1. Create virtual env

    >> python -m venv venv

  2. Activate

    >> venv\Scripts\activate.bat

  3. Install dependencies

    >> pip install -r requirements.txt

Mac Commands

  1. Create virtual env

    >> python3 -m venv venv

  2. Activate

    >> source venv/bin/activate

  3. Install dependencies

    >> pip3 install -r requirements.txt

To Run the Application Locally

  1. Run app.py from the src directory. >> cd src >> streamlit run app.py