Metadata-Version: 2.1
Name: gaode
Version: 0.1.0
Summary: Gaode Python SDK.
Home-page: https://github.com/iamsk/gaode
Author: Bin
Author-email: iamsk.info@gmail.com
License: MIT
Platform: UNKNOWN
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: Implementation :: CPython
Classifier: Programming Language :: Python :: Implementation :: PyPy
Requires-Python: >=3.6.0
Description-Content-Type: text/markdown
Requires-Dist: requests (>=2.19.1)
Requires-Dist: pytest (>=3.6.4)


# Gaode - 高德 API

Gaode SDK for Python, which based on https://lbs.amap.com/api/webservice/summary/

### Install

```shell script
pip install gaode
```

### Usage

All API supported! please visit **[Supported methods](https://lbs.amap.com/api/webservice/guide/api/georegeo)** for more information!

```python
from gaode import Gaode

token = "TOKEN"
word = "饸饹"
gd = Gaode(token)
ret = gd.place_text(word=word)  # Limited to use `keyword arguments`
```

```json
{
    "count": "0",
    "info": "OK",
    "infocode": "10000",
    "pois": [],
    "status": "1",
    "suggestion": {
        "cities": [
            {
                "name": "西安市",
                "num": "1849"
            },
            ...
        ],
        "keywords": []
    }
}
```

