https://github.com/lucamueller1/pystockmarketgame
Awesome Stock Market Game written in Python
https://github.com/lucamueller1/pystockmarketgame
flask pybroker python stock-market stock-trading stock-trading-game streamlit
Last synced: 3 months ago
JSON representation
Awesome Stock Market Game written in Python
- Host: GitHub
- URL: https://github.com/lucamueller1/pystockmarketgame
- Owner: LucaMueller1
- Created: 2020-09-01T12:17:22.000Z (about 5 years ago)
- Default Branch: master
- Last Pushed: 2021-12-29T18:09:36.000Z (almost 4 years ago)
- Last Synced: 2025-04-02T23:34:15.447Z (7 months ago)
- Topics: flask, pybroker, python, stock-market, stock-trading, stock-trading-game, streamlit
- Language: Python
- Homepage:
- Size: 1.39 MB
- Stars: 10
- Watchers: 2
- Forks: 4
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# This is the Pycharm Broker Game by PythonicInquisition
Available under **[Pybroker.de](http://pybroker.de)**Authors: Daniel Ebert, Luca Müller, Luca Weissbeck, Ben Schaper, Jannik Sinz
- daniel.ebert@ibm.com, luca.mueller1@ibm.com, luca.weissbeck@ibm.com, ben.schaper@ibm.com, jannik.sinz@ibm.com
Project Start: 24.10.2020
Project End: 22.11.2020## Preview
### Buying Stocks

### Selling Stocks

### Stock Screener

### Settings
### Dark Mode Ready
## Architecture / Infrastructure
## Requirements
Python: 3.8
### with pip:
```
pip3 install -r requirements.txt
```
### with poetry:
```
poetry init
for item in $(cat requirements.txt); do poetry add "${item}"; done
```## BackEnd - Usage
To run the server, please execute the following from the BackEnd-root directory:```
python3 -m swagger_server
```## BackEnd - Docs
https://pybroker.readme.io/## Start FrontEnd:
To start the frontend, change directory to the root folder of the repository. Then run ```streamlit run FrontEnd/orchestrator.py```. This will run the streamlit server.