please add
import datetime
_time = time()
_now = datetime.datetime.now()
_remain = float(exp)-time()
_minutes = int(_remain / 60)
_seconds = int(_remain % 60)
_expire = str(_minutes) + " Minutes, " + str(_seconds) + " Seconds"
print "-------------------------------------------------"
print "Pokemon: " + name
print "Currenttime: " + str(_now)
print "Coordinates: " + str(lat) + "," + str(lng)
print "Expires in: " + _expire
print "-------------------------------------------------"
like:
-------------------------------------------------
Pokemon: Snorlax
Currenttime: 2016-08-03 12:17:13.268000
Coordinates: 36.07097,-86.606102
Expires in: 2 Minutes, 0 Seconds
-------------------------------------------------