diff options
Diffstat (limited to 'foursquare/poi.py')
-rw-r--r-- | foursquare/poi.py | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/foursquare/poi.py b/foursquare/poi.py index 5e67d1c..45b4fa9 100644 --- a/foursquare/poi.py +++ b/foursquare/poi.py | |||
@@ -3,7 +3,7 @@ import json | |||
3 | import requests | 3 | import requests |
4 | 4 | ||
5 | from config import FSQ_API_KEY | 5 | from config import FSQ_API_KEY |
6 | from dbstore.dbm_store import store_loc | 6 | from dbstore.peewee_store import create_poi |
7 | 7 | ||
8 | POI_API_ENDPOINT = "https://api.foursquare.com/v3/places/nearby?ll={}%2C{}&limit=10" | 8 | POI_API_ENDPOINT = "https://api.foursquare.com/v3/places/nearby?ll={}%2C{}&limit=10" |
9 | POI_SEARCH_API_ENDPOINT = "https://api.foursquare.com/v3/places/search?query={}&ll={}%2C{}&radius=2000&limit=10" | 9 | POI_SEARCH_API_ENDPOINT = "https://api.foursquare.com/v3/places/search?query={}&ll={}%2C{}&radius=2000&limit=10" |
@@ -33,8 +33,7 @@ def query_poi(search, latitude, longitude): | |||
33 | "osm_url": OSM_ENDPOINT.format(poi["geocodes"]["main"]["latitude"], poi["geocodes"]["main"]["longitude"]) | 33 | "osm_url": OSM_ENDPOINT.format(poi["geocodes"]["main"]["latitude"], poi["geocodes"]["main"]["longitude"]) |
34 | } | 34 | } |
35 | locations.append(loc) | 35 | locations.append(loc) |
36 | print(loc) | 36 | create_poi(loc) |
37 | store_loc(loc) | ||
38 | 37 | ||
39 | return locations | 38 | return locations |
40 | 39 | ||