aboutsummaryrefslogtreecommitdiff
path: root/README.md
blob: 97e5ad04a30c8d060e577de1ddc51039434919d0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
# PyAto
![PyPI - Version](https://img.shields.io/pypi/v/PyAto-navanchauhan.svg) ![PyPI - License](https://img.shields.io/pypi/l/PyAto-navanchauhan.svg) [![Codacy Badge](https://api.codacy.com/project/badge/Grade/cbe32a93922141a693b9679229ffcfbd)](https://www.codacy.com/app/navanchauhan/PyAto?utm_source=github.com&utm_medium=referral&utm_content=navanchauhan/PyAto&utm_campaign=Badge_Grade)


A Python Wrapper for the Zomato API

### Initialisation
```
import PyAto
PyAto.setAPIKey("Your Key Here")
```
or
```
import PyAto as pyato
pyato.setAPIKey("Your Key Here")
```
### Functions

| Function | Required Values | Output |
|----------|-----------------|--------|
| getCategories | None | JSON |
| getCities | Name (String) | JSON |
| getCityID | Name (String) | Integer |
| getCollections | CityID (Integer) | JSON |
| getCuisines | CityID (Integer) | JSON |
| getGeocode | Latitude & Longitude | JSON |
| getEstabblishments | CityID | JSON |