forked from HowDoesExcelWork/RocketMap
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcustomLog.py
35 lines (32 loc) · 1.36 KB
/
customLog.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
from .utils import get_pokemon_rarity, get_pokemon_name
from pogom.utils import get_args
from datetime import datetime
args = get_args()
# Temporarily disabling because -o and -i is removed from
# 51f651228c00a96b86f5c38d1a2d53b32e5d9862.
# IGNORE = None
# ONLY = None
# if args.ignore:
# IGNORE = [i.lower().strip() for i in args.ignore.split(',')]
# elif args.only:
# ONLY = [i.lower().strip() for i in args.only.split(',')]
def printPokemon(id, lat, lng, itime):
if args.display_in_console:
pokemon_name = get_pokemon_name(id).lower()
pokemon_rarity = get_pokemon_rarity(id).lower()
pokemon_id = str(id)
doPrint = True
# if args.ignore:
# if pokemon_name in IGNORE or pokemon_id in IGNORE:
# doPrint = False
# elif args.only:
# if pokemon_name not in ONLY and pokemon_id not in ONLY:
# doPrint = False
if doPrint:
timeLeft = itime - datetime.utcnow()
print(("======================================\n Name: %s\n " +
"Rarity: %s\n Coord: (%f,%f)\n ID: %s \n Remaining " +
"Time: %s\n======================================") % (
pokemon_name.encode('utf-8'),
pokemon_rarity.encode('utf-8'), lat, lng,
pokemon_id, str(timeLeft)))