Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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 days 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 (about 1 year ago)
- Default Branch: main
- Last Pushed: 2023-08-28T15:16:04.000Z (about 1 year ago)
- Last Synced: 2023-08-28T20:28:00.854Z (about 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/activatecat > requirements.in
yfinance
flaskpip 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/.