From fda33866814e95830466787ae9cea2e006386e85 Mon Sep 17 00:00:00 2001 From: clarkzjw Date: Mon, 20 Feb 2023 14:45:17 -0800 Subject: attach top popular photo to mastodon media post --- foursquare/query_poi.py | 36 ------------------------------------ 1 file changed, 36 deletions(-) delete mode 100644 foursquare/query_poi.py (limited to 'foursquare/query_poi.py') diff --git a/foursquare/query_poi.py b/foursquare/query_poi.py deleted file mode 100644 index e2d5625..0000000 --- a/foursquare/query_poi.py +++ /dev/null @@ -1,36 +0,0 @@ -import json - -import requests - -from config import FSQ_API_KEY -from dbstore.dbm_store import store_loc - -POI_API_ENDPOINT = "https://api.foursquare.com/v3/places/nearby?ll={}%2C{}" -OSM_ENDPOINT = "https://www.openstreetmap.org/?mlat={}&mlon={}&zoom=15&layers=M" - - -def query_poi(latitude, longitude): - locations = list() - - url = POI_API_ENDPOINT.format(latitude, longitude) - headers = { - "accept": "application/json", - "Authorization": FSQ_API_KEY - } - - response = requests.get(url, headers=headers) - - for poi in json.loads(response.text)["results"]: - loc = { - "fsq_id": poi["fsq_id"], - "name": poi["name"], - "locality": poi["location"]["locality"], - "region": poi["location"]["region"], - "latitude": poi["geocodes"]["main"]["latitude"], - "longitude": poi["geocodes"]["main"]["longitude"], - "osm_url": OSM_ENDPOINT.format(poi["geocodes"]["main"]["latitude"], poi["geocodes"]["main"]["longitude"]) - } - locations.append(loc) - store_loc(loc) - - return locations -- cgit v1.2.3