From 0c70b5c6842444cee8ec25f091a4b85ec378cc88 Mon Sep 17 00:00:00 2001 From: Navan Chauhan Date: Wed, 3 Apr 2019 16:23:51 +0530 Subject: Adding Files --- build/lib/PyAto/PyAto.py | 59 +++++++++++++++++++++++++++++++++++++++++++++ build/lib/PyAto/__init__.py | 59 +++++++++++++++++++++++++++++++++++++++++++++ 2 files changed, 118 insertions(+) create mode 100644 build/lib/PyAto/PyAto.py create mode 100644 build/lib/PyAto/__init__.py (limited to 'build') diff --git a/build/lib/PyAto/PyAto.py b/build/lib/PyAto/PyAto.py new file mode 100644 index 0000000..08d05f8 --- /dev/null +++ b/build/lib/PyAto/PyAto.py @@ -0,0 +1,59 @@ +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 new file mode 100644 index 0000000..4757eaf --- /dev/null +++ b/build/lib/PyAto/__init__.py @@ -0,0 +1,59 @@ +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