Skip to content

iamsk/gaode

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

4 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Gaode - 高德 API

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

Install

pip install gaode

Usage

All API supported! please visit Supported methods for more information!

from gaode import Gaode

token = "TOKEN"
word = "饸饹"
gd = Gaode(token)
ret = gd.place_text(word=word)  # Limited to use `keyword arguments`
{
    "count": "0",
    "info": "OK",
    "infocode": "10000",
    "pois": [],
    "status": "1",
    "suggestion": {
        "cities": [
            {
                "name": "西安市",
                "num": "1849"
            },
            ...
        ],
        "keywords": []
    }
}

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages