Eren Yilmaz 95aff80984 Add an assertion for the number of the trading bots orders | 6 years ago | |
---|---|---|
assets | 6 years ago | |
.gitignore | 6 years ago | |
README.md | 6 years ago | |
client_controller.py | 6 years ago | |
connection.py | 6 years ago | |
create_new_key.py | 6 years ago | |
create_new_stock.py | 6 years ago | |
db_setup.py | 6 years ago | |
debug.py | 6 years ago | |
delete_ownable.py | 6 years ago | |
delete_user.py | 6 years ago | |
drop_old_sessions.py | 6 years ago | |
game.py | 6 years ago | |
hash_all_users_passwords.py | 6 years ago | |
model.py | 6 years ago | |
publish_news_item.py | 6 years ago | |
reset_bank.py | 6 years ago | |
run_client.py | 6 years ago | |
run_db_setup.py | 6 years ago | |
run_server.py | 6 years ago | |
server_controller.py | 6 years ago | |
trading_bot.py | 6 years ago | |
util.py | 6 years ago |
You can either
You can clone this repository and use python (3.6 recommended) to execute the client.
Make sure you set the debug
flag in debug.py
to False
, otherwise you will not connect to the server.
If you know python and want to develop any cool features for you personal client, feel free to fork this repository and create a pull request.
The server is intended to be run within a python 3.6 environment on the host specified in connection.py
.
On the server you can install the required packages using pip:
pip3 install bottle requests
and start the server using
python3 -OO run_server.py
The client is intended to be compiled with
echo debug = False > debug.py &&\
python -OO -m PyInstaller run_client.py &&\
echo debug = True > debug.py
where pyinstaller
can be installed using pip.