#!/usr/bin/python

from gps import *

gpsSess = gps(host="172.25.36.43", mode=WATCH_ENABLE|WATCH_NMEA)

while True:
	rpt = gpsSess.next()
	print("%s" % (rpt))
