Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

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

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/.