tejado / pgoapi

Pokemon Go API lib
Other
1.4k stars 445 forks source link

Added UTF-8 encoding to location #27

Closed RubenGM closed 8 years ago

RubenGM commented 8 years ago

Before:

python -W"ignore" main.py -a "ptc" -u ** -p ** -l "Sant Feliu de Guixols" Traceback (most recent call last): File "main.py", line 231, in main() File "main.py", line 190, in main set_location(args.location) File "main.py", line 49, in set_location print('[!] Your given location: {}'.format(loc.address)) UnicodeEncodeError: 'ascii' codec can't encode character u'\xed' in position 22: ordinal not in range(128)

After:

python -W"ignore" main.py -a "ptc" -u ** -p ** -l "Sant Feliu de Guixols" [!] Your given location: 17220 Sant Feliu de Guíxols, Girona, Spain [!] lat/long/alt: 41.7850237 3.031659 0.0

tejado commented 8 years ago

Thanks a lot :)