This is the dev-kit for Pioneering Pandora. Please file bug reports either by using the contact form, or by submitting an issue.
Download pandora-dev-kit.zip
from the latest release
and extract.
The dev-kit has currently been tested on Python 3.10 only, but is expected to work with Python 3.7+.
It is recommended you create a separate venv for testing your bots by using python -m venv venv
(refer to the official documentation for more information on venv).
Activate the venv (venv\Scripts\activate
on Windows) and install all prerequisites by running
pip install -r requirements.txt
.
The dev-kit comes with a few sample games (in game_logs
).
To view these, and any games you run, first run the command python server.py
and then open localhost:8000 to see a list of all available games.
To run your own games, run python main.py
.
You can then view the game (assuming it has been logged) by following the previous instructions.
Please check the Wiki for more information.