Ejemplo n.º 1
0
def create_geo(locations):
	# Create new entries into the Geo entity in the datastore.
	for location in locations:
		geo = Geo(location=location, geo='None')
		geo.put()
	
	logging.info('New locations have been added to the datastore: %s' % locations)