PokeyPy Snipe is a tool which allows you to manage your Pokemon in Pokemon Go. It utilizes https://github.com/rubenvereecken/pokemongo-api to gather information and to perform management actions such as releasing/evolving/renaming Pokemon.
pip install -r requirements.txt
config.ini.example
and rename it to config.ini
, edit it with your optionspython mgr.py
or launch.bat
(running launch.bat will auto-open a browser after 10 sec. skip next step)Build the image using docker build
from the main directory. It will spit out something like:
Sending build context to Docker daemon 15.89 MB
Step 1 : FROM jfloff/alpine-python:2.7-onbuild
# Executing 2 build triggers...
Step 1 : COPY ./requirements.txt /tmp/requirements.txt
---> Using cache
Step 1 : RUN pip install -r /tmp/requirements.txt
---> Using cache
---> 01b3cdd3921d
Step 2 : ENV WORKING_DIR /usr/local/app
---> Using cache
---> a9f9bf8594f6
Step 3 : EXPOSE 5100
---> Using cache
---> 7b8b9a9059d3
Step 4 : COPY ./pogo $WORKING_DIR
---> Using cache
---> c63afc518007
Step 5 : CMD /bin/bash -c "cp /usr/local/config/config.ini $WORKING_DIR && cd $WORKING_DIR && python mgr.py"
---> Using cache
---> f36749163edb
Successfully built f36749163edb
The hash at the end of the "successfully built" line is the docker image that was built. You can tag this to make it easier to use, or you can run with that hash.
To run it, go to a directory where you have a config.ini file created. Then execute:
docker run --rm -v $(PWD):/usr/local/config -p5100:5100 <hash of image you just built>
You can then go to http://localhost:5100 to view the PokeyPy Snipe Dashboard
C:/python27/scripts
to be able to run pip install
failed to build xxhash
. If this happens, install the Microsoft Visual C++ Compiler for Python 2.7 from https://www.microsoft.com/en-us/download/details.aspx?id=44266Thanks to https://github.com/rubenvereecken/pokemongo-api for providing the API used by PokeyPy Snipe, and to all the developers who worked on the Unknown6 solution - PokeyPy Snipe uses the encrypt dll/so files from http://pgoapi.com.