https://github.com/dataprofessor/stock-app
https://github.com/dataprofessor/stock-app
Last synced: 12 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/dataprofessor/stock-app
- Owner: dataprofessor
- Created: 2021-02-19T12:29:37.000Z (over 5 years ago)
- Default Branch: main
- Last Pushed: 2021-02-19T12:36:02.000Z (over 5 years ago)
- Last Synced: 2025-04-05T07:41:33.500Z (over 1 year ago)
- Language: Python
- Size: 3.91 KB
- Stars: 21
- Watchers: 3
- Forks: 21
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# stock-app
# Watch the tutorial video
[How to build a Stock price web app | Streamlit #20](https://youtu.be/0pHJOzNDdOo)
# Demo
Launch the web app:
[](https://share.streamlit.io/dataprofessor/stock-app/main/app.py)
# Reproducing this web app
To recreate this web app on your own computer, do the following.
### Create conda environment
Firstly, we will create a conda environment called *stock*
```
conda create -n stock python=3.7.9
```
Secondly, we will login to the *stock* environement
```
conda activate stock
```
### Install prerequisite libraries
Download requirements.txt file
```
wget https://raw.githubusercontent.com/dataprofessor/stock-app/main/requirements.txt
```
Pip install libraries
```
pip install -r requirements.txt
```
### Download and unzip contents from GitHub repo
Download and unzip contents from https://github.com/dataprofessor/stock-app/archive/main.zip
### Launch the app
```
streamlit run app.py
```
