Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/vkweb/stock-trading-app
A stock trading app built with Flask
https://github.com/vkweb/stock-trading-app
flask stock-trading webapp werkzeug
Last synced: 5 days ago
JSON representation
A stock trading app built with Flask
- Host: GitHub
- URL: https://github.com/vkweb/stock-trading-app
- Owner: vkWeb
- Created: 2020-01-11T15:03:10.000Z (almost 5 years ago)
- Default Branch: master
- Last Pushed: 2023-07-25T21:15:37.000Z (over 1 year ago)
- Last Synced: 2023-08-08T20:46:09.647Z (over 1 year ago)
- Topics: flask, stock-trading, webapp, werkzeug
- Language: Python
- Homepage: https://vk-trade.herokuapp.com/
- Size: 97.7 KB
- Stars: 12
- Watchers: 2
- Forks: 7
- Open Issues: 3
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Stock Trading Web App
A stock trading web app built on Flask with an aim to learn about backends.- Buy, sell, check price of stocks in realtime
- View portfolio of your stocks
- View history of purchase and sale of stocks## Quick Development Setup
Fork. Clone. Make sure you `cd` to `stock-trading-app` directory. Set upstream and origin.
Install or update to the latest version of `Python` if you haven't already.
Time to get started. Feel free to create an issue if you get stuck or if you need help :)
```
# Note: execute the below commands in `Bash` with administrative privileges# Installs pipenv globally
pip install pipenv# The below command installs dependencies in the pipenv's virtualenv
pipenv install --dev# Activates virtualenv subshell
pipenv shell# Copies `sample.env` to `.env`
# You can paste your API credentials in `.env`
cp sample.env .env# Runs the app, served at http://127.0.0.1:5000 by default
flask run
```