Eren Yilmaz 48a9eab8d7 Explicitly include ownership_id in expired_orders results | 6 years ago | |
---|---|---|
assets | 6 years ago | |
.gitignore | 6 years ago | |
Makefile | 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 tabulate
and start the server using
python3 -OO run_server.py
The client is intended to be compiled with
make compile
and requires pyinstaller
which can be installed using pip.