With Queue, you can analyze games from Age of Empires II DE. The API returns a JSON with information about the analyzed game such as map, players, result, age up times, guessed build order, etc.
- Create a new virtual environment called env with
python3 -m venv env
- Start virtual environment with
source env/bin/activate
- Install dependencies by execution
python3 -m pip install -r requirements.txt
- Run app with the command
python3 app.py
- Access app through
http://127.0.0.1:8080/
Deploy with gcloud app deploy app.yaml
after authenticating
To analyze a game, call the analyze
endpoint with the query parameters profileId
and gameId
.
Games can only be analyzed when they are available through https://aoe.ms
https://github.com/happyleavesaoc/aoc-mgz
MIT