Home

Awesome

DO NOT USE!

Due to changes in the Pokémon Go API we now need a hashkey in order to send requests without getting banned. At the moment I have no plans to implement this, but I am open for pull requests.

PokemonGO-IV-Renamer

Automatically renames your Pokémon to their IV stats.

Example: Using the default settings, a perfect Vaporeon gets renamed to 45, 15/15/15.

Installation

Requirements

Guide

git clone -b master https://github.com/Boren/PokemonGO-IV-Renamer.git
cd PokemonGO-IV-Renamer
pip install -r requirements.txt (Might need to sudo)
python2 main.py -a AUTH_SERVICE -u USERNAME -p PASSWORD

Note: If you use a Google account and have two-factor authentication enabled, you need to generate an app password and use that to log in.

CLI arguments

ArgumentDescriptionRequiredExample
-aLogin service, google or ptcyes
-uUsernameyes
-pPasswordyes
-lYour location (by longitudes & latitudes or by name )yes-l "49.854626, -34.995643" or -l "Paris"
--formatCustom nickname format, placeholders belowoptional--format "%percent% %name" => 100% Vaporeon
--list_only, -loShow only Pokémon IVs without renaming themoptional
--locale, -LTranslations for Pokémon names, default enoptional--locale de, -l de (check locales folder for more options)
--clearReset names to originaloptional
--min_delayMinimum time (in seconds) to wait between requests; default 10optional
--max_delayMaximum time (in seconds) to wait between requests; default 20optional
--ivOnly rename Pokémon with at least n% perfect IV; default 0optional--iv 90 only renames Pokémon with at least 90% perfect IV
--cpOnly rename Pokémon with at least n CP; default 0optional--cp 1000 only renames Pokémon with at least 1000 CP

Placeholders for --format

Placeholders for custom nickname format (automatically gets cropped to 12 characters):

PlaceholderDescriptionExample
%idPokédex ID134
%nameNameVaporeon
%cpCP1800
%atkAttack15
%defDefense15
%staStamina15
%ivsumIV sum45
%percentIV perfection100

Example formats:

ParameterExample
--format '%percent% %name'98% Vaporeon
--format '%percent% %atk %def %sta'98% 15 15 14
--format '#%id @ %percent%'#134 @ 98%
--format '%id %percent %atk %def'134 98 15 15

Installation with Docker

Requirements

Guide

docker pull monkeystorm/pogo-renamer
docker run --name CONTAINERNAME -it pogo-renamer /bin/bash
cd /home/PokemonGO-IV-Renamer/
python2 main.py -a AUTH_SERVICE -u USERNAME -p PASSWORD

Commands

To leave the Docker container:

exit

Once the container has been started once you can reuse it by typing

docker start CONTAINERNAME

then

docker attach CONTAINERNAME
python2 main.py -a AUTH_SERVICE -u USERNAME -p PASSWORD

Credits