pgoapi
pgoapi copied to clipboard
Unofficial PokemonGO API in Python
**TODO:** - [x] Clean up ports section - [ ] Do something else with credits, I dislike the section
I had to change this in `setup.py`: ```from pip.req import parse_requirements``` To this ```try: # for pip >= 10 from pip._internal.req import parse_requirements except ImportError: # for pip
I wanted to try out some basic gameplay features using this api for my class project. I was following the wiki and tried to run pokecli.py , I am able...
Hi Folks, I'm having trouble using Pinap Berry in use_item_capture function. For example: req = api.create_request() req.use_item_capture( item_id=705, encounter_id='encounter id', spawn_point_id='spawn point id') resp = req.call(False) it is returning a...
This is based on #221 so it has all the changes @michikrug did. It does break backwards compatibility in at least 2 ways: - No longer supports proto2dict responses -...
Since I was asked to update pgoapi to the latest changes, here it is... Feel free to request changes! **List of changes:** - add locale parameter _based on aiopogo:_ -...
I was adding a method to my organizer tool to allow me to favorite/unfavorite Pokemon and noticed that it would work intermittently, occasionally giving this error: > WARNING:pgoapi.rpc_api:Argument pokemon_id with...
When I try install the latest version on my Windows pc I get the following error: ``` Collecting pgoapi from git+https://github.com/pogodevorg/pgoapi.git@49e958b3b30b3d7e1baa6944964100e73ca90d7f#egg=pgoapi (from -r requirements.txt (line 17)) Cloning https://github.com/pogodevorg/pgoapi.git (to 49e958b3b30b3d7e1baa6944964100e73ca90d7f)...
Add missing headers Add locale for parameter and accept language
Since updating to the newest pgoapi, I cannot use Google accounts for RocketMap because of this error. Seems like something is not acting correctly when handling Google accounts. ``` 2017-03-04...