美文网首页
调用高德开放平台-----输入提示API

调用高德开放平台-----输入提示API

作者: 奶霜荔枝红茶 | 来源:发表于2020-07-09 19:04 被阅读0次

    调用输入提示API的输入与输出源代码展示

    输入

    import requests
    key='334190ffbcbd51cfe6c7f81594a9b9de'
    
    import requests
    key='334190ffbcbd51cfe6c7f81594a9b9de'
    def hint(keywords=None,type='分类代码',location=None,city='citycode',sig=None,citylimit='false',datatype='all',homeorcorp=None)->dict:
        url = 'https://restapi.amap.com/v3/assistant/inputtips?parameters'
        params={
            'key': key,
            'location':location,
            'keywords':keywords,
            'type':type,
            'city':city,
            'citylimit':citylimit,
            'datatype':datatype,
            'homeorcorp':homeorcorp,
            'homeorcorp':homeorcorp,
            'sig':sig,
            'output':'json'
        }
        response = requests.get(url,params=params)
        data = response.json()
        return data
    hint_厕所 = hint(keywords='九寨沟-公共厕所')
    hint_厕所
    
    输出
    {'status': '1',
     'count': '10',
     'info': 'OK',
     'infocode': '10000',
     'tips': [{'id': 'B0345009TC',
       'name': '九寨沟-公共厕所',
       'district': '四川省阿坝藏族羌族自治州九寨沟县',
       'adcode': '513225',
       'location': '103.918997,33.267296',
       'address': '漳扎镇九寨沟内',
       'typecode': '200300',
       'city': []},
      {'id': 'B0FFFDLMQP',
       'name': '九寨沟-公共厕所',
       'district': '四川省阿坝藏族羌族自治州九寨沟县',
       'adcode': '513225',
       'location': '103.933264,33.277995',
       'address': '漳扎镇火地坝九寨度假村',
       'typecode': '200300',
       'city': []},
      {'id': 'B0FFGLWJPS',
       'name': '九寨沟-公共厕所',
       'district': '四川省阿坝藏族羌族自治州九寨沟县',
       'adcode': '513225',
       'location': '103.899848,33.161651',
       'address': '漳扎镇',
       'typecode': '200300',
       'city': []},
      {'id': 'B0FFG59PN4',
       'name': '九寨沟-公共厕所',
       'district': '四川省阿坝藏族羌族自治州九寨沟县',
       'adcode': '513225',
       'location': '103.920761,33.270233',
       'address': '301省道附近',
       'typecode': '200300',
       'city': []},
      {'id': 'B034500XY2',
       'name': '公共厕所',
       'district': '四川省阿坝藏族羌族自治州九寨沟县',
       'adcode': '513225',
       'location': '104.246078,33.242995',
       'address': '九寨街西100米',
       'typecode': '200300',
       'city': []},
      {'id': 'B034500XLN',
       'name': '公共厕所',
       'district': '四川省阿坝藏族羌族自治州九寨沟县',
       'adcode': '513225',
       'location': '103.861514,33.296068',
       'address': '301省道西50米',
       'typecode': '200300',
       'city': []},
      {'id': 'B0FFHLSFFR',
       'name': '公共厕所',
       'district': '四川省阿坝藏族羌族自治州九寨沟县',
       'adcode': '513225',
       'location': '104.210508,33.026975',
       'address': '205省道东50米',
       'typecode': '200300',
       'city': []},
      {'id': 'B0FFHNZSZ3',
       'name': '公共厕所',
       'district': '四川省阿坝藏族羌族自治州九寨沟县',
       'adcode': '513225',
       'location': '104.257305,33.171276',
       'address': '205省道与301省道交叉口北100米',
       'typecode': '200300',
       'city': []},
      {'id': 'B0FFIN85TP',
       'name': '公共厕所',
       'district': '四川省阿坝藏族羌族自治州九寨沟县',
       'adcode': '513225',
       'location': '104.247047,33.249912',
       'address': '文荟路与文化街交叉路口往东南约50米',
       'typecode': '200300',
       'city': []},
      {'id': 'B0FFL5KYE4',
       'name': '公共厕所',
       'district': '四川省阿坝藏族羌族自治州九寨沟县',
       'adcode': '513225',
       'location': '104.353393,33.082568',
       'address': '301省道附近',
       'typecode': '200300',
       'city': []}]}
    
    

    相关文章

      网友评论

          本文标题:调用高德开放平台-----输入提示API

          本文链接:https://www.haomeiwen.com/subject/cqoscktx.html