Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/tanmaylaud/stock-analyser
A python based webapp to analyse historical prices of stocks
https://github.com/tanmaylaud/stock-analyser
heroku python streamlit streamlit-webapp webapp
Last synced: about 2 months ago
JSON representation
A python based webapp to analyse historical prices of stocks
- Host: GitHub
- URL: https://github.com/tanmaylaud/stock-analyser
- Owner: tanmaylaud
- License: gpl-3.0
- Created: 2020-08-15T14:32:50.000Z (over 4 years ago)
- Default Branch: master
- Last Pushed: 2021-02-21T06:00:29.000Z (almost 4 years ago)
- Last Synced: 2023-03-08T04:49:21.580Z (almost 2 years ago)
- Topics: heroku, python, streamlit, streamlit-webapp, webapp
- Language: Python
- Homepage: https://stockkerr.herokuapp.com/
- Size: 39.1 KB
- Stars: 3
- Watchers: 2
- Forks: 2
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Welcome to Stockkerr :wave:
A python based webapp to analyse historical prices of stocks
# Link to Webapp
https://stockkerr.herokuapp.com/
# Set up Local Environment
```python
# Create virtual environment
virtualenv venv# Activate environment
source venv/bin/activate# Install dependencies
pip install -r requirements.txt
```# Run the Streamlit app
```python
streamlit run StockWebapp.py# App launching on port 8051...
```# Libraries
| Name | Type | Description |
| -------------- | ------ | -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
| bokeh | 2.1.1 | Bokeh is an interactive visualization library for modern web browsers. It provides elegant, concise construction of versatile graphics, and affords high-performance interactivity over large or streaming datasets. |
| numpy | 1.19.1 | Powerful n-dimensional arrays |
| pandas | 1.1.0 | Data Manipulation and Analysis |
| streamlit | 0.65.2 | Open-source app framework for Machine Learning and Data Science teams. Create beautiful data apps in hours, not weeks. All in pure Python. |
| finnhub-python | 2.2.0 | Free stock API for realtime market data, global company fundamentals, economic data, and alternative data. |# License
Licensed under the [GNU General Public License v3.0](https://github.com/tanmaylaud/stock-analyser/blob/master/LICENSE)