https://github.com/mathiasbynens/pogotransfercalc
Easily calculate how many Pokémon you should transfer before kicking off an evolution spree in Pokémon GO.
https://github.com/mathiasbynens/pogotransfercalc
Last synced: 2 months ago
JSON representation
Easily calculate how many Pokémon you should transfer before kicking off an evolution spree in Pokémon GO.
- Host: GitHub
- URL: https://github.com/mathiasbynens/pogotransfercalc
- Owner: mathiasbynens
- License: mit
- Created: 2016-08-05T20:28:03.000Z (almost 9 years ago)
- Default Branch: master
- Last Pushed: 2016-10-17T10:37:41.000Z (over 8 years ago)
- Last Synced: 2025-03-28T22:23:12.007Z (3 months ago)
- Language: Python
- Size: 10.7 KB
- Stars: 6
- Watchers: 2
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE.txt
Awesome Lists containing this project
README
# pogotransfercalc [](https://travis-ci.org/mathiasbynens/pogotransfercalc) [](https://pypi.python.org/pypi/pogotransfercalc)
_pogotransfercalc_ makes it easy to calculate how many Pokémon you should transfer before kicking off an evolution spree in Pokémon GO. Like [PidgeyCalc.com](http://www.pidgeycalc.com/), but in Python instead of through a web-based UI.
## Installation
Using [pip](https://pip.pypa.io/):
```sh
$ pip install pogotransfercalc
```## Usage
```py
from pogotransfercalc import calculateresult = calculate(pokemon_count=11, candy_count=390, pokedex_number=129)
print result
# → {'evolutions': 1, 'transfers': 10}# Instead of `pokedex_number`, you can pass in the amount of required
# candies directly using `evolution_cost`:
result = calculate(pokemon_count=40, candy_count=288, evolution_cost=12)
print result
# → {'evolutions': 27, 'transfers': 10}
result = calculate(pokemon_count=40, candy_count=288, evolution_cost=12, transfer_after_evolving=True)
print result
# → {'evolutions': 29, 'transfers': 4}
```## Credits
Thanks to Bai Chan Kheo for creating [PidgeyCalc.com](http://www.pidgeycalc.com/)! This package is essentially a programmatic version of Bai’s tool.
## Author
| [](https://twitter.com/mathias "Follow @mathias on Twitter") |
|---|
| [Mathias Bynens](https://mathiasbynens.be/) |## License
_pogotransfercalc_ is available under the [MIT](https://mths.be/mit) license.