From 5402e3a2e9df24a883e2e20dfae6c92f11b8d499 Mon Sep 17 00:00:00 2001 From: clarkzjw Date: Wed, 22 Feb 2023 23:57:11 -0800 Subject: bot: change create_poi to create_or_update_poi --- foursquare/poi.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'foursquare') diff --git a/foursquare/poi.py b/foursquare/poi.py index 4ff11fb..ea3509f 100644 --- a/foursquare/poi.py +++ b/foursquare/poi.py @@ -3,7 +3,7 @@ import json import requests from config import FSQ_API_KEY -from dbstore.peewee_store import create_poi +from dbstore.peewee_store import create_or_update_poi POI_API_ENDPOINT = "https://api.foursquare.com/v3/places/nearby?ll={}%2C{}&limit=10" POI_SEARCH_API_ENDPOINT = "https://api.foursquare.com/v3/places/search?query={}&ll={}%2C{}&radius=2000&limit=10" @@ -32,7 +32,7 @@ def query_poi(search, latitude, longitude): "osm_url": OSM_ENDPOINT.format(poi["geocodes"]["main"]["latitude"], poi["geocodes"]["main"]["longitude"]) } locations.append(loc) - create_poi(loc) + create_or_update_poi(loc) return locations -- cgit v1.2.3