-
Notifications
You must be signed in to change notification settings - Fork 445
Home
pgoapi is an unofficial Pokemon Go API library written in python. It provides game authentication and usage of the ingame API over the protocol description POGOProtos (protobuf).
Automatic & dynamic parsing of API requests/responses by finding the correct protocol description is part of this library. The response is returned in a python dictionary format, which can be easily converted to JSON.
For an overview about all possible calls, please have a look at api_functions wiki page.
All possible calls are documented including the necessary input arguments.
It came into being due to the efforts of the /r/pokemongodev community.
Welcome to the Pokemon Go Map wiki Please don't submit bug reports about Pokémon not showing up, it's a known issue. Pokemon Go Map is aiming to bring a live visualization map of nearby Pokémon, Pokéstops and gyms in a form of a web-app as well as native phone applications.
Video Walkthrough https://www.youtube.com/watch?v=RJKAulPCkRI German Amazon EC2 Tutorial https://www.youtube.com/watch?v=FxcVGrszl3I
Prerequisites
Installation will require Python 2.7 and Pip. If you already have these you can skip to installation. Python 3 is not supported at all.
You can install the required packages on Ubuntu by running the following command:
sudo apt-get install python python-pip python-dev nodejs nodejs-legacy npm
apt install git nodejs npm python-pip nodejs-legacy python-dev
git clone -b develop https://github.com/AHAAAAAAA/PokemonGo-Map.git
cd PokemonGo-Map/
pip install --upgrade pip
pip install -r requirements.txt
npm install
npm install -g grunt-cli
npm install node-sass
grunt build
You can install the required packages on Red Hat by running the following command:
You may also need to install the EPEL repository to install python-pip and python-devel.
yum install epel-release
yum install python python-pip nodejs npm python-devel
You can install the required packages on openSUSE by running the following command:
sudo zypper in python python-pip nodejs npm python-devel python-wsgiref
You can install the required packages on Arch Linux by running the following command
sudo pacman -S python2 python2-pip nodejs npm
OS X (instructions with image here)
OS X comes with some outdated Python packages (these instructions were tested on OS X El Capitan).
You will need to install pip and then upgrade a few python packages.
Instructions (run everything, each on its own line):
curl https://bootstrap.pypa.io/get-pip.py > get-pip.py
sudo python ./get-pip.py
sudo -H easy_install --upgrade six
sudo -H easy_install --upgrade setuptools
sudo -H pip install -r requirements.txt
To install node and npm, download and install the installer from https://nodejs.org/en/download/.
Windows (instructions with image here)
Download Git for Windows here and install it.
Download Python 2 (latest 2.7.12) here and install it. When installing check that the python location gets appended to the PATH enviroment variable!
Then download pip (right click that link and choose "Save Link As"), and double click the file you downloaded, assuming you installed Python correctly.
Download NodeJS (latest 6.3.1) here and install.
Open a git bash on your PokemonGo-Map folder with mouse's right click -> Git Bash Here
Launch
pip install -r requirements.txt
npm install -g grunt
npm install -g grunt-cli
(OPTIONAL) For more security fix, upgrade some packages with
npm install graceful-fs@4.1.5
npm install minimatch@3.0.2
After that, launch
npm install
You are ready!
ℹ️ There is a one-click setup for Windows. After you've installed Python, go into the Easy Setup folder and run setup.bat. This should install pip and the dependencies for you, and put your Google API key into the right place.
Installation Complete
Once installed, opening a terminal (cmd.exe prompt) and typing in python ./runserver.py --help should net you this output:
$ python ./runserver.py --help
usage: runserver.py [-h] [-a AUTH_SERVICE] [-u USERNAME] [-p PASSWORD]
[-l LOCATION] [-st STEP_LIMIT] [-sd SCAN_DELAY]
[-ld LOGIN_DELAY] [-dc] [-H HOST] [-P PORT] [-L LOCALE]
[-c] [-d] [-m] [-ns] [-os] [-nsc] [-fl] -k GMAPS_KEY [-C]
[-D DB] [-cd] [-np] [-ng] [-nk] [--db-type DB_TYPE]
[--db-name DB_NAME] [--db-user DB_USER]
[--db-pass DB_PASS] [--db-host DB_HOST]
[--db-max_connections DB_MAX_CONNECTIONS]
[-wh [WEBHOOKS [WEBHOOKS ...]]]
Args that start with '--' (eg. -a) can also be set in a config file
(../config/config.ini).
The recognized syntax for setting (key, value) pairs is based on the INI and
YAML formats (e.g. key=value or foo=TRUE). For full documentation of the
differences from the standards please refer to the ConfigArgParse
documentation. If an arg is specified in more than one place, then commandline
values override config file values which override defaults.
optional arguments:
-h, --help show this help message and exit
-a AUTH_SERVICE, --auth-service AUTH_SERVICE
Auth Services, either one for all accounts or one per
account. ptc or google. Defaults all to ptc.
-u USERNAME, --username USERNAME
Usernames, one per account.
-p PASSWORD, --password PASSWORD
Passwords, either single one for all accounts or one
per account.
-l LOCATION, --location LOCATION
Location, can be an address or coordinates
-st STEP_LIMIT, --step-limit STEP_LIMIT
Steps
-sd SCAN_DELAY, --scan-delay SCAN_DELAY
Time delay between requests in scan threads default 10
-ld LOGIN_DELAY, --login-delay LOGIN_DELAY
Time delay between each login attempt default is 5
-dc, --display-in-console
Display Found Pokemon in Console
-H HOST, --host HOST Set web server listening host
-P PORT, --port PORT Set web server listening port
-L LOCALE, --locale LOCALE
Locale for Pokemon names (default: en, check
static/dist/locales for more)
-c, --china Coordinates transformer for China
-d, --debug Debug Mode
-m, --mock Mock mode. Starts the web server but not the
background thread.
-ns, --no-server No-Server Mode. Starts the searcher but not the
Webserver.
-os, --only-server Server-Only Mode. Starts only the Webserver without
the searcher.
-nsc, --no-search-control
Disables search control
-fl, --fixed-location
Hides the search bar for use in shared maps.
-k GMAPS_KEY, --gmaps-key GMAPS_KEY
Google Maps Javascript API Key
-C, --cors Enable CORS on web server
-D DB, --db DB Database filename
-cd, --clear-db Deletes the existing database before starting the
Webserver.
-np, --no-pokemon Disables Pokemon from the map (including parsing them
into local db)
-ng, --no-gyms Disables Gyms from the map (including parsing them
into local db)
-nk, --no-pokestops Disables PokeStops from the map (including parsing
them into local db)
--db-type DB_TYPE Type of database to be used (default: sqlite)
--db-name DB_NAME Name of the database to be used
--db-user DB_USER Username for the database
--db-pass DB_PASS Password for the database
--db-host DB_HOST IP or hostname for the database
--db-max_connections DB_MAX_CONNECTIONS
Max connections for the database
-wh [WEBHOOKS [WEBHOOKS ...]], --webhook [WEBHOOKS [WEBHOOKS ...]]
Define URL(s) to POST webhook information to
It is advised to create a separate Pokemon Club account (on their official website) to be used by the program to search for Pokemon. It's ill-advised to use the same account as that you use for the app. If the page is unavailable refresh the page every 5-10 minutes and it should allow signups eventually. It's also possible to use a Google account, in case of both services you can login without ever connecting to the actual game.
Then, download one of the following branches below: To be updated: Download master (Stable builds) Download dev branch (Active development) The dev branch will have latest features from the development team, however it may be unstable at some times.
Extract this zip file to any location.
Now, open a Terminal/Command Line (Win+R and cmd on Windows) and cd to the folder you extracted the zip file to.
cd some/directory/
In Windows you can also right click within the folder and select "Open Command Window Here."
Then enter the following:
pip install -r requirements.txt
npm install
ℹ️ On openSUSE and possibly other Linux distributions you may have to run 'pip2' instead of 'pip' as 'pip' might run the incompatible Python 3 version of pip.
You will need to generate your own Google Maps API key and place it in your program directory to use this program. Here's a wiki entry on how to do this part.
Running
To start the server, run the following command:
python runserver.py -u [USERNAME] -p [PASSWORD] -st 10 -k [Google Maps API key] -l "[LOCATION]"
or for Google account:
python runserver.py -a google -u [USERNAME] -p [PASSWORD] -st 10 -k [Google Maps API key] -l "[LOCATION]"
Replacing [USERNAME] and [PASSWORD] with the Pokemon Club credentials you created previously, and [LOCATION] with any location, for example Washington, D.C or latitude and longitude coordinates, such as 38.9072 77.0369.
Additionally, you can change the 10 after -st to any number. This number indicates the number of steps away from your location it should look, higher numbers being farther.
Set VMWare network to "Bridged Mode"
Enter the following in Linux guest terminal: sudo iptables -A INPUT -i eth0 -p tcp --dport 5000 -j ACCEPT sudo sysctl -w net.ipv4.conf.eth0.route_localnet=1 sudo iptables -t nat -A PREROUTING -p tcp --dport 5000 -j DNAT --to-destination 127.0.0.1:5000
Accesss PokemonGo-Map in your host (Windows) Browser using the IP address of your Linux guest: 192.168.0.X:5000
Note: You need to replace all occurrences of eth0 with the name of your network adapter for all commands used in VMWare guest (Linux). You can find out your network adapter name and IP address using the following command in Linux terminal: ifconfig
Most effective input setups for finding pokemon: For one account:
*"C:\Python27\python.exe" runserver.py -a ptc/google -u UserName -p Password -l "LOCATION" -st 6 -H 0.0.0.0 -L en -sd 10 -ld 1
For many accounts:
*"C:\Python27\python.exe" runserver.py -a ptc/google -u UserName -u Username2 -u Username2 -p Password1 -p Password2 -p Password3 -l "LOCATION" -st 6 -H 0.0.0.0 -L en -sd 10 -ld 1
--increase -sd from 10? --Help? Maybe there should be a discussion? --Not really a discussion. The scan delay is ten seconds as determined by Niantic on August 3rd. Doing more will result in missed pokemon.
As of 2016-07-20, support for the first implementation 'example.py' was dropped. Please use the refactored version present in the branch develop. Periodic tagged releases will be made
- add_fort_modifier
- attack_gym
- catch_pokemon
- check_awarded_badges
- check_codename_available
- claim_codename
- collect_daily_bonus
- collect_daily_defender_bonus
- disk_encounter
- download_item_templates
- download_remote_config_version
- download_settings
- echo
- encounter
- encounter_tutorial_complete
- equip_badge
- evolve_pokemon
- fort_deploy_pokemon
- fort_details
- fort_recall_pokemon
- fort_search
- get_asset_digest
- get_download_urls
- get_gym_details
- get_hatched_eggs
- get_incense_pokemon
- get_inventory
- get_map_objects
- get_player
- get_player_profile
- get_suggested_codenames
- incense_encounter
- level_up_rewards
- mark_tutorial_complete
- nickname_pokemon
- player_update
- recycle_inventory_item
- release_pokemon
- set_avatar
- set_contact_settings
- set_favorite_pokemon
- set_player_team
- sfida_action_log
- start_gym_battle
- upgrade_pokemon
- use_incense
- use_item_capture
- use_item_egg_incubator
- use_item_gym
- use_item_potion
- use_item_revive
- use_item_xp_boost
buy_gem_packbuy_item_packdebug_delete_playerdebug_update_inventoryget_item_packitem_useload_spawn_pointssfida_actionsfida_capturesfida_certificationsfida_dowsersfida_registrationsfida_updatetrade_offertrade_responsetrade_resulttrade_searchuse_item_flee