https://github.com/luciangutu/personal_stock_info
Personal Stock Info - a small Flask app for analyzing stocks
https://github.com/luciangutu/personal_stock_info
stock-market stocks yfinance-api
Last synced: 3 months ago
JSON representation
Personal Stock Info - a small Flask app for analyzing stocks
- Host: GitHub
- URL: https://github.com/luciangutu/personal_stock_info
- Owner: luciangutu
- Created: 2023-08-24T16:10:42.000Z (almost 3 years ago)
- Default Branch: main
- Last Pushed: 2023-08-28T15:16:04.000Z (almost 3 years ago)
- Last Synced: 2025-02-28T08:08:00.263Z (over 1 year ago)
- Topics: stock-market, stocks, yfinance-api
- Language: HTML
- Homepage:
- Size: 4.88 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Personal Stock Info - a small Flask app for analyzing stocks
If uses yfinance to retrieve the data.
The DCF code was taken from https://youtu.be/Vi-BQx4gE3k?si=xMHgucXiXcHOM71B
### Configure
Start the Python Virtual Environment and install the dependencies:
```
virtualenv venv
. venv/bin/activate
cat > requirements.in
yfinance
flask
pip install -r requirements.in
pip freeze --all > requirements.txt
```
### Run
Run the script:
```angular2html
python ./app.py
```
The application should start running.
You can access it by opening a web browser and going to http://127.0.0.1:5000/.