From 0a0cea6c999f08e9908cf643493dfabf064dc496 Mon Sep 17 00:00:00 2001 From: Navan Chauhan Date: Wed, 3 Apr 2019 16:29:28 +0530 Subject: Removed files --- build/lib/PyAto/PyAto.py | 59 --------------------------------------------- build/lib/PyAto/__init__.py | 59 --------------------------------------------- 2 files changed, 118 deletions(-) delete mode 100644 build/lib/PyAto/PyAto.py delete mode 100644 build/lib/PyAto/__init__.py (limited to 'build/lib') diff --git a/build/lib/PyAto/PyAto.py b/build/lib/PyAto/PyAto.py deleted file mode 100644 index 08d05f8..0000000 --- a/build/lib/PyAto/PyAto.py +++ /dev/null @@ -1,59 +0,0 @@ -import requests - -#We set the headers globally as the header remains the same for almmost all requests -def setAPIKey(secret): - apikey = secret - global headers - headers = { - 'Accept': 'application/json', - 'user-key': apikey, - } - - -# Get Categories Function - -def getCategories(): - response = requests.get('https://developers.zomato.com/api/v2.1/categories', headers=headers) - return response.json() - -# Get Cities function. Only takes City Name. Returns JSON - -def getCities(name): - params = (('q', name),) - response = requests.get('https://developers.zomato.com/api/v2.1/cities', headers=headers, params=params) - return response.json()['location_suggestions'][0] - -# Get Collections Function. Only takes City ID. Returns JSON - -def getCollections(city_id): - params = (('city_id', city_id),) - response = requests.get('https://developers.zomato.com/api/v2.1/collections', headers=headers, params=params) - return response.json() - -# Get Cuisines Function. Only takes City ID. Returns JSON - -def getCuisines(city_id): - params = (('city_id', city_id),) - response = requests.get('https://developers.zomato.com/api/v2.1/cuisines', headers=headers, params=params) - return response.json() - -# Get Establishments Function. Only takes City ID. Returns JSON - -def getEstablishments(city_id): - params = (('city_id', '1'),) - response = requests.get('https://developers.zomato.com/api/v2.1/establishments', headers=headers, params=params) - return response.json() - -# Geocoding Function. Takes Latitude and Longitude. Returns JSON - -def getGeocode(lat, lon): - params = (('lat', lat),('lon', lon),) - response = requests.get('https://developers.zomato.com/api/v2.1/geocode', headers=headers, params=params) - return response.json() - -# Gets the City ID, Takes City Name and returns integer - -def getCityID(name): - params = (('q', name),) - response = requests.get('https://developers.zomato.com/api/v2.1/cities', headers=headers, params=params) - return response.json()['location_suggestions'][0]['id'] diff --git a/build/lib/PyAto/__init__.py b/build/lib/PyAto/__init__.py deleted file mode 100644 index 4757eaf..0000000 --- a/build/lib/PyAto/__init__.py +++ /dev/null @@ -1,59 +0,0 @@ -name = "PyAto" - -def setAPIKey(secret): - apikey = secret - global headers - headers = { - 'Accept': 'application/json', - 'user-key': apikey, - } - - -# Get Categories Function - -def getCategories(): - response = requests.get('https://developers.zomato.com/api/v2.1/categories', headers=headers) - return response.json() - -# Get Cities function. Only takes City Name. Returns JSON - -def getCities(name): - params = (('q', name),) - response = requests.get('https://developers.zomato.com/api/v2.1/cities', headers=headers, params=params) - return response.json()['location_suggestions'][0] - -# Get Collections Function. Only takes City ID. Returns JSON - -def getCollections(city_id): - params = (('city_id', city_id),) - response = requests.get('https://developers.zomato.com/api/v2.1/collections', headers=headers, params=params) - return response.json() - -# Get Cuisines Function. Only takes City ID. Returns JSON - -def getCuisines(city_id): - params = (('city_id', city_id),) - response = requests.get('https://developers.zomato.com/api/v2.1/cuisines', headers=headers, params=params) - return response.json() - -# Get Establishments Function. Only takes City ID. Returns JSON - -def getEstablishments(city_id): - params = (('city_id', '1'),) - response = requests.get('https://developers.zomato.com/api/v2.1/establishments', headers=headers, params=params) - return response.json() - -# Geocoding Function. Takes Latitude and Longitude. Returns JSON - -def getGeocode(lat, lon): - params = (('lat', lat),('lon', lon),) - response = requests.get('https://developers.zomato.com/api/v2.1/geocode', headers=headers, params=params) - return response.json() - -# Gets the City ID, Takes City Name and returns integer - -def getCityID(name): - params = (('q', name),) - response = requests.get('https://developers.zomato.com/api/v2.1/cities', headers=headers, params=params) - return response.json()['location_suggestions'][0]['id'] - -- cgit v1.2.3