Files
F6--/张阳脚本/高德地图关键字搜索.ipynb
2026-01-30 11:28:35 +08:00

396 lines
590 KiB
Plaintext

{
"cells": [
{
"metadata": {
"ExecuteTime": {
"end_time": "2025-07-29T06:00:22.836885Z",
"start_time": "2025-07-29T05:59:47.454826Z"
}
},
"cell_type": "code",
"source": [
"import time\n",
"import requests\n",
"import pandas as pd\n",
"from difflib import SequenceMatcher\n",
"\n",
"\n",
"# 相似度计算函数\n",
"def similarity(a, b):\n",
" return SequenceMatcher(None, a, b).ratio()\n",
"\n",
"\n",
"# 地址是否匹配\n",
"def is_address_match(detail, addr):\n",
" if len(detail) < 4:\n",
" return detail in addr\n",
" else:\n",
" return similarity(detail, addr) >= 0.6\n",
"\n",
"\n",
"# 店名是否匹配\n",
"def is_name_match(store_name, poi_name):\n",
" if len(store_name) < 4:\n",
" return store_name in poi_name\n",
" else:\n",
" return similarity(store_name, poi_name) >= 0.6\n",
"\n",
"\n",
"# 读取 Excel 数据\n",
"file_path = r\"C:\\Users\\Administrator.DESKTOP-7IC2USJ\\Desktop\\新建文件夹\\2月28日至3月13日企业名带汽字居民服务、修理和其他服务业新注册门店.xlsx\"\n",
"df = pd.read_excel(file_path, sheet_name=\"Sheet3\")\n",
"df['门店店名'] = df['门店店名'].str.replace('(个体工商户)', '', regex=False)\n",
"# 如果没有“是否已查询”列,则创建并初始化为“否”\n",
"if '是否已查询' not in df.columns:\n",
" df['是否已查询'] = '否'\n",
"\n",
"# 只选择未查询的行,且最多取90条\n",
"unprocessed_df = df[df['是否已查询'] == '否'].head(90)\n",
"\n",
"url = \"https://restapi.amap.com/v3/place/text?parameters\"\n",
"all_data = []\n",
"\n",
"for index, row in unprocessed_df[:3].iterrows():\n",
" # 处理详细地址\n",
" cleaned = row['地址'].replace(row['市'], '').strip()\n",
" cleaned = cleaned.replace(row['区/县'], '').strip()\n",
" cleaned = ' '.join(cleaned.split())\n",
" row[\"详细地址\"] = cleaned\n",
"\n",
" # 特殊处理直辖市\n",
" if row[\"省\"] in [\"天津市\", \"上海市\", \"重庆市\", \"北京市\"] and row[\"市\"] == \"市辖区\":\n",
" row[\"市\"] = row[\"省\"]\n",
"\n",
" key_words = row[\"门店店名\"]\n",
" region = row[\"市\"]\n",
" detail_address = row[\"详细地址\"]\n",
"\n",
" def search_amap(keywords, region, page_num):\n",
" params = {\n",
" # \"key\": \"f61b09d406ac49f8a034bf585e60c442\",\n",
" \"key\": \"273b328f2e85b7e1ad6faa0d4f33ccf2\",\n",
" \"keywords\": keywords,\n",
" \"types\": \"010400|010500|010800|020000|030000\",\n",
" \"region\": region,\n",
" \"city_limit\": \"true\",\n",
" \"page_size\": \"20\",\n",
" \"page_num\": str(page_num)\n",
" }\n",
"\n",
" res = requests.get(url=url, params=params)\n",
" print(res.json())\n",
" return res.json().get(\"pois\", [])\n",
"\n",
" # 初始搜索关键词\n",
" current_keywords = key_words\n",
" max_pages = 2 # 最多请求2页\n",
"\n",
" for page_num in range(1, max_pages + 1):\n",
" pois = search_amap(current_keywords, region, page_num)\n",
" for poi in pois:\n",
" poi.update({\"源文件省\": row[\"省\"]})\n",
" poi.update({\"源文件市\": row[\"市\"]})\n",
" poi.update({\"源文件区\": row[\"区/县\"]})\n",
" poi.update({\"源文件地址\": row[\"详细地址\"]})\n",
" poi.update({\"源文件门店店名\": row[\"门店店名\"]})\n",
" all_data.append(poi)\n",
"\n",
" # 标记该行为已查询\n",
" df.at[index, '是否已查询'] = '是'\n",
" time.sleep(1)\n",
"\n",
"\n",
"\n",
"# 保存更新后的源文件(带标记)\n",
"df.to_excel(file_path, index=False, sheet_name=\"Sheet3\")\n",
"\n",
"# 保存结果到新文件\n",
"result_path = r\"C:\\Users\\Administrator.DESKTOP-7IC2USJ\\Desktop\\返回结果地址7.xlsx\"\n",
"df2 = pd.DataFrame(all_data)\n",
"df2.to_excel(result_path, index=False)\n",
"\n",
"print(f\"本次共处理 {len(unprocessed_df)} 条数据\")\n",
"print(f\"数据已保存至:{result_path}\")\n",
"print(\"源文件已更新“是否已查询”字段\")"
],
"id": "6f4d84bb35f4ad3c",
"outputs": [
{
"name": "stdout",
"output_type": "stream",
"text": [
"{'suggestion': {'keywords': [], 'cities': []}, 'count': '4', 'infocode': '10000', 'pois': [{'parent': [], 'address': '湖塘镇旺府公寓1-105,1-106', 'distance': [], 'pname': '江苏省', 'importance': [], 'biz_ext': {'cost': [], 'rating': '4.3'}, 'biz_type': [], 'cityname': '常州市', 'type': '汽车销售;汽车销售;汽车销售', 'photos': [{'title': [], 'url': 'http://store.is.autonavi.com/showpic/9bb6133c4690ace46065043bf8d0fba7'}, {'title': [], 'url': 'http://store.is.autonavi.com/showpic/d7673af369477981a3b062261aece755'}], 'typecode': '020000', 'shopinfo': '1', 'poiweight': [], 'childtype': [], 'adname': '武进区', 'name': '武进区湖塘正太汽车信息咨询服务部', 'location': '119.957353,31.694301', 'tel': '15261168590', 'shopid': [], 'id': 'B0FFJ913HX'}, {'parent': [], 'address': '西城路11号原城西工商所后院', 'distance': [], 'pname': '江苏省', 'importance': [], 'biz_ext': {'cost': [], 'rating': '3.6'}, 'biz_type': [], 'cityname': '常州市', 'type': '汽车维修;汽车维修;汽车维修', 'photos': [], 'typecode': '030000', 'shopinfo': '0', 'poiweight': [], 'childtype': [], 'adname': '金坛区', 'name': '恒安汽修', 'location': '119.568529,31.751420', 'tel': [], 'shopid': [], 'id': 'B0FFJHV4YJ'}, {'parent': [], 'address': '延陵中路兆丰花苑工商银行旁', 'distance': [], 'pname': '江苏省', 'importance': [], 'biz_ext': {'cost': [], 'rating': '3.8'}, 'biz_type': [], 'cityname': '常州市', 'type': '汽车服务;汽车养护/装饰;汽车养护', 'photos': [{'title': [], 'url': 'http://store.is.autonavi.com/showpic/08c50e518ce1a7303b0ac5a41c64e898'}, {'title': [], 'url': 'http://store.is.autonavi.com/showpic/dcb07c32750e9be796d9cc9a3c934433'}, {'title': [], 'url': 'http://store.is.autonavi.com/showpic/54cc3157a35501b48ac30db26d7ef1b7'}], 'typecode': '010400', 'shopinfo': '1', 'poiweight': [], 'childtype': [], 'adname': '天宁区', 'name': '祎迪汽车养护站', 'location': '119.986878,31.763184', 'tel': '18362220654', 'shopid': [], 'id': 'B0FFFWELDB'}, {'parent': [], 'address': '昌盛东路26号1栋101-103室', 'distance': [], 'pname': '江苏省', 'importance': [], 'biz_ext': {'cost': [], 'rating': '4.2'}, 'biz_type': [], 'cityname': '常州市', 'type': '汽车服务;汽车配件销售;汽车配件销售', 'photos': [{'title': [], 'url': 'http://store.is.autonavi.com/showpic/d3e2940464d07353a0d9b860eadeda9c'}, {'title': [], 'url': 'http://store.is.autonavi.com/showpic/3ae96fe04df31f0cbbc1f7abfeb762d2'}, {'title': [], 'url': 'http://store.is.autonavi.com/showpic/d9f5963c2e6a2b3f30ae7425b49c97a9'}], 'typecode': '010800', 'shopinfo': '1', 'poiweight': [], 'childtype': [], 'adname': '武进区', 'name': '常州横林小岳轮胎经营部', 'location': '120.123162,31.685761', 'tel': [], 'shopid': [], 'id': 'B0KR7HJ86F'}], 'status': '1', 'info': 'OK'}\n",
"{'suggestion': {'keywords': [], 'cities': []}, 'count': '0', 'infocode': '10000', 'pois': [], 'status': '1', 'info': 'OK'}\n",
"{'suggestion': {'keywords': [], 'cities': []}, 'count': '450', 'infocode': '10000', 'pois': [{'parent': [], 'address': '新湖大道右拐,往小竹楼方向', 'distance': [], 'pname': '江苏省', 'importance': [], 'biz_ext': {'cost': [], 'rating': '4.2'}, 'biz_type': [], 'cityname': '南京市', 'type': '汽车维修;汽车维修;汽车维修', 'photos': [{'title': [], 'url': 'http://store.is.autonavi.com/showpic/3f4cf7698c10729ca26bd17eb233d90d'}, {'title': [], 'url': 'https://aos-comment.amap.com/B0H0F5L3P9/comment/f4c35ce046919f5880c4dae67401d32a_2048_2048_80.jpg'}, {'title': [], 'url': 'http://store.is.autonavi.com/showpic/d3154bd7c04ab07210dcd1efa83fa27b'}], 'typecode': '030000', 'shopinfo': '0', 'poiweight': [], 'childtype': [], 'adname': '雨花台区', 'name': '南京大陶货车维修', 'location': '118.677526,31.921660', 'tel': '13057669559;13770344869', 'shopid': [], 'id': 'B0H0F5L3P9'}, {'parent': [], 'address': '中海环宇城2号门面,凤凰西街112号米其林轮胎', 'distance': [], 'pname': '江苏省', 'importance': [], 'biz_ext': {'cost': [], 'rating': '4.1'}, 'biz_type': [], 'cityname': '南京市', 'type': '汽车维修;汽车维修;汽车维修', 'photos': [{'title': [], 'url': 'http://store.is.autonavi.com/showpic/2d19e8cf9a30346a25921ce4b3ff6b27'}, {'title': [], 'url': 'http://store.is.autonavi.com/showpic/b657c030f72eb2454d886113630d7126'}, {'title': [], 'url': 'http://store.is.autonavi.com/showpic/95de972f5a2287fe471520953404dd0d'}], 'typecode': '030000', 'shopinfo': '0', 'poiweight': [], 'childtype': [], 'adname': '鼓楼区', 'name': '南京酷博汽车维修有限公司', 'location': '118.752634,32.043312', 'tel': '025-51522999;13913912999', 'shopid': [], 'id': 'B0FFI6CRU4'}, {'parent': [], 'address': '水岸明珠958号3-B栋106室,107室', 'distance': [], 'pname': '江苏省', 'importance': [], 'biz_ext': {'cost': [], 'rating': '4.3'}, 'biz_type': [], 'cityname': '南京市', 'type': '汽车维修;汽车综合维修;汽车综合维修', 'photos': [{'title': [], 'url': 'http://store.is.autonavi.com/showpic/5a29ca1ced6c2e715bd32cf54e330f5a'}, {'title': [], 'url': 'http://store.is.autonavi.com/showpic/3dabd7f3f125582e3c2e08a1c3507dac'}], 'typecode': '030100', 'shopinfo': '1', 'poiweight': [], 'childtype': [], 'adname': '江宁区', 'name': '德亚汽车修理厂', 'location': '118.816522,31.956588', 'tel': '13813964423', 'shopid': [], 'id': 'B0HUGSQWS7'}, {'parent': [], 'address': '陶吴社区西坝路,石坝门面房16栋1025-1027号', 'distance': [], 'pname': '江苏省', 'importance': [], 'biz_ext': {'cost': [], 'rating': '4.1'}, 'biz_type': [], 'cityname': '南京市', 'type': '汽车服务;汽车养护/装饰;汽车养护', 'photos': [{'title': [], 'url': 'http://store.is.autonavi.com/showpic/b8c54bdb267bcea8118192e5f8e6ff98'}, {'title': [], 'url': 'http://store.is.autonavi.com/showpic/67ca5c559716410ef109e3aacf97d989'}, {'title': [], 'url': 'http://store.is.autonavi.com/showpic/b1e5f96b636647d25c35bdd16aaf23af'}], 'typecode': '010400', 'shopinfo': '1', 'poiweight': [], 'childtype': [], 'adname': '江宁区', 'name': '江宁区旺上旺汽车养护中心', 'location': '118.785452,31.774083', 'tel': '13770784066', 'shopid': [], 'id': 'B0FFL8FEKB'}, {'parent': [], 'address': '谷里荆刘村工业园88号', 'distance': [], 'pname': '江苏省', 'importance': [], 'biz_ext': {'cost': [], 'rating': '4.4'}, 'biz_type': [], 'cityname': '南京市', 'type': '汽车维修;汽车维修;汽车维修', 'photos': [{'title': [], 'url': 'http://aos-cdn-image.amap.com/sns/ugccomment/50c1ccdf-2ccc-488e-84ec-83b549d93867.jpg'}, {'title': [], 'url': 'http://aos-cdn-image.amap.com/sns/ugccomment/0917ccc2-23dd-48de-b884-989412efe082.jpg'}, {'title': [], 'url': 'http://aos-cdn-image.amap.com/sns/ugccomment/1b75f1fa-4987-4e57-8e48-7e0a718fa960.jpg'}], 'typecode': '030000', 'shopinfo': '0', 'poiweight': [], 'childtype': [], 'adname': '江宁区', 'name': '南京小高汽车维修', 'location': '118.686407,31.906922', 'tel': '15062283804', 'shopid': [], 'id': 'B0FFJ5UIJV'}, {'parent': [], 'address': '汤泉镇,银泉路88号', 'distance': [], 'pname': '江苏省', 'importance': [], 'biz_ext': {'cost': [], 'rating': '3.9'}, 'biz_type': [], 'cityname': '南京市', 'type': '汽车服务;洗车场;洗车场|汽车服务;汽车养护/装饰;汽车养护', 'photos': [{'title': [], 'url': 'http://aos-cdn-image.amap.com/sns/ugccomment/4f5df294-7e3a-49c9-9691-8b7f1ec6e1d0.jpg'}, {'title': [], 'url': 'http://store.is.autonavi.com/showpic/beb2d6059d60548cbade2d44079dd036'}, {'title': [], 'url': 'http://store.is.autonavi.com/showpic/850e68a393e14be1cd09943f771822f0'}], 'typecode': '010500|010400', 'shopinfo': '1', 'poiweight': [], 'childtype': [], 'adname': '浦口区', 'name': '汤泉快洁汽车服务中心', 'location': '118.517668,32.094859', 'tel': '13002529140;18912920420', 'shopid': [], 'id': 'B0FFG11LCM'}, {'parent': [], 'address': '板桥龙飞路6号小葛汽车维修保养中心', 'distance': [], 'pname': '江苏省', 'importance': [], 'biz_ext': {'cost': [], 'rating': '4.2'}, 'biz_type': [], 'cityname': '南京市', 'type': '汽车维修;汽车综合维修;汽车综合维修', 'photos': [{'title': [], 'url': 'https://aos-comment.amap.com/B0FFFLISL3/headerImg/2aeec42efaf052b62ff15f2e91c7b4b8_2048_2048_80.jpg'}, {'title': [], 'url': 'https://aos-comment.amap.com/B0FFFLISL3/headerImg/fda89fad36f3fb798f9f40ff1abdba46_2048_2048_80.jpg'}, {'title': [], 'url': 'https://aos-comment.amap.com/B0FFFLISL3/headerImg/3160df461655db67e0084b834305d467_2048_2048_80.jpg'}], 'typecode': '030100', 'shopinfo': '1', 'poiweight': [], 'childtype': [], 'adname': '雨花台区', 'name': '小葛汽车服务中心', 'location': '118.648613,31.923583', 'tel': '13801593254', 'shopid': [], 'id': 'B0FFFLISL3'}, {'parent': [], 'address': '方家营70号', 'distance': [], 'pname': '江苏省', 'importance': [], 'biz_ext': {'cost': [], 'rating': '4.2'}, 'biz_type': [], 'cityname': '南京市', 'type': '汽车维修;汽车维修;汽车维修', 'photos': [{'title': [], 'url': 'http://store.is.autonavi.com/showpic/55259f098f277f9ee423026f9e8f92c5'}, {'title': [], 'url': 'http://store.is.autonavi.com/showpic/823ca74261cd1bc65383510d3805c4d5'}, {'title': [], 'url': 'http://store.is.autonavi.com/showpic/ed8b24e1ec7c50ebe5d4f1528b13131b'}], 'typecode': '030000', 'shopinfo': '0', 'poiweight': [], 'childtype': [], 'adname': '鼓楼区', 'name': '匠道汽车维修保养', 'location': '118.755226,32.099215', 'tel': '17715237728', 'shopid': [], 'id': 'B0FFMBR71K'}, {'parent': [], 'address': '经五路91-86号', 'distance': [], 'pname': '江苏省', 'importance': [], 'biz_ext': {'cost': [], 'rating': '4.2'}, 'biz_type': [], 'cityname': '南京市', 'type': '汽车维修;汽车综合维修;汽车综合维修', 'photos': [{'title': [], 'url': 'http://store.is.autonavi.com/showpic/e66f4200362ec47fa8dd3ac978e8f6e4'}, {'title': [], 'url': 'http://store.is.autonavi.com/showpic/8a872b0f44ce9285550aa154ec5f9abb'}, {'title': [], 'url': 'http://store.is.autonavi.com/showpic/fff75ef006e3a6e5b479d087eba5f933'}], 'typecode': '030100', 'shopinfo': '1', 'poiweight': [], 'childtype': [], 'adname': '栖霞区', 'name': '发现汽车维修有限公司', 'location': '118.834597,32.109321', 'tel': '13655184200', 'shopid': [], 'id': 'B00190D0XY'}, {'parent': [], 'address': '东屏镇金湖小区', 'distance': [], 'pname': '江苏省', 'importance': [], 'biz_ext': {'cost': [], 'rating': '4.7'}, 'biz_type': [], 'cityname': '南京市', 'type': '汽车服务;汽车养护/装饰;汽车养护|汽车服务;洗车场;洗车场|汽车服务;汽车配件销售;汽车配件销售|汽车维修;汽车维修;汽车维修', 'photos': [{'title': [], 'url': 'http://store.is.autonavi.com/showpic/1cb84d4fb1dae8c0cd352b737e831cf1'}, {'title': [], 'url': 'http://store.is.autonavi.com/showpic/0b457ec2f610ac1a2ef2122f7ab06b35'}, {'title': [], 'url': 'https://aos-comment.amap.com/B0FFFZEVND/comment/51b0e42949895243fbf36dfb1eeb29a8_2048_2048_80.jpg'}], 'typecode': '010400|010500|010800|030000', 'shopinfo': '1', 'poiweight': [], 'childtype': [], 'adname': '溧水区', 'name': '乐乐汽车维修', 'location': '119.110987,31.695205', 'tel': '13327737551', 'shopid': [], 'id': 'B0FFFZEVND'}, {'parent': [], 'address': '花园路17号', 'distance': [], 'pname': '江苏省', 'importance': [], 'biz_ext': {'cost': [], 'rating': '4.4'}, 'biz_type': [], 'cityname': '南京市', 'type': '汽车维修;汽车维修;汽车维修', 'photos': [{'title': [], 'url': 'http://store.is.autonavi.com/showpic/296ca8434b57daaa72faef80bf7f41d8'}, {'title': [], 'url': 'http://store.is.autonavi.com/showpic/3eb1387f361a967f6df240387c362ed3'}, {'title': [], 'url': 'http://store.is.autonavi.com/showpic/dad36abe1d6345c4a27874b4f8858440'}], 'typecode': '030000', 'shopinfo': '1', 'poiweight': [], 'childtype': [], 'adname': '玄武区', 'name': '南京知行汽车维修有限公司', 'location': '118.821140,32.085026', 'tel': '025-83360187;025-83366103', 'shopid': [], 'id': 'B0FFLEWKG2'}, {'parent': [], 'address': '平顶山路与杨村一路交叉口东80米', 'distance': [], 'pname': '江苏省', 'importance': [], 'biz_ext': {'cost': [], 'rating': '4.3'}, 'biz_type': [], 'cityname': '南京市', 'type': '汽车维修;汽车维修;汽车维修|汽车服务;汽车服务相关;汽车服务相关', 'photos': [{'title': [], 'url': 'http://store.is.autonavi.com/showpic/5412c5cc17ffe4303183c753a697bf2e'}], 'typecode': '030000|010000', 'shopinfo': '0', 'poiweight': [], 'childtype': [], 'adname': '六合区', 'name': '南京巧手指汽车维修有限公司', 'location': '118.760092,32.247832', 'tel': '13357711118', 'shopid': [], 'id': 'B00190Z345'}, {'parent': [], 'address': '向阳路26-1号丽华山苑4幢汽车维修保养板金喷漆车衣改色', 'distance': [], 'pname': '江苏省', 'importance': [], 'biz_ext': {'cost': [], 'rating': '4.2'}, 'biz_type': [], 'cityname': '南京市', 'type': '汽车服务;汽车养护/装饰;汽车养护', 'photos': [{'title': [], 'url': 'http://store.is.autonavi.com/showpic/aa965d38497c73228276d53f647e12eb'}, {'title': [], 'url': 'http://store.is.autonavi.com/showpic/38c6771acaae27c59920a6a41ed19799'}, {'title': [], 'url': 'http://store.is.autonavi.com/showpic/838d908ac252b397ab6ad39f4f539fdf'}], 'typecode': '010400', 'shopinfo': '0', 'poiweight': [], 'childtype': [], 'adname': '江宁区', 'name': '南京白杨汽车服务有限公司', 'location': '118.703540,31.883528', 'tel': '13512547212', 'shopid': [], 'id': 'B0G1PNGH68'}, {'parent': [], 'address': '大明路118-1号', 'distance': [], 'pname': '江苏省', 'importance': [], 'biz_ext': {'cost': [], 'rating': '3.9'}, 'biz_type': [], 'cityname': '南京市', 'type': '汽车服务;汽车养护/装饰;汽车养护|汽车服务;洗车场;洗车场', 'photos': [{'title': [], 'url': 'http://store.is.autonavi.com/showpic/0b5bfd9bec7625e8d789fd5ba105d3a0'}, {'title': [], 'url': 'http://store.is.autonavi.com/showpic/cea54039ceb5b599a6cff6379ac43027'}], 'typecode': '010400|010500', 'shopinfo': '0', 'poiweight': [], 'childtype': [], 'adname': '秦淮区', 'name': '维修保养', 'location': '118.811417,32.008837', 'tel': '13301582235;15005155328', 'shopid': [], 'id': 'B0G1PNHBIX'}, {'parent': [], 'address': '江浦珠江路与珠泉东路交叉口西北60米', 'distance': [], 'pname': '江苏省', 'importance': [], 'biz_ext': {'cost': [], 'rating': '3.5'}, 'biz_type': [], 'cityname': '南京市', 'type': '汽车维修;汽车维修;汽车维修', 'photos': [{'title': [], 'url': 'http://store.is.autonavi.com/showpic/d96a973c7a27f1130909bf411f8cec5c'}], 'typecode': '030000', 'shopinfo': '0', 'poiweight': [], 'childtype': [], 'adname': '浦口区', 'name': '维修保养', 'location': '118.638545,32.062981', 'tel': [], 'shopid': [], 'id': 'B0J1GCDQ8A'}, {'parent': [], 'address': '小市新村18号', 'distance': [], 'pname': '江苏省', 'importance': [], 'biz_ext': {'cost': [], 'rating': '4.1'}, 'biz_type': [], 'cityname': '南京市', 'type': '汽车维修;汽车综合维修;汽车综合维修', 'photos': [{'title': [], 'url': 'http://store.is.autonavi.com/showpic/dd81e7741502536883e374aa0e850357'}], 'typecode': '030100', 'shopinfo': '0', 'poiweight': [], 'childtype': [], 'adname': '鼓楼区', 'name': '南京慧发汽车维修有限公司', 'location': '118.781730,32.093602', 'tel': '025-84808111;025-85505018;13851609610', 'shopid': [], 'id': 'B00190BW9D'}, {'parent': [], 'address': '双麒路小水关58号汽车维修保养钣金喷漆保险理赔道路救援', 'distance': [], 'pname': '江苏省', 'importance': [], 'biz_ext': {'cost': [], 'rating': '4.5'}, 'biz_type': [], 'cityname': '南京市', 'type': '汽车维修;汽车综合维修;汽车综合维修|汽车服务;汽车配件销售;汽车配件销售', 'photos': [{'title': [], 'url': 'http://store.is.autonavi.com/showpic/ddf19f8e8063570938a62c49f3c510df'}, {'title': [], 'url': 'https://aos-comment.amap.com/B0FFGCB9V7/comment/b9282da24e2868e1716fcf41ff799c33_2048_2048_80.jpg'}, {'title': [], 'url': 'http://store.is.autonavi.com/showpic/2b63dbf25bcd04a7afe246c56184e3b6'}], 'typecode': '030100|010800', 'shopinfo': '1', 'poiweight': [], 'childtype': [], 'adname': '秦淮区', 'name': '小高汽车修理厂', 'location': '118.859019,31.999974', 'tel': '13851783826', 'shopid': [], 'id': 'B0FFGCB9V7'}, {'parent': [], 'address': '永阳镇宝塔路96号秦淮缘小区6栋115室', 'distance': [], 'pname': '江苏省', 'importance': [], 'biz_ext': {'cost': [], 'rating': '4.7'}, 'biz_type': [], 'cityname': '南京市', 'type': '汽车服务;洗车场;洗车场|汽车服务;汽车养护/装饰;汽车养护|汽车维修;汽车维修;汽车维修', 'photos': [{'title': [], 'url': 'http://store.is.autonavi.com/showpic/6e28dc454766851504f95db117b8f265'}, {'title': [], 'url': 'http://store.is.autonavi.com/showpic/3340fccad49d627257a4e692c3624d71'}, {'title': [], 'url': 'http://store.is.autonavi.com/showpic/2a9f03d6fa121e6299fa1de73d0307c3'}], 'typecode': '010500|010400|030000', 'shopinfo': '1', 'poiweight': [], 'childtype': [], 'adname': '溧水区', 'name': '德国马牌轮胎(宝奔堂汽车维修服务有限公司)', 'location': '119.022624,31.664122', 'tel': '13337720977', 'shopid': [], 'id': 'B0FFLES4KU'}, {'parent': [], 'address': '尧新大道79号', 'distance': [], 'pname': '江苏省', 'importance': [], 'biz_ext': {'cost': [], 'rating': '4.5'}, 'biz_type': [], 'cityname': '南京市', 'type': '汽车维修;汽车维修;汽车维修', 'photos': [{'title': [], 'url': 'https://store.is.autonavi.com/showpic/1681d8e4852e94e32d2c96a35570584b'}, {'title': [], 'url': 'https://store.is.autonavi.com/showpic/69af3a6845f5373697fde970c096b42f'}, {'title': [], 'url': 'https://store.is.autonavi.com/showpic/de461c1717dec461fcff803bac698480'}], 'typecode': '030000', 'shopinfo': '1', 'poiweight': [], 'childtype': [], 'adname': '栖霞区', 'name': '宝迪龙汽车维修有限公司', 'location': '118.869957,32.119457', 'tel': [], 'shopid': [], 'id': 'B0FFHO6WX8'}, {'parent': [], 'address': '新理想佳园东南门西南80米', 'distance': [], 'pname': '江苏省', 'importance': [], 'biz_ext': {'cost': [], 'rating': '4.1'}, 'biz_type': [], 'cityname': '南京市', 'type': '汽车维修;汽车综合维修;汽车综合维修', 'photos': [{'title': [], 'url': 'https://aos-comment.amap.com/B00190YZRQ/headerImg/ff4969848b3a1be5e0bf8d30ca3195c1_2048_2048_80.jpg'}, {'title': [], 'url': 'http://store.is.autonavi.com/showpic/832bd6f606e791812aa06e436a34ee1f'}, {'title': [], 'url': 'http://store.is.autonavi.com/showpic/b03546d3616f28d769efc31eb953705b'}], 'typecode': '030100', 'shopinfo': '1', 'poiweight': [], 'childtype': [], 'adname': '浦口区', 'name': '宝得利汽车维修服务中心', 'location': '118.629486,32.050411', 'tel': '025-58155211;13914792364', 'shopid': [], 'id': 'B00190YZRQ'}], 'status': '1', 'info': 'OK'}\n",
"{'suggestion': {'keywords': [], 'cities': []}, 'count': '450', 'infocode': '10000', 'pois': [{'parent': [], 'address': '永阳镇万科月桂苑345-2324号汽车美容维修保养代办年审钣金喷漆保险理赔贴膜改色', 'distance': [], 'pname': '江苏省', 'importance': [], 'biz_ext': {'cost': [], 'rating': '4.1'}, 'biz_type': [], 'cityname': '南京市', 'type': '汽车服务;汽车养护/装饰;汽车养护', 'photos': [{'title': [], 'url': 'http://store.is.autonavi.com/showpic/a52a7f990bdcd41ab54894a8ede9aa1f'}, {'title': [], 'url': 'http://store.is.autonavi.com/showpic/335c3149ece12495bc647c7fbcb04d72'}, {'title': [], 'url': 'https://aos-comment.amap.com/B0H2R52PYG/headerImg/87a521e5c0de8733cfedf69db673ff8c_2048_2048_80.jpg'}], 'typecode': '010400', 'shopinfo': '1', 'poiweight': [], 'childtype': [], 'adname': '溧水区', 'name': '车匠汽车维修服务中心', 'location': '119.053313,31.641612', 'tel': '17368707787', 'shopid': [], 'id': 'B0H2R52PYG'}, {'parent': [], 'address': '从事汽车保养维修洗车', 'distance': [], 'pname': '江苏省', 'importance': [], 'biz_ext': {'cost': [], 'rating': '4.3'}, 'biz_type': [], 'cityname': '南京市', 'type': '汽车维修;汽车综合维修;汽车综合维修', 'photos': [{'title': [], 'url': 'http://store.is.autonavi.com/showpic/700baaf57c7d47f76b47473af93c90d5'}, {'title': [], 'url': 'http://store.is.autonavi.com/showpic/e31db6986c34aad018a0d974948b0aee'}, {'title': [], 'url': 'http://store.is.autonavi.com/showpic/24028c1a66525832a1452ef175411bc0'}], 'typecode': '030100', 'shopinfo': '1', 'poiweight': [], 'childtype': [], 'adname': '江宁区', 'name': '鑫莱特汽车维修服务中心', 'location': '118.548998,31.780812', 'tel': '19941523919', 'shopid': [], 'id': 'B0FFFTK2NT'}, {'parent': [], 'address': '珠泉路鼎业花苑3栋-1', 'distance': [], 'pname': '江苏省', 'importance': [], 'biz_ext': {'cost': [], 'rating': '4.8'}, 'biz_type': [], 'cityname': '南京市', 'type': '汽车服务;汽车养护/装饰;汽车养护|汽车服务;洗车场;洗车场|汽车维修;汽车维修;汽车维修', 'photos': [{'title': [], 'url': 'http://store.is.autonavi.com/showpic/18c54c9bb36d8f5cd5dc268b31b670b7'}, {'title': [], 'url': 'http://store.is.autonavi.com/showpic/74f85a6df09c1fc97c9fd10bec797514'}, {'title': [], 'url': 'http://store.is.autonavi.com/showpic/76e69a7ba9c5d933d4dd8a3cbd4d3ed9'}], 'typecode': '010400|010500|030000', 'shopinfo': '1', 'poiweight': [], 'childtype': [], 'adname': '浦口区', 'name': '金宝利汽车维修养护中心', 'location': '118.633700,32.054713', 'tel': '18994100579', 'shopid': [], 'id': 'B0IGN78MNO'}, {'parent': [], 'address': '金龙路2-6附近', 'distance': [], 'pname': '江苏省', 'importance': [], 'biz_ext': {'cost': [], 'rating': '4.8'}, 'biz_type': [], 'cityname': '南京市', 'type': '汽车维修;汽车综合维修;汽车综合维修|汽车服务;汽车养护/装饰;汽车养护', 'photos': [{'title': [], 'url': 'http://store.is.autonavi.com/showpic/ef091d4df6f25c96c9b86ffd52af0235'}, {'title': [], 'url': 'http://store.is.autonavi.com/showpic/438d009fc7730402a0c74331a5aa1439'}, {'title': [], 'url': 'https://aos-comment.amap.com/B0FFFS6SJQ/comment/D0E46E6B_68D1_465E_8D55_74A1F6890874_L0_001_2000_1500_1734399849469_34344938.jpg'}], 'typecode': '030100|010400', 'shopinfo': '1', 'poiweight': [], 'childtype': [], 'adname': '江宁区', 'name': '小宋汽车维修服务中心', 'location': '118.826442,31.915977', 'tel': '13451919500', 'shopid': [], 'id': 'B0FFFS6SJQ'}, {'parent': [], 'address': '陶吴镇杨树桥68号', 'distance': [], 'pname': '江苏省', 'importance': [], 'biz_ext': {'cost': [], 'rating': '3.7'}, 'biz_type': [], 'cityname': '南京市', 'type': '汽车维修;汽车维修;汽车维修', 'photos': [{'title': [], 'url': 'http://store.is.autonavi.com/showpic/01086c46103e90e7349b20a4ba71aa8d'}, {'title': [], 'url': 'http://store.is.autonavi.com/showpic/898f2ef1f626584f7c3967c2ccbbf714'}, {'title': [], 'url': 'http://store.is.autonavi.com/showpic/60b50ef7f10fad39192648f5a58c19a9'}], 'typecode': '030000', 'shopinfo': '1', 'poiweight': [], 'childtype': [], 'adname': '江宁区', 'name': '腾飞汽车维修中心', 'location': '118.764769,31.761594', 'tel': '15150677587', 'shopid': [], 'id': 'B00190CNIM'}, {'parent': [], 'address': '东山街道章村工业园石羊路19号', 'distance': [], 'pname': '江苏省', 'importance': [], 'biz_ext': {'cost': [], 'rating': '4.0'}, 'biz_type': [], 'cityname': '南京市', 'type': '汽车维修;汽车综合维修;汽车综合维修', 'photos': [{'title': [], 'url': 'http://store.is.autonavi.com/showpic/d54f3e1e7043fb94b82f85fb2e62d9e9'}], 'typecode': '030100', 'shopinfo': '0', 'poiweight': [], 'childtype': [], 'adname': '江宁区', 'name': '南京龙港汽车维修服务有限公司', 'location': '118.853521,31.967571', 'tel': '025-52604828', 'shopid': [], 'id': 'B0FFGY6T2V'}, {'parent': [], 'address': '金陵小区东北2门旁', 'distance': [], 'pname': '江苏省', 'importance': [], 'biz_ext': {'cost': [], 'rating': '3.8'}, 'biz_type': [], 'cityname': '南京市', 'type': '汽车维修;汽车维修;汽车维修|汽车服务;汽车服务相关;汽车服务相关', 'photos': [{'title': [], 'url': 'http://store.is.autonavi.com/showpic/15fde33ec4c12d5c67265731d1d71aae'}], 'typecode': '030000|010000', 'shopinfo': '0', 'poiweight': [], 'childtype': [], 'adname': '鼓楼区', 'name': '浩伟汽车维修服务中心', 'location': '118.765676,32.110890', 'tel': '13951650093', 'shopid': [], 'id': 'B0019136OL'}, {'parent': [], 'address': '小行路51号', 'distance': [], 'pname': '江苏省', 'importance': [], 'biz_ext': {'cost': [], 'rating': '4.6'}, 'biz_type': [], 'cityname': '南京市', 'type': '汽车维修;汽车综合维修;汽车综合维修', 'photos': [{'title': [], 'url': 'http://store.is.autonavi.com/showpic/05fec4daabdd1cc0449c0ab4b4c4a63a'}, {'title': [], 'url': 'http://store.is.autonavi.com/showpic/125b6e995cec329ebd6686609a1b6f21'}, {'title': [], 'url': 'http://store.is.autonavi.com/showpic/4dcb12884c3a6d7fde3ed9cc0e6cfe6f'}], 'typecode': '030100', 'shopinfo': '0', 'poiweight': [], 'childtype': [], 'adname': '雨花台区', 'name': '南京众诚汽车维修服务有限公司', 'location': '118.748209,31.986360', 'tel': '025-87712382;13851746657;13912975707', 'shopid': [], 'id': 'B0019095W9'}, {'parent': [], 'address': '大厂街道太子山路44号', 'distance': [], 'pname': '江苏省', 'importance': [], 'biz_ext': {'cost': [], 'rating': '4.2'}, 'biz_type': [], 'cityname': '南京市', 'type': '汽车维修;汽车综合维修;汽车综合维修|汽车服务;汽车服务相关;汽车服务相关', 'photos': [{'title': [], 'url': 'http://store.is.autonavi.com/showpic/52ec343fe3e591ea28cd825cb5ab2b1a'}, {'title': [], 'url': 'http://store.is.autonavi.com/showpic/761d2ac468e7a7e7577de915dd824b92'}], 'typecode': '030100|010000', 'shopinfo': '0', 'poiweight': [], 'childtype': [], 'adname': '六合区', 'name': '伟杰汽车维修中心', 'location': '118.749449,32.217524', 'tel': '13913324438', 'shopid': [], 'id': 'B0G3XUFB8O'}, {'parent': [], 'address': '恒嘉路77号', 'distance': [], 'pname': '江苏省', 'importance': [], 'biz_ext': {'cost': [], 'rating': '4.4'}, 'biz_type': [], 'cityname': '南京市', 'type': '汽车维修;汽车综合维修;汽车综合维修', 'photos': [{'title': [], 'url': 'http://store.is.autonavi.com/showpic/cd1436035b6ab41dae39e3c92234f376'}, {'title': [], 'url': 'http://store.is.autonavi.com/showpic/559ec4b5ad62f86d6e23a420b37f8e08'}, {'title': [], 'url': 'http://store.is.autonavi.com/showpic/5616eba8724ccdfd2e8b90ef2351abf5'}], 'typecode': '030100', 'shopinfo': '0', 'poiweight': [], 'childtype': [], 'adname': '玄武区', 'name': '佳俊洁汽车维修公司', 'location': '118.817662,32.094555', 'tel': '025-85358587;13515113317', 'shopid': [], 'id': 'B0019136EP'}, {'parent': [], 'address': '仙林汽配城19栋6号', 'distance': [], 'pname': '江苏省', 'importance': [], 'biz_ext': {'cost': [], 'rating': '4.8'}, 'biz_type': [], 'cityname': '南京市', 'type': '汽车服务;汽车养护/装饰;汽车养护|汽车维修;汽车维修;汽车维修', 'photos': [{'title': [], 'url': 'http://store.is.autonavi.com/showpic/36d7233863cca4039d2cd1587bfa29f9'}, {'title': [], 'url': 'http://store.is.autonavi.com/showpic/a41339f03dcbb8937f352641b737ca8a'}, {'title': [], 'url': 'http://store.is.autonavi.com/showpic/510aacf879966144f0ede0cbec48260d'}], 'typecode': '010400|030000', 'shopinfo': '1', 'poiweight': [], 'childtype': [], 'adname': '栖霞区', 'name': '小能手汽车维修', 'location': '118.898161,32.111102', 'tel': '13327808155', 'shopid': [], 'id': 'B0KDPR5PCP'}, {'parent': [], 'address': '文峰佳苑北门旁', 'distance': [], 'pname': '江苏省', 'importance': [], 'biz_ext': {'cost': [], 'rating': '4.9'}, 'biz_type': [], 'cityname': '南京市', 'type': '汽车维修;汽车综合维修;汽车综合维修|汽车服务;汽车养护/装饰;汽车养护', 'photos': [{'title': [], 'url': 'http://store.is.autonavi.com/showpic/5cb5dc62d8af724af14eb7a0aeed7144'}, {'title': [], 'url': 'http://store.is.autonavi.com/showpic/d759b0edef3fd603413c94d1251ae87e'}, {'title': [], 'url': 'http://store.is.autonavi.com/showpic/f8a1d0d687228db5e2f856443a6044d8'}], 'typecode': '030100|010400', 'shopinfo': '1', 'poiweight': [], 'childtype': [], 'adname': '六合区', 'name': '鼎诚汽车维修中心', 'location': '118.878963,32.331587', 'tel': '15105154367', 'shopid': [], 'id': 'B0FFJ3U528'}, {'parent': [], 'address': '虎踞路58-5号', 'distance': [], 'pname': '江苏省', 'importance': [], 'biz_ext': {'cost': [], 'rating': '4.4'}, 'biz_type': [], 'cityname': '南京市', 'type': '汽车服务;汽车养护/装饰;汽车养护|汽车服务;洗车场;洗车场|汽车维修;汽车综合维修;汽车综合维修', 'photos': [{'title': [], 'url': 'http://store.is.autonavi.com/showpic/2a8bfa460edc8e7456ce2d6c2a4467ac'}, {'title': [], 'url': 'http://store.is.autonavi.com/showpic/ff1d3b3e2542b96404ddcda00927e2f9'}, {'title': [], 'url': 'http://store.is.autonavi.com/showpic/6dbcfb72dc0550edc2c4c931371cf08d'}], 'typecode': '010400|010500|030100', 'shopinfo': '1', 'poiweight': [], 'childtype': [], 'adname': '鼓楼区', 'name': '途佳汽车维修', 'location': '118.761381,32.047565', 'tel': '13505170267', 'shopid': [], 'id': 'B0FFHUU69N'}, {'parent': [], 'address': '尧新大道86号', 'distance': [], 'pname': '江苏省', 'importance': [], 'biz_ext': {'cost': [], 'rating': '4.4'}, 'biz_type': [], 'cityname': '南京市', 'type': '汽车维修;汽车维修;汽车维修', 'photos': [{'title': [], 'url': 'http://store.is.autonavi.com/showpic/a9c4f73d40f390379da76551670cd676'}, {'title': [], 'url': 'http://store.is.autonavi.com/showpic/23c43b936ec0ded0d48401a28e27d7fb'}, {'title': [], 'url': 'http://store.is.autonavi.com/showpic/7cdacab037696d854ecd57ba97cb71a4'}], 'typecode': '030000', 'shopinfo': '1', 'poiweight': [], 'childtype': [], 'adname': '栖霞区', 'name': '南京祥领汽车维修有限公司', 'location': '118.867918,32.128571', 'tel': [], 'shopid': [], 'id': 'B0GUT5I2ZJ'}, {'parent': [], 'address': '幕府东路88号', 'distance': [], 'pname': '江苏省', 'importance': [], 'biz_ext': {'cost': [], 'rating': '4.4'}, 'biz_type': [], 'cityname': '南京市', 'type': '汽车维修;汽车维修;汽车维修', 'photos': [{'title': [], 'url': 'http://store.is.autonavi.com/showpic/c3769a60a9145119a62dc3ebdf8ff609'}, {'title': [], 'url': 'http://store.is.autonavi.com/showpic/d6c7a8e4678145a0d5147485edc06957'}], 'typecode': '030000', 'shopinfo': '1', 'poiweight': [], 'childtype': [], 'adname': '鼓楼区', 'name': '南京苏创汽车维修服务有限公司', 'location': '118.790454,32.113149', 'tel': '025-85520898', 'shopid': [], 'id': 'B0FFGY01ZV'}, {'parent': [], 'address': '许府巷与南瑞路交叉口东60米', 'distance': [], 'pname': '江苏省', 'importance': [], 'biz_ext': {'cost': [], 'rating': '4.0'}, 'biz_type': [], 'cityname': '南京市', 'type': '汽车服务;汽车养护/装饰;汽车养护|汽车维修;汽车维修;汽车维修', 'photos': [{'title': [], 'url': 'http://store.is.autonavi.com/showpic/602e25c8cbf2cf0b6997e5fb6c9ae5c1'}, {'title': [], 'url': 'http://store.is.autonavi.com/showpic/774ccbc5e91d19ea6c56cd2e7f363087'}, {'title': [], 'url': 'http://store.is.autonavi.com/showpic/5f2f2e7fa06c80920b7a6852455912f3'}], 'typecode': '010400|030000', 'shopinfo': '1', 'poiweight': [], 'childtype': [], 'adname': '鼓楼区', 'name': '极速汽车维修', 'location': '118.773260,32.083181', 'tel': '4008662713', 'shopid': [], 'id': 'B0LG3U9NHS'}, {'parent': [], 'address': '天禄大道699号', 'distance': [], 'pname': '江苏省', 'importance': [], 'biz_ext': {'cost': [], 'rating': '3.6'}, 'biz_type': [], 'cityname': '南京市', 'type': '汽车维修;汽车维修;汽车维修', 'photos': [], 'typecode': '030000', 'shopinfo': '0', 'poiweight': [], 'childtype': [], 'adname': '江宁区', 'name': '小冬哥汽车维修', 'location': '118.878479,31.779544', 'tel': [], 'shopid': [], 'id': 'B0J3XAXUY1'}, {'parent': [], 'address': '运煤路', 'distance': [], 'pname': '江苏省', 'importance': [], 'biz_ext': {'cost': [], 'rating': '4.5'}, 'biz_type': [], 'cityname': '南京市', 'type': '汽车维修;汽车维修;汽车维修', 'photos': [{'title': [], 'url': 'http://store.is.autonavi.com/showpic/ae4642544a53f1ee9f09593e78c4113b'}], 'typecode': '030000', 'shopinfo': '0', 'poiweight': [], 'childtype': [], 'adname': '栖霞区', 'name': '南京畅速汽车维修服务有限公司', 'location': '118.906862,32.151957', 'tel': '13813392888', 'shopid': [], 'id': 'B0FFJ10WL2'}, {'parent': [], 'address': '黄山路64-1洗车维修保养钣金做漆代办年检上门搭电', 'distance': [], 'pname': '江苏省', 'importance': [], 'biz_ext': {'cost': [], 'rating': '4.5'}, 'biz_type': [], 'cityname': '南京市', 'type': '汽车维修;汽车综合维修;汽车综合维修', 'photos': [{'title': [], 'url': 'http://store.is.autonavi.com/showpic/27d40fcdc4f662ccf637900a87339112'}, {'title': [], 'url': 'http://store.is.autonavi.com/showpic/7a9e998726a18cff2249b1476929f9e1'}, {'title': [], 'url': 'http://store.is.autonavi.com/showpic/58fcd7a310f73b88d4da39a1d112c1b4'}], 'typecode': '030100', 'shopinfo': '1', 'poiweight': [], 'childtype': [], 'adname': '建邺区', 'name': '宝典汽修', 'location': '118.739193,32.003335', 'tel': '025-86404855', 'shopid': [], 'id': 'B0FFF9ZNGO'}, {'parent': [], 'address': '知行路58号润锦园8幢115室汽车维修汽车搭电汽车保养钣金喷漆修补轮胎', 'distance': [], 'pname': '江苏省', 'importance': [], 'biz_ext': {'cost': [], 'rating': '4.1'}, 'biz_type': [], 'cityname': '南京市', 'type': '汽车服务;汽车养护/装饰;汽车养护|汽车服务;洗车场;洗车场|汽车维修;汽车维修;汽车维修', 'photos': [{'title': [], 'url': 'https://aos-comment.amap.com/B0K6G51ZNB/comment/E14DE3BF_6CB8_44B2_8838_38474B124D77_L0_001_2000_1500_1737087912180_61696645.jpg'}, {'title': [], 'url': 'http://store.is.autonavi.com/showpic/6e7a5043a859dcf0e6cd875da3b75236'}, {'title': [], 'url': 'http://store.is.autonavi.com/showpic/2422ea6d94aa904b3c949ca06c9fd994'}], 'typecode': '010400|010500|030000', 'shopinfo': '1', 'poiweight': [], 'childtype': [], 'adname': '江宁区', 'name': '叁陆伍汽修', 'location': '118.894440,31.917211', 'tel': '15152890320', 'shopid': [], 'id': 'B0K6G51ZNB'}], 'status': '1', 'info': 'OK'}\n",
"{'suggestion': {'keywords': [], 'cities': []}, 'count': '450', 'infocode': '10000', 'pois': [{'parent': [], 'address': '众兴街道亿阳国际', 'distance': [], 'pname': '江苏省', 'importance': [], 'biz_ext': {'cost': [], 'rating': '3.9'}, 'biz_type': [], 'cityname': '宿迁市', 'type': '汽车维修;汽车维修;汽车维修', 'photos': [], 'typecode': '030000', 'shopinfo': '0', 'poiweight': [], 'childtype': [], 'adname': '泗阳县', 'name': '泗奥汽修', 'location': '118.684400,33.716871', 'tel': [], 'shopid': [], 'id': 'B0KUDX9ZZ7'}, {'parent': [], 'address': '宿泗路与泰毕路交叉口东180米', 'distance': [], 'pname': '江苏省', 'importance': [], 'biz_ext': {'cost': [], 'rating': '3.6'}, 'biz_type': [], 'cityname': '宿迁市', 'type': '汽车维修;汽车维修;汽车维修', 'photos': [{'title': [], 'url': 'http://store.is.autonavi.com/showpic/da85bece40d7eae00a1869a3421f8f78'}], 'typecode': '030000', 'shopinfo': '0', 'poiweight': [], 'childtype': [], 'adname': '泗阳县', 'name': '新动力汽车维修中心', 'location': '118.609207,33.842435', 'tel': '15052727865', 'shopid': [], 'id': 'B0FFIXB6JN'}, {'parent': [], 'address': '京西小区西门西康路8号宝汇汽车维修服务中心', 'distance': [], 'pname': '江苏省', 'importance': [], 'biz_ext': {'cost': [], 'rating': '4.2'}, 'biz_type': [], 'cityname': '宿迁市', 'type': '汽车服务;汽车养护/装饰;汽车养护|汽车服务;洗车场;洗车场|汽车维修;汽车维修;汽车维修', 'photos': [{'title': [], 'url': 'http://store.is.autonavi.com/showpic/dc6cfaa522e10dffb188541bd9bafba1'}, {'title': [], 'url': 'http://store.is.autonavi.com/showpic/d804bdf0a8f4201b0802e7fca41112a1'}, {'title': [], 'url': 'http://store.is.autonavi.com/showpic/05a3354845a6909371f2fdf8fce01f59'}], 'typecode': '010400|010500|030000', 'shopinfo': '1', 'poiweight': [], 'childtype': [], 'adname': '泗阳县', 'name': '宝汇汽车维修服务中心', 'location': '118.656739,33.722759', 'tel': '15161201918', 'shopid': [], 'id': 'B0H3474IG6'}, {'parent': [], 'address': '泗阳开发区逸景嘉园西大门', 'distance': [], 'pname': '江苏省', 'importance': [], 'biz_ext': {'cost': [], 'rating': '4.3'}, 'biz_type': [], 'cityname': '宿迁市', 'type': '汽车维修;汽车维修;汽车维修', 'photos': [{'title': [], 'url': 'http://store.is.autonavi.com/showpic/f4c3885a3cd4182ff50931602be6344d'}, {'title': [], 'url': 'http://store.is.autonavi.com/showpic/3fbfcb017cfde6b207206a8f876841a1'}], 'typecode': '030000', 'shopinfo': '0', 'poiweight': [], 'childtype': [], 'adname': '泗阳县', 'name': '永洋汽车维修服务部', 'location': '118.712342,33.721509', 'tel': [], 'shopid': [], 'id': 'B0FFKG3CP5'}, {'parent': [], 'address': '宿泗路与光大路交叉口西140米', 'distance': [], 'pname': '江苏省', 'importance': [], 'biz_ext': {'cost': [], 'rating': '4.0'}, 'biz_type': [], 'cityname': '宿迁市', 'type': '汽车维修;汽车综合维修;汽车综合维修', 'photos': [{'title': [], 'url': 'http://store.is.autonavi.com/showpic/754068bbec116d41b55d9b64071bde9f'}, {'title': [], 'url': 'http://store.is.autonavi.com/showpic/3866be7ff1e277443f6aea3df8f81855'}, {'title': [], 'url': 'http://store.is.autonavi.com/showpic/ad4033525aa0622a2b938c2776d232aa'}], 'typecode': '030100', 'shopinfo': '1', 'poiweight': [], 'childtype': [], 'adname': '泗阳县', 'name': '新动力汽车维修中心', 'location': '118.615508,33.840129', 'tel': [], 'shopid': [], 'id': 'B0JAHRHUHY'}, {'parent': [], 'address': '洪泽湖大道与朝霞路交叉口东北120米', 'distance': [], 'pname': '江苏省', 'importance': [], 'biz_ext': {'cost': [], 'rating': '4.0'}, 'biz_type': [], 'cityname': '宿迁市', 'type': '汽车维修;汽车维修;汽车维修', 'photos': [{'title': [], 'url': 'http://store.is.autonavi.com/showpic/cad8b95514c319335ada42103e692cd3'}], 'typecode': '030000', 'shopinfo': '0', 'poiweight': [], 'childtype': [], 'adname': '泗阳县', 'name': '通用汽车维修服务部', 'location': '118.721570,33.707993', 'tel': '15250796665', 'shopid': [], 'id': 'B0FFL3DPRP'}, {'parent': [], 'address': '条河路八号', 'distance': [], 'pname': '江苏省', 'importance': [], 'biz_ext': {'cost': [], 'rating': '3.8'}, 'biz_type': [], 'cityname': '宿迁市', 'type': '汽车维修;汽车维修;汽车维修', 'photos': [{'title': [], 'url': 'http://store.is.autonavi.com/showpic/259aba0f61d7224dad97cafddc0d5cb3'}, {'title': [], 'url': 'http://store.is.autonavi.com/showpic/684fc13f50c338077fc89aa4cd6c3ee8'}], 'typecode': '030000', 'shopinfo': '1', 'poiweight': [], 'childtype': [], 'adname': '泗阳县', 'name': '嘉骐汽车维修', 'location': '118.640386,33.720139', 'tel': '13222442246', 'shopid': [], 'id': 'B0KGKMNGVD'}, {'parent': [], 'address': '京淮小区北门东长兴汽车维修', 'distance': [], 'pname': '江苏省', 'importance': [], 'biz_ext': {'cost': [], 'rating': '3.8'}, 'biz_type': [], 'cityname': '宿迁市', 'type': '汽车维修;汽车维修;汽车维修', 'photos': [{'title': [], 'url': 'http://store.is.autonavi.com/showpic/a8dd5ae44da882562854a98e035d0fb3'}, {'title': [], 'url': 'http://store.is.autonavi.com/showpic/bf2eab37dc4f2934f16f7142e1a09277'}, {'title': [], 'url': 'http://store.is.autonavi.com/showpic/7fe17493ca88de5d75a55c15adfba53c'}], 'typecode': '030000', 'shopinfo': '1', 'poiweight': [], 'childtype': [], 'adname': '泗阳县', 'name': '长兴汽车维修', 'location': '118.723999,33.712237', 'tel': '15161202510', 'shopid': [], 'id': 'B0HKXKLTAN'}, {'parent': [], 'address': '人民南路41号', 'distance': [], 'pname': '江苏省', 'importance': [], 'biz_ext': {'cost': [], 'rating': '3.9'}, 'biz_type': [], 'cityname': '宿迁市', 'type': '汽车维修;汽车维修;汽车维修', 'photos': [{'title': [], 'url': 'http://store.is.autonavi.com/showpic/95c8eb6960cc9fb35d63ca5cdce850c8?type=pic'}, {'title': [], 'url': 'http://store.is.autonavi.com/showpic/91744be1b775efce9ed6899c3704f138'}, {'title': [], 'url': 'http://store.is.autonavi.com/showpic/2ab0aac16467eddb2754260d22d53c16'}], 'typecode': '030000', 'shopinfo': '0', 'poiweight': [], 'childtype': [], 'adname': '泗阳县', 'name': '泗阳县车随我动汽车维修中心', 'location': '118.668790,33.693680', 'tel': '15161208589', 'shopid': [], 'id': 'B0FFMCEI5G'}, {'parent': [], 'address': '李口镇锦绣新城西门南30米', 'distance': [], 'pname': '江苏省', 'importance': [], 'biz_ext': {'cost': [], 'rating': '4.1'}, 'biz_type': [], 'cityname': '宿迁市', 'type': '汽车维修;汽车维修;汽车维修', 'photos': [{'title': [], 'url': 'http://store.is.autonavi.com/showpic/63509d5c7ac716f06d190e3ad1eced07'}, {'title': [], 'url': 'http://store.is.autonavi.com/showpic/18e143e67dccb05beb767c358075701e'}, {'title': [], 'url': 'https://aos-comment.amap.com/B0G0ZUY8Z6/comment/5c1a42ad71e5d229c854edbbab2c4aa3_2048_2048_80.jpg'}], 'typecode': '030000', 'shopinfo': '1', 'poiweight': [], 'childtype': [], 'adname': '泗阳县', 'name': '卓鸿汽车维修中心', 'location': '118.725328,33.614718', 'tel': '0527-85298898;18114264222', 'shopid': [], 'id': 'B0G0ZUY8Z6'}, {'parent': [], 'address': '城北花园西侧220米', 'distance': [], 'pname': '江苏省', 'importance': [], 'biz_ext': {'cost': [], 'rating': '4.3'}, 'biz_type': [], 'cityname': '宿迁市', 'type': '汽车服务;汽车养护/装饰;汽车养护|汽车维修;汽车维修;汽车维修', 'photos': [{'title': [], 'url': 'http://store.is.autonavi.com/showpic/1d0351a054b17229917e107b22712f00'}, {'title': [], 'url': 'http://store.is.autonavi.com/showpic/8558f8f4ce7e73d66d9b14ab4ce4031c'}, {'title': [], 'url': 'http://store.is.autonavi.com/showpic/9dd80053e2f0b2b9f579932504e69c2a'}], 'typecode': '010400|030000', 'shopinfo': '0', 'poiweight': [], 'childtype': [], 'adname': '泗阳县', 'name': '宿迁市安驰汽车维修有限公司', 'location': '118.683701,33.739685', 'tel': '13951247043', 'shopid': [], 'id': 'B020F1555H'}, {'parent': [], 'address': '里仁乡人民西路195号', 'distance': [], 'pname': '江苏省', 'importance': [], 'biz_ext': {'cost': [], 'rating': '4.1'}, 'biz_type': [], 'cityname': '宿迁市', 'type': '汽车维修;汽车维修;汽车维修', 'photos': [{'title': [], 'url': 'http://store.is.autonavi.com/showpic/f7a80efa8441319d9a558f0070f0f317'}, {'title': [], 'url': 'http://store.is.autonavi.com/showpic/eeb17e506d23b2535d776d25e5ec14d9'}, {'title': [], 'url': 'http://store.is.autonavi.com/showpic/08c0d195d41d3d7f31976ea4b700f97c'}], 'typecode': '030000', 'shopinfo': '1', 'poiweight': [], 'childtype': [], 'adname': '泗阳县', 'name': '胡浩桀汽车维修', 'location': '118.781147,33.915812', 'tel': '13773985317', 'shopid': [], 'id': 'B0FFGK3J3Y'}, {'parent': [], 'address': '天津北路423号', 'distance': [], 'pname': '江苏省', 'importance': [], 'biz_ext': {'cost': [], 'rating': '4.4'}, 'biz_type': [], 'cityname': '宿迁市', 'type': '汽车服务;汽车养护/装饰;汽车养护|汽车服务;洗车场;洗车场|汽车维修;汽车维修;汽车维修', 'photos': [{'title': [], 'url': 'http://store.is.autonavi.com/showpic/527f50584f8a17be6f16a6df6d4fc8b1'}, {'title': [], 'url': 'http://store.is.autonavi.com/showpic/dd7365443e9213be7ef91eb259f94e7b'}, {'title': [], 'url': 'http://store.is.autonavi.com/showpic/6cf095b6f89989b3c93c0551093f789a'}], 'typecode': '010400|010500|030000', 'shopinfo': '1', 'poiweight': [], 'childtype': [], 'adname': '沭阳县', 'name': '业挺汽车维修服务中心', 'location': '118.755186,34.156546', 'tel': '15751090857', 'shopid': [], 'id': 'B0KA2AANF6'}, {'parent': [], 'address': '新城首府小区北门出口左侧', 'distance': [], 'pname': '江苏省', 'importance': [], 'biz_ext': {'cost': [], 'rating': '4.2'}, 'biz_type': [], 'cityname': '宿迁市', 'type': '汽车维修;汽车维修;汽车维修', 'photos': [{'title': [], 'url': 'http://store.is.autonavi.com/showpic/bc8b47f965d756e38df11e46153e6d68'}, {'title': [], 'url': 'http://store.is.autonavi.com/showpic/488329069ff3aa676bf72d01b97f8d25'}, {'title': [], 'url': 'http://store.is.autonavi.com/showpic/86c2c88eb9217f266bfd55bb9559d96a'}], 'typecode': '030000', 'shopinfo': '1', 'poiweight': [], 'childtype': [], 'adname': '泗阳县', 'name': '驰航汽车维修服务部', 'location': '118.719198,33.725148', 'tel': '19825110597', 'shopid': [], 'id': 'B0KUFRY0XL'}, {'parent': [], 'address': '沭城街道欧洲城南门西侧300', 'distance': [], 'pname': '江苏省', 'importance': [], 'biz_ext': {'cost': [], 'rating': '4.2'}, 'biz_type': [], 'cityname': '宿迁市', 'type': '汽车维修;汽车综合维修;汽车综合维修', 'photos': [{'title': [], 'url': 'http://store.is.autonavi.com/showpic/31536713e20384479f9b2726dd289a90'}, {'title': [], 'url': 'http://store.is.autonavi.com/showpic/1ae6ad30668783c0ae7a0ad8dbbe847d'}], 'typecode': '030100', 'shopinfo': '0', 'poiweight': [], 'childtype': [], 'adname': '沭阳县', 'name': '乐驰汽修服务部', 'location': '118.779412,34.098444', 'tel': '15052766330', 'shopid': [], 'id': 'B0FFH03QGZ'}, {'parent': [], 'address': '浙江商城A15幢6-12号', 'distance': [], 'pname': '江苏省', 'importance': [], 'biz_ext': {'cost': [], 'rating': '4.1'}, 'biz_type': [], 'cityname': '宿迁市', 'type': '汽车服务;汽车养护/装饰;汽车养护', 'photos': [{'title': [], 'url': 'http://store.is.autonavi.com/showpic/aa52976d117c312a23e396be74e9a79c'}, {'title': [], 'url': 'http://store.is.autonavi.com/showpic/9ca9309b28deb2ec2335f076c2472b31'}, {'title': [], 'url': 'http://store.is.autonavi.com/showpic/5c0f937f0a0946e817a958813509581a'}], 'typecode': '010400', 'shopinfo': '1', 'poiweight': [], 'childtype': [], 'adname': '沭阳县', 'name': '赛威汽车服务中心', 'location': '118.798267,34.126576', 'tel': '15996793520', 'shopid': [], 'id': 'B0HROAKEY8'}, {'parent': [], 'address': '东方佳苑南门西120米', 'distance': [], 'pname': '江苏省', 'importance': [], 'biz_ext': {'cost': [], 'rating': '4.0'}, 'biz_type': [], 'cityname': '宿迁市', 'type': '汽车维修;汽车维修;汽车维修', 'photos': [{'title': [], 'url': 'http://store.is.autonavi.com/showpic/ff362b07de6b44250ffa0bc0dc2598a6'}], 'typecode': '030000', 'shopinfo': '0', 'poiweight': [], 'childtype': [], 'adname': '泗阳县', 'name': '新秀汽车维修服务部', 'location': '118.744887,33.863519', 'tel': '13327855568', 'shopid': [], 'id': 'B0FFH5YF9Q'}, {'parent': [], 'address': '河畔花城北门西', 'distance': [], 'pname': '江苏省', 'importance': [], 'biz_ext': {'cost': [], 'rating': '4.4'}, 'biz_type': [], 'cityname': '宿迁市', 'type': '汽车维修;汽车维修;汽车维修', 'photos': [{'title': [], 'url': 'http://aos-cdn-image.amap.com/sns/ugccomment/c5906ca9-145d-4f35-8720-0c386da2a191.jpg'}, {'title': [], 'url': 'http://store.is.autonavi.com/showpic/b21aea2a14242313e7aaeff5296cd164'}, {'title': [], 'url': 'http://store.is.autonavi.com/showpic/bf82ad47d8b2cb2f9efa972029849877'}], 'typecode': '030000', 'shopinfo': '1', 'poiweight': [], 'childtype': [], 'adname': '泗洪县', 'name': '泗洪县苏洪汽车维修中心', 'location': '118.227326,33.450957', 'tel': '15038872045', 'shopid': [], 'id': 'B0FFMBF8J4'}, {'parent': [], 'address': '北京西路与洋河中路交叉口西280米', 'distance': [], 'pname': '江苏省', 'importance': [], 'biz_ext': {'cost': [], 'rating': '4.3'}, 'biz_type': [], 'cityname': '宿迁市', 'type': '汽车维修;汽车维修;汽车维修', 'photos': [{'title': [], 'url': 'http://store.is.autonavi.com/showpic/91e57c82c59c5044aa8defa471dc0fcc'}, {'title': [], 'url': 'http://store.is.autonavi.com/showpic/7f6bb7fc45f328f938d716766715c84e'}, {'title': [], 'url': 'http://store.is.autonavi.com/showpic/1cf2f2e715ce7eb4710d8589ea73b551'}], 'typecode': '030000', 'shopinfo': '0', 'poiweight': [], 'childtype': [], 'adname': '泗阳县', 'name': '鸿远汽车服务中心', 'location': '118.670599,33.723839', 'tel': '15051045563', 'shopid': [], 'id': 'B0FFHWG30Q'}, {'parent': [], 'address': '众兴镇泗阳汽配城33号楼附近', 'distance': [], 'pname': '江苏省', 'importance': [], 'biz_ext': {'cost': [], 'rating': '4.1'}, 'biz_type': [], 'cityname': '宿迁市', 'type': '汽车维修;汽车综合维修;汽车综合维修', 'photos': [{'title': [], 'url': 'http://aos-cdn-image.amap.com/sns/ugccomment/73632303-05d2-4eee-adb4-a0e405b653a0.jpg'}, {'title': [], 'url': 'http://store.is.autonavi.com/showpic/996d788f8362235e3a9731dcf54aa404'}], 'typecode': '030100', 'shopinfo': '0', 'poiweight': [], 'childtype': [], 'adname': '泗阳县', 'name': '佳动力汽车维修保养中心', 'location': '118.722733,33.707145', 'tel': '15996761890', 'shopid': [], 'id': 'B0FFHSHVBU'}], 'status': '1', 'info': 'OK'}\n",
"{'suggestion': {'keywords': [], 'cities': []}, 'count': '450', 'infocode': '10000', 'pois': [{'parent': [], 'address': '沭城街道苏北车市18栋', 'distance': [], 'pname': '江苏省', 'importance': [], 'biz_ext': {'cost': [], 'rating': '3.9'}, 'biz_type': [], 'cityname': '宿迁市', 'type': '汽车维修;汽车维修;汽车维修', 'photos': [{'title': [], 'url': 'http://store.is.autonavi.com/showpic/f26b1e5abe071dbbd6cc5a8d53bb0b0c'}, {'title': [], 'url': 'http://store.is.autonavi.com/showpic/54f23bf080042d2d916bddf18e4dccf1'}, {'title': [], 'url': 'http://store.is.autonavi.com/showpic/c19023fb36209ce0ba9f287b766e5a28'}], 'typecode': '030000', 'shopinfo': '1', 'poiweight': [], 'childtype': [], 'adname': '沭阳县', 'name': '中信汽车维修', 'location': '118.795625,34.093075', 'tel': '18936986333', 'shopid': [], 'id': 'B020F0I9CO'}, {'parent': [], 'address': '泗阳县国际汽配城35-08', 'distance': [], 'pname': '江苏省', 'importance': [], 'biz_ext': {'cost': [], 'rating': '4.4'}, 'biz_type': [], 'cityname': '宿迁市', 'type': '汽车服务;汽车养护/装饰;汽车养护', 'photos': [{'title': [], 'url': 'http://store.is.autonavi.com/showpic/1466b1c1c9d7cc547c81a6be47e9b90b'}, {'title': [], 'url': 'http://store.is.autonavi.com/showpic/fc251d8fffb84064b6963492a02c44b9'}, {'title': [], 'url': 'http://store.is.autonavi.com/showpic/014574568cfe33286d38829ff1b05d29'}], 'typecode': '010400', 'shopinfo': '1', 'poiweight': [], 'childtype': [], 'adname': '泗阳县', 'name': '启立汽车贴膜', 'location': '118.723883,33.707581', 'tel': '18061966799', 'shopid': [], 'id': 'B0FFFTI5OH'}, {'parent': [], 'address': '钟兴街道银泰汽摩配城22幢', 'distance': [], 'pname': '江苏省', 'importance': [], 'biz_ext': {'cost': [], 'rating': '4.2'}, 'biz_type': [], 'cityname': '宿迁市', 'type': '汽车维修;汽车维修;汽车维修', 'photos': [{'title': [], 'url': 'http://store.is.autonavi.com/showpic/dbddcd065ac0bf58598267ae79a33a08'}], 'typecode': '030000', 'shopinfo': '1', 'poiweight': [], 'childtype': [], 'adname': '泗阳县', 'name': '永德汽车维修部', 'location': '118.724459,33.707799', 'tel': [], 'shopid': [], 'id': 'B0K09UXQD2'}, {'parent': [], 'address': '泗阳县汽配城21栋02号', 'distance': [], 'pname': '江苏省', 'importance': [], 'biz_ext': {'cost': [], 'rating': '3.7'}, 'biz_type': [], 'cityname': '宿迁市', 'type': '汽车维修;汽车维修;汽车维修', 'photos': [{'title': [], 'url': 'http://store.is.autonavi.com/showpic/4c85b427c6cc31ec29d7118091d6cc86'}], 'typecode': '030000', 'shopinfo': '1', 'poiweight': [], 'childtype': [], 'adname': '泗阳县', 'name': '友安汽车维修部', 'location': '118.724275,33.707575', 'tel': [], 'shopid': [], 'id': 'B0JUJCTBVD'}, {'parent': [], 'address': '众兴镇泗水古城商业街B段02幢西19-2021号', 'distance': [], 'pname': '江苏省', 'importance': [], 'biz_ext': {'cost': [], 'rating': '3.9'}, 'biz_type': [], 'cityname': '宿迁市', 'type': '汽车服务;汽车养护/装饰;汽车养护', 'photos': [{'title': [], 'url': 'http://store.is.autonavi.com/showpic/621a3d9097bddaa24d08979aabc29736'}, {'title': [], 'url': 'http://store.is.autonavi.com/showpic/3fcb1f00f93a52c279c633cf38c38c9e'}], 'typecode': '010400', 'shopinfo': '1', 'poiweight': [], 'childtype': [], 'adname': '泗阳县', 'name': '泗阳刘权汽车保养服务部', 'location': '118.676042,33.721629', 'tel': '13515285038', 'shopid': [], 'id': 'B0GDOCP18X'}, {'parent': [], 'address': '众兴东路88号行健开元广场商业街104号', 'distance': [], 'pname': '江苏省', 'importance': [], 'biz_ext': {'cost': [], 'rating': '4.3'}, 'biz_type': [], 'cityname': '宿迁市', 'type': '汽车销售;汽车销售;汽车销售|汽车服务;汽车服务相关;汽车服务相关', 'photos': [{'title': [], 'url': 'https://aos-comment.amap.com/B0FFG2TDQ2/comment/B4E986F3_1673_449A_8AF4_FC869A9E9ECF_L0_001_2000_1500_1743730853537_75724814.jpg'}, {'title': [], 'url': 'http://store.is.autonavi.com/showpic/ab30def30138465d78080e207a21e807'}, {'title': [], 'url': 'http://store.is.autonavi.com/showpic/de2770aa53886dbf55679046e1246179'}], 'typecode': '020000|010000', 'shopinfo': '1', 'poiweight': [], 'childtype': [], 'adname': '泗阳县', 'name': '泗阳中驰汽车销售有限公司', 'location': '118.697941,33.702446', 'tel': '0527-88500799;0527-88500999', 'shopid': [], 'id': 'B0FFG2TDQ2'}, {'parent': [], 'address': '来安街道八集人民南路66号', 'distance': [], 'pname': '江苏省', 'importance': [], 'biz_ext': {'cost': [], 'rating': '4.4'}, 'biz_type': [], 'cityname': '宿迁市', 'type': '汽车维修;汽车维修;汽车维修', 'photos': [{'title': [], 'url': 'http://store.is.autonavi.com/showpic/45dcb97a538a3ee57d01f4525e9f0768'}, {'title': [], 'url': 'http://store.is.autonavi.com/showpic/9454c5b2c65378664b45e424d9bcbce6'}, {'title': [], 'url': 'http://store.is.autonavi.com/showpic/37cd818eb664d1b726a6a9d429193145'}], 'typecode': '030000', 'shopinfo': '1', 'poiweight': [], 'childtype': [], 'adname': '泗阳县', 'name': '新杨汽车维修', 'location': '118.791184,33.785638', 'tel': '15261036097', 'shopid': [], 'id': 'B0KAFCNT0A'}, {'parent': [], 'address': '梨园路4号', 'distance': [], 'pname': '江苏省', 'importance': [], 'biz_ext': {'cost': [], 'rating': '4.2'}, 'biz_type': [], 'cityname': '宿迁市', 'type': '汽车维修;汽车综合维修;汽车综合维修', 'photos': [{'title': [], 'url': 'http://store.is.autonavi.com/showpic/a6be857f2e458e4a07aaf2e2b4822e91'}, {'title': [], 'url': 'http://store.is.autonavi.com/showpic/bbc30f2c6d8d9a08c4777f113a74b0fe'}, {'title': [], 'url': 'http://store.is.autonavi.com/showpic/7ee1957c5d997b2719d2580de401c8ae'}], 'typecode': '030100', 'shopinfo': '1', 'poiweight': [], 'childtype': [], 'adname': '宿城区', 'name': '祥奥汽车维修一站式服务中心', 'location': '118.318499,33.839125', 'tel': '15896349565', 'shopid': [], 'id': 'B0HRXST66C'}, {'parent': [], 'address': '西安路与正和商业街交叉口西100米', 'distance': [], 'pname': '江苏省', 'importance': [], 'biz_ext': {'cost': [], 'rating': '3.8'}, 'biz_type': [], 'cityname': '宿迁市', 'type': '汽车维修;汽车维修;汽车维修', 'photos': [{'title': [], 'url': 'http://store.is.autonavi.com/showpic/e53f9c36b47ee687cfb032f3d86c07b7'}, {'title': [], 'url': 'http://store.is.autonavi.com/showpic/5fcf85705b7afe4014b8af24c4b41d3c'}, {'title': [], 'url': 'http://store.is.autonavi.com/showpic/260e7ebee9e4c92c53957a7f780c1fd6'}], 'typecode': '030000', 'shopinfo': '0', 'poiweight': [], 'childtype': [], 'adname': '泗阳县', 'name': '沁宇汽车维修中心', 'location': '118.759751,33.549916', 'tel': '18261115278', 'shopid': [], 'id': 'B0FFIQZ5ZV'}, {'parent': [], 'address': '长春东路与长春路交叉口北40米', 'distance': [], 'pname': '江苏省', 'importance': [], 'biz_ext': {'cost': [], 'rating': '4.0'}, 'biz_type': [], 'cityname': '宿迁市', 'type': '汽车维修;汽车维修;汽车维修', 'photos': [{'title': [], 'url': 'http://store.is.autonavi.com/showpic/340c5a58e019257cf5a8a38cba747f5f'}], 'typecode': '030000', 'shopinfo': '0', 'poiweight': [], 'childtype': [], 'adname': '泗阳县', 'name': '核动力汽车维修', 'location': '118.709970,33.716314', 'tel': [], 'shopid': [], 'id': 'B0HKHABTXC'}, {'parent': [], 'address': '来安街道泗水大道北侧与健康路交汇处西500米', 'distance': [], 'pname': '江苏省', 'importance': [], 'biz_ext': {'cost': [], 'rating': '4.3'}, 'biz_type': [], 'cityname': '宿迁市', 'type': '汽车维修;汽车维修;汽车维修', 'photos': [{'title': [], 'url': 'http://store.is.autonavi.com/showpic/7c57fee86404c8a963ee4d11dfca2cd1'}], 'typecode': '030000', 'shopinfo': '0', 'poiweight': [], 'childtype': [], 'adname': '泗阳县', 'name': '聚隆汽车维修四店', 'location': '118.735150,33.733665', 'tel': [], 'shopid': [], 'id': 'B0KG5592U0'}, {'parent': [], 'address': '支路10号', 'distance': [], 'pname': '江苏省', 'importance': [], 'biz_ext': {'cost': [], 'rating': '4.1'}, 'biz_type': [], 'cityname': '宿迁市', 'type': '汽车维修;汽车维修;汽车维修', 'photos': [{'title': [], 'url': 'http://store.is.autonavi.com/showpic/f65a1a0e7d9f0285295094219de47a93'}, {'title': [], 'url': 'http://store.is.autonavi.com/showpic/12d76617d74460060ad515b4876394b5'}, {'title': [], 'url': 'http://store.is.autonavi.com/showpic/5559b975a31027990b72d817'}], 'typecode': '030000', 'shopinfo': '0', 'poiweight': [], 'childtype': [], 'adname': '泗阳县', 'name': '万邦汽车维修中心', 'location': '118.709707,33.719103', 'tel': '15050984573;18951391181', 'shopid': [], 'id': 'B0FFF4053T'}, {'parent': [], 'address': '泗阳国际汽配城20栋2-10号', 'distance': [], 'pname': '江苏省', 'importance': [], 'biz_ext': {'cost': [], 'rating': '4.0'}, 'biz_type': [], 'cityname': '宿迁市', 'type': '汽车维修;汽车维修;汽车维修', 'photos': [{'title': [], 'url': 'http://store.is.autonavi.com/showpic/088c3ab1270b708dff107179b70c493a'}], 'typecode': '030000', 'shopinfo': '0', 'poiweight': [], 'childtype': [], 'adname': '泗阳县', 'name': '搏航汽车维修', 'location': '118.723329,33.707942', 'tel': '18252455252', 'shopid': [], 'id': 'B0I2UZSJPP'}, {'parent': [], 'address': '泗州东大街12-36号', 'distance': [], 'pname': '江苏省', 'importance': [], 'biz_ext': {'cost': [], 'rating': '4.0'}, 'biz_type': [], 'cityname': '宿迁市', 'type': '汽车维修;汽车维修;汽车维修', 'photos': [{'title': [], 'url': 'http://store.is.autonavi.com/showpic/b43d99a44f6f2283cc44abf5e6f75d72'}, {'title': [], 'url': 'http://store.is.autonavi.com/showpic/ee398d740b611cda4e083a54c8757da8'}, {'title': [], 'url': 'http://store.is.autonavi.com/showpic/c0762b0ef9818b4203a0a6d799b49e39'}], 'typecode': '030000', 'shopinfo': '1', 'poiweight': [], 'childtype': [], 'adname': '泗洪县', 'name': '畅硕汽修服务中心', 'location': '118.246852,33.457425', 'tel': '13357841278', 'shopid': [], 'id': 'B0JGLZEXPP'}, {'parent': [], 'address': '油坊小区南1门旁', 'distance': [], 'pname': '江苏省', 'importance': [], 'biz_ext': {'cost': [], 'rating': '3.7'}, 'biz_type': [], 'cityname': '宿迁市', 'type': '汽车销售;汽车销售;汽车销售', 'photos': [], 'typecode': '020000', 'shopinfo': '0', 'poiweight': [], 'childtype': [], 'adname': '宿豫区', 'name': '智曜汽车服务有限公司', 'location': '118.348405,33.922093', 'tel': [], 'shopid': [], 'id': 'B0IR2147FA'}, {'parent': [], 'address': '洋河新区金德国际花园S-07', 'distance': [], 'pname': '江苏省', 'importance': [], 'biz_ext': {'cost': [], 'rating': '4.0'}, 'biz_type': [], 'cityname': '宿迁市', 'type': '汽车维修;汽车维修;汽车维修', 'photos': [{'title': [], 'url': 'http://store.is.autonavi.com/showpic/89e3895ac916053089e1b3512db69bb0'}, {'title': [], 'url': 'http://store.is.autonavi.com/showpic/5319c50ef2e543a90157db609fd06a2a'}], 'typecode': '030000', 'shopinfo': '1', 'poiweight': [], 'childtype': [], 'adname': '宿城区', 'name': '祥烁汽车维修服务中心', 'location': '118.352649,33.784417', 'tel': '15151145005;18036981222', 'shopid': [], 'id': 'B0G1M5VU2U'}, {'parent': [], 'address': '众兴镇航通汽车维修', 'distance': [], 'pname': '江苏省', 'importance': [], 'biz_ext': {'cost': [], 'rating': '3.8'}, 'biz_type': [], 'cityname': '宿迁市', 'type': '汽车维修;汽车维修;汽车维修', 'photos': [{'title': [], 'url': 'http://store.is.autonavi.com/showpic/00dcf429d4ee6d9daaf6ecdb6fa7e432'}, {'title': [], 'url': 'http://store.is.autonavi.com/showpic/0c3164dba88d05a9afc730f771f386fc'}], 'typecode': '030000', 'shopinfo': '1', 'poiweight': [], 'childtype': [], 'adname': '泗阳县', 'name': '航通汽车维修', 'location': '118.591116,33.710080', 'tel': '15250712082;15366952970', 'shopid': [], 'id': 'B0FFF3L60O'}, {'parent': [], 'address': [], 'distance': [], 'pname': '江苏省', 'importance': [], 'biz_ext': {'cost': [], 'rating': '4.1'}, 'biz_type': [], 'cityname': '宿迁市', 'type': '汽车维修;汽车维修;汽车维修', 'photos': [{'title': [], 'url': 'http://store.is.autonavi.com/showpic/ed754e8673dddde1afff941420241219'}, {'title': [], 'url': 'http://store.is.autonavi.com/showpic/cab492ff2dced34afca9bbd2654ed892'}, {'title': [], 'url': 'http://store.is.autonavi.com/showpic/ea3add9b383adadde0036afecb7f1a1c'}], 'typecode': '030000', 'shopinfo': '1', 'poiweight': [], 'childtype': [], 'adname': '泗阳县', 'name': '卓越汽车维修', 'location': '118.629369,33.676488', 'tel': '15996747975', 'shopid': [], 'id': 'B0FFJ2IUKG'}, {'parent': [], 'address': '人民南路76号', 'distance': [], 'pname': '江苏省', 'importance': [], 'biz_ext': {'cost': [], 'rating': '3.9'}, 'biz_type': [], 'cityname': '宿迁市', 'type': '汽车维修;汽车维修;汽车维修', 'photos': [], 'typecode': '030000', 'shopinfo': '0', 'poiweight': [], 'childtype': [], 'adname': '泗阳县', 'name': '优众汽修', 'location': '118.658453,33.682663', 'tel': '14751303326', 'shopid': [], 'id': 'B0I3C5PSRW'}, {'parent': 'B020F15KZY', 'address': '浙江世纪商贸城D40D41', 'distance': [], 'pname': '江苏省', 'importance': [], 'biz_ext': {'cost': [], 'rating': '4.3'}, 'biz_type': [], 'cityname': '宿迁市', 'type': '汽车维修;汽车维修;汽车维修', 'photos': [{'title': [], 'url': 'http://store.is.autonavi.com/showpic/b6838615bc3726bc84db636999d5474b'}, {'title': [], 'url': 'http://aos-cdn-image.amap.com/sns/ugccomment/11c12332-226e-417f-95b5-635e866f081b.jpg'}, {'title': [], 'url': 'http://store.is.autonavi.com/showpic/a7ccd05876afaee06ba573cc4c78bb76'}], 'typecode': '030000', 'shopinfo': '1', 'poiweight': [], 'childtype': '202', 'adname': '宿城区', 'name': '乐迪汽车维修服务中心', 'location': '118.384931,33.765697', 'tel': '17887398711', 'shopid': [], 'id': 'B0H6PHPZG4'}], 'status': '1', 'info': 'OK'}\n",
"{'suggestion': {'keywords': [], 'cities': []}, 'count': '450', 'infocode': '10000', 'pois': [{'parent': [], 'address': '华士镇澄鹿路181号华鑫车业洗美部', 'distance': [], 'pname': '江苏省', 'importance': [], 'biz_ext': {'cost': [], 'rating': '3.9'}, 'biz_type': [], 'cityname': '无锡市', 'type': '汽车服务;汽车养护/装饰;汽车养护', 'photos': [{'title': [], 'url': 'http://store.is.autonavi.com/showpic/5e0d8aa2a4d408133c8a9b07f5d87c97'}, {'title': [], 'url': 'http://store.is.autonavi.com/showpic/3a129fbeeb848b8e8e705249c86ab299'}, {'title': [], 'url': 'http://store.is.autonavi.com/showpic/a750e8d5ed872a8a2eb49f6f76730811'}], 'typecode': '010400', 'shopinfo': '1', 'poiweight': [], 'childtype': [], 'adname': '江阴市', 'name': '终端王汽车美容装饰', 'location': '120.470737,31.838771', 'tel': [], 'shopid': [], 'id': 'B0G1AYYBTT'}, {'parent': [], 'address': '华士镇华南路208号', 'distance': [], 'pname': '江苏省', 'importance': [], 'biz_ext': {'cost': [], 'rating': '4.0'}, 'biz_type': [], 'cityname': '无锡市', 'type': '汽车服务;汽车养护/装饰;汽车养护', 'photos': [{'title': [], 'url': 'http://store.is.autonavi.com/showpic/4c8f69a74f37e95abbc404f797e7a5f2'}, {'title': [], 'url': 'http://store.is.autonavi.com/showpic/460b4c8b7b2fccf6a8569d629262fa24'}, {'title': [], 'url': 'http://store.is.autonavi.com/showpic/2cbf70c2fab3b76c9bdf1da99a368f8a'}], 'typecode': '010400', 'shopinfo': '0', 'poiweight': [], 'childtype': [], 'adname': '江阴市', 'name': '雨洁汽车美容装饰', 'location': '120.459926,31.824519', 'tel': '13771269101;18068381718', 'shopid': [], 'id': 'B0FFFW8XK5'}, {'parent': [], 'address': '周庄镇西大街289号', 'distance': [], 'pname': '江苏省', 'importance': [], 'biz_ext': {'cost': [], 'rating': '3.9'}, 'biz_type': [], 'cityname': '无锡市', 'type': '汽车服务;汽车养护/装饰;汽车养护', 'photos': [{'title': [], 'url': 'http://store.is.autonavi.com/showpic/94dc7fda1584a8820518f727b2fa2b25'}, {'title': [], 'url': 'http://store.is.autonavi.com/showpic/0a61899b330312dce0d445da2111c335'}, {'title': [], 'url': 'http://store.is.autonavi.com/showpic/6a53221cadf879edadffb2c784bcb880'}], 'typecode': '010400', 'shopinfo': '0', 'poiweight': [], 'childtype': [], 'adname': '江阴市', 'name': '车邦人汽车服务(CBR江阴店)', 'location': '120.398074,31.863238', 'tel': '13626236988', 'shopid': [], 'id': 'B0IU2ZKRMP'}, {'parent': [], 'address': '周庄镇庙头193号(邮局斜对面)', 'distance': [], 'pname': '江苏省', 'importance': [], 'biz_ext': {'cost': [], 'rating': '3.8'}, 'biz_type': [], 'cityname': '无锡市', 'type': '汽车服务;汽车养护/装饰;汽车养护', 'photos': [{'title': [], 'url': 'http://store.is.autonavi.com/showpic/3d123af9ab6ef2880199ba71eb091202'}], 'typecode': '010400', 'shopinfo': '0', 'poiweight': [], 'childtype': [], 'adname': '江阴市', 'name': '欧邦士汽车美容', 'location': '120.408173,31.863626', 'tel': '18961625218', 'shopid': [], 'id': 'B01FE0K43E'}, {'parent': [], 'address': '君巫路266号', 'distance': [], 'pname': '江苏省', 'importance': [], 'biz_ext': {'cost': [], 'rating': '4.2'}, 'biz_type': [], 'cityname': '无锡市', 'type': '汽车服务;汽车养护/装饰;汽车养护', 'photos': [{'title': [], 'url': 'http://store.is.autonavi.com/showpic/4c7ec86539d71d1726bb14849d18891e'}, {'title': [], 'url': 'http://store.is.autonavi.com/showpic/326befcad8e7d6325890088982e044ef'}, {'title': [], 'url': 'http://store.is.autonavi.com/showpic/2ac1bcaae86d819621ec8d9df98e7be4'}], 'typecode': '010400', 'shopinfo': '0', 'poiweight': [], 'childtype': [], 'adname': '江阴市', 'name': '蓝钻汽车装潢美容(美鹰王店)', 'location': '120.276111,31.921731', 'tel': '13961778700', 'shopid': [], 'id': 'B01FE0ICFF'}, {'parent': [], 'address': '金城路6-3号', 'distance': [], 'pname': '江苏省', 'importance': [], 'biz_ext': {'cost': [], 'rating': '4.0'}, 'biz_type': [], 'cityname': '无锡市', 'type': '汽车服务;汽车养护/装饰;汽车养护', 'photos': [{'title': [], 'url': 'http://store.is.autonavi.com/showpic/ef8d0ad7a7485faf8fbc7e0e9b66c481'}, {'title': [], 'url': 'http://store.is.autonavi.com/showpic/c2f9bba48e039b844f87a77f131c1611'}, {'title': [], 'url': 'http://store.is.autonavi.com/showpic/eb393e21c98cc9dfe5a1d0fef09dd2fd'}], 'typecode': '010400', 'shopinfo': '1', 'poiweight': [], 'childtype': [], 'adname': '江阴市', 'name': '江阴市格莱美汽车美容有限公司', 'location': '120.406164,31.867033', 'tel': '18036898883', 'shopid': [], 'id': 'B0IUP7XHVS'}, {'parent': [], 'address': '环镇北路与云台路交叉口东60米', 'distance': [], 'pname': '江苏省', 'importance': [], 'biz_ext': {'cost': [], 'rating': '3.6'}, 'biz_type': [], 'cityname': '无锡市', 'type': '汽车服务;汽车养护/装饰;汽车养护', 'photos': [{'title': [], 'url': 'http://store.is.autonavi.com/showpic/90d67b0cebd3fb77f38bdc3b91d3d7f3'}], 'typecode': '010400', 'shopinfo': '0', 'poiweight': [], 'childtype': [], 'adname': '江阴市', 'name': '小王汽车装潢美容', 'location': '120.340782,31.865835', 'tel': '13915220293', 'shopid': [], 'id': 'B0J6MDDLOW'}, {'parent': [], 'address': '华士镇华陆路80-1号', 'distance': [], 'pname': '江苏省', 'importance': [], 'biz_ext': {'cost': [], 'rating': '4.0'}, 'biz_type': [], 'cityname': '无锡市', 'type': '汽车维修;汽车维修;汽车维修', 'photos': [{'title': [], 'url': 'http://store.is.autonavi.com/showpic/010067479ac61c72195ffeb5c8c5535c'}, {'title': [], 'url': 'http://store.is.autonavi.com/showpic/af512bdf779c02f4683212e3da17a664'}, {'title': [], 'url': 'http://store.is.autonavi.com/showpic/bc73188099158d932f7255083db8d58a'}], 'typecode': '030000', 'shopinfo': '1', 'poiweight': [], 'childtype': [], 'adname': '江阴市', 'name': '华陆汽车服务有限公司', 'location': '120.449620,31.809779', 'tel': '18961698123', 'shopid': [], 'id': 'B0I0JH866Y'}, {'parent': 'B0FFHNJ1PC', 'address': '澄江街道大桥一村47幢3-4号', 'distance': [], 'pname': '江苏省', 'importance': [], 'biz_ext': {'cost': [], 'rating': '4.2'}, 'biz_type': [], 'cityname': '无锡市', 'type': '汽车服务;汽车养护/装饰;汽车养护|汽车服务;洗车场;洗车场|汽车维修;汽车维修;汽车维修', 'photos': [{'title': [], 'url': 'http://store.is.autonavi.com/showpic/156dda112fd53daf9a169c7520119a21'}, {'title': [], 'url': 'http://store.is.autonavi.com/showpic/7a9d5a315f3234ae2a1c3a6a88d9ed63'}, {'title': [], 'url': 'http://store.is.autonavi.com/showpic/6e4a62c16137d07b91f3f0f3d0f658f9'}], 'typecode': '010400|010500|030000', 'shopinfo': '1', 'poiweight': [], 'childtype': '202', 'adname': '江阴市', 'name': '江阴市新清风汽车美容', 'location': '120.302981,31.912654', 'tel': '15950418149', 'shopid': [], 'id': 'B01FE0JU4X'}, {'parent': [], 'address': '祝塘镇环北路66号', 'distance': [], 'pname': '江苏省', 'importance': [], 'biz_ext': {'cost': [], 'rating': '4.3'}, 'biz_type': [], 'cityname': '无锡市', 'type': '汽车服务;汽车养护/装饰;汽车养护', 'photos': [{'title': [], 'url': 'http://store.is.autonavi.com/showpic/8cef96b2753165a80853dd2143fef440'}, {'title': [], 'url': 'http://store.is.autonavi.com/showpic/14b8e2e665b490265ef54dee647715aa'}], 'typecode': '010400', 'shopinfo': '1', 'poiweight': [], 'childtype': [], 'adname': '江阴市', 'name': '车友汽车美容装潢(途虎养车店)', 'location': '120.410373,31.774548', 'tel': '18018316939', 'shopid': [], 'id': 'B0FFFTWR0L'}, {'parent': [], 'address': '高新技术产业开发区芙蓉路160号锦隆四村10幢', 'distance': [], 'pname': '江苏省', 'importance': [], 'biz_ext': {'cost': [], 'rating': '3.9'}, 'biz_type': [], 'cityname': '无锡市', 'type': '汽车服务;汽车养护/装饰;汽车养护', 'photos': [{'title': [], 'url': 'http://store.is.autonavi.com/showpic/2a38338a1ff9dfba3763d8af7838d23f'}, {'title': [], 'url': 'http://aos-cdn-image.amap.com/sns/ugccomment/dfee03f4-9378-457f-9b4b-1afa6e64b072.jpeg'}, {'title': [], 'url': 'http://aos-cdn-image.amap.com/sns/ugccomment/2de13663-e6fd-4e5f-8fbf-1ad7d7bb4cc1.jpeg'}], 'typecode': '010400', 'shopinfo': '0', 'poiweight': [], 'childtype': [], 'adname': '江阴市', 'name': '金宝汽车美容', 'location': '120.304252,31.915637', 'tel': '15895383908', 'shopid': [], 'id': 'B0FFL6F0TY'}, {'parent': [], 'address': '徐霞客镇峭岐中山路258号', 'distance': [], 'pname': '江苏省', 'importance': [], 'biz_ext': {'cost': [], 'rating': '4.3'}, 'biz_type': [], 'cityname': '无锡市', 'type': '汽车服务;汽车养护/装饰;汽车养护', 'photos': [{'title': [], 'url': 'http://store.is.autonavi.com/showpic/5c1d080750d60de52dd43841cbd46f61'}, {'title': [], 'url': 'http://store.is.autonavi.com/showpic/587285e5f4face08107073c94a39ade2'}, {'title': [], 'url': 'http://store.is.autonavi.com/showpic/ea8f99f2cf31dbb3c313832b2e24164d'}], 'typecode': '010400', 'shopinfo': '1', 'poiweight': [], 'childtype': [], 'adname': '江阴市', 'name': '车之净汽车美容装璜', 'location': '120.308010,31.815462', 'tel': '13186622821', 'shopid': [], 'id': 'B0H1O9VKMV'}, {'parent': [], 'address': '梁溪区兴源中路春华汽车美容装饰', 'distance': [], 'pname': '江苏省', 'importance': [], 'biz_ext': {'cost': [], 'rating': '4.6'}, 'biz_type': [], 'cityname': '无锡市', 'type': '汽车服务;洗车场;洗车场|汽车服务;汽车养护/装饰;汽车养护', 'photos': [{'title': [], 'url': 'http://store.is.autonavi.com/showpic/c710bbf20bbedd0ce989384b77fcd2e5'}, {'title': [], 'url': 'http://store.is.autonavi.com/showpic/62624b9f22b8c665c3d96b48fa29d8a6'}, {'title': [], 'url': 'https://comment-oss-online.oss-cn-wulanchabu.aliyuncs.com/B0FFGO1L2W/comment/1642581529362_temp.jpg'}], 'typecode': '010500|010400', 'shopinfo': '1', 'poiweight': [], 'childtype': [], 'adname': '新吴区', 'name': '春华汽车美容装饰(洗车店)', 'location': '120.322086,31.572224', 'tel': '13812511921', 'shopid': [], 'id': 'B0FFGO1L2W'}, {'parent': [], 'address': '方桥街226号', 'distance': [], 'pname': '江苏省', 'importance': [], 'biz_ext': {'cost': [], 'rating': '4.3'}, 'biz_type': [], 'cityname': '无锡市', 'type': '汽车服务;汽车养护/装饰;汽车养护|汽车服务;洗车场;洗车场', 'photos': [{'title': [], 'url': 'http://store.is.autonavi.com/showpic/40cb81c55c4f1347fdaf3e53123e3e50'}, {'title': [], 'url': 'http://store.is.autonavi.com/showpic/fc67810eb2045335b9d0fc2b88de59b9'}, {'title': [], 'url': 'http://store.is.autonavi.com/showpic/54d1081eaf9199ca1e252532c9d2951f'}], 'typecode': '010400|010500', 'shopinfo': '1', 'poiweight': [], 'childtype': [], 'adname': '滨湖区', 'name': '民耀汽车美容', 'location': '120.289016,31.486211', 'tel': '13057315118', 'shopid': [], 'id': 'B0FFJ0A3IS'}, {'parent': [], 'address': '华士镇环东路380号', 'distance': [], 'pname': '江苏省', 'importance': [], 'biz_ext': {'cost': [], 'rating': '4.0'}, 'biz_type': [], 'cityname': '无锡市', 'type': '汽车服务;汽车养护/装饰;汽车养护', 'photos': [{'title': [], 'url': 'http://store.is.autonavi.com/showpic/b4204ac56b1a4113809afa944639ec2d'}, {'title': [], 'url': 'http://store.is.autonavi.com/showpic/e2da58efeba546800c135de476f586d2'}, {'title': [], 'url': 'http://store.is.autonavi.com/showpic/3e66cc6e20974132b68ccf87aefbe470'}], 'typecode': '010400', 'shopinfo': '0', 'poiweight': [], 'childtype': [], 'adname': '江阴市', 'name': '江阴市华士锐驰汽车美容服务部', 'location': '120.481824,31.828628', 'tel': '15895671209', 'shopid': [], 'id': 'B0H6A7NT1P'}, {'parent': [], 'address': '博爱路227号', 'distance': [], 'pname': '江苏省', 'importance': [], 'biz_ext': {'cost': [], 'rating': '3.8'}, 'biz_type': [], 'cityname': '无锡市', 'type': '汽车服务;汽车养护/装饰;汽车养护', 'photos': [{'title': [], 'url': 'http://store.is.autonavi.com/showpic/5239c32d209e3039048ab1528b62924c'}, {'title': [], 'url': 'http://store.is.autonavi.com/showpic/934e5026c6e5718f16781a31c6d72793'}, {'title': [], 'url': 'http://store.is.autonavi.com/showpic/02a7b2b721fd7ad4620523126ade9909'}], 'typecode': '010400', 'shopinfo': '0', 'poiweight': [], 'childtype': [], 'adname': '江阴市', 'name': '阿忠汽车装潢美容', 'location': '120.298435,31.814334', 'tel': '0510-86565069', 'shopid': [], 'id': 'B01FE0K3H4'}, {'parent': [], 'address': '祝塘镇文林华昌路50号', 'distance': [], 'pname': '江苏省', 'importance': [], 'biz_ext': {'cost': [], 'rating': '4.2'}, 'biz_type': [], 'cityname': '无锡市', 'type': '汽车服务;洗车场;洗车场', 'photos': [{'title': [], 'url': 'http://store.is.autonavi.com/showpic/e5fdade1bcc272ddae9b5bc2d7cf71af'}, {'title': [], 'url': 'http://store.is.autonavi.com/showpic/d7156ca20ef8464e0864b31482e2eeba'}, {'title': [], 'url': 'http://store.is.autonavi.com/showpic/4fe9d9c255047f226d52499b4d3054df'}], 'typecode': '010500', 'shopinfo': '1', 'poiweight': [], 'childtype': [], 'adname': '江阴市', 'name': '兴祥汽车美容装潢', 'location': '120.407817,31.722555', 'tel': '17327489080', 'shopid': [], 'id': 'B0FFKHFD5L'}, {'parent': [], 'address': '华士镇陆桥村华陆路30号', 'distance': [], 'pname': '江苏省', 'importance': [], 'biz_ext': {'cost': [], 'rating': '4.0'}, 'biz_type': [], 'cityname': '无锡市', 'type': '汽车服务;汽车养护/装饰;汽车养护', 'photos': [{'title': [], 'url': 'http://store.is.autonavi.com/showpic/de3534af52707695a45381679dae6639'}], 'typecode': '010400', 'shopinfo': '0', 'poiweight': [], 'childtype': [], 'adname': '江阴市', 'name': '友谊汽车装潢美容', 'location': '120.458020,31.795102', 'tel': '0510-86371071;0510-86371381;13812117670', 'shopid': [], 'id': 'B01FE0JZS8'}, {'parent': [], 'address': '周庄镇龙山西路210号', 'distance': [], 'pname': '江苏省', 'importance': [], 'biz_ext': {'cost': [], 'rating': '3.7'}, 'biz_type': [], 'cityname': '无锡市', 'type': '汽车服务;汽车养护/装饰;汽车养护', 'photos': [{'title': [], 'url': 'http://store.is.autonavi.com/showpic/286174c2e376e2a419de0da4f2e1a8d2'}, {'title': [], 'url': 'http://store.is.autonavi.com/showpic/1bda91ced84ad32fb219c4fba6babbc5'}], 'typecode': '010400', 'shopinfo': '0', 'poiweight': [], 'childtype': [], 'adname': '江阴市', 'name': '有车有我·汽车专业美容(江阴周庄美丽狮店)', 'location': '120.408333,31.855795', 'tel': '13301522686', 'shopid': [], 'id': 'B0FFFE9CPT'}, {'parent': [], 'address': '华士红旗路24号', 'distance': [], 'pname': '江苏省', 'importance': [], 'biz_ext': {'cost': [], 'rating': '4.3'}, 'biz_type': [], 'cityname': '无锡市', 'type': '汽车维修;汽车维修;汽车维修', 'photos': [{'title': [], 'url': 'http://store.is.autonavi.com/showpic/90322855522e1bc8dbc19f41873e090f'}, {'title': [], 'url': 'http://store.is.autonavi.com/showpic/4ca39d5d7b2a53d6ff1af84515250f21'}], 'typecode': '030000', 'shopinfo': '0', 'poiweight': [], 'childtype': [], 'adname': '江阴市', 'name': '龙砂汽车装潢美容中心', 'location': '120.471044,31.844654', 'tel': '0510-86207984;13921216018', 'shopid': [], 'id': 'B0FFFA52HL'}], 'status': '1', 'info': 'OK'}\n",
"{'suggestion': {'keywords': [], 'cities': []}, 'count': '450', 'infocode': '10000', 'pois': [{'parent': [], 'address': '水岸新都名贤路20号', 'distance': [], 'pname': '江苏省', 'importance': [], 'biz_ext': {'cost': [], 'rating': '4.1'}, 'biz_type': [], 'cityname': '无锡市', 'type': '汽车服务;汽车养护/装饰;汽车养护', 'photos': [{'title': [], 'url': 'http://store.is.autonavi.com/showpic/8854c948e79eefb113ee56d469328eb4'}, {'title': [], 'url': 'http://store.is.autonavi.com/showpic/cd1be504eb40424c6044b3c9bd8967a5'}, {'title': [], 'url': 'http://store.is.autonavi.com/showpic/f970eed626a6f823644e90702d9dbf95'}], 'typecode': '010400', 'shopinfo': '1', 'poiweight': [], 'childtype': [], 'adname': '江阴市', 'name': '车爵仕汽车美容店', 'location': '120.313994,31.899522', 'tel': '15716165610', 'shopid': [], 'id': 'B0H2D1FADL'}, {'parent': [], 'address': '国民西路与福民路交叉口西北50米', 'distance': [], 'pname': '江苏省', 'importance': [], 'biz_ext': {'cost': [], 'rating': '4.4'}, 'biz_type': [], 'cityname': '无锡市', 'type': '汽车服务;汽车养护/装饰;汽车养护', 'photos': [{'title': [], 'url': 'http://store.is.autonavi.com/showpic/01d6eb4c6445282993515922b6e6eab4'}, {'title': [], 'url': 'http://store.is.autonavi.com/showpic/c4558d015879d0be2f6183b5bc52ca4b'}, {'title': [], 'url': 'http://store.is.autonavi.com/showpic/635a0f05c812fbf0499ef1551b45c45c'}], 'typecode': '010400', 'shopinfo': '1', 'poiweight': [], 'childtype': [], 'adname': '江阴市', 'name': '晋骑汽车美容装潢店', 'location': '120.547121,31.769044', 'tel': '18251784377;18552402555', 'shopid': [], 'id': 'B0FFK3H7UA'}, {'parent': [], 'address': '通富路121号(长江国际大门对面)', 'distance': [], 'pname': '江苏省', 'importance': [], 'biz_ext': {'cost': [], 'rating': '4.0'}, 'biz_type': [], 'cityname': '无锡市', 'type': '汽车服务;汽车养护/装饰;汽车养护', 'photos': [{'title': [], 'url': 'http://store.is.autonavi.com/showpic/1d09655601638cfcce4a12cd4b7637a6'}], 'typecode': '010400', 'shopinfo': '0', 'poiweight': [], 'childtype': [], 'adname': '江阴市', 'name': '通富汽车美容', 'location': '120.240310,31.908623', 'tel': '15961660732', 'shopid': [], 'id': 'B0FFF2H7GA'}, {'parent': [], 'address': '徐霞客镇北渚村南降201号', 'distance': [], 'pname': '江苏省', 'importance': [], 'biz_ext': {'cost': [], 'rating': '3.6'}, 'biz_type': [], 'cityname': '无锡市', 'type': '汽车服务;汽车养护/装饰;汽车养护', 'photos': [{'title': [], 'url': 'http://store.is.autonavi.com/showpic/ed1f88d7ce7af7ae4117f25c833dea81'}], 'typecode': '010400', 'shopinfo': '0', 'poiweight': [], 'childtype': [], 'adname': '江阴市', 'name': '兄弟汽车美容店', 'location': '120.288670,31.710770', 'tel': [], 'shopid': [], 'id': 'B0FFFTT68W'}, {'parent': [], 'address': '442省道与长房庄路交叉口西40米', 'distance': [], 'pname': '江苏省', 'importance': [], 'biz_ext': {'cost': [], 'rating': '3.6'}, 'biz_type': [], 'cityname': '无锡市', 'type': '汽车服务;汽车养护/装饰;汽车养护', 'photos': [{'title': [], 'url': 'https://store.is.autonavi.com/showpic/9f83775a1b012afedae779ad8cea10d3'}], 'typecode': '010400', 'shopinfo': '0', 'poiweight': [], 'childtype': [], 'adname': '江阴市', 'name': '众帮汽车美容', 'location': '120.559985,31.761775', 'tel': [], 'shopid': [], 'id': 'B0JAGUC95X'}, {'parent': [], 'address': '长泾镇环南路13号', 'distance': [], 'pname': '江苏省', 'importance': [], 'biz_ext': {'cost': [], 'rating': '4.0'}, 'biz_type': [], 'cityname': '无锡市', 'type': '汽车服务;汽车养护/装饰;汽车养护', 'photos': [{'title': [], 'url': 'http://store.is.autonavi.com/showpic/05aeb3dc94bef520650dc5856e5a9b18'}, {'title': [], 'url': 'http://store.is.autonavi.com/showpic/d704b51d1084aec95824cd9d649d5755'}, {'title': [], 'url': 'http://store.is.autonavi.com/showpic/eaa564770539f31601f55970fe6a256d'}], 'typecode': '010400', 'shopinfo': '1', 'poiweight': [], 'childtype': [], 'adname': '江阴市', 'name': '沃家汽车美容', 'location': '120.489814,31.743514', 'tel': '17394631600', 'shopid': [], 'id': 'B0JDYM02VT'}, {'parent': [], 'address': '宜兴市屺亭街道融达汽车城831号', 'distance': [], 'pname': '江苏省', 'importance': [], 'biz_ext': {'cost': [], 'rating': '4.0'}, 'biz_type': [], 'cityname': '无锡市', 'type': '汽车服务;汽车养护/装饰;汽车养护', 'photos': [{'title': [], 'url': 'http://store.is.autonavi.com/showpic/e2b8eeaa1c1eb779c50f29a0fac4a6bd'}, {'title': [], 'url': 'http://store.is.autonavi.com/showpic/47bd08e8a918d79f09989f466e2276cb'}], 'typecode': '010400', 'shopinfo': '1', 'poiweight': [], 'childtype': [], 'adname': '宜兴市', 'name': '宜兴市尼帕汽车贴膜旗舰店', 'location': '119.788101,31.382225', 'tel': '13706150342', 'shopid': [], 'id': 'B0KG3H7VVH'}, {'parent': [], 'address': '君巫路95号', 'distance': [], 'pname': '江苏省', 'importance': [], 'biz_ext': {'cost': [], 'rating': '3.8'}, 'biz_type': [], 'cityname': '无锡市', 'type': '汽车服务;汽车养护/装饰;汽车养护', 'photos': [{'title': [], 'url': 'http://store.is.autonavi.com/showpic/1c10b255a56c34b75dee496974164af4'}, {'title': [], 'url': 'http://store.is.autonavi.com/showpic/c752c2abedc44e1e19333cd9b495a386'}, {'title': [], 'url': 'http://store.is.autonavi.com/showpic/518e1231b4d192fba4f8de4cb2705fbd'}], 'typecode': '010400', 'shopinfo': '1', 'poiweight': [], 'childtype': [], 'adname': '江阴市', 'name': '澄江汽车美容', 'location': '120.267425,31.918435', 'tel': '15161654582;18961611066', 'shopid': [], 'id': 'B0FFKZ24HZ'}, {'parent': [], 'address': '华士镇勤丰路457号', 'distance': [], 'pname': '江苏省', 'importance': [], 'biz_ext': {'cost': [], 'rating': '3.8'}, 'biz_type': [], 'cityname': '无锡市', 'type': '汽车服务;汽车养护/装饰;汽车养护', 'photos': [{'title': [], 'url': 'http://store.is.autonavi.com/showpic/5cb1c16944d871e82653bda58dea0107'}, {'title': [], 'url': 'http://store.is.autonavi.com/showpic/233d1947a0052def0a398c39ea015687'}, {'title': [], 'url': 'http://store.is.autonavi.com/showpic/16f0bc76bba5b9509d3a7aaa53c55ac2'}], 'typecode': '010400', 'shopinfo': '0', 'poiweight': [], 'childtype': [], 'adname': '江阴市', 'name': '年年汽车美容', 'location': '120.463121,31.820539', 'tel': '13870379803', 'shopid': [], 'id': 'B0KG2ZQ3QQ'}, {'parent': [], 'address': '君巫路107号', 'distance': [], 'pname': '江苏省', 'importance': [], 'biz_ext': {'cost': [], 'rating': '3.8'}, 'biz_type': [], 'cityname': '无锡市', 'type': '汽车服务;汽车养护/装饰;汽车养护', 'photos': [{'title': [], 'url': 'http://store.is.autonavi.com/showpic/486c435b7eb11c77b80db86ade13b366'}, {'title': [], 'url': 'http://store.is.autonavi.com/showpic/e3ed691e7ea3d479fa156ed6dc0776e3'}], 'typecode': '010400', 'shopinfo': '0', 'poiweight': [], 'childtype': [], 'adname': '江阴市', 'name': '龙永汽车装潢美容', 'location': '120.267845,31.918648', 'tel': [], 'shopid': [], 'id': 'B01FE03CPR'}, {'parent': [], 'address': '周庄镇长寿路58号', 'distance': [], 'pname': '江苏省', 'importance': [], 'biz_ext': {'cost': [], 'rating': '4.1'}, 'biz_type': [], 'cityname': '无锡市', 'type': '汽车服务;汽车养护/装饰;汽车养护', 'photos': [{'title': [], 'url': 'http://store.is.autonavi.com/showpic/1251cbc04d4e0f019e4ac83ce9af69e9'}, {'title': [], 'url': 'http://store.is.autonavi.com/showpic/b9d58b217750372a418381d77a8e5fc3'}, {'title': [], 'url': 'http://store.is.autonavi.com/showpic/4d74064bd2db8e6d1fb61db8e036a6d1'}], 'typecode': '010400', 'shopinfo': '0', 'poiweight': [], 'childtype': [], 'adname': '江阴市', 'name': '飞驰汽车美容服务部(途虎养车店)', 'location': '120.373357,31.813545', 'tel': '13812103025', 'shopid': [], 'id': 'B0I6N7FEL9'}, {'parent': [], 'address': '青园路1-3号', 'distance': [], 'pname': '江苏省', 'importance': [], 'biz_ext': {'cost': [], 'rating': '3.6'}, 'biz_type': [], 'cityname': '无锡市', 'type': '汽车维修;汽车综合维修;汽车综合维修', 'photos': [{'title': [], 'url': 'http://store.is.autonavi.com/showpic/12b2b654baf62bd3347d27906e0aa855'}, {'title': [], 'url': 'http://store.is.autonavi.com/showpic/3b027621ea7c800a24ffaa746b43bc05'}], 'typecode': '030100', 'shopinfo': '1', 'poiweight': [], 'childtype': [], 'adname': '江阴市', 'name': '江阴市益通汽车装潢店', 'location': '120.252423,31.892693', 'tel': '13771602656', 'shopid': [], 'id': 'B0FFL9Y00S'}, {'parent': [], 'address': '张渚镇西环路161号', 'distance': [], 'pname': '江苏省', 'importance': [], 'biz_ext': {'cost': [], 'rating': '3.8'}, 'biz_type': [], 'cityname': '无锡市', 'type': '汽车服务;汽车养护/装饰;汽车养护', 'photos': [{'title': [], 'url': 'http://store.is.autonavi.com/showpic/164a26f6e3aed9dbc5a2a3ed6034e4ce'}, {'title': [], 'url': 'http://store.is.autonavi.com/showpic/47d5c624409ad973116063ae30870b14'}, {'title': [], 'url': 'http://store.is.autonavi.com/showpic/a2492ab504914623bbeffd603ecc9465'}], 'typecode': '010400', 'shopinfo': '0', 'poiweight': [], 'childtype': [], 'adname': '宜兴市', 'name': '通华汽车装潢美容', 'location': '119.627734,31.267202', 'tel': '13961572758', 'shopid': [], 'id': 'B0FFFA5C56'}, {'parent': [], 'address': '氿滨中路113号', 'distance': [], 'pname': '江苏省', 'importance': [], 'biz_ext': {'cost': [], 'rating': '4.5'}, 'biz_type': [], 'cityname': '无锡市', 'type': '汽车服务;汽车养护/装饰;汽车养护', 'photos': [{'title': [], 'url': 'http://store.is.autonavi.com/showpic/400b6ec983a0aefe16617f352fe3d4a6'}], 'typecode': '010400', 'shopinfo': '0', 'poiweight': [], 'childtype': [], 'adname': '宜兴市', 'name': '广州明华汽车装潢美容', 'location': '119.812998,31.360200', 'tel': '13584228211', 'shopid': [], 'id': 'B01FE0K9O3'}, {'parent': [], 'address': '大丁佳苑南区东1门旁(河埒口地铁站2号口步行290米)', 'distance': [], 'pname': '江苏省', 'importance': [], 'biz_ext': {'cost': [], 'rating': '4.1'}, 'biz_type': [], 'cityname': '无锡市', 'type': '汽车服务;汽车养护/装饰;汽车养护', 'photos': [{'title': [], 'url': 'https://aos-comment.amap.com/B0FFHNOSZO/headerImg/d849e29a4b263409bde203d2dfd12bf0_2048_2048_80.jpg'}, {'title': [], 'url': 'http://store.is.autonavi.com/showpic/6bd168117215be0eac8cc3ee95573af5'}], 'typecode': '010400', 'shopinfo': '0', 'poiweight': [], 'childtype': [], 'adname': '滨湖区', 'name': '润之洁汽车装饰', 'location': '120.260107,31.558779', 'tel': '15852809018', 'shopid': [], 'id': 'B0FFHNOSZO'}, {'parent': [], 'address': '周庄镇东大街40-1号', 'distance': [], 'pname': '江苏省', 'importance': [], 'biz_ext': {'cost': [], 'rating': '4.1'}, 'biz_type': [], 'cityname': '无锡市', 'type': '汽车服务;汽车养护/装饰;汽车养护', 'photos': [{'title': [], 'url': 'http://store.is.autonavi.com/showpic/a80b99ac047338f307436949cd305d7d'}, {'title': [], 'url': 'http://store.is.autonavi.com/showpic/0dae135c8c4c5feaaf7c0cc726804cd1'}, {'title': [], 'url': 'http://store.is.autonavi.com/showpic/e28609ab7d9661a16e43cd70032bcf4c'}], 'typecode': '010400', 'shopinfo': '1', 'poiweight': [], 'childtype': [], 'adname': '江阴市', 'name': '新车界汽车美容店', 'location': '120.420401,31.862087', 'tel': '18795642746', 'shopid': [], 'id': 'B0I3VUENGL'}, {'parent': [], 'address': '华士镇周庄长寿路394号', 'distance': [], 'pname': '江苏省', 'importance': [], 'biz_ext': {'cost': [], 'rating': '3.9'}, 'biz_type': [], 'cityname': '无锡市', 'type': '汽车服务;汽车养护/装饰;汽车养护', 'photos': [{'title': [], 'url': 'http://store.is.autonavi.com/showpic/bd24b6e66eb1d2e1c8759210f41f5a9f'}, {'title': [], 'url': 'http://store.is.autonavi.com/showpic/05fbc6061d842d62b178810681cfa406'}], 'typecode': '010400', 'shopinfo': '0', 'poiweight': [], 'childtype': [], 'adname': '江阴市', 'name': '徐良汽车美容装潢', 'location': '120.388314,31.807199', 'tel': '13812573427', 'shopid': [], 'id': 'B0FFHQMGHC'}, {'parent': [], 'address': '璜土镇谢家头1号', 'distance': [], 'pname': '江苏省', 'importance': [], 'biz_ext': {'cost': [], 'rating': '4.3'}, 'biz_type': [], 'cityname': '无锡市', 'type': '汽车服务;汽车养护/装饰;汽车养护', 'photos': [{'title': [], 'url': 'http://store.is.autonavi.com/showpic/c23e584ee3cbb1efa111219662e94b29'}], 'typecode': '010400', 'shopinfo': '0', 'poiweight': [], 'childtype': [], 'adname': '江阴市', 'name': '方方汽车美容中心', 'location': '119.999699,31.853303', 'tel': '15861629575', 'shopid': [], 'id': 'B0FFID9575'}, {'parent': [], 'address': '临港街道崇文路109号', 'distance': [], 'pname': '江苏省', 'importance': [], 'biz_ext': {'cost': [], 'rating': '4.3'}, 'biz_type': [], 'cityname': '无锡市', 'type': '汽车服务;汽车养护/装饰;汽车养护', 'photos': [{'title': [], 'url': 'http://store.is.autonavi.com/showpic/dfc9d15bb9be0925c1e9c42aa498127e'}, {'title': [], 'url': 'http://store.is.autonavi.com/showpic/3f6e7e9656e57ff1520f73f5bf57aff8'}], 'typecode': '010400', 'shopinfo': '0', 'poiweight': [], 'childtype': [], 'adname': '江阴市', 'name': '美车坊汽车养护中心(崇文路店)', 'location': '120.142436,31.891836', 'tel': '13621528210', 'shopid': [], 'id': 'B0FFFTW4CC'}, {'parent': [], 'address': '祝塘镇镇南东路2号', 'distance': [], 'pname': '江苏省', 'importance': [], 'biz_ext': {'cost': [], 'rating': '3.8'}, 'biz_type': [], 'cityname': '无锡市', 'type': '汽车服务;汽车养护/装饰;汽车养护', 'photos': [{'title': [], 'url': 'http://store.is.autonavi.com/showpic/9f20dba48a2e684ba744039b09da8905'}, {'title': [], 'url': 'http://store.is.autonavi.com/showpic/f911d4300ffdfd138277190836081345'}], 'typecode': '010400', 'shopinfo': '0', 'poiweight': [], 'childtype': [], 'adname': '江阴市', 'name': '汽车美容', 'location': '120.420994,31.760058', 'tel': '13812126825;15358068888', 'shopid': [], 'id': 'B0FFFP5VA2'}], 'status': '1', 'info': 'OK'}\n",
"{'suggestion': {'keywords': [], 'cities': []}, 'count': '450', 'infocode': '10000', 'pois': [{'parent': [], 'address': '茶花路58号', 'distance': [], 'pname': '江苏省', 'importance': [], 'biz_ext': {'cost': [], 'rating': '4.5'}, 'biz_type': [], 'cityname': '常州市', 'type': '汽车维修;汽车综合维修;汽车综合维修', 'photos': [{'title': [], 'url': 'http://store.is.autonavi.com/showpic/f30218fcf3b5d711bfd71970f435184f'}], 'typecode': '030100', 'shopinfo': '0', 'poiweight': [], 'childtype': [], 'adname': '钟楼区', 'name': '常州硕威汽车维修服务有限公司', 'location': '119.888600,31.775169', 'tel': '0519-85555056', 'shopid': [], 'id': 'B0FFG35N3O'}, {'parent': [], 'address': '湖塘镇高力汽博城C6-112/115', 'distance': [], 'pname': '江苏省', 'importance': [], 'biz_ext': {'cost': [], 'rating': '4.3'}, 'biz_type': [], 'cityname': '常州市', 'type': '汽车维修;汽车维修;汽车维修', 'photos': [{'title': [], 'url': 'http://store.is.autonavi.com/showpic/e13fa5585f66bd4691a923e216786d55'}, {'title': [], 'url': 'http://store.is.autonavi.com/showpic/915a4e90b7fc2fcd0039a91cb483f16e'}], 'typecode': '030000', 'shopinfo': '1', 'poiweight': [], 'childtype': [], 'adname': '武进区', 'name': '杰优汽车维修服务部', 'location': '119.974887,31.695383', 'tel': '13515271137', 'shopid': [], 'id': 'B0FFJOLAX5'}, {'parent': [], 'address': '建设南路观澜云庭1-24-25号', 'distance': [], 'pname': '江苏省', 'importance': [], 'biz_ext': {'cost': [], 'rating': '4.2'}, 'biz_type': [], 'cityname': '常州市', 'type': '汽车维修;汽车维修;汽车维修', 'photos': [{'title': [], 'url': 'http://store.is.autonavi.com/showpic/c565c1663cad0bbb224b54b4a5a734b5'}, {'title': [], 'url': 'http://store.is.autonavi.com/showpic/74fb9555a5b794dbb80c6df3103e056c'}, {'title': [], 'url': 'http://store.is.autonavi.com/showpic/86e4970a1809fb2530882b6d57ad07df'}], 'typecode': '030000', 'shopinfo': '1', 'poiweight': [], 'childtype': [], 'adname': '武进区', 'name': '常州开拓汽车维修服务部', 'location': '120.034483,31.694165', 'tel': '13685248891', 'shopid': [], 'id': 'B0FFH5ZCRY'}, {'parent': [], 'address': '武进区高新区南塘路口58号', 'distance': [], 'pname': '江苏省', 'importance': [], 'biz_ext': {'cost': [], 'rating': '3.7'}, 'biz_type': [], 'cityname': '常州市', 'type': '汽车维修;汽车维修;汽车维修', 'photos': [{'title': [], 'url': 'http://store.is.autonavi.com/showpic/9497f0c7463983e5928f87f2aecef659'}], 'typecode': '030000', 'shopinfo': '0', 'poiweight': [], 'childtype': [], 'adname': '武进区', 'name': '顺驰汽车维修服务部', 'location': '119.943200,31.632251', 'tel': '13706118657', 'shopid': [], 'id': 'B0FFGY7EW0'}, {'parent': [], 'address': '高力汽博城B06-102号', 'distance': [], 'pname': '江苏省', 'importance': [], 'biz_ext': {'cost': [], 'rating': '4.0'}, 'biz_type': [], 'cityname': '常州市', 'type': '汽车维修;汽车维修;汽车维修', 'photos': [{'title': [], 'url': 'http://store.is.autonavi.com/showpic/e6d8dec7f8033978a4ff0cf36e15282f'}, {'title': [], 'url': 'http://store.is.autonavi.com/showpic/41f7a8accae722e05f377954c9161e9b'}, {'title': [], 'url': 'http://store.is.autonavi.com/showpic/bc39bd6fa5e8a3e36af68522c7d4bad6'}], 'typecode': '030000', 'shopinfo': '1', 'poiweight': [], 'childtype': [], 'adname': '武进区', 'name': '武进区湖塘牛成汽车维修服务部', 'location': '119.973926,31.695318', 'tel': '18261178309', 'shopid': [], 'id': 'B0FFFWMBP8'}, {'parent': [], 'address': '武进汽车城C区10号', 'distance': [], 'pname': '江苏省', 'importance': [], 'biz_ext': {'cost': [], 'rating': '4.8'}, 'biz_type': [], 'cityname': '常州市', 'type': '汽车销售;通用特约销售;凯迪拉克销售|汽车维修;通用特约维修;凯迪拉克维修', 'photos': [{'title': [], 'url': 'https://aos-comment.amap.com/B020704KQZ/headerImg/content_media_external_images_media_155809_1661238934367_aaa8cf58.jpg'}, {'title': [], 'url': 'https://aos-comment.amap.com/B020704KQZ/headerImg/content_media_external_images_media_155807_1661238934368_a1277918.jpg'}, {'title': [], 'url': 'https://aos-comment.amap.com/B020704KQZ/comment/F8E74EC6_22EB_4F78_B341_AA34ACAD7E31_L0_001_1280_960_1732622981566_98252496.jpg'}], 'typecode': '020401|030501', 'shopinfo': '1', 'poiweight': [], 'childtype': [], 'adname': '武进区', 'name': '常州凯尊汽车销售服务有限公司', 'location': '119.964625,31.692314', 'tel': '0519-88888199;0519-88888698', 'shopid': [], 'id': 'B020704KQZ'}, {'parent': [], 'address': '隔湖西路2号', 'distance': [], 'pname': '江苏省', 'importance': [], 'biz_ext': {'cost': [], 'rating': '4.0'}, 'biz_type': [], 'cityname': '常州市', 'type': '汽车维修;汽车维修;汽车维修', 'photos': [{'title': [], 'url': 'http://store.is.autonavi.com/showpic/e89289681a5d0ea1378d23174700ca21'}], 'typecode': '030000', 'shopinfo': '1', 'poiweight': [], 'childtype': [], 'adname': '武进区', 'name': '聚车汇汽车维修服务部', 'location': '119.905419,31.690665', 'tel': '15136026568', 'shopid': [], 'id': 'B0G1DRJANN'}, {'parent': [], 'address': '湖塘镇夏城南路208号高力汽博城西门A4幢09-12号', 'distance': [], 'pname': '江苏省', 'importance': [], 'biz_ext': {'cost': [], 'rating': '4.0'}, 'biz_type': [], 'cityname': '常州市', 'type': '汽车维修;汽车维修;汽车维修', 'photos': [{'title': [], 'url': 'https://aos-comment.amap.com/B0HG5HAUC5/headerImg/20ecb43e33863aa4008306f18907b50d_2048_2048_80.jpg'}, {'title': [], 'url': 'http://store.is.autonavi.com/showpic/cc6ddec611e01bbb12346a7a0b1955ca'}], 'typecode': '030000', 'shopinfo': '0', 'poiweight': [], 'childtype': [], 'adname': '武进区', 'name': '百喆汽车维修服务部', 'location': '119.973021,31.695635', 'tel': '13775230534', 'shopid': [], 'id': 'B0HG5HAUC5'}, {'parent': [], 'address': '天山路5号', 'distance': [], 'pname': '江苏省', 'importance': [], 'biz_ext': {'cost': [], 'rating': '4.5'}, 'biz_type': [], 'cityname': '常州市', 'type': '汽车维修;汽车维修;汽车维修', 'photos': [{'title': [], 'url': 'http://store.is.autonavi.com/showpic/69f0607c17bb9b57e7d9355a31912cf9'}, {'title': [], 'url': 'http://store.is.autonavi.com/showpic/12adc2d49258132a8c16218593b1e81e'}, {'title': [], 'url': 'http://store.is.autonavi.com/showpic/ab00c097ed450d24185e2e28f1fe94ce'}], 'typecode': '030000', 'shopinfo': '1', 'poiweight': [], 'childtype': [], 'adname': '新北区', 'name': '常州万仁汽车维修服务有限公司', 'location': '119.941768,31.826710', 'tel': '15061969150', 'shopid': [], 'id': 'B0FFKZJQZ5'}, {'parent': [], 'address': '高力汽博城F06-102-103-106', 'distance': [], 'pname': '江苏省', 'importance': [], 'biz_ext': {'cost': [], 'rating': '4.5'}, 'biz_type': [], 'cityname': '常州市', 'type': '汽车服务;汽车养护/装饰;汽车养护|汽车维修;汽车维修;汽车维修', 'photos': [{'title': [], 'url': 'http://store.is.autonavi.com/showpic/af915196a1f6edf7c833c3abdab36cb1'}, {'title': [], 'url': 'http://store.is.autonavi.com/showpic/7f97c6dff8fad589cb62357c5a0e4d60'}, {'title': [], 'url': 'http://store.is.autonavi.com/showpic/f94b964ad8f691e8ee59093fe9ce95a8'}], 'typecode': '010400|030000', 'shopinfo': '1', 'poiweight': [], 'childtype': [], 'adname': '武进区', 'name': '常州金辉汽车维修服务有限公司', 'location': '119.974289,31.693567', 'tel': '16605281516', 'shopid': [], 'id': 'B0FFF9R7NU'}, {'parent': [], 'address': '湖塘镇鸣凰工业集中区春秋路37号', 'distance': [], 'pname': '江苏省', 'importance': [], 'biz_ext': {'cost': [], 'rating': '4.1'}, 'biz_type': [], 'cityname': '常州市', 'type': '汽车服务;汽车养护/装饰;汽车养护|汽车服务;洗车场;洗车场|汽车维修;汽车综合维修;汽车综合维修', 'photos': [{'title': [], 'url': 'http://aos-cdn-image.amap.com/sns/ugccomment/2df890d3-df28-48c8-af1c-74f10a2c167e.jpg'}, {'title': [], 'url': 'http://store.is.autonavi.com/showpic/949b5dfac7a60153c4840da1578f5519'}, {'title': [], 'url': 'http://store.is.autonavi.com/showpic/eafbba4aaf6bb604f40b445bbecd6e79'}], 'typecode': '010400|010500|030100', 'shopinfo': '0', 'poiweight': [], 'childtype': [], 'adname': '武进区', 'name': '工匠汽车维修服务中心', 'location': '119.915498,31.684199', 'tel': '13912324635', 'shopid': [], 'id': 'B0FFLKM3R7'}, {'parent': [], 'address': '晓柳花苑二期商铺b1室', 'distance': [], 'pname': '江苏省', 'importance': [], 'biz_ext': {'cost': [], 'rating': '3.8'}, 'biz_type': [], 'cityname': '常州市', 'type': '汽车维修;汽车维修;汽车维修', 'photos': [{'title': [], 'url': 'http://store.is.autonavi.com/showpic/fe547d3b6e8e031dea2ad4d7a02ff55b'}, {'title': [], 'url': 'http://store.is.autonavi.com/showpic/6e3dc1421ceb172aba29ae02b0a47b6e'}], 'typecode': '030000', 'shopinfo': '0', 'poiweight': [], 'childtype': [], 'adname': '武进区', 'name': '奥众汽车维修服务部', 'location': '119.926905,31.689303', 'tel': '13912342575', 'shopid': [], 'id': 'B0H1OCR5PR'}, {'parent': [], 'address': '广电西路183号', 'distance': [], 'pname': '江苏省', 'importance': [], 'biz_ext': {'cost': [], 'rating': '3.5'}, 'biz_type': [], 'cityname': '常州市', 'type': '汽车维修;汽车维修;汽车维修', 'photos': [{'title': [], 'url': 'http://store.is.autonavi.com/showpic/7f82e238fc60e2811b167ebd8089f9bb'}], 'typecode': '030000', 'shopinfo': '0', 'poiweight': [], 'childtype': [], 'adname': '武进区', 'name': '傅世通汽车维修服务部', 'location': '119.969002,31.712063', 'tel': [], 'shopid': [], 'id': 'B0H2KXETA1'}, {'parent': [], 'address': '河海西路193号', 'distance': [], 'pname': '江苏省', 'importance': [], 'biz_ext': {'cost': [], 'rating': '4.3'}, 'biz_type': [], 'cityname': '常州市', 'type': '汽车维修;汽车综合维修;汽车综合维修', 'photos': [{'title': [], 'url': 'http://store.is.autonavi.com/showpic/c1b538e66a5c3b8b03c9d3467eb32765'}], 'typecode': '030100', 'shopinfo': '1', 'poiweight': [], 'childtype': [], 'adname': '新北区', 'name': '常州市迅驰汽车维修有限公司', 'location': '119.937954,31.831873', 'tel': '0519-85138303;13813566075', 'shopid': [], 'id': 'B0FFLCM9QY'}, {'parent': [], 'address': '淹城路与武南路交汇处', 'distance': [], 'pname': '江苏省', 'importance': [], 'biz_ext': {'cost': [], 'rating': '4.5'}, 'biz_type': [], 'cityname': '常州市', 'type': '汽车维修;汽车综合维修;汽车综合维修|汽车服务;汽车养护/装饰;汽车养护', 'photos': [{'title': [], 'url': 'http://store.is.autonavi.com/showpic/65ff23622dd1e516861ac8a5f3abf45b'}, {'title': [], 'url': 'http://store.is.autonavi.com/showpic/782094e8a844772b225d82238d097bf7'}, {'title': [], 'url': 'http://store.is.autonavi.com/showpic/68ed33f250725530c0a37178798544d3'}], 'typecode': '030100|010400', 'shopinfo': '0', 'poiweight': [], 'childtype': [], 'adname': '武进区', 'name': '常州常舜汽车维修服务有限公司', 'location': '119.909303,31.675526', 'tel': '13861061728', 'shopid': [], 'id': 'B0FFGCU793'}, {'parent': [], 'address': '邹傅路51号', 'distance': [], 'pname': '江苏省', 'importance': [], 'biz_ext': {'cost': [], 'rating': '4.5'}, 'biz_type': [], 'cityname': '常州市', 'type': '汽车维修;汽车维修;汽车维修', 'photos': [{'title': [], 'url': 'http://store.is.autonavi.com/showpic/880a6f9fc7af1d4735e90e6077d82c20'}, {'title': [], 'url': 'http://store.is.autonavi.com/showpic/4cb10e7846118a5185cfa020e19f21da'}, {'title': [], 'url': 'http://store.is.autonavi.com/showpic/7b7c07e5cddad68c79676de6fe839241'}], 'typecode': '030000', 'shopinfo': '1', 'poiweight': [], 'childtype': [], 'adname': '钟楼区', 'name': '常州市合金动力汽车维修服务有限公司', 'location': '119.887040,31.770705', 'tel': '18932388111', 'shopid': [], 'id': 'B0JB4H3Z8A'}, {'parent': [], 'address': '星德路(常州市出租汽车服务中心)', 'distance': [], 'pname': '江苏省', 'importance': [], 'biz_ext': {'cost': [], 'rating': '4.7'}, 'biz_type': [], 'cityname': '常州市', 'type': '汽车维修;汽车维修;汽车维修', 'photos': [{'title': [], 'url': 'http://store.is.autonavi.com/showpic/7eac4c20b443a9135f940d9b8ba5192c'}, {'title': [], 'url': 'http://store.is.autonavi.com/showpic/bb1da3b0b15f762b22c6848a3129f0be'}, {'title': [], 'url': 'http://store.is.autonavi.com/showpic/8a3609ea500f91c51f6ae7398fdde750'}], 'typecode': '030000', 'shopinfo': '1', 'poiweight': [], 'childtype': [], 'adname': '钟楼区', 'name': '常州万吉汽车维修有限公司', 'location': '119.931817,31.780332', 'tel': '0519-88867008', 'shopid': [], 'id': 'B0FFGZJBXT'}, {'parent': [], 'address': '华润·凯旋门一期南门旁', 'distance': [], 'pname': '江苏省', 'importance': [], 'biz_ext': {'cost': [], 'rating': '3.9'}, 'biz_type': [], 'cityname': '常州市', 'type': '汽车维修;汽车维修;汽车维修', 'photos': [{'title': [], 'url': 'http://store.is.autonavi.com/showpic/dab91667acd8edefc5afd1c6c345a01c'}], 'typecode': '030000', 'shopinfo': '0', 'poiweight': [], 'childtype': [], 'adname': '天宁区', 'name': '万钧汽修服务部', 'location': '119.961210,31.746841', 'tel': [], 'shopid': [], 'id': 'B0K3F6HTIZ'}, {'parent': [], 'address': '礼嘉镇礼毛路77号', 'distance': [], 'pname': '江苏省', 'importance': [], 'biz_ext': {'cost': [], 'rating': '4.0'}, 'biz_type': [], 'cityname': '常州市', 'type': '汽车维修;汽车维修;汽车维修', 'photos': [{'title': [], 'url': 'http://store.is.autonavi.com/showpic/c1bd1c12b44ff89899ea0e832bb1b02e'}, {'title': [], 'url': 'http://store.is.autonavi.com/showpic/60f716228146575f66231c781699116f'}, {'title': [], 'url': 'http://store.is.autonavi.com/showpic/93bd0c207eb160a2af2d3c3d8cdbec4a'}], 'typecode': '030000', 'shopinfo': '1', 'poiweight': [], 'childtype': [], 'adname': '武进区', 'name': '赛同汽车维修服务部', 'location': '120.024799,31.621249', 'tel': '13401657647', 'shopid': [], 'id': 'B0FFL4MPUS'}, {'parent': [], 'address': '和平国际花园1之1-2', 'distance': [], 'pname': '江苏省', 'importance': [], 'biz_ext': {'cost': [], 'rating': '4.4'}, 'biz_type': [], 'cityname': '常州市', 'type': '汽车服务;汽车服务相关;汽车服务相关|汽车维修;汽车维修;汽车维修', 'photos': [{'title': [], 'url': 'http://store.is.autonavi.com/showpic/11ed2c4daf30f5f0224697e3d80a55fa'}, {'title': [], 'url': 'http://store.is.autonavi.com/showpic/5e7c8c52066e8c4dc0024fa8aaa6e6ba'}, {'title': [], 'url': 'http://store.is.autonavi.com/showpic/9c80f172e13fad7d75dd881b9888c418'}], 'typecode': '010000|030000', 'shopinfo': '0', 'poiweight': [], 'childtype': [], 'adname': '天宁区', 'name': '鼎发汽车维修服务中心(天宁店)', 'location': '119.964487,31.750940', 'tel': '0519-85262779;13270935958', 'shopid': [], 'id': 'B0FFF9QGOM'}], 'status': '1', 'info': 'OK'}\n",
"{'suggestion': {'keywords': [], 'cities': []}, 'count': '450', 'infocode': '10000', 'pois': [{'parent': [], 'address': '金三角北路吴家塘村38号', 'distance': [], 'pname': '江苏省', 'importance': [], 'biz_ext': {'cost': [], 'rating': '4.4'}, 'biz_type': [], 'cityname': '常州市', 'type': '汽车维修;汽车维修;汽车维修', 'photos': [{'title': [], 'url': 'http://store.is.autonavi.com/showpic/d12cec2b2312e4b3a01e4c0522d402da'}, {'title': [], 'url': 'http://store.is.autonavi.com/showpic/3017ce8ec04858a1a07f8ffbd32f0c62'}, {'title': [], 'url': 'http://store.is.autonavi.com/showpic/df74421255310a03afbcef9ff594ce91'}], 'typecode': '030000', 'shopinfo': '0', 'poiweight': [], 'childtype': [], 'adname': '武进区', 'name': '鼎成汽车维修服务部', 'location': '119.978020,31.520733', 'tel': [], 'shopid': [], 'id': 'B0K3LL53IB'}, {'parent': [], 'address': '湖塘镇高力汽配城G3-101-104', 'distance': [], 'pname': '江苏省', 'importance': [], 'biz_ext': {'cost': [], 'rating': '4.0'}, 'biz_type': [], 'cityname': '常州市', 'type': '汽车维修;汽车维修;汽车维修', 'photos': [{'title': [], 'url': 'http://store.is.autonavi.com/showpic/9a391471a34d455d065ad427c520e621'}, {'title': [], 'url': 'http://store.is.autonavi.com/showpic/40ad7dabc5149e77eb2a73f3fbfd6ff9'}, {'title': [], 'url': 'https://aos-comment.amap.com/B0HGZ5442X/comment/content_media_external_images_media_232018_1717406055547_cd447f21.jpg'}], 'typecode': '030000', 'shopinfo': '1', 'poiweight': [], 'childtype': [], 'adname': '武进区', 'name': '宏越汽车维修服务部', 'location': '119.975071,31.693209', 'tel': '13656146366;15161142189', 'shopid': [], 'id': 'B0HGZ5442X'}, {'parent': [], 'address': '夏城中路214号高丽汽配城C08号楼', 'distance': [], 'pname': '江苏省', 'importance': [], 'biz_ext': {'cost': [], 'rating': '4.0'}, 'biz_type': [], 'cityname': '常州市', 'type': '汽车维修;汽车维修;汽车维修', 'photos': [{'title': [], 'url': 'http://store.is.autonavi.com/showpic/acc7ef503239722a26efea25787eb70c'}], 'typecode': '030000', 'shopinfo': '0', 'poiweight': [], 'childtype': [], 'adname': '武进区', 'name': '致腾汽车维修服务部', 'location': '119.974395,31.695384', 'tel': '13511667661', 'shopid': [], 'id': 'B0FFJDS3LA'}, {'parent': [], 'address': '湖塘镇高力汽配城B03-112号', 'distance': [], 'pname': '江苏省', 'importance': [], 'biz_ext': {'cost': [], 'rating': '4.3'}, 'biz_type': [], 'cityname': '常州市', 'type': '汽车维修;汽车维修;汽车维修', 'photos': [{'title': [], 'url': 'http://store.is.autonavi.com/showpic/a88a938abb6cff5f95406d8a35bfa32f'}, {'title': [], 'url': 'http://store.is.autonavi.com/showpic/9d2981fb6ce86fb1f3e59651835c2bb2'}], 'typecode': '030000', 'shopinfo': '1', 'poiweight': [], 'childtype': [], 'adname': '武进区', 'name': '龙捷汽车维修服务部', 'location': '119.973526,31.695970', 'tel': '15961474389;18915876077', 'shopid': [], 'id': 'B0FFI6YL2H'}, {'parent': [], 'address': '横山桥镇领秀江南花苑36号', 'distance': [], 'pname': '江苏省', 'importance': [], 'biz_ext': {'cost': [], 'rating': '4.4'}, 'biz_type': [], 'cityname': '常州市', 'type': '汽车维修;汽车综合维修;汽车综合维修', 'photos': [{'title': [], 'url': 'http://store.is.autonavi.com/showpic/73e35928e7e10915cc8aea0c81c37162'}], 'typecode': '030100', 'shopinfo': '0', 'poiweight': [], 'childtype': [], 'adname': '武进区', 'name': '赛越汽车维修服务部', 'location': '120.093895,31.761824', 'tel': '13407569677', 'shopid': [], 'id': 'B0FFHBHCXK'}, {'parent': [], 'address': '龙城大道602号', 'distance': [], 'pname': '江苏省', 'importance': [], 'biz_ext': {'cost': [], 'rating': '4.6'}, 'biz_type': [], 'cityname': '常州市', 'type': '汽车维修;汽车维修;汽车维修', 'photos': [{'title': [], 'url': 'http://store.is.autonavi.com/showpic/97ffa7b220ef77eee17201da0b909203'}, {'title': [], 'url': 'http://store.is.autonavi.com/showpic/efc130e9213572847c77c69925b24221'}], 'typecode': '030000', 'shopinfo': '0', 'poiweight': [], 'childtype': [], 'adname': '天宁区', 'name': '常州市平安汽车维修有限公司', 'location': '120.004623,31.782329', 'tel': '0519-85332792;0519-85508188;18912310222', 'shopid': [], 'id': 'B0FFHLTJ7Y'}, {'parent': [], 'address': '海湖路99号', 'distance': [], 'pname': '江苏省', 'importance': [], 'biz_ext': {'cost': [], 'rating': '4.9'}, 'biz_type': [], 'cityname': '常州市', 'type': '汽车销售;梅赛德斯-奔驰特约销售;梅赛德斯-奔驰销售|汽车维修;梅赛德斯-奔驰特约维修;梅赛德斯-奔驰维修', 'photos': [{'title': [], 'url': 'https://aos-comment.amap.com/B0J3R714OZ/comment/68d2d12400eb5d68eb82472492f30651_2048_2048_80.jpg'}, {'title': [], 'url': 'http://store.is.autonavi.com/showpic/0e479cc0862ae6b42b24921303736519'}, {'title': [], 'url': 'http://store.is.autonavi.com/showpic/57a91f9d5d0a21ba617917b9260d0b8c'}], 'typecode': '020900|031000', 'shopinfo': '0', 'poiweight': [], 'childtype': [], 'adname': '武进区', 'name': '常州万帮汽车销售服务有限公司', 'location': '119.960270,31.655579', 'tel': '0519-86596888', 'shopid': [], 'id': 'B0J3R714OZ'}, {'parent': [], 'address': '金桂美庐1之2-4', 'distance': [], 'pname': '江苏省', 'importance': [], 'biz_ext': {'cost': [], 'rating': '3.7'}, 'biz_type': [], 'cityname': '常州市', 'type': '汽车维修;汽车综合维修;汽车综合维修|汽车服务;汽车服务相关;汽车服务相关', 'photos': [{'title': [], 'url': 'http://store.is.autonavi.com/showpic/9d5f432c915af0f4451ad12bafe177c1'}], 'typecode': '030100|010000', 'shopinfo': '0', 'poiweight': [], 'childtype': [], 'adname': '金坛区', 'name': '德工汽车维修服务中心', 'location': '119.556142,31.743608', 'tel': '18901490123', 'shopid': [], 'id': 'B0FFH2FFA3'}, {'parent': [], 'address': '华山中路21号', 'distance': [], 'pname': '江苏省', 'importance': [], 'biz_ext': {'cost': [], 'rating': '4.2'}, 'biz_type': [], 'cityname': '常州市', 'type': '汽车维修;汽车维修;汽车维修', 'photos': [{'title': [], 'url': 'http://store.is.autonavi.com/showpic/e7395eac912456e016abe2be2b71f456'}, {'title': [], 'url': 'http://store.is.autonavi.com/showpic/0397a6cabaa380ef1d01ce2cdf04ff4d'}, {'title': [], 'url': 'http://store.is.autonavi.com/showpic/4023fe4392730c466f6f37ee186a9601'}], 'typecode': '030000', 'shopinfo': '0', 'poiweight': [], 'childtype': [], 'adname': '新北区', 'name': '常州巴音布鲁汽车维修服务有限公司', 'location': '119.951075,31.822002', 'tel': [], 'shopid': [], 'id': 'B0KGOZ9K6W'}, {'parent': [], 'address': '常州朱迪橡塑机械有限公司南门旁', 'distance': [], 'pname': '江苏省', 'importance': [], 'biz_ext': {'cost': [], 'rating': '4.1'}, 'biz_type': [], 'cityname': '常州市', 'type': '汽车维修;汽车维修;汽车维修', 'photos': [{'title': [], 'url': 'http://store.is.autonavi.com/showpic/b1b86ab7b0d4cfdce72e241402c1209e'}], 'typecode': '030000', 'shopinfo': '0', 'poiweight': [], 'childtype': [], 'adname': '武进区', 'name': '常州市致胜汽车维修服务有限公司', 'location': '119.925342,31.683455', 'tel': '0519-83335886;18306119653', 'shopid': [], 'id': 'B0FFIEBSET'}, {'parent': [], 'address': '湖塘镇滆湖东路63号', 'distance': [], 'pname': '江苏省', 'importance': [], 'biz_ext': {'cost': [], 'rating': '4.5'}, 'biz_type': [], 'cityname': '常州市', 'type': '汽车维修;汽车综合维修;汽车综合维修', 'photos': [{'title': [], 'url': 'http://store.is.autonavi.com/showpic/8eaa3b161a035feb28e514f1b92aaa44'}, {'title': [], 'url': 'http://store.is.autonavi.com/showpic/c83e3dd89cc1d9e09189946daa70d1cf'}, {'title': [], 'url': 'https://aos-comment.amap.com/B0FFIR16GW/comment/%5B2025-03-22-21-30-41%5DD0C3F773-9F79-4D0F-9F0D-DBE357A632B_1742650242175_79018147.jpg'}], 'typecode': '030100', 'shopinfo': '0', 'poiweight': [], 'childtype': [], 'adname': '武进区', 'name': '常州市洛威尔汽车维修服务有限公司', 'location': '119.997666,31.685209', 'tel': '0519-88822233;13861000228', 'shopid': [], 'id': 'B0FFIR16GW'}, {'parent': [], 'address': '道运河路228号', 'distance': [], 'pname': '江苏省', 'importance': [], 'biz_ext': {'cost': [], 'rating': '4.0'}, 'biz_type': [], 'cityname': '常州市', 'type': '汽车维修;汽车综合维修;汽车综合维修', 'photos': [{'title': [], 'url': 'http://aos-cdn-image.amap.com/sns/ugccomment/b062b7da-f268-4288-8ab5-cb0494c27acd.jpg'}, {'title': [], 'url': 'http://aos-cdn-image.amap.com/sns/ugccomment/b297d449-42bc-413b-b920-8a2b03d38500.jpg'}, {'title': [], 'url': 'http://store.is.autonavi.com/showpic/d60a215ec1f283f35f3606a422ce70ce'}], 'typecode': '030100', 'shopinfo': '1', 'poiweight': [], 'childtype': [], 'adname': '钟楼区', 'name': '羽震汽车维修服务中心', 'location': '119.894792,31.813333', 'tel': '13186686797', 'shopid': [], 'id': 'B02070TPH5'}, {'parent': [], 'address': '皱区镇宋家村70号', 'distance': [], 'pname': '江苏省', 'importance': [], 'biz_ext': {'cost': [], 'rating': '4.5'}, 'biz_type': [], 'cityname': '常州市', 'type': '汽车维修;货车维修;货车维修', 'photos': [{'title': [], 'url': 'http://store.is.autonavi.com/showpic/d3914db5955aa05497d432979eaae5db'}, {'title': [], 'url': 'http://store.is.autonavi.com/showpic/cbc26ae8b86f8cf1ef3b741b83c3cd6b'}, {'title': [], 'url': 'http://store.is.autonavi.com/showpic/09cb69b84d20a14c4a81d4561e65f3da'}], 'typecode': '035000', 'shopinfo': '1', 'poiweight': [], 'childtype': [], 'adname': '钟楼区', 'name': '常州市常众汽车维修服务有限公司', 'location': '119.827427,31.806665', 'tel': [], 'shopid': [], 'id': 'B0HKY5XH4I'}, {'parent': [], 'address': '甘棠桥西北', 'distance': [], 'pname': '江苏省', 'importance': [], 'biz_ext': {'cost': [], 'rating': '4.3'}, 'biz_type': [], 'cityname': '常州市', 'type': '汽车维修;汽车维修;汽车维修', 'photos': [{'title': [], 'url': 'http://store.is.autonavi.com/showpic/a934ded2eac31729b3e667a2921931e1'}], 'typecode': '030000', 'shopinfo': '0', 'poiweight': [], 'childtype': [], 'adname': '武进区', 'name': '鼎沃汽车维修服务部', 'location': '119.998297,31.633188', 'tel': '15251912983', 'shopid': [], 'id': 'B0GDT4XCX5'}, {'parent': [], 'address': '湖塘镇广电西路183号', 'distance': [], 'pname': '江苏省', 'importance': [], 'biz_ext': {'cost': [], 'rating': '4.0'}, 'biz_type': [], 'cityname': '常州市', 'type': '汽车维修;汽车维修;汽车维修', 'photos': [{'title': [], 'url': 'http://store.is.autonavi.com/showpic/5e2e5209b1e4955eef11f43f89f6d9d4'}, {'title': [], 'url': 'http://store.is.autonavi.com/showpic/3ca97489aa044db2fe4d852f7f98b771'}, {'title': [], 'url': 'http://store.is.autonavi.com/showpic/bfa1678b10ff664c776c6d0592199a32'}], 'typecode': '030000', 'shopinfo': '1', 'poiweight': [], 'childtype': [], 'adname': '武进区', 'name': '佰世通汽车维修服务部', 'location': '119.968921,31.712071', 'tel': '13961120515', 'shopid': [], 'id': 'B0FFGYOP7N'}, {'parent': [], 'address': '中吴大道吴家庄42号', 'distance': [], 'pname': '江苏省', 'importance': [], 'biz_ext': {'cost': [], 'rating': '3.8'}, 'biz_type': [], 'cityname': '常州市', 'type': '汽车维修;汽车维修;汽车维修', 'photos': [{'title': [], 'url': 'http://store.is.autonavi.com/showpic/a1e4aa047945517c4519090090500d48'}, {'title': [], 'url': 'http://store.is.autonavi.com/showpic/99da255531db33a62584af06b7be16c4'}, {'title': [], 'url': 'http://store.is.autonavi.com/showpic/dc3691d0b74e1f339ebcbb861db8daaf'}], 'typecode': '030000', 'shopinfo': '1', 'poiweight': [], 'childtype': [], 'adname': '天宁区', 'name': '晟宇汽车维修服务部', 'location': '119.941900,31.753318', 'tel': '13606120087', 'shopid': [], 'id': 'B0GDRK9TIO'}, {'parent': [], 'address': '学府东苑北门西250米', 'distance': [], 'pname': '江苏省', 'importance': [], 'biz_ext': {'cost': [], 'rating': '4.5'}, 'biz_type': [], 'cityname': '常州市', 'type': '汽车维修;汽车综合维修;汽车综合维修', 'photos': [{'title': [], 'url': 'http://store.is.autonavi.com/showpic/f821f7892e3fbae92d9cfcfa19d2fa43'}, {'title': [], 'url': 'http://store.is.autonavi.com/showpic/525ce73da58f45b3a501387833bcc5f4'}, {'title': [], 'url': 'http://store.is.autonavi.com/showpic/c6b8c320057e885cbff956d8bba8cfbd'}], 'typecode': '030100', 'shopinfo': '0', 'poiweight': [], 'childtype': [], 'adname': '武进区', 'name': '凯胜行汽车维修服务有限公司', 'location': '119.969401,31.675462', 'tel': '13775055793', 'shopid': [], 'id': 'B0FFI0WDF0'}, {'parent': [], 'address': '聚湖东路夏城花园21幢19号', 'distance': [], 'pname': '江苏省', 'importance': [], 'biz_ext': {'cost': [], 'rating': '4.1'}, 'biz_type': [], 'cityname': '常州市', 'type': '汽车维修;汽车综合维修;汽车综合维修', 'photos': [{'title': [], 'url': 'http://store.is.autonavi.com/showpic/8095070ae0e629724187f10a8be21422'}, {'title': [], 'url': 'http://store.is.autonavi.com/showpic/37aac35617025aa4e785677bebf72469'}, {'title': [], 'url': 'http://store.is.autonavi.com/showpic/98e8c148ed2226dd99ad3b38c3c26d90'}], 'typecode': '030100', 'shopinfo': '0', 'poiweight': [], 'childtype': [], 'adname': '武进区', 'name': '耀博汽车维修服务中心', 'location': '119.974955,31.732501', 'tel': '15151938062', 'shopid': [], 'id': 'B0FFLFPZG2'}, {'parent': [], 'address': '嘉泽镇满墩村委满墩村32号', 'distance': [], 'pname': '江苏省', 'importance': [], 'biz_ext': {'cost': [], 'rating': '3.8'}, 'biz_type': [], 'cityname': '常州市', 'type': '汽车维修;汽车维修;汽车维修', 'photos': [{'title': [], 'url': 'http://store.is.autonavi.com/showpic/1a7f559a8e4051a4daa68202091adeff'}, {'title': [], 'url': 'https://aos-comment.amap.com/B020702K6X/comment/1FEC2137_815F_4CB9_B62A_7FDD24D0F516_L0_001_2000_150_1748515420436_93713317.jpg'}], 'typecode': '030000', 'shopinfo': '0', 'poiweight': [], 'childtype': [], 'adname': '武进区', 'name': '常州超拓汽车维修服务中心', 'location': '119.792792,31.719809', 'tel': '0519-83686876;13861251385', 'shopid': [], 'id': 'B020702K6X'}, {'parent': [], 'address': '湖塘镇大巷塘门工业园', 'distance': [], 'pname': '江苏省', 'importance': [], 'biz_ext': {'cost': [], 'rating': '4.5'}, 'biz_type': [], 'cityname': '常州市', 'type': '汽车维修;汽车综合维修;汽车综合维修', 'photos': [{'title': [], 'url': 'http://store.is.autonavi.com/showpic/d8c6f3e6f1d12060800c7437c6a058f8'}, {'title': [], 'url': 'http://store.is.autonavi.com/showpic/c22fa274128018a4bd5c3b39ec6ae13c'}], 'typecode': '030100', 'shopinfo': '1', 'poiweight': [], 'childtype': [], 'adname': '武进区', 'name': '常州百顺汽车维修服务有限公司', 'location': '119.977781,31.698973', 'tel': '13646123175', 'shopid': [], 'id': 'B0FFGYOY2A'}], 'status': '1', 'info': 'OK'}\n",
"{'suggestion': {'keywords': [], 'cities': []}, 'count': '450', 'infocode': '10000', 'pois': [{'parent': [], 'address': '防邕路141号', 'distance': [], 'pname': '广西壮族自治区', 'importance': [], 'biz_ext': {'cost': [], 'rating': '4.0'}, 'biz_type': [], 'cityname': '防城港市', 'type': '汽车维修;汽车维修;汽车维修', 'photos': [{'title': [], 'url': 'http://store.is.autonavi.com/showpic/a37f3917a7c409f9753c3b65374e087f'}], 'typecode': '030000', 'shopinfo': '0', 'poiweight': [], 'childtype': [], 'adname': '防城区', 'name': '防城港市防城区鸿凯汽车维护服务部', 'location': '108.355684,21.771844', 'tel': [], 'shopid': [], 'id': 'B0IRZR5ML3'}, {'parent': [], 'address': '珍珠大道399号', 'distance': [], 'pname': '广西壮族自治区', 'importance': [], 'biz_ext': {'cost': [], 'rating': '3.8'}, 'biz_type': [], 'cityname': '防城港市', 'type': '汽车销售;汽车销售;汽车销售', 'photos': [{'title': [], 'url': 'http://store.is.autonavi.com/showpic/fc8fd3d71664661c3adeda9e606f0632'}, {'title': [], 'url': 'http://store.is.autonavi.com/showpic/138a40779b0f64ea87bd05b1ca86f36c'}, {'title': [], 'url': 'http://store.is.autonavi.com/showpic/cc130219a588fd61403598325341c9ce'}], 'typecode': '020000', 'shopinfo': '0', 'poiweight': [], 'childtype': [], 'adname': '防城区', 'name': '奇瑞icar·防城康华体验中心', 'location': '108.385555,21.782947', 'tel': [], 'shopid': [], 'id': 'B0KGB51K50'}, {'parent': [], 'address': '中新路41号', 'distance': [], 'pname': '广西壮族自治区', 'importance': [], 'biz_ext': {'cost': [], 'rating': '4.0'}, 'biz_type': [], 'cityname': '防城港市', 'type': '汽车服务;汽车养护/装饰;汽车养护', 'photos': [{'title': [], 'url': 'http://store.is.autonavi.com/showpic/561f5ccea31036e03dd4f56f'}, {'title': [], 'url': 'http://store.is.autonavi.com/showpic/2f967a5d0e5b493f1896003ad74ba21f'}, {'title': [], 'url': 'http://store.is.autonavi.com/showpic/561f5cffa31036e03dd4fa06'}], 'typecode': '010400', 'shopinfo': '0', 'poiweight': [], 'childtype': [], 'adname': '防城区', 'name': '廖晨汽车美容维护服务中心', 'location': '108.365957,21.759113', 'tel': '13977088430', 'shopid': [], 'id': 'B03020M3TJ'}, {'parent': [], 'address': '亿隆机动车检测有限公司南侧120米', 'distance': [], 'pname': '广西壮族自治区', 'importance': [], 'biz_ext': {'cost': [], 'rating': '4.0'}, 'biz_type': [], 'cityname': '防城港市', 'type': '汽车销售;汽车销售;汽车销售', 'photos': [], 'typecode': '020000', 'shopinfo': '0', 'poiweight': [], 'childtype': [], 'adname': '防城区', 'name': 'iCAR防城港千友服务中心', 'location': '108.385139,21.789708', 'tel': [], 'shopid': [], 'id': 'B0LGK1O366'}, {'parent': [], 'address': '西湾大道81号', 'distance': [], 'pname': '广西壮族自治区', 'importance': [], 'biz_ext': {'cost': [], 'rating': '4.2'}, 'biz_type': [], 'cityname': '防城港市', 'type': '汽车维修;汽车维修;汽车维修', 'photos': [{'title': [], 'url': 'http://store.is.autonavi.com/showpic/0587c6bd082776db3b02c54f8ced6a5b'}, {'title': [], 'url': 'http://store.is.autonavi.com/showpic/79012400db06d1e07a760827eab2959e'}, {'title': [], 'url': 'http://store.is.autonavi.com/showpic/3c9472b4c817769a20de4d94b4e70070'}], 'typecode': '030000', 'shopinfo': '0', 'poiweight': [], 'childtype': [], 'adname': '港口区', 'name': '艺盛汽车维修美容服务部', 'location': '108.362524,21.681467', 'tel': [], 'shopid': [], 'id': 'B0J17AGHNL'}, {'parent': [], 'address': '防东公路公司生活区旁', 'distance': [], 'pname': '广西壮族自治区', 'importance': [], 'biz_ext': {'cost': [], 'rating': '4.3'}, 'biz_type': [], 'cityname': '防城港市', 'type': '汽车服务;汽车养护/装饰;汽车养护', 'photos': [{'title': [], 'url': 'http://store.is.autonavi.com/showpic/7f7fa4545747da9c65ac78a46cafc0f6'}], 'typecode': '010400', 'shopinfo': '1', 'poiweight': [], 'childtype': [], 'adname': '防城区', 'name': '防城港市防城区车聚地汽车美容店', 'location': '108.356775,21.753075', 'tel': '13558009231;18377008881', 'shopid': [], 'id': 'B0K3PMWWRM'}, {'parent': [], 'address': '冲稔小学东北侧180米', 'distance': [], 'pname': '广西壮族自治区', 'importance': [], 'biz_ext': {'cost': [], 'rating': '3.6'}, 'biz_type': [], 'cityname': '防城港市', 'type': '汽车服务;汽车养护/装饰;汽车养护', 'photos': [{'title': [], 'url': 'http://store.is.autonavi.com/showpic/8ec2dfad33b4648d8ffb4e97cc8b76d6'}], 'typecode': '010400', 'shopinfo': '0', 'poiweight': [], 'childtype': [], 'adname': '防城区', 'name': '世昌汽车美容服务中心', 'location': '108.357626,21.780565', 'tel': '13377100228;15907705807', 'shopid': [], 'id': 'B0FFI98ZLI'}, {'parent': [], 'address': '防城冲仑物流园区横二路', 'distance': [], 'pname': '广西壮族自治区', 'importance': [], 'biz_ext': {'cost': [], 'rating': '4.3'}, 'biz_type': [], 'cityname': '防城港市', 'type': '汽车维修;汽车维修;汽车维修', 'photos': [{'title': [], 'url': 'http://store.is.autonavi.com/showpic/8ba9a500860c33cd762b19ab8adc9077'}, {'title': [], 'url': 'http://store.is.autonavi.com/showpic/3178a63af221320cb7dc11232076c688'}, {'title': [], 'url': 'http://store.is.autonavi.com/showpic/7c8e07c9ea6693ca22cdf0cdaa7fdaaf'}], 'typecode': '030000', 'shopinfo': '1', 'poiweight': [], 'childtype': [], 'adname': '防城区', 'name': '防城港市防城区鸿胜汽车修理厂', 'location': '108.389731,21.792557', 'tel': '0770-3261996;18807802688', 'shopid': [], 'id': 'B0HRV1BZAP'}, {'parent': [], 'address': '防城港市防城区群星大道668号', 'distance': [], 'pname': '广西壮族自治区', 'importance': [], 'biz_ext': {'cost': [], 'rating': '4.1'}, 'biz_type': [], 'cityname': '防城港市', 'type': '汽车维修;汽车综合维修;汽车综合维修', 'photos': [{'title': [], 'url': 'http://store.is.autonavi.com/showpic/0c6b107daf29b2e9a0a0f0e3bafc49ce'}, {'title': [], 'url': 'http://store.is.autonavi.com/showpic/c526349edeb7566f9c422b9279bccb61'}, {'title': [], 'url': 'http://store.is.autonavi.com/showpic/6375cf1237745aa65bebb47f4e0478d9'}], 'typecode': '030100', 'shopinfo': '0', 'poiweight': [], 'childtype': [], 'adname': '防城区', 'name': '快捷汽车维修中心', 'location': '108.367003,21.755799', 'tel': '15296174017;18507702326', 'shopid': [], 'id': 'B0G1BL8ZXA'}, {'parent': [], 'address': '珍珠大道冲仑石化加油站对面', 'distance': [], 'pname': '广西壮族自治区', 'importance': [], 'biz_ext': {'cost': [], 'rating': '4.3'}, 'biz_type': [], 'cityname': '防城港市', 'type': '汽车销售;汽车销售;汽车销售', 'photos': [{'title': [], 'url': 'http://store.is.autonavi.com/showpic/6d53a3824c2a380d0a0d40270acd7bf9'}, {'title': [], 'url': 'http://store.is.autonavi.com/showpic/f97f496798206848e288c7acfde6589c'}, {'title': [], 'url': 'http://store.is.autonavi.com/showpic/dbfdd369264d217be19918d245c48bc4'}], 'typecode': '020000', 'shopinfo': '1', 'poiweight': [], 'childtype': [], 'adname': '防城区', 'name': '捷途汽车防城港祥瑞体验中心', 'location': '108.391216,21.786293', 'tel': '0770-3232618;13367509288', 'shopid': [], 'id': 'B0KBHDIXM7'}, {'parent': [], 'address': '金海湾小区C3组团63B金湾小学后面', 'distance': [], 'pname': '广西壮族自治区', 'importance': [], 'biz_ext': {'cost': [], 'rating': '4.1'}, 'biz_type': [], 'cityname': '防城港市', 'type': '汽车维修;汽车维修;汽车维修', 'photos': [{'title': [], 'url': 'http://store.is.autonavi.com/showpic/4b35432169246db2a2cb8f9f35195035'}, {'title': [], 'url': 'http://store.is.autonavi.com/showpic/50713497e760d592a5ce04f3bfbca6ec'}, {'title': [], 'url': 'http://store.is.autonavi.com/showpic/7190c883b2155c481d8a773e5cafd6a2'}], 'typecode': '030000', 'shopinfo': '1', 'poiweight': [], 'childtype': [], 'adname': '港口区', 'name': '浩星峰汽车美容维修服务部', 'location': '108.350209,21.691517', 'tel': '18176830358', 'shopid': [], 'id': 'B0FFKU3K2I'}, {'parent': [], 'address': '防城区华业汽车文化产业园西北侧100米', 'distance': [], 'pname': '广西壮族自治区', 'importance': [], 'biz_ext': {'cost': [], 'rating': '4.7'}, 'biz_type': [], 'cityname': '防城港市', 'type': '汽车销售;汽车销售;汽车销售|汽车维修;汽车维修;汽车维修', 'photos': [{'title': [], 'url': 'http://store.is.autonavi.com/showpic/9ef439b4c155b2803a746bcfe35d77c4'}, {'title': [], 'url': 'http://aos-cdn-image.amap.com/sns/ugccomment/57439a68-c596-4160-97e7-8398239ac8be.jpg'}], 'typecode': '020000|030000', 'shopinfo': '0', 'poiweight': [], 'childtype': [], 'adname': '防城区', 'name': '五菱汽车(防城双新体验中心)', 'location': '108.386678,21.791342', 'tel': '0770-3235050', 'shopid': [], 'id': 'B0FFK6SE0O'}, {'parent': [], 'address': '防城港市港口区东兴大道沿海经贸场地009号', 'distance': [], 'pname': '广西壮族自治区', 'importance': [], 'biz_ext': {'cost': [], 'rating': '4.5'}, 'biz_type': [], 'cityname': '防城港市', 'type': '汽车维修;汽车维修;汽车维修', 'photos': [{'title': [], 'url': 'http://store.is.autonavi.com/showpic/b79462a64b94408739d08517ec17870f'}], 'typecode': '030000', 'shopinfo': '0', 'poiweight': [], 'childtype': [], 'adname': '港口区', 'name': '防城港市港口区飞驰汽修中心', 'location': '108.366906,21.637038', 'tel': '13877022290', 'shopid': [], 'id': 'B0GKJ5YED3'}, {'parent': [], 'address': '二巷1号', 'distance': [], 'pname': '广西壮族自治区', 'importance': [], 'biz_ext': {'cost': [], 'rating': '4.2'}, 'biz_type': [], 'cityname': '防城港市', 'type': '汽车维修;汽车维修;汽车维修', 'photos': [{'title': [], 'url': 'http://store.is.autonavi.com/showpic/4318af454ccb7aa785dbc1c2932dcc68'}, {'title': [], 'url': 'http://store.is.autonavi.com/showpic/2487cb65486e4de8e33fe4e796ce18aa'}, {'title': [], 'url': 'http://store.is.autonavi.com/showpic/953fd83d77dc508c8f7fdf27bd2c208d'}], 'typecode': '030000', 'shopinfo': '1', 'poiweight': [], 'childtype': [], 'adname': '防城区', 'name': '防城港市防城区明伟进口汽车修理厂', 'location': '108.357505,21.771186', 'tel': '0770-3277013', 'shopid': [], 'id': 'B0FFGT81EE'}, {'parent': [], 'address': '防钦路与防钦路东六巷交叉口西南160米', 'distance': [], 'pname': '广西壮族自治区', 'importance': [], 'biz_ext': {'cost': [], 'rating': '4.0'}, 'biz_type': [], 'cityname': '防城港市', 'type': '汽车服务;汽车养护/装饰;汽车养护', 'photos': [], 'typecode': '010400', 'shopinfo': '0', 'poiweight': [], 'childtype': [], 'adname': '防城区', 'name': '车爵仕汽车美容装饰服务(防钦路店)', 'location': '108.373879,21.774353', 'tel': [], 'shopid': [], 'id': 'B0FFI9BLR7'}, {'parent': [], 'address': '防港路与二桥东路交叉口西北60米', 'distance': [], 'pname': '广西壮族自治区', 'importance': [], 'biz_ext': {'cost': [], 'rating': '3.2'}, 'biz_type': [], 'cityname': '防城港市', 'type': '汽车维修;汽车综合维修;汽车综合维修', 'photos': [], 'typecode': '030100', 'shopinfo': '0', 'poiweight': [], 'childtype': [], 'adname': '防城区', 'name': '防城港市防城区老郭汽车维修中心', 'location': '108.363593,21.757339', 'tel': [], 'shopid': [], 'id': 'B0K3RPUMAH'}, {'parent': [], 'address': '白龙街68号碧玉园9号楼1层10018号商铺', 'distance': [], 'pname': '广西壮族自治区', 'importance': [], 'biz_ext': {'cost': [], 'rating': '4.3'}, 'biz_type': [], 'cityname': '防城港市', 'type': '汽车服务;汽车养护/装饰;汽车养护|汽车维修;汽车维修;汽车维修', 'photos': [{'title': [], 'url': 'http://store.is.autonavi.com/showpic/b32986666c3403ddc9b5412458ef72bd'}, {'title': [], 'url': 'http://store.is.autonavi.com/showpic/5a66dd4a262521811b2bac4418365c13'}, {'title': [], 'url': 'http://store.is.autonavi.com/showpic/9cdcd2b95fabdbea4a3e4fe07e13ac70'}], 'typecode': '010400|030000', 'shopinfo': '0', 'poiweight': [], 'childtype': [], 'adname': '港口区', 'name': '镁博汽车维修美容服务部', 'location': '108.367384,21.696829', 'tel': '18977051348;19177007818', 'shopid': [], 'id': 'B0G0F593Q6'}, {'parent': [], 'address': '群星路876号', 'distance': [], 'pname': '广西壮族自治区', 'importance': [], 'biz_ext': {'cost': [], 'rating': '4.0'}, 'biz_type': [], 'cityname': '防城港市', 'type': '汽车服务;汽车养护/装饰;汽车养护', 'photos': [{'title': [], 'url': 'http://store.is.autonavi.com/showpic/e25fca1e8b01e9929b36a14729513585'}], 'typecode': '010400', 'shopinfo': '0', 'poiweight': [], 'childtype': [], 'adname': '防城区', 'name': '防城超新汽车养护美容中心', 'location': '108.367686,21.762175', 'tel': '0770-3257668;13517706490;18377069370', 'shopid': [], 'id': 'B0FFH19FEN'}, {'parent': [], 'address': '沙潭江碰港二区12排10-2号', 'distance': [], 'pname': '广西壮族自治区', 'importance': [], 'biz_ext': {'cost': [], 'rating': '4.5'}, 'biz_type': [], 'cityname': '防城港市', 'type': '汽车维修;汽车维修;汽车维修', 'photos': [{'title': [], 'url': 'http://store.is.autonavi.com/showpic/0d90331b3378d4edb05fc15b3ffbe139'}, {'title': [], 'url': 'https://aos-comment.amap.com/B0G19M91ZW/comment/20b78e75a2a99f1d284cd834115c98fa_2048_2048_80.jpg'}, {'title': [], 'url': 'http://store.is.autonavi.com/showpic/d8f1ea082da8417231155a2681a11345'}], 'typecode': '030000', 'shopinfo': '1', 'poiweight': [], 'childtype': [], 'adname': '港口区', 'name': '荣意汽车维修服务部', 'location': '108.398054,21.693679', 'tel': '18807706499', 'shopid': [], 'id': 'B0G19M91ZW'}, {'parent': [], 'address': '金港街碧玉园10016商铺', 'distance': [], 'pname': '广西壮族自治区', 'importance': [], 'biz_ext': {'cost': [], 'rating': '4.2'}, 'biz_type': [], 'cityname': '防城港市', 'type': '汽车服务;汽车救援;汽车救援|汽车维修;汽车维修;汽车维修', 'photos': [{'title': [], 'url': 'http://store.is.autonavi.com/showpic/22264030fd6b42b352331f13f60a0f56'}, {'title': [], 'url': 'http://store.is.autonavi.com/showpic/eb7170a193524fba77c38cb922ff0ec0'}], 'typecode': '010700|030000', 'shopinfo': '1', 'poiweight': [], 'childtype': [], 'adname': '港口区', 'name': '华固汽车维修美容服务', 'location': '108.367163,21.696719', 'tel': '17344567700', 'shopid': [], 'id': 'B0J0O7CKQ1'}], 'status': '1', 'info': 'OK'}\n",
"{'suggestion': {'keywords': [], 'cities': []}, 'count': '450', 'infocode': '10000', 'pois': [{'parent': [], 'address': '金海湾C2组团北门南210米', 'distance': [], 'pname': '广西壮族自治区', 'importance': [], 'biz_ext': {'cost': [], 'rating': '4.5'}, 'biz_type': [], 'cityname': '防城港市', 'type': '汽车维修;汽车综合维修;汽车综合维修', 'photos': [{'title': [], 'url': 'http://store.is.autonavi.com/showpic/ff2195bf94358efd6e16fffc493ca4d4'}], 'typecode': '030100', 'shopinfo': '0', 'poiweight': [], 'childtype': [], 'adname': '港口区', 'name': '防城港市季程汽车维修中心', 'location': '108.350736,21.686790', 'tel': '0770-2826250;18677028998', 'shopid': [], 'id': 'B0KG4MDS4O'}, {'parent': [], 'address': '中兴小区一巷与中新路交叉口西南50米', 'distance': [], 'pname': '广西壮族自治区', 'importance': [], 'biz_ext': {'cost': [], 'rating': '4.0'}, 'biz_type': [], 'cityname': '防城港市', 'type': '汽车维修;汽车维修;汽车维修', 'photos': [{'title': [], 'url': 'http://store.is.autonavi.com/showpic/5f86dd53b19f1846501880b59ad9a8d3'}, {'title': [], 'url': 'http://store.is.autonavi.com/showpic/8d79b1b73625555dc6236d6c260c9eb0'}], 'typecode': '030000', 'shopinfo': '1', 'poiweight': [], 'childtype': [], 'adname': '防城区', 'name': '防城安盛汽车维修中心', 'location': '108.364421,21.758802', 'tel': '15807707755', 'shopid': [], 'id': 'B0FFHEJ9S1'}, {'parent': [], 'address': '金海湾商住区C2组团E-15号铺', 'distance': [], 'pname': '广西壮族自治区', 'importance': [], 'biz_ext': {'cost': [], 'rating': '4.2'}, 'biz_type': [], 'cityname': '防城港市', 'type': '汽车维修;汽车维修;汽车维修', 'photos': [{'title': [], 'url': 'http://store.is.autonavi.com/showpic/798072b47e0880dbed13bbfc490c91ce'}, {'title': [], 'url': 'http://store.is.autonavi.com/showpic/eb180e742c62c50052dc545684c3bcd9'}, {'title': [], 'url': 'http://store.is.autonavi.com/showpic/8966c6b1fb7bedd0dda92b57f966bc81'}], 'typecode': '030000', 'shopinfo': '1', 'poiweight': [], 'childtype': [], 'adname': '港口区', 'name': '豪瑞汽车维修中心', 'location': '108.351239,21.688138', 'tel': '17707701338', 'shopid': [], 'id': 'B0FFM1LBOQ'}, {'parent': [], 'address': '防城镇河西开发区水营小学对面', 'distance': [], 'pname': '广西壮族自治区', 'importance': [], 'biz_ext': {'cost': [], 'rating': '4.0'}, 'biz_type': [], 'cityname': '防城港市', 'type': '汽车维修;汽车维修;汽车维修', 'photos': [{'title': [], 'url': 'http://store.is.autonavi.com/showpic/5b749b8449d94fb13d5274d4f19fb4f3'}], 'typecode': '030000', 'shopinfo': '0', 'poiweight': [], 'childtype': [], 'adname': '防城区', 'name': '程达汽修服务中心', 'location': '108.351408,21.743726', 'tel': [], 'shopid': [], 'id': 'B03020M3TX'}, {'parent': [], 'address': '防城港市港口区中心区金海湾小区C2组团18号', 'distance': [], 'pname': '广西壮族自治区', 'importance': [], 'biz_ext': {'cost': [], 'rating': '4.2'}, 'biz_type': [], 'cityname': '防城港市', 'type': '汽车维修;汽车维修;汽车维修', 'photos': [{'title': [], 'url': 'http://store.is.autonavi.com/showpic/ab8daa0d976fba7e4a83f63d1b36b5ad'}, {'title': [], 'url': 'http://store.is.autonavi.com/showpic/1fce6822e035867505c5cf749165b8f7'}, {'title': [], 'url': 'http://store.is.autonavi.com/showpic/2171c03e5b6d2b92d3c768c911b48bbf'}], 'typecode': '030000', 'shopinfo': '1', 'poiweight': [], 'childtype': [], 'adname': '港口区', 'name': '防城港市港口区明春汽车修理厂', 'location': '108.351391,21.688531', 'tel': '13788003991;13788008991', 'shopid': [], 'id': 'B0FFKNQREP'}, {'parent': [], 'address': '富裕路2号旁', 'distance': [], 'pname': '广西壮族自治区', 'importance': [], 'biz_ext': {'cost': [], 'rating': '3.5'}, 'biz_type': [], 'cityname': '防城港市', 'type': '汽车服务;汽车养护/装饰;汽车养护', 'photos': [{'title': [], 'url': 'http://store.is.autonavi.com/showpic/561f61a4a31036e03dd54306'}, {'title': [], 'url': 'http://store.is.autonavi.com/showpic/9f14afc3c68d0110582915807aadd75f'}, {'title': [], 'url': 'http://store.is.autonavi.com/showpic/85a001c9bb20d9db90dc18eef5c0e045'}], 'typecode': '010400', 'shopinfo': '0', 'poiweight': [], 'childtype': [], 'adname': '港口区', 'name': '盛隆汽车美容服务中心', 'location': '108.339392,21.605829', 'tel': '13768006991', 'shopid': [], 'id': 'B0FFFFAEXY'}, {'parent': [], 'address': '防城镇防邕路冲稔小学上150米', 'distance': [], 'pname': '广西壮族自治区', 'importance': [], 'biz_ext': {'cost': [], 'rating': '4.2'}, 'biz_type': [], 'cityname': '防城港市', 'type': '汽车维修;汽车维修;汽车维修', 'photos': [{'title': [], 'url': 'http://store.is.autonavi.com/showpic/b41c8235d3215bed034a01bb73526950'}, {'title': [], 'url': 'http://store.is.autonavi.com/showpic/5d1a063bcf690b2bfdebf0b8b6b3df6b'}], 'typecode': '030000', 'shopinfo': '1', 'poiweight': [], 'childtype': [], 'adname': '防城区', 'name': '驰铭汽修', 'location': '108.357574,21.780530', 'tel': '13877013887', 'shopid': [], 'id': 'B0FFGK4IJE'}, {'parent': [], 'address': '防城镇防北路88号旧粮所西门', 'distance': [], 'pname': '广西壮族自治区', 'importance': [], 'biz_ext': {'cost': [], 'rating': '3.8'}, 'biz_type': [], 'cityname': '防城港市', 'type': '汽车服务;汽车养护/装饰;汽车养护', 'photos': [{'title': [], 'url': 'http://store.is.autonavi.com/showpic/4c66a9200215347fafa129dedaf7c90b'}], 'typecode': '010400', 'shopinfo': '0', 'poiweight': [], 'childtype': [], 'adname': '防城区', 'name': '威洁汽车美容中心', 'location': '108.354897,21.766063', 'tel': [], 'shopid': [], 'id': 'B0FFH19ZL2'}, {'parent': [], 'address': '防邕路89号', 'distance': [], 'pname': '广西壮族自治区', 'importance': [], 'biz_ext': {'cost': [], 'rating': '3.6'}, 'biz_type': [], 'cityname': '防城港市', 'type': '汽车服务;汽车养护/装饰;汽车养护', 'photos': [{'title': [], 'url': 'http://store.is.autonavi.com/showpic/98ae967a8acfd4f52880896976e64028'}], 'typecode': '010400', 'shopinfo': '1', 'poiweight': [], 'childtype': [], 'adname': '防城区', 'name': '肥仔汽车空调音响服务中心', 'location': '108.356689,21.771317', 'tel': '18777094239;19907703894', 'shopid': [], 'id': 'B0FFKW4LZN'}, {'parent': [], 'address': '公车新城六十米大道交警考试中心旁', 'distance': [], 'pname': '广西壮族自治区', 'importance': [], 'biz_ext': {'cost': [], 'rating': '4.4'}, 'biz_type': [], 'cityname': '防城港市', 'type': '汽车维修;汽车维修;汽车维修', 'photos': [{'title': [], 'url': 'http://store.is.autonavi.com/showpic/b9a4a09cd8057225baab2ffbff231227'}, {'title': [], 'url': 'http://store.is.autonavi.com/showpic/1ca5ae643c3474ce9e53319b7d915655'}], 'typecode': '030000', 'shopinfo': '1', 'poiweight': [], 'childtype': [], 'adname': '港口区', 'name': '防城港市港盈汽车维修有限公司', 'location': '108.390853,21.690078', 'tel': '15807704006;18507702024', 'shopid': [], 'id': 'B0FFG41L3T'}, {'parent': [], 'address': '灵秀街与万鹤路交叉口西60米', 'distance': [], 'pname': '广西壮族自治区', 'importance': [], 'biz_ext': {'cost': [], 'rating': '3.3'}, 'biz_type': [], 'cityname': '防城港市', 'type': '汽车服务;汽车养护/装饰;汽车养护', 'photos': [], 'typecode': '010400', 'shopinfo': '0', 'poiweight': [], 'childtype': [], 'adname': '港口区', 'name': '奇美汽车美容服务中心', 'location': '108.368923,21.690217', 'tel': [], 'shopid': [], 'id': 'B0JAK1MBKC'}, {'parent': [], 'address': '康晨小区A15-A21号', 'distance': [], 'pname': '广西壮族自治区', 'importance': [], 'biz_ext': {'cost': [], 'rating': '4.5'}, 'biz_type': [], 'cityname': '防城港市', 'type': '汽车服务;汽车养护/装饰;汽车养护', 'photos': [{'title': [], 'url': 'http://store.is.autonavi.com/showpic/25cab3bfd6d292729a52615cee11c5f0'}, {'title': [], 'url': 'http://aos-cdn-image.amap.com/sns/ugccomment/d1dc13d6-4479-42eb-86be-4fe4ce85c2bb.jpg'}, {'title': [], 'url': 'http://aos-cdn-image.amap.com/sns/ugccomment/174ec6e3-16ab-4583-87f6-8593d3a2a6ab.jpg'}], 'typecode': '010400', 'shopinfo': '0', 'poiweight': [], 'childtype': [], 'adname': '港口区', 'name': '美途汽车服务会所', 'location': '108.350020,21.633373', 'tel': '0770-2821886', 'shopid': [], 'id': 'B0FFHLRH64'}, {'parent': [], 'address': '广西行政中心区迎宾中段南侧德城新世界12幢08号商铺', 'distance': [], 'pname': '广西壮族自治区', 'importance': [], 'biz_ext': {'cost': [], 'rating': '4.0'}, 'biz_type': [], 'cityname': '防城港市', 'type': '汽车维修;汽车维修;汽车维修', 'photos': [], 'typecode': '030000', 'shopinfo': '1', 'poiweight': [], 'childtype': [], 'adname': '港口区', 'name': '港之星名车售后服务中心', 'location': '108.368632,21.683390', 'tel': [], 'shopid': [], 'id': 'B0FFLFK59Z'}, {'parent': [], 'address': '白龙街1140号铺', 'distance': [], 'pname': '广西壮族自治区', 'importance': [], 'biz_ext': {'cost': [], 'rating': '4.5'}, 'biz_type': [], 'cityname': '防城港市', 'type': '汽车服务;汽车养护/装饰;汽车养护|汽车维修;汽车维修;汽车维修', 'photos': [{'title': [], 'url': 'http://store.is.autonavi.com/showpic/3f89200b10f597b9e17ad951ad4635ff'}, {'title': [], 'url': 'https://aos-comment.amap.com/B0JD15UCFE/comment/content_media_external_images_media_1000099057_ss__1738494369756_99240464.jpg'}, {'title': [], 'url': 'http://store.is.autonavi.com/showpic/ffecda6f5007aa8459085a068e6281be'}], 'typecode': '010400|030000', 'shopinfo': '1', 'poiweight': [], 'childtype': [], 'adname': '港口区', 'name': '凯信汽车维修服务部', 'location': '108.368390,21.696262', 'tel': '17687400029', 'shopid': [], 'id': 'B0JD15UCFE'}, {'parent': [], 'address': '沙埠街四巷116号', 'distance': [], 'pname': '广西壮族自治区', 'importance': [], 'biz_ext': {'cost': [], 'rating': '4.0'}, 'biz_type': [], 'cityname': '防城港市', 'type': '汽车服务;汽车养护/装饰;汽车养护', 'photos': [{'title': [], 'url': 'http://store.is.autonavi.com/showpic/16c957ba76ed6216e74bc7dc4855c80d'}, {'title': [], 'url': 'http://store.is.autonavi.com/showpic/8439e3cf3cc1d74d4b269bc403301bfd'}, {'title': [], 'url': 'http://store.is.autonavi.com/showpic/145316ac62a75a7e832c5649a577ea6c'}], 'typecode': '010400', 'shopinfo': '1', 'poiweight': [], 'childtype': [], 'adname': '防城区', 'name': '防城港市防城区明亮汽车养护中心', 'location': '108.356843,21.751253', 'tel': '13117709811', 'shopid': [], 'id': 'B0KA3UQ0LV'}, {'parent': [], 'address': '二级路旁(防城港市防城金林松香有限公司B6B7B8号)', 'distance': [], 'pname': '广西壮族自治区', 'importance': [], 'biz_ext': {'cost': [], 'rating': '3.7'}, 'biz_type': [], 'cityname': '防城港市', 'type': '汽车服务;汽车养护/装饰;汽车养护', 'photos': [{'title': [], 'url': 'http://store.is.autonavi.com/showpic/7bb13dba7d8fbf7b166eec9d2acc6b93'}], 'typecode': '010400', 'shopinfo': '1', 'poiweight': [], 'childtype': [], 'adname': '防城区', 'name': '三叔汽车美容', 'location': '108.349127,21.744086', 'tel': [], 'shopid': [], 'id': 'B0KAVM94SS'}, {'parent': [], 'address': '防邕路120号', 'distance': [], 'pname': '广西壮族自治区', 'importance': [], 'biz_ext': {'cost': [], 'rating': '4.1'}, 'biz_type': [], 'cityname': '防城港市', 'type': '汽车维修;汽车维修;汽车维修', 'photos': [{'title': [], 'url': 'http://store.is.autonavi.com/showpic/1143bf9fbeb86ee4f1385a6810f42c09'}, {'title': [], 'url': 'http://store.is.autonavi.com/showpic/abfb7a9860a3e86ee25b5b7b278054f4'}, {'title': [], 'url': 'http://store.is.autonavi.com/showpic/dac4089485e918af8e54573e7b716a28'}], 'typecode': '030000', 'shopinfo': '1', 'poiweight': [], 'childtype': [], 'adname': '防城区', 'name': '防城区途安汽车维修', 'location': '108.356892,21.771526', 'tel': '18977046005', 'shopid': [], 'id': 'B0G13BY71Q'}, {'parent': [], 'address': '水岸豪园11栋1楼104商铺', 'distance': [], 'pname': '广西壮族自治区', 'importance': [], 'biz_ext': {'cost': [], 'rating': '4.2'}, 'biz_type': [], 'cityname': '防城港市', 'type': '汽车维修;汽车维修;汽车维修', 'photos': [{'title': [], 'url': 'http://store.is.autonavi.com/showpic/1c7731dc9a46349432d6e2d16536b809'}], 'typecode': '030000', 'shopinfo': '1', 'poiweight': [], 'childtype': [], 'adname': '防城区', 'name': '防城区鸿越汽车维修中心', 'location': '108.356735,21.744722', 'tel': '13977031221', 'shopid': [], 'id': 'B0J1O5ETIV'}, {'parent': [], 'address': '东兴大道市交通局办公楼后面场地', 'distance': [], 'pname': '广西壮族自治区', 'importance': [], 'biz_ext': {'cost': [], 'rating': '4.2'}, 'biz_type': [], 'cityname': '防城港市', 'type': '汽车维修;汽车维修;汽车维修', 'photos': [{'title': [], 'url': 'http://store.is.autonavi.com/showpic/8950ff5d53b66725017a691da6bd57bc'}, {'title': [], 'url': 'http://store.is.autonavi.com/showpic/6cd898d5361176388374e7e7832cae03'}, {'title': [], 'url': 'http://store.is.autonavi.com/showpic/6c39840212d38ec2524c709fe2884b43'}], 'typecode': '030000', 'shopinfo': '0', 'poiweight': [], 'childtype': [], 'adname': '港口区', 'name': '防城港市惠鑫汽车维修厂', 'location': '108.359546,21.625739', 'tel': '13877091388', 'shopid': [], 'id': 'B0H0LAHNZX'}, {'parent': [], 'address': '港口区公车工业园区A区景和地块73.74号', 'distance': [], 'pname': '广西壮族自治区', 'importance': [], 'biz_ext': {'cost': [], 'rating': '3.9'}, 'biz_type': [], 'cityname': '防城港市', 'type': '汽车服务;汽车养护/装饰;汽车养护', 'photos': [{'title': [], 'url': 'http://store.is.autonavi.com/showpic/72cf76cfd4bbda8772504345dbca96c6'}], 'typecode': '010400', 'shopinfo': '1', 'poiweight': [], 'childtype': [], 'adname': '港口区', 'name': '腾益汽车内饰翻新', 'location': '108.399598,21.697165', 'tel': '18907805129', 'shopid': [], 'id': 'B0KDF11T00'}], 'status': '1', 'info': 'OK'}\n",
"{'suggestion': {'keywords': [], 'cities': []}, 'count': '450', 'infocode': '10000', 'pois': [{'parent': [], 'address': '新民路39号华商国际B区15幢1层01号', 'distance': [], 'pname': '广西壮族自治区', 'importance': [], 'biz_ext': {'cost': [], 'rating': '3.9'}, 'biz_type': [], 'cityname': '玉林市', 'type': '汽车服务;汽车养护/装饰;汽车养护', 'photos': [{'title': [], 'url': 'http://store.is.autonavi.com/showpic/fb66769c1e3b3243d0e18998b4e92705'}, {'title': [], 'url': 'http://store.is.autonavi.com/showpic/aabd8fba6163e60f746a2374ce23a6ac'}, {'title': [], 'url': 'http://store.is.autonavi.com/showpic/6a5e14d5d3dea3b50b53accf62135a33'}], 'typecode': '010400', 'shopinfo': '1', 'poiweight': [], 'childtype': [], 'adname': '玉州区', 'name': '爱车族汽车养护中心(江南城店)', 'location': '110.168264,22.617339', 'tel': '18877580230', 'shopid': [], 'id': 'B0LGYD1UQY'}, {'parent': [], 'address': '玉博大道', 'distance': [], 'pname': '广西壮族自治区', 'importance': [], 'biz_ext': {'cost': [], 'rating': '4.3'}, 'biz_type': [], 'cityname': '玉林市', 'type': '汽车服务;汽车养护/装饰;汽车养护', 'photos': [{'title': [], 'url': 'http://store.is.autonavi.com/showpic/c9e55d36ea8e000b5dc3ab1c46f466e2'}, {'title': [], 'url': 'http://store.is.autonavi.com/showpic/dfefa0f1dcbb15382b36d03e691b9cd5'}, {'title': [], 'url': 'http://store.is.autonavi.com/showpic/3c05d0ab04c6edeced2298ce80b05309'}], 'typecode': '010400', 'shopinfo': '0', 'poiweight': [], 'childtype': [], 'adname': '玉州区', 'name': '速优汽车养护中心(玉林店)', 'location': '110.124891,22.611399', 'tel': '18307754784', 'shopid': [], 'id': 'B0IRL5IC29'}, {'parent': [], 'address': '苗园路400号', 'distance': [], 'pname': '广西壮族自治区', 'importance': [], 'biz_ext': {'cost': [], 'rating': '4.0'}, 'biz_type': [], 'cityname': '玉林市', 'type': '汽车维修;汽车维修;汽车维修', 'photos': [{'title': [], 'url': 'http://store.is.autonavi.com/showpic/66f452a3dca0dd302ba1c1f64d74e33a'}, {'title': [], 'url': 'http://store.is.autonavi.com/showpic/da23db47868018ba065af5eeb01cc451'}, {'title': [], 'url': 'http://store.is.autonavi.com/showpic/e51073811063233b1341105df276820c'}], 'typecode': '030000', 'shopinfo': '1', 'poiweight': [], 'childtype': [], 'adname': '玉州区', 'name': '美孚1号车养护(玉林金鑫店)', 'location': '110.152687,22.598796', 'tel': '0775-2685226;15878045076', 'shopid': [], 'id': 'B0HUKC91LX'}, {'parent': [], 'address': '江南路与城南大道交叉口西80米', 'distance': [], 'pname': '广西壮族自治区', 'importance': [], 'biz_ext': {'cost': [], 'rating': '3.7'}, 'biz_type': [], 'cityname': '玉林市', 'type': '汽车服务;汽车养护/装饰;汽车养护', 'photos': [], 'typecode': '010400', 'shopinfo': '0', 'poiweight': [], 'childtype': [], 'adname': '容县', 'name': '安途汽车养护中心', 'location': '110.551135,22.847652', 'tel': [], 'shopid': [], 'id': 'B0L6DL93HC'}, {'parent': [], 'address': '岭南都会C区', 'distance': [], 'pname': '广西壮族自治区', 'importance': [], 'biz_ext': {'cost': [], 'rating': '4.2'}, 'biz_type': [], 'cityname': '玉林市', 'type': '汽车服务;汽车养护/装饰;汽车养护', 'photos': [{'title': [], 'url': 'http://store.is.autonavi.com/showpic/679f6aba6b38d9a217915af5aa52e4d3'}, {'title': [], 'url': 'http://store.is.autonavi.com/showpic/95880f94d29802f1f57e10bf56c2d371'}, {'title': [], 'url': 'http://store.is.autonavi.com/showpic/3701c079548b6c751a4229cdc20a5764'}], 'typecode': '010400', 'shopinfo': '1', 'poiweight': [], 'childtype': [], 'adname': '玉州区', 'name': '爱车帝汽车养护中心', 'location': '110.145904,22.650457', 'tel': '18775089068', 'shopid': [], 'id': 'B0I1NZ4VWE'}, {'parent': [], 'address': '沙田新城南门旁', 'distance': [], 'pname': '广西壮族自治区', 'importance': [], 'biz_ext': {'cost': [], 'rating': '3.8'}, 'biz_type': [], 'cityname': '玉林市', 'type': '汽车服务;汽车养护/装饰;汽车养护', 'photos': [{'title': [], 'url': 'http://store.is.autonavi.com/showpic/0dc6d7541093dde295e451bc9fbccdb2'}], 'typecode': '010400', 'shopinfo': '0', 'poiweight': [], 'childtype': [], 'adname': '福绵区', 'name': '通威顺汽车保养服务中心', 'location': '110.058674,22.378937', 'tel': '18675563108', 'shopid': [], 'id': 'B0HA9XCZIJ'}, {'parent': [], 'address': '名山镇沙圳商城开发区A座1号格莱美汽车养护中心', 'distance': [], 'pname': '广西壮族自治区', 'importance': [], 'biz_ext': {'cost': [], 'rating': '4.1'}, 'biz_type': [], 'cityname': '玉林市', 'type': '汽车服务;汽车养护/装饰;汽车养护', 'photos': [{'title': [], 'url': 'http://store.is.autonavi.com/showpic/19912c9da24f7fe74f4dde437aa602c6'}, {'title': [], 'url': 'http://store.is.autonavi.com/showpic/754e100334174efd671e40225880d53d'}], 'typecode': '010400', 'shopinfo': '1', 'poiweight': [], 'childtype': [], 'adname': '玉州区', 'name': '格莱美汽车养护中心', 'location': '110.159886,22.649122', 'tel': '0775-2388900;13877528189', 'shopid': [], 'id': 'B0FFLAQRGZ'}, {'parent': [], 'address': '大南路117号', 'distance': [], 'pname': '广西壮族自治区', 'importance': [], 'biz_ext': {'cost': [], 'rating': '4.0'}, 'biz_type': [], 'cityname': '玉林市', 'type': '汽车服务;汽车养护/装饰;汽车养护', 'photos': [{'title': [], 'url': 'http://store.is.autonavi.com/showpic/3e695b5b9e0e17545eec350830c79fd1'}], 'typecode': '010400', 'shopinfo': '0', 'poiweight': [], 'childtype': [], 'adname': '玉州区', 'name': '魅车族汽车养护服务中心', 'location': '110.146075,22.604966', 'tel': '0775-2082792;13597041491', 'shopid': [], 'id': 'B0FFK9SQ7S'}, {'parent': 'B0FFF7T6CG', 'address': '广西壮族自治区玉林市玉州区广西人民西路明华苑1栋7号优卡仕汽车养护', 'distance': [], 'pname': '广西壮族自治区', 'importance': [], 'biz_ext': {'cost': [], 'rating': '4.5'}, 'biz_type': [], 'cityname': '玉林市', 'type': '汽车服务;汽车养护/装饰;汽车养护', 'photos': [{'title': [], 'url': 'http://store.is.autonavi.com/showpic/afc2a10b0d31b6becf474269d59321e5'}, {'title': [], 'url': 'http://store.is.autonavi.com/showpic/5c79356f7ae1f3e7f253ce27d45b9d82'}, {'title': [], 'url': 'http://store.is.autonavi.com/showpic/6ad341a21eaf950d1a7c62bf023adc2e'}], 'typecode': '010400', 'shopinfo': '0', 'poiweight': [], 'childtype': '202', 'adname': '玉州区', 'name': '优卡仕汽车养护(人民西路明华苑一号楼小区店)', 'location': '110.131521,22.608615', 'tel': '18176984855', 'shopid': [], 'id': 'B0FFITNA6I'}, {'parent': [], 'address': '二环东路201号绿地城小区13幢1层11号', 'distance': [], 'pname': '广西壮族自治区', 'importance': [], 'biz_ext': {'cost': [], 'rating': '4.3'}, 'biz_type': [], 'cityname': '玉林市', 'type': '汽车服务;汽车养护/装饰;汽车养护', 'photos': [{'title': [], 'url': 'http://store.is.autonavi.com/showpic/10d54cd02666910130585e6e9e6e8d66'}, {'title': [], 'url': 'http://store.is.autonavi.com/showpic/1d269b30449a2e9e5301078e8f949fb5'}, {'title': [], 'url': 'https://aos-comment.amap.com/B0J14DZ5WZ/headerImg/5b369554330a6142654a737b6d39dc67_2048_2048_80.jpg'}], 'typecode': '010400', 'shopinfo': '1', 'poiweight': [], 'childtype': [], 'adname': '玉州区', 'name': '玉林市威驰汽车养护中心', 'location': '110.195267,22.613580', 'tel': '18878558180', 'shopid': [], 'id': 'B0J14DZ5WZ'}, {'parent': [], 'address': '千禧汽车服务有限公司', 'distance': [], 'pname': '广西壮族自治区', 'importance': [], 'biz_ext': {'cost': [], 'rating': '4.0'}, 'biz_type': [], 'cityname': '玉林市', 'type': '汽车服务;汽车养护/装饰;汽车养护', 'photos': [{'title': [], 'url': 'http://store.is.autonavi.com/showpic/b553b321139bfa7b38908c10ce597ba5'}], 'typecode': '010400', 'shopinfo': '0', 'poiweight': [], 'childtype': [], 'adname': '玉州区', 'name': '玉林市千禧汽车服务有限公司', 'location': '110.144633,22.664470', 'tel': '0775-2391001', 'shopid': [], 'id': 'B0JRN7A73H'}, {'parent': [], 'address': '万园路122号', 'distance': [], 'pname': '广西壮族自治区', 'importance': [], 'biz_ext': {'cost': [], 'rating': '4.4'}, 'biz_type': [], 'cityname': '玉林市', 'type': '汽车服务;汽车养护/装饰;汽车养护', 'photos': [{'title': [], 'url': 'http://store.is.autonavi.com/showpic/b6ecb596aa11fe5bb35eeace3cfeb4f1'}], 'typecode': '010400', 'shopinfo': '0', 'poiweight': [], 'childtype': [], 'adname': '玉州区', 'name': 'NCAR汽车养护中心', 'location': '110.165146,22.609684', 'tel': '0775-2622626;18178586767', 'shopid': [], 'id': 'B0FFMDKIO3'}, {'parent': [], 'address': '万盛中央公园11栋', 'distance': [], 'pname': '广西壮族自治区', 'importance': [], 'biz_ext': {'cost': [], 'rating': '4.3'}, 'biz_type': [], 'cityname': '玉林市', 'type': '汽车服务;汽车养护/装饰;汽车养护', 'photos': [{'title': [], 'url': 'http://store.is.autonavi.com/showpic/bfc57de20d955e88eb29c9127663372d'}, {'title': [], 'url': 'http://store.is.autonavi.com/showpic/9f5eeeb9f34b3dfb3d355716e88f41e7'}], 'typecode': '010400', 'shopinfo': '0', 'poiweight': [], 'childtype': [], 'adname': '玉州区', 'name': '耀兴堂汽车养护中心(玉林店)', 'location': '110.189967,22.653127', 'tel': '13978519882', 'shopid': [], 'id': 'B0FFL4BHW9'}, {'parent': [], 'address': '江南路472号', 'distance': [], 'pname': '广西壮族自治区', 'importance': [], 'biz_ext': {'cost': [], 'rating': '4.4'}, 'biz_type': [], 'cityname': '玉林市', 'type': '汽车服务;汽车养护/装饰;汽车养护', 'photos': [{'title': [], 'url': 'http://store.is.autonavi.com/showpic/ce971964f1a4c196fbc0136a66cb9826'}], 'typecode': '010400', 'shopinfo': '0', 'poiweight': [], 'childtype': [], 'adname': '玉州区', 'name': '聚车友汽车养护中心', 'location': '110.174336,22.601001', 'tel': '0775-2681186', 'shopid': [], 'id': 'B0K2ZR73FX'}, {'parent': [], 'address': '中环西路573号', 'distance': [], 'pname': '广西壮族自治区', 'importance': [], 'biz_ext': {'cost': [], 'rating': '4.1'}, 'biz_type': [], 'cityname': '玉林市', 'type': '汽车服务;洗车场;洗车场', 'photos': [{'title': [], 'url': 'http://store.is.autonavi.com/showpic/c6ad555f960bddd858a53642b313a7b4'}, {'title': [], 'url': 'http://store.is.autonavi.com/showpic/d333bc7dcb4fb9ac5a74f0b995b48ffe'}, {'title': [], 'url': 'https://aos-comment.amap.com/B0HKG5CEJF/headerImg/d26f6bedf8d3e750cecaddae34ec5d4f_2048_2048_80.jpg'}], 'typecode': '010500', 'shopinfo': '1', 'poiweight': [], 'childtype': [], 'adname': '容县', 'name': '容县爱车人家汽车养护服务中心', 'location': '110.536079,22.852709', 'tel': '0775-2706788;13978559938', 'shopid': [], 'id': 'B0HKG5CEJF'}, {'parent': [], 'address': '容州镇厢南村桥山路143号泓一汽车养护', 'distance': [], 'pname': '广西壮族自治区', 'importance': [], 'biz_ext': {'cost': [], 'rating': '4.2'}, 'biz_type': [], 'cityname': '玉林市', 'type': '汽车服务;汽车养护/装饰;汽车养护', 'photos': [{'title': [], 'url': 'http://store.is.autonavi.com/showpic/11118775d82908622dd70ecd1e211e4d'}, {'title': [], 'url': 'http://store.is.autonavi.com/showpic/4369df13799115dbed3c9ef888882afc'}, {'title': [], 'url': 'http://store.is.autonavi.com/showpic/07614deb465d696863743fd30c20c67b'}], 'typecode': '010400', 'shopinfo': '0', 'poiweight': [], 'childtype': [], 'adname': '容县', 'name': '泓一汽车养护', 'location': '110.563703,22.835953', 'tel': '18176453711', 'shopid': [], 'id': 'B0K23S0WP5'}, {'parent': [], 'address': '苗园路482号', 'distance': [], 'pname': '广西壮族自治区', 'importance': [], 'biz_ext': {'cost': [], 'rating': '4.4'}, 'biz_type': [], 'cityname': '玉林市', 'type': '汽车服务;汽车配件销售;汽车配件销售', 'photos': [{'title': [], 'url': 'http://store.is.autonavi.com/showpic/047b9f0f98c75d78481b3ef46c73dc9d'}, {'title': [], 'url': 'http://store.is.autonavi.com/showpic/442b9676ead1e7782d069dbc6fdee096'}], 'typecode': '010800', 'shopinfo': '0', 'poiweight': [], 'childtype': [], 'adname': '玉州区', 'name': '爱车堡汽车维修', 'location': '110.173265,22.610118', 'tel': '15277952596', 'shopid': [], 'id': 'B0FFGLHCYZ'}, {'parent': [], 'address': '毅德五金商贸城4区5幢1号', 'distance': [], 'pname': '广西壮族自治区', 'importance': [], 'biz_ext': {'cost': [], 'rating': '3.9'}, 'biz_type': [], 'cityname': '玉林市', 'type': '汽车服务;汽车养护/装饰;汽车养护', 'photos': [{'title': [], 'url': 'http://store.is.autonavi.com/showpic/664f3d8225c4bc178698b0b306f28ee5'}, {'title': [], 'url': 'http://store.is.autonavi.com/showpic/2aaec87d7e5eff4d1167f55ef4dfd2c9'}, {'title': [], 'url': 'http://store.is.autonavi.com/showpic/84bd1f163ae2d18a45b188983c7ee357'}], 'typecode': '010400', 'shopinfo': '1', 'poiweight': [], 'childtype': [], 'adname': '玉州区', 'name': '晋恺名车养护中心(玉林毅德商贸城店)', 'location': '110.118146,22.650042', 'tel': '13211459311;18775548853', 'shopid': [], 'id': 'B0FFL86XD3'}, {'parent': [], 'address': '金龙大转盘南高立交右侧', 'distance': [], 'pname': '广西壮族自治区', 'importance': [], 'biz_ext': {'cost': [], 'rating': '4.7'}, 'biz_type': [], 'cityname': '玉林市', 'type': '汽车销售;汽车销售;汽车销售', 'photos': [{'title': [], 'url': 'https://aos-comment.amap.com/B0J0P79JWG/headerImg/f78aff5dc42c56ee3cad6e032b76e22b_2048_2048_80.jpg'}, {'title': [], 'url': 'https://aos-comment.amap.com/B0J0P79JWG/headerImg/e01634ac50295ac5524fe9e9967bb7ad_2048_2048_80.jpg'}, {'title': [], 'url': 'https://aos-comment.amap.com/B0J0P79JWG/headerImg/0a62dd2f0369bbfc251e330daf7fbbb9_2048_2048_80.jpg'}], 'typecode': '020000', 'shopinfo': '0', 'poiweight': [], 'childtype': [], 'adname': '玉州区', 'name': '奇瑞汽车(玉林永奇旗舰4s店)', 'location': '110.126414,22.617809', 'tel': [], 'shopid': [], 'id': 'B0J0P79JWG'}, {'parent': [], 'address': '玉州区文化广场金西路名讯街路口61号', 'distance': [], 'pname': '广西壮族自治区', 'importance': [], 'biz_ext': {'cost': [], 'rating': '4.3'}, 'biz_type': [], 'cityname': '玉林市', 'type': '汽车服务;汽车养护/装饰;汽车养护', 'photos': [{'title': [], 'url': 'http://store.is.autonavi.com/showpic/e846a6e047ac78bdf23297f01b462fa5'}, {'title': [], 'url': 'http://store.is.autonavi.com/showpic/06e4b5a1d2ddea4c9686fd579d59e2ba'}, {'title': [], 'url': 'http://store.is.autonavi.com/showpic/276cc13b659c02d10147112b37e84368'}], 'typecode': '010400', 'shopinfo': '1', 'poiweight': [], 'childtype': [], 'adname': '玉州区', 'name': '美孚1号车养护(玉林车之美店)', 'location': '110.173213,22.646011', 'tel': '13877508575', 'shopid': [], 'id': 'B0IBFA28QO'}], 'status': '1', 'info': 'OK'}\n",
"{'suggestion': {'keywords': [], 'cities': []}, 'count': '450', 'infocode': '10000', 'pois': [{'parent': [], 'address': '广场东路与胜利路交叉口南20米', 'distance': [], 'pname': '广西壮族自治区', 'importance': [], 'biz_ext': {'cost': [], 'rating': '4.2'}, 'biz_type': [], 'cityname': '玉林市', 'type': '汽车服务;汽车养护/装饰;汽车养护', 'photos': [{'title': [], 'url': 'http://store.is.autonavi.com/showpic/b81826c74012eb7d72af19f30a7b2314'}, {'title': [], 'url': 'http://store.is.autonavi.com/showpic/a86c352b25d236bcc46e9316ad2a1936'}, {'title': [], 'url': 'http://store.is.autonavi.com/showpic/b96cdca1a8b9e31f0b06e0a93f7db500'}], 'typecode': '010400', 'shopinfo': '0', 'poiweight': [], 'childtype': [], 'adname': '玉州区', 'name': '玉林市玉州区赛驰汽车养护中心', 'location': '110.173450,22.632511', 'tel': [], 'shopid': [], 'id': 'B0GKP7YWQM'}, {'parent': [], 'address': '大北路681号(实验中学斜对面)', 'distance': [], 'pname': '广西壮族自治区', 'importance': [], 'biz_ext': {'cost': [], 'rating': '4.2'}, 'biz_type': [], 'cityname': '玉林市', 'type': '汽车服务;汽车养护/装饰;加水站', 'photos': [{'title': [], 'url': 'http://store.is.autonavi.com/showpic/9de79c2c03a1723c7cb54ba4cd336115'}, {'title': [], 'url': 'http://store.is.autonavi.com/showpic/4376678716bd93e9b2ac7c9ac0415515'}, {'title': [], 'url': 'http://store.is.autonavi.com/showpic/95513691b045f2eef187952f0b20e3fb'}], 'typecode': '010401', 'shopinfo': '1', 'poiweight': [], 'childtype': [], 'adname': '玉州区', 'name': '二丰汽车养护中心(美孚认证店)', 'location': '110.126277,22.636516', 'tel': '15878882393', 'shopid': [], 'id': 'B0FFHG2PAH'}, {'parent': [], 'address': '厢南大道与侨乡大道交叉口东280米', 'distance': [], 'pname': '广西壮族自治区', 'importance': [], 'biz_ext': {'cost': [], 'rating': '3.5'}, 'biz_type': [], 'cityname': '玉林市', 'type': '汽车服务;汽车养护/装饰;汽车养护', 'photos': [{'title': [], 'url': 'http://store.is.autonavi.com/showpic/7f0207328fe5c9a0827e2dd91b37df60'}], 'typecode': '010400', 'shopinfo': '1', 'poiweight': [], 'childtype': [], 'adname': '容县', 'name': '江南汽车装饰', 'location': '110.566132,22.846809', 'tel': [], 'shopid': [], 'id': 'B0LBC7EKQ6'}, {'parent': [], 'address': '江南大道香港城3305号', 'distance': [], 'pname': '广西壮族自治区', 'importance': [], 'biz_ext': {'cost': [], 'rating': '3.9'}, 'biz_type': [], 'cityname': '玉林市', 'type': '汽车服务;汽车养护/装饰;汽车养护', 'photos': [{'title': [], 'url': 'http://store.is.autonavi.com/showpic/b38061bdc2a1d0d607cd16f314892a39'}, {'title': [], 'url': 'http://store.is.autonavi.com/showpic/fe5beb0febec8b85df4b56bdea721cf9'}], 'typecode': '010400', 'shopinfo': '0', 'poiweight': [], 'childtype': [], 'adname': '玉州区', 'name': '亮又亮汽车保养服务部', 'location': '110.170598,22.612562', 'tel': '13667759657', 'shopid': [], 'id': 'B0FFG47ESA'}, {'parent': [], 'address': '嘉华小区西门旁', 'distance': [], 'pname': '广西壮族自治区', 'importance': [], 'biz_ext': {'cost': [], 'rating': '3.4'}, 'biz_type': [], 'cityname': '玉林市', 'type': '汽车服务;汽车养护/装饰;汽车养护', 'photos': [], 'typecode': '010400', 'shopinfo': '0', 'poiweight': [], 'childtype': [], 'adname': '玉州区', 'name': '爱车族汽车美容', 'location': '110.144836,22.599809', 'tel': [], 'shopid': [], 'id': 'B0JBOZJZNR'}, {'parent': [], 'address': '城西开发区城西沙场对面', 'distance': [], 'pname': '广西壮族自治区', 'importance': [], 'biz_ext': {'cost': [], 'rating': '3.8'}, 'biz_type': [], 'cityname': '玉林市', 'type': '汽车服务;汽车养护/装饰;汽车养护', 'photos': [{'title': [], 'url': 'http://store.is.autonavi.com/showpic/1726268659e2bd8b1a642178b9f63dd2'}], 'typecode': '010400', 'shopinfo': '0', 'poiweight': [], 'childtype': [], 'adname': '玉州区', 'name': '海盛汽车养护美容中心', 'location': '110.120641,22.637913', 'tel': '13557350490;13627757887', 'shopid': [], 'id': 'B0FFG8X72O'}, {'parent': [], 'address': '南江街道民主南路平岭工业大道9号', 'distance': [], 'pname': '广西壮族自治区', 'importance': [], 'biz_ext': {'cost': [], 'rating': '4.1'}, 'biz_type': [], 'cityname': '玉林市', 'type': '汽车维修;汽车维修;汽车维修', 'photos': [{'title': [], 'url': 'http://store.is.autonavi.com/showpic/6d81f5c6ccd1c52f940139d9fab9b312'}, {'title': [], 'url': 'http://store.is.autonavi.com/showpic/fcee35676826c18f06e91800d7ffe971'}, {'title': [], 'url': 'http://store.is.autonavi.com/showpic/58090be04d093f32e51f231b5c71d1ba'}], 'typecode': '030000', 'shopinfo': '0', 'poiweight': [], 'childtype': [], 'adname': '玉州区', 'name': '爱车诚汽车维修', 'location': '110.188607,22.569063', 'tel': '15994574093', 'shopid': [], 'id': 'B0IUTU8CZI'}, {'parent': [], 'address': '容州镇河南大道278号', 'distance': [], 'pname': '广西壮族自治区', 'importance': [], 'biz_ext': {'cost': [], 'rating': '4.2'}, 'biz_type': [], 'cityname': '玉林市', 'type': '汽车服务;汽车养护/装饰;汽车养护', 'photos': [{'title': [], 'url': 'http://store.is.autonavi.com/showpic/7db512272b37b30fe2b20aeee06c2ea0'}, {'title': [], 'url': 'http://store.is.autonavi.com/showpic/c775190c8305be1931375d9b6fa11cc2'}], 'typecode': '010400', 'shopinfo': '0', 'poiweight': [], 'childtype': [], 'adname': '容县', 'name': '海森汽车养护部', 'location': '110.555158,22.847006', 'tel': '13878051443', 'shopid': [], 'id': 'B0FFHC8XC9'}, {'parent': [], 'address': '中环西路226号', 'distance': [], 'pname': '广西壮族自治区', 'importance': [], 'biz_ext': {'cost': [], 'rating': '3.7'}, 'biz_type': [], 'cityname': '玉林市', 'type': '汽车服务;汽车养护/装饰;汽车养护', 'photos': [{'title': [], 'url': 'http://store.is.autonavi.com/showpic/343c689fc74e2ae65818a402a4530476'}, {'title': [], 'url': 'http://store.is.autonavi.com/showpic/a075d528f8a93beb10618f281283e77c'}, {'title': [], 'url': 'http://store.is.autonavi.com/showpic/4f9fa78f12f12f212e8496bdeddb3292'}], 'typecode': '010400', 'shopinfo': '0', 'poiweight': [], 'childtype': [], 'adname': '容县', 'name': '金弟汽车养护', 'location': '110.540912,22.861631', 'tel': '13676177720', 'shopid': [], 'id': 'B0K3VONNHM'}, {'parent': [], 'address': '欧景嘉园香榭区南门玉林西80米', 'distance': [], 'pname': '广西壮族自治区', 'importance': [], 'biz_ext': {'cost': [], 'rating': '4.4'}, 'biz_type': [], 'cityname': '玉林市', 'type': '汽车维修;汽车维修;汽车维修', 'photos': [{'title': [], 'url': 'http://store.is.autonavi.com/showpic/4708c86f1b97cf3c2c1b0a505610d5d0'}], 'typecode': '030000', 'shopinfo': '0', 'poiweight': [], 'childtype': [], 'adname': '玉州区', 'name': '驰耐普汽车快修保养', 'location': '110.165768,22.611809', 'tel': '13788756166', 'shopid': [], 'id': 'B0FFGHQWIH'}, {'parent': [], 'address': '南环里41号', 'distance': [], 'pname': '广西壮族自治区', 'importance': [], 'biz_ext': {'cost': [], 'rating': '4.9'}, 'biz_type': [], 'cityname': '玉林市', 'type': '汽车服务;汽车养护/装饰;汽车养护|汽车服务;洗车场;洗车场|汽车服务;汽车配件销售;汽车配件销售|汽车维修;汽车维修;汽车维修', 'photos': [{'title': [], 'url': 'http://store.is.autonavi.com/showpic/ffc9bee0f15e2cdb2ba2747b642b9218'}, {'title': [], 'url': 'http://store.is.autonavi.com/showpic/cd9899aee894e9acf865fb0867d23c87'}, {'title': [], 'url': 'http://store.is.autonavi.com/showpic/45227849f404128fd0ea6be7c8b51714'}], 'typecode': '010400|010500|010800|030000', 'shopinfo': '1', 'poiweight': [], 'childtype': [], 'adname': '玉州区', 'name': '驰加汽车服务中心(玉州区南环里店)', 'location': '110.168004,22.624933', 'tel': '13317755115', 'shopid': [], 'id': 'B0I0ZUBQWM'}, {'parent': [], 'address': '容州镇城南大道', 'distance': [], 'pname': '广西壮族自治区', 'importance': [], 'biz_ext': {'cost': [], 'rating': '4.4'}, 'biz_type': [], 'cityname': '玉林市', 'type': '汽车维修;汽车维修;汽车维修', 'photos': [{'title': [], 'url': 'http://store.is.autonavi.com/showpic/8470c30cf62a08849bd22d5ceff254ec'}, {'title': [], 'url': 'http://store.is.autonavi.com/showpic/5f7ca438b54d355dab6a70e9b2b2cd96'}], 'typecode': '030000', 'shopinfo': '0', 'poiweight': [], 'childtype': [], 'adname': '容县', 'name': '广木汽车维修厂', 'location': '110.560819,22.834949', 'tel': '18934865496', 'shopid': [], 'id': 'B0FFHQ1LES'}, {'parent': [], 'address': '雅园小区西南门旁', 'distance': [], 'pname': '广西壮族自治区', 'importance': [], 'biz_ext': {'cost': [], 'rating': '3.7'}, 'biz_type': [], 'cityname': '玉林市', 'type': '汽车服务;汽车养护/装饰;汽车养护', 'photos': [{'title': [], 'url': 'http://store.is.autonavi.com/showpic/4b38f1d650294a8324c4487bc0e250e7'}], 'typecode': '010400', 'shopinfo': '0', 'poiweight': [], 'childtype': [], 'adname': '玉州区', 'name': '爱车坊汽车美容中心', 'location': '110.176731,22.652107', 'tel': [], 'shopid': [], 'id': 'B0JA29FZA1'}, {'parent': [], 'address': '仁厚镇', 'distance': [], 'pname': '广西壮族自治区', 'importance': [], 'biz_ext': {'cost': [], 'rating': '4.2'}, 'biz_type': [], 'cityname': '玉林市', 'type': '汽车服务;汽车养护/装饰;汽车养护', 'photos': [{'title': [], 'url': 'http://store.is.autonavi.com/showpic/d0ec5f1d4f05213d2b686a8c84af1944'}, {'title': [], 'url': 'http://store.is.autonavi.com/showpic/82b5df130a5e0a54d0137a11521ba557'}, {'title': [], 'url': 'http://store.is.autonavi.com/showpic/020e5c5ce8d2c6a10eabfe0f4c334689'}], 'typecode': '010400', 'shopinfo': '1', 'poiweight': [], 'childtype': [], 'adname': '玉州区', 'name': '众维汽车养护中心', 'location': '110.065636,22.659327', 'tel': '18078707875', 'shopid': [], 'id': 'B0IAFLBE1B'}, {'parent': [], 'address': '中药港金港路西侧药监局对面', 'distance': [], 'pname': '广西壮族自治区', 'importance': [], 'biz_ext': {'cost': [], 'rating': '4.4'}, 'biz_type': [], 'cityname': '玉林市', 'type': '汽车服务;汽车养护/装饰;汽车养护', 'photos': [{'title': [], 'url': 'http://store.is.autonavi.com/showpic/218564360e1cea8d87b914256ceb745f'}, {'title': [], 'url': 'http://store.is.autonavi.com/showpic/6ee5240b89e6787adc19da1bf1bcbcaa'}], 'typecode': '010400', 'shopinfo': '0', 'poiweight': [], 'childtype': [], 'adname': '玉州区', 'name': '金东汽车养护服务中心', 'location': '110.179153,22.615768', 'tel': '18897505319', 'shopid': [], 'id': 'B0FFHE109W'}, {'parent': [], 'address': '修饰小区', 'distance': [], 'pname': '广西壮族自治区', 'importance': [], 'biz_ext': {'cost': [], 'rating': '4.0'}, 'biz_type': [], 'cityname': '玉林市', 'type': '汽车服务;汽车养护/装饰;汽车养护', 'photos': [{'title': [], 'url': 'http://store.is.autonavi.com/showpic/cddaae1f7ca8ae397abcb79098bf27c3'}, {'title': [], 'url': 'http://store.is.autonavi.com/showpic/c3cd7327852175bc834066fa22abba9c'}, {'title': [], 'url': 'http://store.is.autonavi.com/showpic/71484b50c0d07e687bb9e9b06d01d6c1'}], 'typecode': '010400', 'shopinfo': '0', 'poiweight': [], 'childtype': [], 'adname': '玉州区', 'name': '万花汽车养护', 'location': '110.152416,22.639582', 'tel': '18177505331', 'shopid': [], 'id': 'B0FFLCCJC4'}, {'parent': 'B0FFI103IE', 'address': '新桥镇丽江商贸城1区1号楼', 'distance': [], 'pname': '广西壮族自治区', 'importance': [], 'biz_ext': {'cost': [], 'rating': '4.3'}, 'biz_type': [], 'cityname': '玉林市', 'type': '汽车维修;汽车维修;汽车维修', 'photos': [{'title': [], 'url': 'http://store.is.autonavi.com/showpic/cb009098890634a01d41674fd5d12320'}, {'title': [], 'url': 'http://store.is.autonavi.com/showpic/59ae7ad2492a2a9e41e0e48ca1d43a9b'}, {'title': [], 'url': 'http://store.is.autonavi.com/showpic/c04bfbde322f114c0c9179c4255a0550'}], 'typecode': '030000', 'shopinfo': '0', 'poiweight': [], 'childtype': '202', 'adname': '福绵区', 'name': '能信汽车服务快修中心(玉林市福绵区新桥镇丽江商贸城店)', 'location': '110.107123,22.526627', 'tel': '18934886171', 'shopid': [], 'id': 'B0GUHRRMKU'}, {'parent': [], 'address': '容州镇峤山路209号', 'distance': [], 'pname': '广西壮族自治区', 'importance': [], 'biz_ext': {'cost': [], 'rating': '3.8'}, 'biz_type': [], 'cityname': '玉林市', 'type': '汽车服务;汽车养护/装饰;汽车养护', 'photos': [{'title': [], 'url': 'http://store.is.autonavi.com/showpic/3fd0c5daf1d2888708b44367eaa371ab'}, {'title': [], 'url': 'http://store.is.autonavi.com/showpic/251c2356b4a6e12f578fcffc19b803e6'}, {'title': [], 'url': 'http://store.is.autonavi.com/showpic/959272515ecaf00a4a8a8cc5b4636284'}], 'typecode': '010400', 'shopinfo': '1', 'poiweight': [], 'childtype': [], 'adname': '容县', 'name': '爱车坊汽车养护中心', 'location': '110.563250,22.835842', 'tel': '18074752356', 'shopid': [], 'id': 'B0FFJ26EPU'}, {'parent': [], 'address': '胜利花园东大门旁', 'distance': [], 'pname': '广西壮族自治区', 'importance': [], 'biz_ext': {'cost': [], 'rating': '4.6'}, 'biz_type': [], 'cityname': '玉林市', 'type': '汽车维修;汽车维修;汽车维修', 'photos': [{'title': [], 'url': 'http://store.is.autonavi.com/showpic/545b5ba240ed3feedd579f01a47d075e'}], 'typecode': '030000', 'shopinfo': '0', 'poiweight': [], 'childtype': [], 'adname': '玉州区', 'name': '爱车之家汽车维修服务部', 'location': '110.179154,22.638305', 'tel': '13217854689', 'shopid': [], 'id': 'B0HDGLN4OT'}, {'parent': [], 'address': '大兴路0358号', 'distance': [], 'pname': '广西壮族自治区', 'importance': [], 'biz_ext': {'cost': [], 'rating': '4.2'}, 'biz_type': [], 'cityname': '玉林市', 'type': '汽车维修;汽车维修;汽车维修', 'photos': [{'title': [], 'url': 'https://aos-comment.amap.com/B0G1L56BGJ/headerImg/3994e59e1a5c13a8b17fe537190e769d_2048_2048_80.jpg'}, {'title': [], 'url': 'https://aos-comment.amap.com/B0G1L56BGJ/headerImg/df83f4ad1a27ef51c2df812f07bd1524_2048_2048_80.jpg'}, {'title': [], 'url': 'https://aos-comment.amap.com/B0G1L56BGJ/headerImg/a1f9b817c702bc8c3dc9fecf2fad0282_2048_2048_80.jpg'}], 'typecode': '030000', 'shopinfo': '1', 'poiweight': [], 'childtype': [], 'adname': '北流市', 'name': '爱车族维修养护', 'location': '110.360973,22.698500', 'tel': '18269434926', 'shopid': [], 'id': 'B0G1L56BGJ'}], 'status': '1', 'info': 'OK'}\n",
"{'suggestion': {'keywords': [], 'cities': []}, 'count': '450', 'infocode': '10000', 'pois': [{'parent': [], 'address': '站前路255号', 'distance': [], 'pname': '广西壮族自治区', 'importance': [], 'biz_ext': {'cost': [], 'rating': '4.1'}, 'biz_type': [], 'cityname': '玉林市', 'type': '汽车维修;汽车维修;汽车维修', 'photos': [{'title': [], 'url': 'http://store.is.autonavi.com/showpic/2e228f9fb16e1c147d9ac999ecb56cf4'}, {'title': [], 'url': 'http://store.is.autonavi.com/showpic/844e830c7cdd5bc47f91b20b82f6faa8'}, {'title': [], 'url': 'http://store.is.autonavi.com/showpic/090449f13c3e67a23b4a23917d91b910'}], 'typecode': '030000', 'shopinfo': '1', 'poiweight': [], 'childtype': [], 'adname': '玉州区', 'name': '博技汽车维修美容服务中心', 'location': '110.167285,22.605140', 'tel': '18269416255;18777107078', 'shopid': [], 'id': 'B0FFMEVPSP'}, {'parent': [], 'address': '新民路220号', 'distance': [], 'pname': '广西壮族自治区', 'importance': [], 'biz_ext': {'cost': [], 'rating': '4.5'}, 'biz_type': [], 'cityname': '玉林市', 'type': '汽车服务;汽车养护/装饰;汽车养护', 'photos': [{'title': [], 'url': 'http://store.is.autonavi.com/showpic/9ecc4163e70cccccffbf8414a5b81aba'}, {'title': [], 'url': 'http://store.is.autonavi.com/showpic/bc0fd518c4ae05fc1771b8e840bec913'}, {'title': [], 'url': 'http://store.is.autonavi.com/showpic/9d2f20e2148a95722672c1b376f3b6cd'}], 'typecode': '010400', 'shopinfo': '0', 'poiweight': [], 'childtype': [], 'adname': '玉州区', 'name': '顺风汽车美容服务中心(新民路店)', 'location': '110.136613,22.627109', 'tel': '18776355568', 'shopid': [], 'id': 'B03070NH12'}, {'parent': [], 'address': '樟木镇交通管理站东侧50米', 'distance': [], 'pname': '广西壮族自治区', 'importance': [], 'biz_ext': {'cost': [], 'rating': '3.1'}, 'biz_type': [], 'cityname': '玉林市', 'type': '汽车服务;汽车养护/装饰;汽车养护', 'photos': [], 'typecode': '010400', 'shopinfo': '0', 'poiweight': [], 'childtype': [], 'adname': '福绵区', 'name': '车之家汽车美容服务中心', 'location': '110.013341,22.530303', 'tel': [], 'shopid': [], 'id': 'B0GK1CZFHE'}, {'parent': [], 'address': '六靖镇华南街257号', 'distance': [], 'pname': '广西壮族自治区', 'importance': [], 'biz_ext': {'cost': [], 'rating': '4.1'}, 'biz_type': [], 'cityname': '玉林市', 'type': '汽车服务;汽车养护/装饰;汽车养护', 'photos': [{'title': [], 'url': 'http://store.is.autonavi.com/showpic/516260acdaf67cdf42dff8759873bfe9'}], 'typecode': '010400', 'shopinfo': '0', 'poiweight': [], 'childtype': [], 'adname': '北流市', 'name': '佰车汇汽车美容服务中心', 'location': '110.532264,22.254248', 'tel': [], 'shopid': [], 'id': 'B0FFHJXWTV'}, {'parent': [], 'address': '苗园路136号恒驰玛吉斯汽车服务中心', 'distance': [], 'pname': '广西壮族自治区', 'importance': [], 'biz_ext': {'cost': [], 'rating': '3.8'}, 'biz_type': [], 'cityname': '玉林市', 'type': '汽车维修;汽车维修;汽车维修', 'photos': [{'title': [], 'url': 'http://store.is.autonavi.com/showpic/70ce0890bcb6ead8ad2884caca4b94d2'}, {'title': [], 'url': 'http://store.is.autonavi.com/showpic/80e23e4c7caca528ccf49367ae4dd9f0'}, {'title': [], 'url': 'http://store.is.autonavi.com/showpic/577074558a06e7962d736bf964267254'}], 'typecode': '030000', 'shopinfo': '1', 'poiweight': [], 'childtype': [], 'adname': '玉州区', 'name': '恒驰玛吉斯汽车服务中心', 'location': '110.170250,22.608439', 'tel': '18877585937;18878108272', 'shopid': [], 'id': 'B0FFG4OMH1'}, {'parent': [], 'address': '民西路与民北路交叉口西南120米', 'distance': [], 'pname': '广西壮族自治区', 'importance': [], 'biz_ext': {'cost': [], 'rating': '3.5'}, 'biz_type': [], 'cityname': '玉林市', 'type': '汽车服务;汽车养护/装饰;汽车养护', 'photos': [], 'typecode': '010400', 'shopinfo': '0', 'poiweight': [], 'childtype': [], 'adname': '北流市', 'name': '鸿兴汽车美容维护服务中心', 'location': '110.356123,22.782993', 'tel': [], 'shopid': [], 'id': 'B0FFG10PF1'}, {'parent': [], 'address': '富林路10-19号', 'distance': [], 'pname': '广西壮族自治区', 'importance': [], 'biz_ext': {'cost': [], 'rating': '3.9'}, 'biz_type': [], 'cityname': '玉林市', 'type': '汽车服务;汽车养护/装饰;汽车养护', 'photos': [{'title': [], 'url': 'http://store.is.autonavi.com/showpic/045458e9bef76bffeadfbb9d7d88c6d0'}], 'typecode': '010400', 'shopinfo': '0', 'poiweight': [], 'childtype': [], 'adname': '北流市', 'name': '新阳光汽车美容服务中心', 'location': '110.332273,22.704641', 'tel': '15878019440', 'shopid': [], 'id': 'B0FFIXOLNI'}, {'parent': [], 'address': '广西工贸高级技工学校门口正对面', 'distance': [], 'pname': '广西壮族自治区', 'importance': [], 'biz_ext': {'cost': [], 'rating': '4.1'}, 'biz_type': [], 'cityname': '玉林市', 'type': '汽车维修;汽车维修;汽车维修', 'photos': [{'title': [], 'url': 'http://store.is.autonavi.com/showpic/2502181555eca1b5e53af55164abe458'}, {'title': [], 'url': 'http://store.is.autonavi.com/showpic/8b23a84f4621c87587728e417e3ac581'}, {'title': [], 'url': 'http://store.is.autonavi.com/showpic/5132637520fc9504a7c0d222e057c478'}], 'typecode': '030000', 'shopinfo': '1', 'poiweight': [], 'childtype': [], 'adname': '玉州区', 'name': '鸿祥汽修服务中心', 'location': '110.179649,22.597303', 'tel': '15807754223', 'shopid': [], 'id': 'B0H2MZ2BQT'}, {'parent': [], 'address': '银丰世纪城对面德福汽车美容服务中心', 'distance': [], 'pname': '广西壮族自治区', 'importance': [], 'biz_ext': {'cost': [], 'rating': '4.2'}, 'biz_type': [], 'cityname': '玉林市', 'type': '汽车服务;汽车养护/装饰;汽车养护', 'photos': [{'title': [], 'url': 'http://store.is.autonavi.com/showpic/acbf2079b992e2ae7c92aba337820c02'}, {'title': [], 'url': 'http://store.is.autonavi.com/showpic/36429132f30172fae50fab8e6bee6457'}, {'title': [], 'url': 'http://store.is.autonavi.com/showpic/e37e6122b7b70b012090d522ff038cdf'}], 'typecode': '010400', 'shopinfo': '0', 'poiweight': [], 'childtype': [], 'adname': '玉州区', 'name': '德福汽车美容中心', 'location': '110.175349,22.619295', 'tel': '18376580249', 'shopid': [], 'id': 'B0FFF02908'}, {'parent': [], 'address': '规划路与朱砂路交叉口北180米', 'distance': [], 'pname': '广西壮族自治区', 'importance': [], 'biz_ext': {'cost': [], 'rating': '3.7'}, 'biz_type': [], 'cityname': '玉林市', 'type': '汽车维修;汽车维修;汽车维修', 'photos': [{'title': [], 'url': 'http://store.is.autonavi.com/showpic/e3fd3606801183e486c04b4b31e06dc1'}], 'typecode': '030000', 'shopinfo': '0', 'poiweight': [], 'childtype': [], 'adname': '北流市', 'name': '鸿润汽车快修/美容服务中心', 'location': '110.361530,22.689216', 'tel': [], 'shopid': [], 'id': 'B0J1OHHDTG'}, {'parent': [], 'address': '清湖镇车站新兴小区', 'distance': [], 'pname': '广西壮族自治区', 'importance': [], 'biz_ext': {'cost': [], 'rating': '4.0'}, 'biz_type': [], 'cityname': '玉林市', 'type': '汽车服务;汽车养护/装饰;汽车养护', 'photos': [{'title': [], 'url': 'http://store.is.autonavi.com/showpic/d9cce0c99e10c79e3480302a7acbbeb0'}, {'title': [], 'url': 'http://aos-cdn-image.amap.com/sns/ugccomment/e605b37e-fc51-4683-bfe2-a8dbed6ce6ca.jpg'}], 'typecode': '010400', 'shopinfo': '1', 'poiweight': [], 'childtype': [], 'adname': '陆川县', 'name': '三哥汽车维修美容服务中心', 'location': '110.347533,22.028419', 'tel': '18088862209', 'shopid': [], 'id': 'B0G05HKXF4'}, {'parent': [], 'address': '广恒路与东风南路交汇处', 'distance': [], 'pname': '广西壮族自治区', 'importance': [], 'biz_ext': {'cost': [], 'rating': '4.2'}, 'biz_type': [], 'cityname': '玉林市', 'type': '汽车维修;汽车维修;汽车维修', 'photos': [{'title': [], 'url': 'http://store.is.autonavi.com/showpic/0537b1c3de2c81dfe7c2edcedf1af028'}, {'title': [], 'url': 'http://store.is.autonavi.com/showpic/75bcc4e193d9bba711bfd61bd48993d3'}], 'typecode': '030000', 'shopinfo': '1', 'poiweight': [], 'childtype': [], 'adname': '博白县', 'name': '瑞达汽车维修美容服务中心', 'location': '109.986479,22.242629', 'tel': '19986139738', 'shopid': [], 'id': 'B0FFMELI8R'}, {'parent': [], 'address': '城东路188号', 'distance': [], 'pname': '广西壮族自治区', 'importance': [], 'biz_ext': {'cost': [], 'rating': '4.3'}, 'biz_type': [], 'cityname': '玉林市', 'type': '汽车维修;汽车维修;汽车维修', 'photos': [{'title': [], 'url': 'http://store.is.autonavi.com/showpic/c72f413643011aea1457326bf3977e6f'}], 'typecode': '030000', 'shopinfo': '0', 'poiweight': [], 'childtype': [], 'adname': '博白县', 'name': '威名汽车维修服务中心', 'location': '109.989060,22.258419', 'tel': '15977534294', 'shopid': [], 'id': 'B0KK7RQLPM'}, {'parent': [], 'address': '一环北路6号', 'distance': [], 'pname': '广西壮族自治区', 'importance': [], 'biz_ext': {'cost': [], 'rating': '4.2'}, 'biz_type': [], 'cityname': '玉林市', 'type': '汽车维修;汽车维修;汽车维修', 'photos': [{'title': [], 'url': 'http://store.is.autonavi.com/showpic/8d0aba672d2dc4f364837bf8f5198055'}, {'title': [], 'url': 'http://store.is.autonavi.com/showpic/dcc631fd1be5fac2aa0c533e048f9f8c'}], 'typecode': '030000', 'shopinfo': '0', 'poiweight': [], 'childtype': [], 'adname': '玉州区', 'name': '宏海汽车维修服务中心', 'location': '110.167902,22.647033', 'tel': '0775-2397889', 'shopid': [], 'id': 'B0IB1HCN2D'}, {'parent': [], 'address': '一环北路81号', 'distance': [], 'pname': '广西壮族自治区', 'importance': [], 'biz_ext': {'cost': [], 'rating': '4.5'}, 'biz_type': [], 'cityname': '玉林市', 'type': '汽车维修;汽车综合维修;汽车综合维修', 'photos': [{'title': [], 'url': 'http://store.is.autonavi.com/showpic/640f745dd079e37f0e11169d90fcf3ec'}, {'title': [], 'url': 'http://store.is.autonavi.com/showpic/45728a623d60a2ea316c8ba197137cc5'}], 'typecode': '030100', 'shopinfo': '0', 'poiweight': [], 'childtype': [], 'adname': '玉州区', 'name': '玉林市运海汽车维修服务有限公司', 'location': '110.165246,22.648420', 'tel': '0775-2676789;18977587000', 'shopid': [], 'id': 'B03070NUYA'}, {'parent': [], 'address': '中山路68号', 'distance': [], 'pname': '广西壮族自治区', 'importance': [], 'biz_ext': {'cost': [], 'rating': '3.8'}, 'biz_type': [], 'cityname': '玉林市', 'type': '汽车服务;汽车养护/装饰;汽车养护', 'photos': [{'title': [], 'url': 'http://store.is.autonavi.com/showpic/741e9bf02de44d2088ceff444cdf6b77'}], 'typecode': '010400', 'shopinfo': '0', 'poiweight': [], 'childtype': [], 'adname': '陆川县', 'name': '嘉豪汽车美容服务中心', 'location': '110.321315,21.907388', 'tel': [], 'shopid': [], 'id': 'B0JDUSOFMS'}, {'parent': [], 'address': '一环北路279号玉柴汽车城', 'distance': [], 'pname': '广西壮族自治区', 'importance': [], 'biz_ext': {'cost': [], 'rating': '3.9'}, 'biz_type': [], 'cityname': '玉林市', 'type': '汽车维修;汽车维修;汽车维修', 'photos': [], 'typecode': '030000', 'shopinfo': '1', 'poiweight': [], 'childtype': [], 'adname': '玉州区', 'name': '理想汽车玉林玉州服务中心(一环北路临时店)', 'location': '110.158745,22.648593', 'tel': '15977997467', 'shopid': [], 'id': 'B0IBRH134O'}, {'parent': [], 'address': '名木居(铁力木)手工艺家具厂西南侧', 'distance': [], 'pname': '广西壮族自治区', 'importance': [], 'biz_ext': {'cost': [], 'rating': '4.4'}, 'biz_type': [], 'cityname': '玉林市', 'type': '汽车维修;汽车综合维修;汽车综合维修', 'photos': [{'title': [], 'url': 'http://store.is.autonavi.com/showpic/0111b066450ae628c1a602f995513c39'}, {'title': [], 'url': 'http://store.is.autonavi.com/showpic/5f013862ee7e468ea7281f37f49644f9'}, {'title': [], 'url': 'http://store.is.autonavi.com/showpic/8b8bf4a5d895af66399af058f8efa0f5'}], 'typecode': '030100', 'shopinfo': '0', 'poiweight': [], 'childtype': [], 'adname': '玉州区', 'name': '祥辉汽车维修服务中心', 'location': '110.147617,22.672534', 'tel': '18176609722;18775584350', 'shopid': [], 'id': 'B0FFKXN9HF'}, {'parent': [], 'address': '425县道', 'distance': [], 'pname': '广西壮族自治区', 'importance': [], 'biz_ext': {'cost': [], 'rating': '3.5'}, 'biz_type': [], 'cityname': '玉林市', 'type': '汽车维修;汽车维修;汽车维修', 'photos': [{'title': [], 'url': 'http://store.is.autonavi.com/showpic/633409fcbb75a36f5676c524b7898ffa'}, {'title': [], 'url': 'http://store.is.autonavi.com/showpic/a7c4ab898afb7d85b32843acb768d2aa'}, {'title': [], 'url': 'http://store.is.autonavi.com/showpic/fed3495e713c33571b044a48d64a888f'}], 'typecode': '030000', 'shopinfo': '0', 'poiweight': [], 'childtype': [], 'adname': '北流市', 'name': '易记汽车钣金喷漆美容服务中心', 'location': '110.687648,22.323808', 'tel': [], 'shopid': [], 'id': 'B0LAO9BY58'}, {'parent': [], 'address': '大南路与一环西路辅路交叉口南340米', 'distance': [], 'pname': '广西壮族自治区', 'importance': [], 'biz_ext': {'cost': [], 'rating': '4.2'}, 'biz_type': [], 'cityname': '玉林市', 'type': '汽车维修;汽车维修;汽车维修', 'photos': [{'title': [], 'url': 'http://store.is.autonavi.com/showpic/918d5fdee88b308eefe506760c3eb75f'}], 'typecode': '030000', 'shopinfo': '1', 'poiweight': [], 'childtype': [], 'adname': '玉州区', 'name': '众奥达汽车服务中心', 'location': '110.146103,22.605099', 'tel': '13877530910;18107751448', 'shopid': [], 'id': 'B0FFI2M9YG'}], 'status': '1', 'info': 'OK'}\n",
"{'suggestion': {'keywords': [], 'cities': []}, 'count': '450', 'infocode': '10000', 'pois': [{'parent': [], 'address': '沿江西路与大南路交叉口南180米', 'distance': [], 'pname': '广西壮族自治区', 'importance': [], 'biz_ext': {'cost': [], 'rating': '4.3'}, 'biz_type': [], 'cityname': '玉林市', 'type': '汽车服务;汽车养护/装饰;汽车养护', 'photos': [{'title': [], 'url': 'http://store.is.autonavi.com/showpic/eed06eac49dc0778e7fa674ab9cdfcba'}, {'title': [], 'url': 'http://store.is.autonavi.com/showpic/810ca2da9ed6a0aca3921aa3ab25a65e'}, {'title': [], 'url': 'http://store.is.autonavi.com/showpic/2eb226aaf996f7e3ed9e578a9f3c19c9'}], 'typecode': '010400', 'shopinfo': '0', 'poiweight': [], 'childtype': [], 'adname': '玉州区', 'name': '车爵仕汽车美容服务(大南路店)', 'location': '110.146232,22.605712', 'tel': '15578581308;18775518408', 'shopid': [], 'id': 'B0FFINF3CN'}, {'parent': [], 'address': '人民中路508号5-7', 'distance': [], 'pname': '广西壮族自治区', 'importance': [], 'biz_ext': {'cost': [], 'rating': '3.6'}, 'biz_type': [], 'cityname': '玉林市', 'type': '汽车维修;汽车维修;汽车维修', 'photos': [{'title': [], 'url': 'http://store.is.autonavi.com/showpic/5fc899c3aba591761843e83f0990a37a'}], 'typecode': '030000', 'shopinfo': '0', 'poiweight': [], 'childtype': [], 'adname': '博白县', 'name': '奥捷汽修服务中心', 'location': '109.979587,22.249531', 'tel': [], 'shopid': [], 'id': 'B0KD9AWDXC'}, {'parent': [], 'address': '大南路117号', 'distance': [], 'pname': '广西壮族自治区', 'importance': [], 'biz_ext': {'cost': [], 'rating': '4.0'}, 'biz_type': [], 'cityname': '玉林市', 'type': '汽车服务;汽车养护/装饰;汽车养护', 'photos': [{'title': [], 'url': 'http://store.is.autonavi.com/showpic/3e695b5b9e0e17545eec350830c79fd1'}], 'typecode': '010400', 'shopinfo': '0', 'poiweight': [], 'childtype': [], 'adname': '玉州区', 'name': '魅车族汽车养护服务中心', 'location': '110.146075,22.604966', 'tel': '0775-2082792;13597041491', 'shopid': [], 'id': 'B0FFK9SQ7S'}, {'parent': [], 'address': '441县道东50米', 'distance': [], 'pname': '广西壮族自治区', 'importance': [], 'biz_ext': {'cost': [], 'rating': '3.6'}, 'biz_type': [], 'cityname': '玉林市', 'type': '汽车服务;汽车养护/装饰;汽车养护', 'photos': [{'title': [], 'url': 'http://aos-cdn-image.amap.com/sns/ugccomment/2916af10-7495-4a00-815e-568efebba9d9.jpg'}, {'title': [], 'url': 'http://store.is.autonavi.com/showpic/0551e3223eb892a88a6fedfcaa11ca36'}, {'title': [], 'url': 'http://store.is.autonavi.com/showpic/037f87399351603596c7471ea1c3112f'}], 'typecode': '010400', 'shopinfo': '1', 'poiweight': [], 'childtype': [], 'adname': '北流市', 'name': '志和汽车美容服务中心', 'location': '110.337240,22.657669', 'tel': [], 'shopid': [], 'id': 'B0FFKEZKH0'}, {'parent': [], 'address': '大南路与广新路交叉口北160米', 'distance': [], 'pname': '广西壮族自治区', 'importance': [], 'biz_ext': {'cost': [], 'rating': '3.5'}, 'biz_type': [], 'cityname': '玉林市', 'type': '汽车服务;汽车养护/装饰;汽车养护', 'photos': [], 'typecode': '010400', 'shopinfo': '0', 'poiweight': [], 'childtype': [], 'adname': '玉州区', 'name': '满天星汽车美容服务中心', 'location': '110.145788,22.605345', 'tel': [], 'shopid': [], 'id': 'B0K3TXNQO5'}, {'parent': [], 'address': '玉福路口靓家装入口', 'distance': [], 'pname': '广西壮族自治区', 'importance': [], 'biz_ext': {'cost': [], 'rating': '3.5'}, 'biz_type': [], 'cityname': '玉林市', 'type': '汽车服务;汽车养护/装饰;汽车养护', 'photos': [{'title': [], 'url': 'http://store.is.autonavi.com/showpic/e07c9f02c61a949de8c37ea7cbb1f360'}], 'typecode': '010400', 'shopinfo': '0', 'poiweight': [], 'childtype': [], 'adname': '玉州区', 'name': '顺达汽车美容服务中心', 'location': '110.124158,22.604315', 'tel': [], 'shopid': [], 'id': 'B0FFGHP07B'}, {'parent': [], 'address': '玉州区友车维修美容中心石牛安置区B区2幢', 'distance': [], 'pname': '广西壮族自治区', 'importance': [], 'biz_ext': {'cost': [], 'rating': '3.9'}, 'biz_type': [], 'cityname': '玉林市', 'type': '汽车服务;汽车养护/装饰;汽车养护', 'photos': [{'title': [], 'url': 'http://store.is.autonavi.com/showpic/0476c465e2b79f6fd4c494ff7dad6e6e'}, {'title': [], 'url': 'http://store.is.autonavi.com/showpic/b58a427a3a1b508514b1bada188c0b84'}], 'typecode': '010400', 'shopinfo': '1', 'poiweight': [], 'childtype': [], 'adname': '玉州区', 'name': '友车维修美容中心', 'location': '110.183769,22.660174', 'tel': '15626562550;15878882556', 'shopid': [], 'id': 'B0G2U61ALB'}, {'parent': [], 'address': '黎村镇平岭', 'distance': [], 'pname': '广西壮族自治区', 'importance': [], 'biz_ext': {'cost': [], 'rating': '3.9'}, 'biz_type': [], 'cityname': '玉林市', 'type': '汽车服务;汽车养护/装饰;汽车养护', 'photos': [{'title': [], 'url': 'http://store.is.autonavi.com/showpic/876ef0bbac4e2869a22e05fa36eca7be'}, {'title': [], 'url': 'http://store.is.autonavi.com/showpic/64cc4e4f1ca30838397d3b6b2e138ec0'}], 'typecode': '010400', 'shopinfo': '0', 'poiweight': [], 'childtype': [], 'adname': '容县', 'name': '联兄汽车美容服务中心', 'location': '110.731618,22.597677', 'tel': '14777890660;15277505813', 'shopid': [], 'id': 'B0GK1CZFWK'}, {'parent': [], 'address': '中环西路1076号', 'distance': [], 'pname': '广西壮族自治区', 'importance': [], 'biz_ext': {'cost': [], 'rating': '4.1'}, 'biz_type': [], 'cityname': '玉林市', 'type': '汽车服务;汽车养护/装饰;汽车养护', 'photos': [{'title': [], 'url': 'http://store.is.autonavi.com/showpic/bb4b9b27a652456f76c6219766414ba9'}, {'title': [], 'url': 'https://aos-comment.amap.com/B0H6S71SP1/comment/862563ad171f5e4c90fff47db67ee45f_2048_2048_80.jpg'}, {'title': [], 'url': 'http://store.is.autonavi.com/showpic/82e2cfb496377ec6bc53459e549152b7'}], 'typecode': '010400', 'shopinfo': '0', 'poiweight': [], 'childtype': [], 'adname': '容县', 'name': '肥运四驱汽车养护维修服务', 'location': '110.532828,22.844294', 'tel': [], 'shopid': [], 'id': 'B0J1RAP3I7'}, {'parent': [], 'address': '南江街道苗园路388号钱江源大酒店停车场', 'distance': [], 'pname': '广西壮族自治区', 'importance': [], 'biz_ext': {'cost': [], 'rating': '4.2'}, 'biz_type': [], 'cityname': '玉林市', 'type': '汽车维修;汽车维修;汽车维修', 'photos': [{'title': [], 'url': 'http://store.is.autonavi.com/showpic/a8775896199e22d549254e789a468567'}, {'title': [], 'url': 'http://store.is.autonavi.com/showpic/b973b0e709626dd67081eccc75e256b2'}, {'title': [], 'url': 'http://store.is.autonavi.com/showpic/049fac5a1d8a638c42d3b0f3bd767422'}], 'typecode': '030000', 'shopinfo': '1', 'poiweight': [], 'childtype': [], 'adname': '玉州区', 'name': '业桂汽车维修服务中心', 'location': '110.156436,22.600918', 'tel': '0775-3281049;15207851879', 'shopid': [], 'id': 'B0FFHCEQPI'}, {'parent': [], 'address': '大南路与双龙路交叉口西南180米', 'distance': [], 'pname': '广西壮族自治区', 'importance': [], 'biz_ext': {'cost': [], 'rating': '4.3'}, 'biz_type': [], 'cityname': '玉林市', 'type': '汽车维修;汽车综合维修;汽车综合维修', 'photos': [{'title': [], 'url': 'http://store.is.autonavi.com/showpic/68cdab78003502a5300b1cc5811dd67f'}], 'typecode': '030100', 'shopinfo': '0', 'poiweight': [], 'childtype': [], 'adname': '玉州区', 'name': '车之士汽车维修服务中心', 'location': '110.142331,22.582665', 'tel': [], 'shopid': [], 'id': 'B0FFGHN3VC'}, {'parent': [], 'address': '民主南路与常乐路交叉口南260米', 'distance': [], 'pname': '广西壮族自治区', 'importance': [], 'biz_ext': {'cost': [], 'rating': '3.9'}, 'biz_type': [], 'cityname': '玉林市', 'type': '汽车服务;汽车养护/装饰;汽车养护', 'photos': [{'title': [], 'url': 'http://store.is.autonavi.com/showpic/42cfd4470331a1a1b40c100fb278e501'}], 'typecode': '010400', 'shopinfo': '0', 'poiweight': [], 'childtype': [], 'adname': '玉州区', 'name': '搏世车管家服务中心', 'location': '110.178275,22.604732', 'tel': '15177572422;15678581553', 'shopid': [], 'id': 'B0FFM6YE7U'}, {'parent': [], 'address': '人民东路5号', 'distance': [], 'pname': '广西壮族自治区', 'importance': [], 'biz_ext': {'cost': [], 'rating': '4.2'}, 'biz_type': [], 'cityname': '玉林市', 'type': '汽车维修;奥迪特约维修;奥迪维修', 'photos': [{'title': [], 'url': 'http://store.is.autonavi.com/showpic/10618971393c5ad00666f4c3e38b4a8f'}], 'typecode': '030400', 'shopinfo': '0', 'poiweight': [], 'childtype': [], 'adname': '玉州区', 'name': '玉奥奥迪维修保养服务中心', 'location': '110.185406,22.646224', 'tel': '18077588924', 'shopid': [], 'id': 'B0FFJWVXBD'}, {'parent': [], 'address': '一环北路188号入二手车市场内', 'distance': [], 'pname': '广西壮族自治区', 'importance': [], 'biz_ext': {'cost': [], 'rating': '4.5'}, 'biz_type': [], 'cityname': '玉林市', 'type': '汽车维修;汽车综合维修;汽车综合维修|汽车服务;汽车养护/装饰;汽车养护', 'photos': [{'title': [], 'url': 'http://store.is.autonavi.com/showpic/8291e454d0c2c48d3f940d3845e0ae97'}, {'title': [], 'url': 'http://store.is.autonavi.com/showpic/e131c0e867ffd37940049b28a4a18291'}, {'title': [], 'url': 'http://store.is.autonavi.com/showpic/d2c782f3487834447ddeb3f205bb3b40'}], 'typecode': '030100|010400', 'shopinfo': '1', 'poiweight': [], 'childtype': [], 'adname': '玉州区', 'name': '玉林市卓佳汽车维修服务有限公司', 'location': '110.161138,22.647105', 'tel': '0775-2308680', 'shopid': [], 'id': 'B0J0YUTLES'}, {'parent': [], 'address': '南环里41号', 'distance': [], 'pname': '广西壮族自治区', 'importance': [], 'biz_ext': {'cost': [], 'rating': '4.9'}, 'biz_type': [], 'cityname': '玉林市', 'type': '汽车服务;汽车养护/装饰;汽车养护|汽车服务;洗车场;洗车场|汽车服务;汽车配件销售;汽车配件销售|汽车维修;汽车维修;汽车维修', 'photos': [{'title': [], 'url': 'http://store.is.autonavi.com/showpic/ffc9bee0f15e2cdb2ba2747b642b9218'}, {'title': [], 'url': 'http://store.is.autonavi.com/showpic/cd9899aee894e9acf865fb0867d23c87'}, {'title': [], 'url': 'http://store.is.autonavi.com/showpic/45227849f404128fd0ea6be7c8b51714'}], 'typecode': '010400|010500|010800|030000', 'shopinfo': '1', 'poiweight': [], 'childtype': [], 'adname': '玉州区', 'name': '驰加汽车服务中心(玉州区南环里店)', 'location': '110.168004,22.624933', 'tel': '13317755115', 'shopid': [], 'id': 'B0I0ZUBQWM'}, {'parent': [], 'address': '玉贵路571号', 'distance': [], 'pname': '广西壮族自治区', 'importance': [], 'biz_ext': {'cost': [], 'rating': '4.2'}, 'biz_type': [], 'cityname': '玉林市', 'type': '汽车服务;汽车养护/装饰;汽车养护|汽车服务;洗车场;洗车场', 'photos': [{'title': [], 'url': 'http://store.is.autonavi.com/showpic/b6a60beb4fd3650105d050f86186bf91'}, {'title': [], 'url': 'http://store.is.autonavi.com/showpic/d2ca3df603ce15559366986361e39d5c'}], 'typecode': '010400|010500', 'shopinfo': '1', 'poiweight': [], 'childtype': [], 'adname': '兴业县', 'name': '瘦弟洗车美容服务部', 'location': '109.880986,22.746014', 'tel': '13977569081', 'shopid': [], 'id': 'B0307017PH'}, {'parent': [], 'address': '玉东派出所玉林市第一职业中等专业学校警务室东侧100米', 'distance': [], 'pname': '广西壮族自治区', 'importance': [], 'biz_ext': {'cost': [], 'rating': '4.4'}, 'biz_type': [], 'cityname': '玉林市', 'type': '汽车服务;汽车养护/装饰;汽车养护', 'photos': [{'title': [], 'url': 'http://store.is.autonavi.com/showpic/da35e95470573e1403ee801f9b189fae'}, {'title': [], 'url': 'http://store.is.autonavi.com/showpic/49b730d2020fee7143c980ab0556d6b6'}], 'typecode': '010400', 'shopinfo': '0', 'poiweight': [], 'childtype': [], 'adname': '玉州区', 'name': '奥众汽车美容中心', 'location': '110.205356,22.652590', 'tel': '19148058010', 'shopid': [], 'id': 'B0FFIBGCAB'}, {'parent': [], 'address': '金港路与苗园路交叉口北40米', 'distance': [], 'pname': '广西壮族自治区', 'importance': [], 'biz_ext': {'cost': [], 'rating': '4.1'}, 'biz_type': [], 'cityname': '玉林市', 'type': '汽车服务;汽车养护/装饰;汽车养护', 'photos': [{'title': [], 'url': 'http://store.is.autonavi.com/showpic/0c3bb712e3fb444acb5bbadeee73a227'}, {'title': [], 'url': 'http://store.is.autonavi.com/showpic/9f652c7acbf2f0ffcd0a15ae5c839561'}, {'title': [], 'url': 'http://store.is.autonavi.com/showpic/cbd5a5812aeac8b4d6ccfa8230de2bef'}], 'typecode': '010400', 'shopinfo': '1', 'poiweight': [], 'childtype': [], 'adname': '玉州区', 'name': '路逸汽修美容服务中心', 'location': '110.179468,22.616065', 'tel': '18775598234', 'shopid': [], 'id': 'B0I2GM8VBQ'}, {'parent': [], 'address': '二环东路201号绿地城小区13幢1层11号', 'distance': [], 'pname': '广西壮族自治区', 'importance': [], 'biz_ext': {'cost': [], 'rating': '4.3'}, 'biz_type': [], 'cityname': '玉林市', 'type': '汽车服务;汽车养护/装饰;汽车养护', 'photos': [{'title': [], 'url': 'http://store.is.autonavi.com/showpic/10d54cd02666910130585e6e9e6e8d66'}, {'title': [], 'url': 'http://store.is.autonavi.com/showpic/1d269b30449a2e9e5301078e8f949fb5'}, {'title': [], 'url': 'https://aos-comment.amap.com/B0J14DZ5WZ/headerImg/5b369554330a6142654a737b6d39dc67_2048_2048_80.jpg'}], 'typecode': '010400', 'shopinfo': '1', 'poiweight': [], 'childtype': [], 'adname': '玉州区', 'name': '玉林市威驰汽车养护中心', 'location': '110.195267,22.613580', 'tel': '18878558180', 'shopid': [], 'id': 'B0J14DZ5WZ'}, {'parent': [], 'address': '苗园路与秀南里交叉口西南60米', 'distance': [], 'pname': '广西壮族自治区', 'importance': [], 'biz_ext': {'cost': [], 'rating': '4.0'}, 'biz_type': [], 'cityname': '玉林市', 'type': '汽车维修;汽车综合维修;汽车综合维修', 'photos': [{'title': [], 'url': 'http://store.is.autonavi.com/showpic/27ebac15cd6a5bb56c52f2a7c50181cd'}, {'title': [], 'url': 'http://store.is.autonavi.com/showpic/665656a634520fe3867def004535836b'}, {'title': [], 'url': 'http://store.is.autonavi.com/showpic/28d463e953a7fcda91f9540f60ed397b'}], 'typecode': '030100', 'shopinfo': '0', 'poiweight': [], 'childtype': [], 'adname': '玉州区', 'name': '车美侠汽车维修服务中心', 'location': '110.162310,22.604482', 'tel': [], 'shopid': [], 'id': 'B0LDSSWLK1'}], 'status': '1', 'info': 'OK'}\n",
"{'suggestion': {'keywords': [], 'cities': []}, 'count': '450', 'infocode': '10000', 'pois': [{'parent': [], 'address': '桃浦镇红柳路288号', 'distance': [], 'pname': '上海市', 'importance': [], 'biz_ext': {'cost': [], 'rating': '4.5'}, 'biz_type': [], 'cityname': '上海市', 'type': '汽车销售;梅赛德斯-奔驰特约销售;梅赛德斯-奔驰销售|汽车维修;梅赛德斯-奔驰特约维修;梅赛德斯-奔驰维修', 'photos': [{'title': [], 'url': 'http://aos-cdn-image.amap.com/sns/ugccomment/3fa30c74-7160-4040-a294-9c773b2be743.jpg'}, {'title': [], 'url': 'http://store.is.autonavi.com/showpic/d005196c1cbcd31b56caa00cac5eb519'}, {'title': [], 'url': 'http://aos-cdn-image.amap.com/sns/ugccomment/94fcabca-3d3d-4edb-a817-3cef0c1456b0.jpg'}], 'typecode': '020900|031000', 'shopinfo': '0', 'poiweight': [], 'childtype': [], 'adname': '普陀区', 'name': '上海星瀚汽车维修服务有限公司', 'location': '121.356085,31.296238', 'tel': '021-61812266;021-80266999;4008205659', 'shopid': [], 'id': 'B00155Q6G5'}, {'parent': [], 'address': '嘉定工业区嘉唐公路1092号', 'distance': [], 'pname': '上海市', 'importance': [], 'biz_ext': {'cost': [], 'rating': '3.6'}, 'biz_type': [], 'cityname': '上海市', 'type': '汽车服务;汽车养护/装饰;汽车养护|汽车服务;洗车场;洗车场|汽车维修;汽车综合维修;汽车综合维修', 'photos': [{'title': [], 'url': 'http://store.is.autonavi.com/showpic/511e15a8f69df0c334a5be4584fcbbca'}, {'title': [], 'url': 'http://store.is.autonavi.com/showpic/6d36872f5fea980e113253f0773a411f'}, {'title': [], 'url': 'https://aos-comment.amap.com/B0FFFYSCEJ/comment/4cec2ab2221710c419a4bb6295476a70_2048_2048_80.jpg'}], 'typecode': '010400|010500|030100', 'shopinfo': '1', 'poiweight': [], 'childtype': [], 'adname': '嘉定区', 'name': '上海杭瑞汽车维修服务有限公司', 'location': '121.221221,31.422151', 'tel': '18916060757', 'shopid': [], 'id': 'B0FFFYSCEJ'}, {'parent': [], 'address': '巨鹿路272号(淮海中路地铁站3号口步行430米)', 'distance': [], 'pname': '上海市', 'importance': [], 'biz_ext': {'cost': [], 'rating': '4.5'}, 'biz_type': [], 'cityname': '上海市', 'type': '汽车维修;汽车综合维修;汽车综合维修', 'photos': [{'title': [], 'url': 'http://store.is.autonavi.com/showpic/c378aa3293f17ce1b917909e7f3ace0c'}, {'title': [], 'url': 'http://store.is.autonavi.com/showpic/71441a51e7655f8ba2a8624688bd74e6'}, {'title': [], 'url': 'http://store.is.autonavi.com/showpic/9582c69175c757b01fc0884c6944d095'}], 'typecode': '030100', 'shopinfo': '1', 'poiweight': [], 'childtype': [], 'adname': '黄浦区', 'name': '上海技嘉汽车维修服务有限公司', 'location': '121.461340,31.223184', 'tel': '021-62711648;13301677277', 'shopid': [], 'id': 'B00155IPMP'}, {'parent': [], 'address': '徐行镇曹新公路92号', 'distance': [], 'pname': '上海市', 'importance': [], 'biz_ext': {'cost': [], 'rating': '4.1'}, 'biz_type': [], 'cityname': '上海市', 'type': '汽车维修;汽车维修;汽车维修', 'photos': [{'title': [], 'url': 'https://aos-comment.amap.com/B0FFI2JLXI/headerImg/content_media_external_images_media_530_1657696073079_4a678168.jpg'}, {'title': [], 'url': 'https://aos-comment.amap.com/B0FFI2JLXI/headerImg/content_media_external_images_media_531_1657696073081_f8293ba8.jpg'}, {'title': [], 'url': 'https://aos-comment.amap.com/B0FFI2JLXI/headerImg/content_media_external_images_media_532_1657696073080_8c0c73c8.jpg'}], 'typecode': '030000', 'shopinfo': '0', 'poiweight': [], 'childtype': [], 'adname': '嘉定区', 'name': '海文汽车电路维修', 'location': '121.323225,31.433346', 'tel': '18221008968', 'shopid': [], 'id': 'B0FFI2JLXI'}, {'parent': [], 'address': '新郁路587号', 'distance': [], 'pname': '上海市', 'importance': [], 'biz_ext': {'cost': [], 'rating': '4.3'}, 'biz_type': [], 'cityname': '上海市', 'type': '汽车维修;汽车综合维修;汽车综合维修', 'photos': [{'title': [], 'url': 'http://store.is.autonavi.com/showpic/e7ed22d3334c606751044cc00983eee3'}, {'title': [], 'url': 'http://store.is.autonavi.com/showpic/d676a452328fb785cc7471e34268d5b3'}], 'typecode': '030100', 'shopinfo': '0', 'poiweight': [], 'childtype': [], 'adname': '嘉定区', 'name': '上海特立尼汽车维修有限公司', 'location': '121.361785,31.250699', 'tel': [], 'shopid': [], 'id': 'B00155I9Q0'}, {'parent': [], 'address': '江桥镇封浜星华公路2228号', 'distance': [], 'pname': '上海市', 'importance': [], 'biz_ext': {'cost': [], 'rating': '4.4'}, 'biz_type': [], 'cityname': '上海市', 'type': '汽车维修;汽车综合维修;汽车综合维修', 'photos': [{'title': [], 'url': 'http://store.is.autonavi.com/showpic/e5e33ca1765569fc0337411164b6c75c'}], 'typecode': '030100', 'shopinfo': '0', 'poiweight': [], 'childtype': [], 'adname': '嘉定区', 'name': '上海快乐汽车维修有限公司', 'location': '121.283046,31.273773', 'tel': '021-69136002', 'shopid': [], 'id': 'B001570JJS'}, {'parent': [], 'address': '安亭镇曹安公路4188号', 'distance': [], 'pname': '上海市', 'importance': [], 'biz_ext': {'cost': [], 'rating': '4.7'}, 'biz_type': [], 'cityname': '上海市', 'type': '汽车销售;大众特约销售;上海大众销售|汽车维修;大众特约维修;上海大众维修', 'photos': [{'title': [], 'url': 'http://store.is.autonavi.com/showpic/405c7822da559e7d4ebf1e4ac820c79b'}, {'title': [], 'url': 'http://store.is.autonavi.com/showpic/97dc749ab411dfc717c59b43c51a6617'}, {'title': [], 'url': 'http://store.is.autonavi.com/showpic/1da1faa84081d07d9f3387998d84bd0c'}], 'typecode': '020101|030201', 'shopinfo': '0', 'poiweight': [], 'childtype': [], 'adname': '嘉定区', 'name': '上海协通众盛汽车服务有限公司', 'location': '121.255607,31.276596', 'tel': '021-69593600;021-69593800', 'shopid': [], 'id': 'B00155KA5B'}, {'parent': [], 'address': '外高桥保税区申江路500号上海东华之星汽车维修服务有限公司', 'distance': [], 'pname': '上海市', 'importance': [], 'biz_ext': {'cost': [], 'rating': '4.3'}, 'biz_type': [], 'cityname': '上海市', 'type': '汽车销售;梅赛德斯-奔驰特约销售;梅赛德斯-奔驰销售|汽车维修;梅赛德斯-奔驰特约维修;梅赛德斯-奔驰维修', 'photos': [{'title': [], 'url': 'http://store.is.autonavi.com/showpic/f8ba5634a213a72cedbf6ce92ee3159e'}, {'title': [], 'url': 'https://aos-comment.amap.com/B0FFI799QQ/comment/6092b8c72e07e97081d0ee07f6be2ce1_2048_2048_80.jpg'}, {'title': [], 'url': 'http://store.is.autonavi.com/showpic/3ea6b21a24ea62db45893e9100be15ab'}], 'typecode': '020900|031000', 'shopinfo': '0', 'poiweight': [], 'childtype': [], 'adname': '浦东新区', 'name': '上海东华之星汽车维修服务有限公司', 'location': '121.623561,31.295200', 'tel': '021-60877800;021-80320000', 'shopid': [], 'id': 'B0FFI799QQ'}, {'parent': [], 'address': '嘉定工业区霍城路468号1幢1层A区', 'distance': [], 'pname': '上海市', 'importance': [], 'biz_ext': {'cost': [], 'rating': '4.6'}, 'biz_type': [], 'cityname': '上海市', 'type': '汽车维修;汽车维修;汽车维修', 'photos': [{'title': [], 'url': 'http://store.is.autonavi.com/showpic/15ef8bc970947ac647b86759df90ed8c'}, {'title': [], 'url': 'http://store.is.autonavi.com/showpic/230ae5df5e1df741e99d0838c686927f'}], 'typecode': '030000', 'shopinfo': '0', 'poiweight': [], 'childtype': [], 'adname': '嘉定区', 'name': '上海求异汽车维修有限公司', 'location': '121.231655,31.360830', 'tel': '021-39108678;13816852497', 'shopid': [], 'id': 'B0FFJPTTIN'}, {'parent': [], 'address': '合作路976号1层', 'distance': [], 'pname': '上海市', 'importance': [], 'biz_ext': {'cost': [], 'rating': '4.6'}, 'biz_type': [], 'cityname': '上海市', 'type': '汽车维修;汽车维修;汽车维修', 'photos': [{'title': [], 'url': 'http://store.is.autonavi.com/showpic/a59f2de7a8441a2b4f326102daf5198f'}, {'title': [], 'url': 'http://store.is.autonavi.com/showpic/c146a2b02aa2e97f6a8ece9805edd1e0'}], 'typecode': '030000', 'shopinfo': '0', 'poiweight': [], 'childtype': [], 'adname': '嘉定区', 'name': '上海臻品汽车维修有限公司', 'location': '121.253299,31.341573', 'tel': '18001820095;19921048919', 'shopid': [], 'id': 'B0FFKKPP09'}, {'parent': [], 'address': '高潮路781弄33号', 'distance': [], 'pname': '上海市', 'importance': [], 'biz_ext': {'cost': [], 'rating': '4.5'}, 'biz_type': [], 'cityname': '上海市', 'type': '汽车维修;汽车维修;汽车维修', 'photos': [{'title': [], 'url': 'http://store.is.autonavi.com/showpic/f600b0cd90d14c5db67f08ef006f23bb'}, {'title': [], 'url': 'http://store.is.autonavi.com/showpic/883645d57b1bb73b837754dcd475022b'}, {'title': [], 'url': 'http://store.is.autonavi.com/showpic/db67a92cd6b023bd7dc2ae64f28578d8'}], 'typecode': '030000', 'shopinfo': '1', 'poiweight': [], 'childtype': [], 'adname': '嘉定区', 'name': '上海众名汽车维修服务有限公司', 'location': '121.326713,31.248916', 'tel': '15921593039', 'shopid': [], 'id': 'B0J6KH98MK'}, {'parent': [], 'address': '金沙江西路2688号', 'distance': [], 'pname': '上海市', 'importance': [], 'biz_ext': {'cost': [], 'rating': '4.2'}, 'biz_type': [], 'cityname': '上海市', 'type': '汽车维修;汽车维修;汽车维修', 'photos': [{'title': [], 'url': 'http://store.is.autonavi.com/showpic/4dade2d34a7b777b9efd30156f2be446'}, {'title': [], 'url': 'http://store.is.autonavi.com/showpic/a3fdb75b553cc60844d3a52c4643e388'}, {'title': [], 'url': 'http://store.is.autonavi.com/showpic/8e96ae65d0e3982ffd29d0d0d5caa61e'}], 'typecode': '030000', 'shopinfo': '1', 'poiweight': [], 'childtype': [], 'adname': '嘉定区', 'name': '上海华世汽车维修服务有限公司', 'location': '121.298080,31.246004', 'tel': [], 'shopid': [], 'id': 'B0IRUA3J5F'}, {'parent': [], 'address': '川沙路461号', 'distance': [], 'pname': '上海市', 'importance': [], 'biz_ext': {'cost': [], 'rating': '4.1'}, 'biz_type': [], 'cityname': '上海市', 'type': '汽车维修;汽车维修;汽车维修', 'photos': [{'title': [], 'url': 'https://aos-comment.amap.com/B0FFKGB4L2/comment/e0f17f7187c824d14bae56253b7347b1_2048_2048_80.jpg'}, {'title': [], 'url': 'http://store.is.autonavi.com/showpic/036ef01382429e41362da5cdd5427819'}, {'title': [], 'url': 'http://store.is.autonavi.com/showpic/aeb7b4a33c8a6d41528d8b64eebcfb0c'}], 'typecode': '030000', 'shopinfo': '1', 'poiweight': [], 'childtype': [], 'adname': '浦东新区', 'name': '上海广江汽车维修服务有限公司', 'location': '121.669242,31.276621', 'tel': '021-52181128;13795451559', 'shopid': [], 'id': 'B0FFKGB4L2'}, {'parent': [], 'address': '马陆镇嘉昌路288号', 'distance': [], 'pname': '上海市', 'importance': [], 'biz_ext': {'cost': [], 'rating': '3.9'}, 'biz_type': [], 'cityname': '上海市', 'type': '汽车维修;汽车维修;汽车维修', 'photos': [{'title': [], 'url': 'http://store.is.autonavi.com/showpic/14faa540f52f5fbc48e25ad1b5bcf14c'}], 'typecode': '030000', 'shopinfo': '0', 'poiweight': [], 'childtype': [], 'adname': '嘉定区', 'name': '上海车晅汽车维修有限公司', 'location': '121.284483,31.383366', 'tel': [], 'shopid': [], 'id': 'B0FFL9QUP7'}, {'parent': [], 'address': '徐行镇嘉行公路1480号', 'distance': [], 'pname': '上海市', 'importance': [], 'biz_ext': {'cost': [], 'rating': '4.4'}, 'biz_type': [], 'cityname': '上海市', 'type': '汽车维修;汽车维修;汽车维修', 'photos': [{'title': [], 'url': 'http://store.is.autonavi.com/showpic/9ace83e526e43ee54cc84136d2268587'}, {'title': [], 'url': 'https://aos-comment.amap.com/B0FFL1T630/comment/202507_09-10361_1752028610010_23470853.jpg'}, {'title': [], 'url': 'https://aos-comment.amap.com/B0FFL1T630/comment/202507_09-10364_1752028610010_91907006.jpg'}], 'typecode': '030000', 'shopinfo': '0', 'poiweight': [], 'childtype': [], 'adname': '嘉定区', 'name': '上海新行汽车维修有限公司', 'location': '121.252970,31.425157', 'tel': [], 'shopid': [], 'id': 'B0FFL1T630'}, {'parent': [], 'address': '马陆镇美建路105号', 'distance': [], 'pname': '上海市', 'importance': [], 'biz_ext': {'cost': [], 'rating': '4.3'}, 'biz_type': [], 'cityname': '上海市', 'type': '汽车维修;汽车维修;汽车维修', 'photos': [{'title': [], 'url': 'http://store.is.autonavi.com/showpic/0830475480d280ed7aa6b430afd97323'}, {'title': [], 'url': 'http://store.is.autonavi.com/showpic/4945cc8e6fb8f0617e0464547bf3c798'}, {'title': [], 'url': 'http://store.is.autonavi.com/showpic/cef4f9b0a2a220c0eb008cb8b29ee7ca'}], 'typecode': '030000', 'shopinfo': '0', 'poiweight': [], 'childtype': [], 'adname': '嘉定区', 'name': '上海乐烁汽车维修有限公司', 'location': '121.319512,31.346917', 'tel': '13661882677', 'shopid': [], 'id': 'B0JDLXQIHT'}, {'parent': [], 'address': '立新路38-2号', 'distance': [], 'pname': '上海市', 'importance': [], 'biz_ext': {'cost': [], 'rating': '4.2'}, 'biz_type': [], 'cityname': '上海市', 'type': '汽车维修;汽车维修;汽车维修', 'photos': [{'title': [], 'url': 'http://store.is.autonavi.com/showpic/f40c3fae15b530a5e99f7b799e816eb2'}, {'title': [], 'url': 'https://aos-comment.amap.com/B0I1KCZ1G8/headerImg/46183fd9cf393fc012b68e7b8c8cc7f8_2048_2048_80.jpg'}, {'title': [], 'url': 'http://store.is.autonavi.com/showpic/46a7f9700ff7afb7d4d067425a5b6367'}], 'typecode': '030000', 'shopinfo': '0', 'poiweight': [], 'childtype': [], 'adname': '嘉定区', 'name': '上海共明汽车维修有限公司', 'location': '121.286650,31.385801', 'tel': [], 'shopid': [], 'id': 'B0I1KCZ1G8'}, {'parent': [], 'address': '金兰路255号', 'distance': [], 'pname': '上海市', 'importance': [], 'biz_ext': {'cost': [], 'rating': '4.4'}, 'biz_type': [], 'cityname': '上海市', 'type': '汽车维修;汽车维修;汽车维修', 'photos': [{'title': [], 'url': 'http://store.is.autonavi.com/showpic/3d0b142238ce959dcc59cbe903604499'}, {'title': [], 'url': 'http://store.is.autonavi.com/showpic/9965530bed053fded026106efb177c97'}], 'typecode': '030000', 'shopinfo': '0', 'poiweight': [], 'childtype': [], 'adname': '嘉定区', 'name': '上海奕明汽车维修有限公司', 'location': '121.217253,31.417395', 'tel': [], 'shopid': [], 'id': 'B0FFHJOXF3'}, {'parent': [], 'address': '徐行镇澄浏公路115号', 'distance': [], 'pname': '上海市', 'importance': [], 'biz_ext': {'cost': [], 'rating': '4.1'}, 'biz_type': [], 'cityname': '上海市', 'type': '汽车维修;汽车维修;汽车维修', 'photos': [{'title': [], 'url': 'https://aos-comment.amap.com/B001570JKO/headerImg/1657523996130_temp_1657523999182_c8dade0b.jpg'}, {'title': [], 'url': 'http://store.is.autonavi.com/showpic/2921b6b0c7b08b7d6da278191f9a733f'}, {'title': [], 'url': 'http://store.is.autonavi.com/showpic/904ab373e11ce155a6f7e2f8cb1823bb'}], 'typecode': '030000', 'shopinfo': '0', 'poiweight': [], 'childtype': [], 'adname': '嘉定区', 'name': '上海众耀汽车维修服务有限公司', 'location': '121.272328,31.402610', 'tel': '021-39523550', 'shopid': [], 'id': 'B001570JKO'}, {'parent': [], 'address': '江桥镇金园一路963-967号', 'distance': [], 'pname': '上海市', 'importance': [], 'biz_ext': {'cost': [], 'rating': '4.9'}, 'biz_type': [], 'cityname': '上海市', 'type': '汽车服务;汽车养护/装饰;汽车养护|汽车服务;洗车场;洗车场|汽车维修;汽车综合维修;汽车综合维修', 'photos': [{'title': [], 'url': 'http://store.is.autonavi.com/showpic/96b7ecc33b6ea499ba9b8e6174d23afa'}, {'title': [], 'url': 'http://store.is.autonavi.com/showpic/f6461c0664915912f248ea836ca86d7a'}, {'title': [], 'url': 'http://store.is.autonavi.com/showpic/1b727de040816f9c00f4a1de00834a7c'}], 'typecode': '010400|010500|030100', 'shopinfo': '1', 'poiweight': [], 'childtype': [], 'adname': '嘉定区', 'name': '上海坤迪汽车维修服务', 'location': '121.316208,31.252328', 'tel': '15502118128', 'shopid': [], 'id': 'B0IB9H6FCD'}], 'status': '1', 'info': 'OK'}\n",
"{'suggestion': {'keywords': [], 'cities': []}, 'count': '450', 'infocode': '10000', 'pois': [{'parent': [], 'address': '徐行镇嘉唐公路501号', 'distance': [], 'pname': '上海市', 'importance': [], 'biz_ext': {'cost': [], 'rating': '4.4'}, 'biz_type': [], 'cityname': '上海市', 'type': '汽车维修;汽车综合维修;汽车综合维修', 'photos': [{'title': [], 'url': 'http://store.is.autonavi.com/showpic/b3bfac5e26a253431f1b3628251dcf6f'}, {'title': [], 'url': 'http://store.is.autonavi.com/showpic/214422a224208b6ec9e9cb723ae07df0'}], 'typecode': '030100', 'shopinfo': '0', 'poiweight': [], 'childtype': [], 'adname': '嘉定区', 'name': '金沙汽车维修厂', 'location': '121.237919,31.403012', 'tel': [], 'shopid': [], 'id': 'B0FFGQ3FMX'}, {'parent': [], 'address': '安亭镇嘉松北路3871号', 'distance': [], 'pname': '上海市', 'importance': [], 'biz_ext': {'cost': [], 'rating': '3.8'}, 'biz_type': [], 'cityname': '上海市', 'type': '汽车维修;汽车综合维修;汽车综合维修', 'photos': [{'title': [], 'url': 'http://store.is.autonavi.com/showpic/33b112329d4f73cafdceb426af86fdee'}, {'title': [], 'url': 'http://store.is.autonavi.com/showpic/15999c0f427c8c7dfb17a10ac8018577'}], 'typecode': '030100', 'shopinfo': '0', 'poiweight': [], 'childtype': [], 'adname': '嘉定区', 'name': '上海双元汽车维修有限公司', 'location': '121.211967,31.325442', 'tel': [], 'shopid': [], 'id': 'B0FFGQ3E43'}, {'parent': [], 'address': '莘福路68号', 'distance': [], 'pname': '上海市', 'importance': [], 'biz_ext': {'cost': [], 'rating': '4.3'}, 'biz_type': [], 'cityname': '上海市', 'type': '汽车服务;汽车养护/装饰;汽车养护|汽车服务;洗车场;洗车场|汽车维修;汽车维修;汽车维修', 'photos': [{'title': [], 'url': 'http://store.is.autonavi.com/showpic/fd513f544d7781d125698af283de9192'}, {'title': [], 'url': 'http://store.is.autonavi.com/showpic/9acea9379d675a9e0532376a000c73c5'}, {'title': [], 'url': 'http://store.is.autonavi.com/showpic/a3fa824ac02817afb4be3455ded19079'}], 'typecode': '010400|010500|030000', 'shopinfo': '1', 'poiweight': [], 'childtype': [], 'adname': '闵行区', 'name': '百兴汽车维修', 'location': '121.364238,31.101978', 'tel': '15021987209', 'shopid': [], 'id': 'B0KAUYGKL0'}, {'parent': [], 'address': '众川路199号', 'distance': [], 'pname': '上海市', 'importance': [], 'biz_ext': {'cost': [], 'rating': '4.4'}, 'biz_type': [], 'cityname': '上海市', 'type': '汽车维修;汽车综合维修;汽车综合维修', 'photos': [{'title': [], 'url': 'http://store.is.autonavi.com/showpic/1f89773a4c037fc3478c556c70435c21'}, {'title': [], 'url': 'https://aos-comment.amap.com/B0FFGBNRSC/comment/fe5243f73b69ac7b16b034e73e6a1392_2048_2048_80.jpg'}, {'title': [], 'url': 'https://aos-comment.amap.com/B0FFGBNRSC/comment/dc870b22bba4d395f292ffad7fead88a_2048_2048_80.jpg'}], 'typecode': '030100', 'shopinfo': '0', 'poiweight': [], 'childtype': [], 'adname': '嘉定区', 'name': '上海恒强汽车维修服务有限公司', 'location': '121.240463,31.314617', 'tel': [], 'shopid': [], 'id': 'B0FFGBNRSC'}, {'parent': [], 'address': '瓶安路1268号', 'distance': [], 'pname': '上海市', 'importance': [], 'biz_ext': {'cost': [], 'rating': '4.2'}, 'biz_type': [], 'cityname': '上海市', 'type': '汽车维修;汽车维修;汽车维修', 'photos': [{'title': [], 'url': 'http://store.is.autonavi.com/showpic/717831ccc0fd53574ea4fc45be170554'}, {'title': [], 'url': 'http://store.is.autonavi.com/showpic/4afff098ed20f75f5bfca453de6e7204'}, {'title': [], 'url': 'http://store.is.autonavi.com/showpic/9c0a077973ea5cd5dc6a347e60feffca'}], 'typecode': '030000', 'shopinfo': '1', 'poiweight': [], 'childtype': [], 'adname': '闵行区', 'name': '上海名川汽车维修服务有限公司', 'location': '121.401838,31.049398', 'tel': '13585621873', 'shopid': [], 'id': 'B0K14CZNNX'}, {'parent': [], 'address': '宝钱公路3678号', 'distance': [], 'pname': '上海市', 'importance': [], 'biz_ext': {'cost': [], 'rating': '4.6'}, 'biz_type': [], 'cityname': '上海市', 'type': '汽车服务;汽车养护/装饰;汽车养护|汽车维修;汽车维修;汽车维修', 'photos': [{'title': [], 'url': 'http://store.is.autonavi.com/showpic/c0b10380006ec8512f7aee138f97199c'}, {'title': [], 'url': 'https://aos-comment.amap.com/B001570JHO/comment/cdf8050e7f766a4af1ee7fd5e2453081_2048_2048_80.jpg'}, {'title': [], 'url': 'https://aos-comment.amap.com/B001570JHO/comment/36ea9615bfbc06f434a665fe74a0eb18_2048_2048_80.jpg'}], 'typecode': '010400|030000', 'shopinfo': '1', 'poiweight': [], 'childtype': [], 'adname': '嘉定区', 'name': '顺驰汽车维修', 'location': '121.190249,31.409955', 'tel': '021-59961082', 'shopid': [], 'id': 'B001570JHO'}, {'parent': [], 'address': '庭安路189号', 'distance': [], 'pname': '上海市', 'importance': [], 'biz_ext': {'cost': [], 'rating': '4.4'}, 'biz_type': [], 'cityname': '上海市', 'type': '汽车维修;汽车维修;汽车维修', 'photos': [{'title': [], 'url': 'http://store.is.autonavi.com/showpic/3e5070422e06a5523e0d25596e431bb8'}, {'title': [], 'url': 'http://store.is.autonavi.com/showpic/a40409a3c8f79ee50e06975fc73c8ff4'}, {'title': [], 'url': 'http://store.is.autonavi.com/showpic/6042ce3488bb88e480e147e291275f95'}], 'typecode': '030000', 'shopinfo': '0', 'poiweight': [], 'childtype': [], 'adname': '浦东新区', 'name': '车之道(上海)汽车维修服务有限公司', 'location': '121.581039,31.324717', 'tel': '15026803024', 'shopid': [], 'id': 'B00155QWLM'}, {'parent': [], 'address': '浦东区德州路473号', 'distance': [], 'pname': '上海市', 'importance': [], 'biz_ext': {'cost': [], 'rating': '4.2'}, 'biz_type': [], 'cityname': '上海市', 'type': '汽车维修;汽车维修;汽车维修', 'photos': [{'title': [], 'url': 'http://store.is.autonavi.com/showpic/d860a38e3449adbccfd95337d0cc30ff'}, {'title': [], 'url': 'http://store.is.autonavi.com/showpic/1d572ffc68259a5af5f625188a2fb4ee'}, {'title': [], 'url': 'http://store.is.autonavi.com/showpic/43975a691b2df4dc55e9917fe9c64327'}], 'typecode': '030000', 'shopinfo': '1', 'poiweight': [], 'childtype': [], 'adname': '浦东新区', 'name': '上海民昊汽车维修服务有限公司', 'location': '121.481467,31.166244', 'tel': '13564821293;18939728997', 'shopid': [], 'id': 'B00155LZT7'}, {'parent': [], 'address': '川沙新镇南六公路1233号', 'distance': [], 'pname': '上海市', 'importance': [], 'biz_ext': {'cost': [], 'rating': '4.1'}, 'biz_type': [], 'cityname': '上海市', 'type': '汽车销售;梅赛德斯-奔驰特约销售;梅赛德斯-奔驰销售|汽车维修;梅赛德斯-奔驰特约维修;梅赛德斯-奔驰维修', 'photos': [{'title': [], 'url': 'http://store.is.autonavi.com/showpic/a0e365355a25ffad6c764bdc83b6b824'}, {'title': [], 'url': 'https://aos-comment.amap.com/B00155KPE7/comment/8228e52d70ae3c96368a5593bcd3f63d_2048_2048_80.jpg'}, {'title': [], 'url': 'https://aos-comment.amap.com/B00155KPE7/comment/874138c85e30e5ca4da657fc4d642989_2048_2048_80.jpg'}], 'typecode': '020900|031000', 'shopinfo': '0', 'poiweight': [], 'childtype': [], 'adname': '浦东新区', 'name': '上海汇之星汽车维修服务有限公司', 'location': '121.703595,31.109389', 'tel': '021-60975888;021-60979988', 'shopid': [], 'id': 'B00155KPE7'}, {'parent': [], 'address': '金桥路398号(近浦东大道)', 'distance': [], 'pname': '上海市', 'importance': [], 'biz_ext': {'cost': [], 'rating': '4.3'}, 'biz_type': [], 'cityname': '上海市', 'type': '汽车维修;汽车综合维修;汽车综合维修|汽车服务;汽车养护/装饰;汽车养护|汽车服务;洗车场;洗车场', 'photos': [{'title': [], 'url': 'http://store.is.autonavi.com/showpic/e625a9ed22ec019212dded4c61d2155d'}, {'title': [], 'url': 'http://store.is.autonavi.com/showpic/08393d21d2bf77136522dbdf3fb7662b'}, {'title': [], 'url': 'https://aos-comment.amap.com/B001558XPI/headerImg/d0a7e8f8b3a3ab84db417172abde6c63_2048_2048_80.jpg'}], 'typecode': '030100|010400|010500', 'shopinfo': '1', 'poiweight': [], 'childtype': [], 'adname': '浦东新区', 'name': '上海百援汽车维修服务中心', 'location': '121.573689,31.262160', 'tel': '18917036850', 'shopid': [], 'id': 'B001558XPI'}, {'parent': [], 'address': '都会路2763号', 'distance': [], 'pname': '上海市', 'importance': [], 'biz_ext': {'cost': [], 'rating': '4.0'}, 'biz_type': [], 'cityname': '上海市', 'type': '汽车服务;汽车养护/装饰;汽车养护|汽车维修;汽车综合维修;汽车综合维修', 'photos': [{'title': [], 'url': 'http://store.is.autonavi.com/showpic/5ea493a1c1349e9916b442b9eb1af518'}, {'title': [], 'url': 'http://store.is.autonavi.com/showpic/ed60e03123a8c6d69edf6ded695a2e7f'}], 'typecode': '010400|030100', 'shopinfo': '1', 'poiweight': [], 'childtype': [], 'adname': '闵行区', 'name': '乐星汽车维修', 'location': '121.412997,31.079322', 'tel': '18321335392', 'shopid': [], 'id': 'B0FFF6ZPSV'}, {'parent': [], 'address': '金沙路177号-104', 'distance': [], 'pname': '上海市', 'importance': [], 'biz_ext': {'cost': [], 'rating': '4.2'}, 'biz_type': [], 'cityname': '上海市', 'type': '汽车服务;汽车养护/装饰;汽车养护', 'photos': [{'title': [], 'url': 'http://store.is.autonavi.com/showpic/77f0909fc423634e62a0edbecb44cfcf'}, {'title': '外景图', 'url': 'http://store.is.autonavi.com/showpic/c26a8257afc46dad97450b6e3dd811d7'}, {'title': [], 'url': 'http://store.is.autonavi.com/showpic/1a8e550c327d77b2dc3198139a55a396'}], 'typecode': '010400', 'shopinfo': '0', 'poiweight': [], 'childtype': [], 'adname': '嘉定区', 'name': '上海众信汽车装潢修理部', 'location': '121.258001,31.383228', 'tel': '021-59535988', 'shopid': [], 'id': 'B001558EYE'}, {'parent': [], 'address': '东靖路2606-2608号', 'distance': [], 'pname': '上海市', 'importance': [], 'biz_ext': {'cost': [], 'rating': '4.4'}, 'biz_type': [], 'cityname': '上海市', 'type': '汽车维修;汽车综合维修;汽车综合维修', 'photos': [{'title': [], 'url': 'http://store.is.autonavi.com/showpic/ca9bb6cc1551854397eab16620e2a8f4'}, {'title': [], 'url': 'http://store.is.autonavi.com/showpic/486c83359a62ccefc9b4539a2d274683'}], 'typecode': '030100', 'shopinfo': '0', 'poiweight': [], 'childtype': [], 'adname': '浦东新区', 'name': '上海奇萍汽车维修服务有限公司', 'location': '121.620822,31.293562', 'tel': '021-68977240', 'shopid': [], 'id': 'B0FFGJQAFV'}, {'parent': [], 'address': '德平路1128-1号', 'distance': [], 'pname': '上海市', 'importance': [], 'biz_ext': {'cost': [], 'rating': '4.4'}, 'biz_type': [], 'cityname': '上海市', 'type': '汽车维修;汽车综合维修;汽车综合维修|汽车服务;汽车养护/装饰;汽车养护|汽车服务;洗车场;洗车场', 'photos': [{'title': [], 'url': 'http://store.is.autonavi.com/showpic/dbb1a50295a0b4d3bfc0e7af7f1efc0d'}, {'title': [], 'url': 'http://store.is.autonavi.com/showpic/3430cf7a4248d16fcacff5844feaaad9'}, {'title': [], 'url': 'https://aos-comment.amap.com/B00155KN5Z/comment/e7e64a13d68d8ccd7285d888105ae0f5_2048_2048_80.jpg'}], 'typecode': '030100|010400|010500', 'shopinfo': '1', 'poiweight': [], 'childtype': [], 'adname': '浦东新区', 'name': '上海轩阳汽车维修有限公司', 'location': '121.569643,31.239747', 'tel': '19916794548', 'shopid': [], 'id': 'B00155KN5Z'}, {'parent': [], 'address': '民丰路902-908号', 'distance': [], 'pname': '上海市', 'importance': [], 'biz_ext': {'cost': [], 'rating': '4.1'}, 'biz_type': [], 'cityname': '上海市', 'type': '汽车维修;汽车综合维修;汽车综合维修', 'photos': [{'title': [], 'url': 'http://store.is.autonavi.com/showpic/ec4905da8b821755e74f49e38d1db80b'}, {'title': [], 'url': 'http://store.is.autonavi.com/showpic/5971eee6543d6b9e3d4899d3e5daeb80'}, {'title': [], 'url': 'http://store.is.autonavi.com/showpic/c3b3423e876f6ff69ca812935dbce214'}], 'typecode': '030100', 'shopinfo': '0', 'poiweight': [], 'childtype': [], 'adname': '嘉定区', 'name': '车霸汽车专业维修', 'location': '121.155531,31.306272', 'tel': '18721471007', 'shopid': [], 'id': 'B00156NPQG'}, {'parent': [], 'address': '安亭镇春归路956号', 'distance': [], 'pname': '上海市', 'importance': [], 'biz_ext': {'cost': [], 'rating': '4.9'}, 'biz_type': [], 'cityname': '上海市', 'type': '汽车服务;洗车场;洗车场|汽车服务;汽车养护/装饰;汽车养护|汽车维修;汽车维修;汽车维修', 'photos': [{'title': [], 'url': 'http://store.is.autonavi.com/showpic/ffc9bee0f15e2cdb2ba2747b642b9218'}, {'title': [], 'url': 'http://store.is.autonavi.com/query_pic?id=st1cf96fa0-c092-4720-b160-5ce19db723f6&user=search&operate=original'}, {'title': [], 'url': 'https://aos-comment.amap.com/B0FFHEX32Z/comment/IMG_20250402_095659_tem_1743559051322_62328676.jpg'}], 'typecode': '010500|010400|030000', 'shopinfo': '1', 'poiweight': [], 'childtype': [], 'adname': '嘉定区', 'name': '驰加汽车服务中心(春归路店)', 'location': '121.227694,31.287519', 'tel': '18664922876', 'shopid': [], 'id': 'B0FFHEX32Z'}, {'parent': [], 'address': '康桥路851号', 'distance': [], 'pname': '上海市', 'importance': [], 'biz_ext': {'cost': [], 'rating': '4.0'}, 'biz_type': [], 'cityname': '上海市', 'type': '汽车服务;汽车养护/装饰;汽车养护|汽车维修;汽车维修;汽车维修', 'photos': [{'title': [], 'url': 'http://store.is.autonavi.com/showpic/208394ea7991c2de2dc4509742b535dc'}, {'title': [], 'url': 'http://store.is.autonavi.com/showpic/67c49f8c5856b6b9a8da71e92020f0e2'}, {'title': [], 'url': 'http://store.is.autonavi.com/showpic/08380cb6461c9c964c3c067cbd07c9e8'}], 'typecode': '010400|030000', 'shopinfo': '1', 'poiweight': [], 'childtype': [], 'adname': '浦东新区', 'name': '上海乐亚汽车维修有限公司', 'location': '121.554771,31.146103', 'tel': '13916948228', 'shopid': [], 'id': 'B0G3A5DPK2'}, {'parent': [], 'address': '宣黄公路978号', 'distance': [], 'pname': '上海市', 'importance': [], 'biz_ext': {'cost': [], 'rating': '4.3'}, 'biz_type': [], 'cityname': '上海市', 'type': '汽车维修;汽车维修;汽车维修', 'photos': [{'title': [], 'url': 'http://store.is.autonavi.com/showpic/967c63d8aadca693b45f479be2478663'}, {'title': [], 'url': 'http://store.is.autonavi.com/showpic/59040b3b0c53ddeb751b644132f3e3c9'}], 'typecode': '030000', 'shopinfo': '1', 'poiweight': [], 'childtype': [], 'adname': '浦东新区', 'name': '上海倍盈汽车维修服务有限公司', 'location': '121.715815,31.025763', 'tel': '021-20960723', 'shopid': [], 'id': 'B0KK4MTFSM'}, {'parent': [], 'address': '川沙新镇上海浦东新区栏学路343号9栋', 'distance': [], 'pname': '上海市', 'importance': [], 'biz_ext': {'cost': [], 'rating': '4.9'}, 'biz_type': [], 'cityname': '上海市', 'type': '汽车维修;汽车维修;汽车维修', 'photos': [{'title': [], 'url': 'https://aos-comment.amap.com/B0FFKYQMCG/comment/2970856a75e87e970612eb5507eb58fe_2048_2048_80.jpg'}, {'title': [], 'url': 'http://store.is.autonavi.com/showpic/bdd8bfab61115b30cffea7416cd6ef3f'}, {'title': [], 'url': 'https://aos-comment.amap.com/B0FFKYQMCG/comment/83ba5f705f28ae697c6ee9127f348756_2048_2048_80.jpg'}], 'typecode': '030000', 'shopinfo': '1', 'poiweight': [], 'childtype': [], 'adname': '浦东新区', 'name': '上海名迅-秀车工坊汽车维修服务有限公司', 'location': '121.669719,31.167919', 'tel': '18918151834', 'shopid': [], 'id': 'B0FFKYQMCG'}, {'parent': [], 'address': '星华公路601号', 'distance': [], 'pname': '上海市', 'importance': [], 'biz_ext': {'cost': [], 'rating': '4.5'}, 'biz_type': [], 'cityname': '上海市', 'type': '汽车维修;汽车维修;汽车维修', 'photos': [{'title': [], 'url': 'http://store.is.autonavi.com/showpic/fd94c3cd0b3eeb34b89ad79b9e9d8776'}, {'title': [], 'url': 'http://aos-cdn-image.amap.com/sns/ugccomment/d80fbe7d-68cb-4ca3-b3f0-935680421199.jpg'}, {'title': [], 'url': 'http://aos-cdn-image.amap.com/sns/ugccomment/fdd26597-2b5c-4cad-a539-c5d4645e900c.jpg'}], 'typecode': '030000', 'shopinfo': '0', 'poiweight': [], 'childtype': [], 'adname': '嘉定区', 'name': '上海晓春汽车维修有限公司', 'location': '121.304595,31.248903', 'tel': '021-62629900', 'shopid': [], 'id': 'B0FFJ6BAG9'}], 'status': '1', 'info': 'OK'}\n",
"{'suggestion': {'keywords': [], 'cities': []}, 'count': '450', 'infocode': '10000', 'pois': [{'parent': [], 'address': '西南大道333号', 'distance': [], 'pname': '广西壮族自治区', 'importance': [], 'biz_ext': {'cost': [], 'rating': '3.9'}, 'biz_type': [], 'cityname': '北海市', 'type': '汽车服务;汽车养护/装饰;汽车养护', 'photos': [{'title': [], 'url': 'http://store.is.autonavi.com/showpic/5fcb311775265ccf7a361565cef45f94'}], 'typecode': '010400', 'shopinfo': '0', 'poiweight': [], 'childtype': [], 'adname': '海城区', 'name': '海瑜汽车美容', 'location': '109.138662,21.458948', 'tel': '18177986228', 'shopid': [], 'id': 'B0KRZ56D6M'}, {'parent': [], 'address': '海御·新天地西区5-6幢北门旁', 'distance': [], 'pname': '广西壮族自治区', 'importance': [], 'biz_ext': {'cost': [], 'rating': '3.7'}, 'biz_type': [], 'cityname': '北海市', 'type': '汽车服务;汽车养护/装饰;汽车养护', 'photos': [{'title': [], 'url': 'http://aos-cdn-image.amap.com/sns/ugccomment/f89579ee-5c10-4ec8-8046-c8ef154f7115.jpg'}], 'typecode': '010400', 'shopinfo': '0', 'poiweight': [], 'childtype': [], 'adname': '海城区', 'name': '车先绅汽车美容影音工作室', 'location': '109.111749,21.451415', 'tel': '13977919733', 'shopid': [], 'id': 'B0FFKHJ1K2'}, {'parent': [], 'address': '北海水果市场3号门旁', 'distance': [], 'pname': '广西壮族自治区', 'importance': [], 'biz_ext': {'cost': [], 'rating': '4.4'}, 'biz_type': [], 'cityname': '北海市', 'type': '汽车服务;汽车养护/装饰;汽车养护', 'photos': [{'title': [], 'url': 'http://store.is.autonavi.com/showpic/49d143b569f79400bd9a525e1a35b6f4'}, {'title': [], 'url': 'http://store.is.autonavi.com/showpic/d88934614f6e1ce815534b5129a9dcdb'}, {'title': [], 'url': 'http://store.is.autonavi.com/showpic/def6eb37fa39e9e1cb3c7a22c98e9928'}], 'typecode': '010400', 'shopinfo': '1', 'poiweight': [], 'childtype': [], 'adname': '海城区', 'name': '靓车汇汽车美容养护会所', 'location': '109.126278,21.463514', 'tel': '0779-3208999', 'shopid': [], 'id': 'B0FFFDC9QC'}, {'parent': [], 'address': '广西北海市银海区银滩镇和平村委金海岸大道大老虎村2号-1(黑鹰液体黄金轮胎旗舰店)', 'distance': [], 'pname': '广西壮族自治区', 'importance': [], 'biz_ext': {'cost': [], 'rating': '4.5'}, 'biz_type': [], 'cityname': '北海市', 'type': '汽车服务;汽车养护/装饰;汽车养护|汽车服务;洗车场;洗车场|生活服务;生活服务场所;生活服务场所|汽车维修;汽车维修;汽车维修', 'photos': [{'title': [], 'url': 'http://store.is.autonavi.com/showpic/a234cb98679d2b28808b2e983c912dda'}, {'title': [], 'url': 'http://store.is.autonavi.com/showpic/f7aa66428d234cddf3c82c898c6ce0da'}, {'title': [], 'url': 'http://store.is.autonavi.com/showpic/51a1d17a21eed95a8944f330dd4d40cb'}], 'typecode': '010400|010500|070000|030000', 'shopinfo': '1', 'poiweight': [], 'childtype': [], 'adname': '银海区', 'name': '北海市银海区运展车之家汽车养护中心', 'location': '109.115734,21.428851', 'tel': '13877945009', 'shopid': [], 'id': 'B0LU5XPZIW'}, {'parent': [], 'address': '新世纪大道', 'distance': [], 'pname': '广西壮族自治区', 'importance': [], 'biz_ext': {'cost': [], 'rating': '3.6'}, 'biz_type': [], 'cityname': '北海市', 'type': '汽车服务;汽车养护/装饰;汽车养护', 'photos': [{'title': [], 'url': 'http://store.is.autonavi.com/showpic/b23e30ffb0512a066d7ef48fa9adea4b'}], 'typecode': '010400', 'shopinfo': '0', 'poiweight': [], 'childtype': [], 'adname': '海城区', 'name': '艺钦汽车美容', 'location': '109.164117,21.455534', 'tel': '18977969760', 'shopid': [], 'id': 'B0H6XUXBPB'}, {'parent': [], 'address': '顺天泰大厦东侧110米', 'distance': [], 'pname': '广西壮族自治区', 'importance': [], 'biz_ext': {'cost': [], 'rating': '4.1'}, 'biz_type': [], 'cityname': '北海市', 'type': '汽车服务;汽车养护/装饰;汽车养护', 'photos': [{'title': [], 'url': 'http://store.is.autonavi.com/showpic/42d4120afbc2f95987878f996696aabe'}], 'typecode': '010400', 'shopinfo': '0', 'poiweight': [], 'childtype': [], 'adname': '海城区', 'name': '靓车港汽车美容', 'location': '109.139082,21.474532', 'tel': [], 'shopid': [], 'id': 'B0KRBSV3F9'}, {'parent': [], 'address': '高德工业园香港路115号农村信用社旁', 'distance': [], 'pname': '广西壮族自治区', 'importance': [], 'biz_ext': {'cost': [], 'rating': '4.0'}, 'biz_type': [], 'cityname': '北海市', 'type': '汽车服务;汽车养护/装饰;汽车养护', 'photos': [{'title': [], 'url': 'https://aos-comment.amap.com/B0FFG0QFZZ/headerImg/ce88e847d33351d6473cb0e4c5c33a65_2048_2048_80.jpg'}, {'title': [], 'url': 'http://store.is.autonavi.com/showpic/0c2c2e00d9b3eb0d420820ac98166e23'}, {'title': [], 'url': 'http://store.is.autonavi.com/showpic/2214e22eeaddecf897d671229b2d7932'}], 'typecode': '010400', 'shopinfo': '0', 'poiweight': [], 'childtype': [], 'adname': '海城区', 'name': '港田汽车美容养护中心', 'location': '109.185598,21.520978', 'tel': '17777912031', 'shopid': [], 'id': 'B0FFG0QFZZ'}, {'parent': [], 'address': '北海大道63-1号诚安公寓1幢0101号众奥汽车专业维修养护中心', 'distance': [], 'pname': '广西壮族自治区', 'importance': [], 'biz_ext': {'cost': [], 'rating': '4.1'}, 'biz_type': [], 'cityname': '北海市', 'type': '汽车维修;汽车维修;汽车维修', 'photos': [{'title': [], 'url': 'https://aos-comment.amap.com/B0H1PUQHOD/headerImg/0c69e8db38b22e220158f869791c2d3f_2048_2048_80.jpg'}, {'title': [], 'url': 'http://store.is.autonavi.com/showpic/398d3f815d011c6f03111b993a873227'}], 'typecode': '030000', 'shopinfo': '1', 'poiweight': [], 'childtype': [], 'adname': '海城区', 'name': '众奥汽车专业维修养护中心', 'location': '109.145964,21.475422', 'tel': [], 'shopid': [], 'id': 'B0H1PUQHOD'}, {'parent': [], 'address': '湖北路劳动花园东区1号', 'distance': [], 'pname': '广西壮族自治区', 'importance': [], 'biz_ext': {'cost': [], 'rating': '4.3'}, 'biz_type': [], 'cityname': '北海市', 'type': '汽车服务;汽车养护/装饰;汽车养护|生活服务;生活服务场所;生活服务场所', 'photos': [{'title': [], 'url': 'http://store.is.autonavi.com/showpic/94934ad3cfb38affd4369a017145444e'}, {'title': [], 'url': 'http://store.is.autonavi.com/showpic/36a4ee5764fddd347bfbbe60babad80c'}, {'title': [], 'url': 'https://aos-comment.amap.com/B0FFJ870HK/headerImg/content_media_external_images_media_4787_1659766211598_df901b98.jpg'}], 'typecode': '010400|070000', 'shopinfo': '1', 'poiweight': [], 'childtype': [], 'adname': '海城区', 'name': '车港湾汽车美容', 'location': '109.155656,21.481442', 'tel': '13712763281;18277936841', 'shopid': [], 'id': 'B0FFJ870HK'}, {'parent': [], 'address': '广西壮族自治区北海市银海区银滩镇广东路天健豪园东侧约50米', 'distance': [], 'pname': '广西壮族自治区', 'importance': [], 'biz_ext': {'cost': [], 'rating': '4.2'}, 'biz_type': [], 'cityname': '北海市', 'type': '汽车服务;汽车养护/装饰;汽车养护', 'photos': [{'title': [], 'url': 'http://store.is.autonavi.com/showpic/6524344769076bac4455e6ea3056292c'}, {'title': [], 'url': 'http://store.is.autonavi.com/showpic/4ef70e8b5e63cbec9565b89bb7ed12d0'}], 'typecode': '010400', 'shopinfo': '1', 'poiweight': [], 'childtype': [], 'adname': '银海区', 'name': '奥铭汽车美容养护中心', 'location': '109.146073,21.421639', 'tel': '17677259696', 'shopid': [], 'id': 'B0IDDD9LTX'}, {'parent': [], 'address': '湖南路63号(瑞曦花园西门口)', 'distance': [], 'pname': '广西壮族自治区', 'importance': [], 'biz_ext': {'cost': [], 'rating': '4.0'}, 'biz_type': [], 'cityname': '北海市', 'type': '汽车服务;汽车养护/装饰;汽车养护', 'photos': [{'title': [], 'url': 'http://store.is.autonavi.com/showpic/cae7cf07b9e9035b71431fe5b8a98f54'}, {'title': [], 'url': 'http://store.is.autonavi.com/showpic/c3532d21440da00fcfd3455a4881f718'}, {'title': [], 'url': 'http://store.is.autonavi.com/showpic/f5ecb15ffeefe7b70e06eb04b6c7dab1'}], 'typecode': '010400', 'shopinfo': '1', 'poiweight': [], 'childtype': [], 'adname': '海城区', 'name': '云海汽车美容服务中心(24小时服务)', 'location': '109.136604,21.483945', 'tel': '17777910039', 'shopid': [], 'id': 'B0JGDHJLB7'}, {'parent': [], 'address': '北部湾东路68号', 'distance': [], 'pname': '广西壮族自治区', 'importance': [], 'biz_ext': {'cost': [], 'rating': '4.0'}, 'biz_type': [], 'cityname': '北海市', 'type': '汽车服务;汽车养护/装饰;汽车养护', 'photos': [{'title': [], 'url': 'http://store.is.autonavi.com/showpic/e7f789bc9ee1aef17b05a84b5ee535b4'}, {'title': [], 'url': 'http://store.is.autonavi.com/showpic/b02da582b5c361c59a92bce79f26c785'}, {'title': [], 'url': 'http://store.is.autonavi.com/showpic/11699c95d860593003b7460e12e0506b'}], 'typecode': '010400', 'shopinfo': '0', 'poiweight': [], 'childtype': [], 'adname': '海城区', 'name': '车水马龙汽车美容养护中心', 'location': '109.147071,21.491254', 'tel': '13387792583', 'shopid': [], 'id': 'B0FFFCR6A8'}, {'parent': [], 'address': '驿马村312号', 'distance': [], 'pname': '广西壮族自治区', 'importance': [], 'biz_ext': {'cost': [], 'rating': '4.5'}, 'biz_type': [], 'cityname': '北海市', 'type': '汽车服务;汽车养护/装饰;汽车养护|汽车服务;洗车场;洗车场|汽车维修;汽车维修;汽车维修', 'photos': [{'title': [], 'url': 'http://store.is.autonavi.com/showpic/1ac552759e8729866b08af87ed94ee2a'}, {'title': [], 'url': 'http://store.is.autonavi.com/showpic/4948b4a9e30d15b594d300885f85ff49'}, {'title': [], 'url': 'http://store.is.autonavi.com/showpic/611c0972f4c7dd5a6f7b4c81877eb08c'}], 'typecode': '010400|010500|030000', 'shopinfo': '1', 'poiweight': [], 'childtype': [], 'adname': '海城区', 'name': '畅途汽车维修养护中心', 'location': '109.166322,21.456158', 'tel': '18877934835', 'shopid': [], 'id': 'B0JAH55ZGC'}, {'parent': [], 'address': '杭州路银城绿洲118商铺', 'distance': [], 'pname': '广西壮族自治区', 'importance': [], 'biz_ext': {'cost': [], 'rating': '4.4'}, 'biz_type': [], 'cityname': '北海市', 'type': '汽车服务;汽车养护/装饰;汽车养护', 'photos': [{'title': [], 'url': 'http://store.is.autonavi.com/showpic/9454d9a404419fe6de5075694885b503'}, {'title': [], 'url': 'http://store.is.autonavi.com/showpic/fffcde98271df9f14283238a89f8fa52'}, {'title': [], 'url': 'http://store.is.autonavi.com/showpic/27d913dc05508aff7fc10d2b0c78e0de'}], 'typecode': '010400', 'shopinfo': '1', 'poiweight': [], 'childtype': [], 'adname': '银海区', 'name': 'M.E汽车美容养护(万达店)', 'location': '109.146052,21.431533', 'tel': [], 'shopid': [], 'id': 'B0JUG7LVUI'}, {'parent': [], 'address': '东较场路与外东环路交叉口西200米', 'distance': [], 'pname': '广西壮族自治区', 'importance': [], 'biz_ext': {'cost': [], 'rating': '3.2'}, 'biz_type': [], 'cityname': '北海市', 'type': '汽车服务;汽车养护/装饰;汽车养护', 'photos': [], 'typecode': '010400', 'shopinfo': '0', 'poiweight': [], 'childtype': [], 'adname': '合浦县', 'name': '建业汽车美容养护店', 'location': '109.230625,21.662011', 'tel': [], 'shopid': [], 'id': 'B0KRN1CUKN'}, {'parent': [], 'address': '长青路8号万彩汽车美容膜小二贴膜店', 'distance': [], 'pname': '广西壮族自治区', 'importance': [], 'biz_ext': {'cost': [], 'rating': '4.2'}, 'biz_type': [], 'cityname': '北海市', 'type': '汽车服务;汽车养护/装饰;汽车养护', 'photos': [{'title': [], 'url': 'http://store.is.autonavi.com/showpic/09aa5379a8f3b325e8be9c5f8c007d48'}, {'title': [], 'url': 'http://store.is.autonavi.com/showpic/8e5043a9613154e81d57966648b65d7f'}], 'typecode': '010400', 'shopinfo': '1', 'poiweight': [], 'childtype': [], 'adname': '海城区', 'name': '万彩汽车美容膜小二贴膜店', 'location': '109.119654,21.472505', 'tel': '17777971778', 'shopid': [], 'id': 'B0IKUCACYX'}, {'parent': [], 'address': '南珠家具广场里200米左拐150米', 'distance': [], 'pname': '广西壮族自治区', 'importance': [], 'biz_ext': {'cost': [], 'rating': '3.9'}, 'biz_type': [], 'cityname': '北海市', 'type': '汽车服务;汽车养护/装饰;汽车养护', 'photos': [{'title': [], 'url': 'http://aos-cdn-image.amap.com/sns/ugccomment/4e81edcf-817a-47f2-adcc-32b8644c3cd1.jpg'}, {'title': [], 'url': 'http://store.is.autonavi.com/showpic/06117813982bc2e1fd05b1d946d5078a'}, {'title': [], 'url': 'http://store.is.autonavi.com/showpic/1630feb30956f6fc57baf55e994e51f1'}], 'typecode': '010400', 'shopinfo': '1', 'poiweight': [], 'childtype': [], 'adname': '海城区', 'name': '艺海汽车美容中心', 'location': '109.168368,21.480437', 'tel': '0779-2052308;0779-3966777;13367696887', 'shopid': [], 'id': 'B0GUAHAFFM'}, {'parent': [], 'address': '云南路以西重庆路以北A78临街商铺', 'distance': [], 'pname': '广西壮族自治区', 'importance': [], 'biz_ext': {'cost': [], 'rating': '4.2'}, 'biz_type': [], 'cityname': '北海市', 'type': '汽车服务;汽车养护/装饰;汽车养护', 'photos': [{'title': [], 'url': 'http://store.is.autonavi.com/showpic/ced08a5431357765c303fb7ae6df02cf'}, {'title': [], 'url': 'http://store.is.autonavi.com/showpic/58d5dd26847c07156ccae6198874738f'}, {'title': [], 'url': 'http://store.is.autonavi.com/showpic/9dc61aa1ae302fdf1aaa7dea698db3ac'}], 'typecode': '010400', 'shopinfo': '1', 'poiweight': [], 'childtype': [], 'adname': '海城区', 'name': '北海市海城区宇辉汽车美容养护部', 'location': '109.101282,21.459032', 'tel': '13977962304', 'shopid': [], 'id': 'B0I1C7ESKA'}, {'parent': [], 'address': '南康镇社内村红绿灯往高速方向50米', 'distance': [], 'pname': '广西壮族自治区', 'importance': [], 'biz_ext': {'cost': [], 'rating': '3.8'}, 'biz_type': [], 'cityname': '北海市', 'type': '汽车服务;汽车养护/装饰;汽车养护', 'photos': [{'title': [], 'url': 'http://store.is.autonavi.com/showpic/36f424fe56b7b20526c043e4ba4f1506'}, {'title': [], 'url': 'http://store.is.autonavi.com/showpic/84775d74860852278c9ec77da21000bb'}, {'title': [], 'url': 'http://store.is.autonavi.com/showpic/e1a67c775c5257cb28912936b8465b2f'}], 'typecode': '010400', 'shopinfo': '1', 'poiweight': [], 'childtype': [], 'adname': '铁山港区', 'name': '悦车港汽车美容养护', 'location': '109.471565,21.596145', 'tel': '18777919612', 'shopid': [], 'id': 'B0H2USQM5A'}, {'parent': [], 'address': '金海岸大道8号万泉城1区21号楼7-8号铺', 'distance': [], 'pname': '广西壮族自治区', 'importance': [], 'biz_ext': {'cost': [], 'rating': '4.5'}, 'biz_type': [], 'cityname': '北海市', 'type': '汽车服务;汽车养护/装饰;汽车养护', 'photos': [{'title': [], 'url': 'http://store.is.autonavi.com/showpic/a59ccfe90df2900a9f0a75d9f94c7da0'}, {'title': [], 'url': 'http://store.is.autonavi.com/showpic/f542e93078cfc18ee61f475e857010f0'}, {'title': [], 'url': 'http://store.is.autonavi.com/showpic/7efbe040e0001ea358e0cabd154b5155'}], 'typecode': '010400', 'shopinfo': '0', 'poiweight': [], 'childtype': [], 'adname': '银海区', 'name': '途虎养车工场店(北海银滩万泉城店)', 'location': '109.131452,21.425502', 'tel': '17307798771;18977746170', 'shopid': [], 'id': 'B0JDP7LN9C'}], 'status': '1', 'info': 'OK'}\n",
"{'suggestion': {'keywords': [], 'cities': []}, 'count': '450', 'infocode': '10000', 'pois': [{'parent': [], 'address': '湖北路劳动花园西区一号', 'distance': [], 'pname': '广西壮族自治区', 'importance': [], 'biz_ext': {'cost': [], 'rating': '3.7'}, 'biz_type': [], 'cityname': '北海市', 'type': '汽车服务;洗车场;洗车场', 'photos': [{'title': [], 'url': 'http://store.is.autonavi.com/showpic/396054bd7933cc1324a7de482ef316e2'}, {'title': [], 'url': 'http://store.is.autonavi.com/showpic/c7ea6a536fdb11e21c37254ad8bbf59b'}], 'typecode': '010500', 'shopinfo': '1', 'poiweight': [], 'childtype': [], 'adname': '海城区', 'name': '美孚汽车养护店(北海凯骏店)', 'location': '109.155162,21.481448', 'tel': '0779-8525828;18677973755', 'shopid': [], 'id': 'B0I6PAIW9P'}, {'parent': [], 'address': '鸿华花苑东南门东140米', 'distance': [], 'pname': '广西壮族自治区', 'importance': [], 'biz_ext': {'cost': [], 'rating': '4.2'}, 'biz_type': [], 'cityname': '北海市', 'type': '汽车服务;汽车养护/装饰;汽车养护', 'photos': [{'title': [], 'url': 'http://store.is.autonavi.com/showpic/093d29dabfade9f058400473767cfe9e'}, {'title': [], 'url': 'http://store.is.autonavi.com/showpic/558cce40a3102f265a7c73c4'}], 'typecode': '010400', 'shopinfo': '0', 'poiweight': [], 'childtype': [], 'adname': '海城区', 'name': '车洁缘汽车美容', 'location': '109.135554,21.464123', 'tel': '13617790408;15207791598', 'shopid': [], 'id': 'B0FFG6TU4X'}, {'parent': [], 'address': '白沙镇乌石河大道洗车保养维修', 'distance': [], 'pname': '广西壮族自治区', 'importance': [], 'biz_ext': {'cost': [], 'rating': '4.3'}, 'biz_type': [], 'cityname': '北海市', 'type': '汽车服务;汽车养护/装饰;汽车养护', 'photos': [{'title': [], 'url': 'http://store.is.autonavi.com/showpic/5454d55fbf7c974ade11507595da516e'}], 'typecode': '010400', 'shopinfo': '1', 'poiweight': [], 'childtype': [], 'adname': '合浦县', 'name': '悦和汽车美容养护中心', 'location': '109.686347,21.698448', 'tel': '18077926178', 'shopid': [], 'id': 'B0G1LM6OYE'}, {'parent': [], 'address': '四川路阳光港湾', 'distance': [], 'pname': '广西壮族自治区', 'importance': [], 'biz_ext': {'cost': [], 'rating': '4.1'}, 'biz_type': [], 'cityname': '北海市', 'type': '汽车服务;汽车养护/装饰;汽车养护', 'photos': [{'title': [], 'url': 'http://store.is.autonavi.com/showpic/5b7b405d510f76cda92371329f5faecd'}, {'title': [], 'url': 'http://store.is.autonavi.com/showpic/4e8d142e18b9f044389fa75d6ef993d2'}, {'title': [], 'url': 'http://store.is.autonavi.com/showpic/9cba2fa135c1a77d16d49a89bd4bd798'}], 'typecode': '010400', 'shopinfo': '1', 'poiweight': [], 'childtype': [], 'adname': '海城区', 'name': '蓝威宝汽车美容中心', 'location': '109.114400,21.462643', 'tel': '18707793468', 'shopid': [], 'id': 'B030B0MG8L'}, {'parent': [], 'address': '贵阳路与创智路交叉口西80米', 'distance': [], 'pname': '广西壮族自治区', 'importance': [], 'biz_ext': {'cost': [], 'rating': '3.8'}, 'biz_type': [], 'cityname': '北海市', 'type': '汽车服务;汽车养护/装饰;汽车养护', 'photos': [{'title': [], 'url': 'http://store.is.autonavi.com/showpic/29209591f254b18518755b9b0da0a040'}, {'title': [], 'url': 'http://store.is.autonavi.com/showpic/68ff31e9094fb4595216d2437ca95655'}, {'title': [], 'url': 'http://store.is.autonavi.com/showpic/820ea0a33db4949fcdf9d6675ce76764'}], 'typecode': '010400', 'shopinfo': '1', 'poiweight': [], 'childtype': [], 'adname': '银海区', 'name': '名森汽车美容养护中心', 'location': '109.119936,21.427927', 'tel': '15177003886', 'shopid': [], 'id': 'B0G13Y2D0L'}, {'parent': [], 'address': '中安·蓝天大厦东北门西北70米', 'distance': [], 'pname': '广西壮族自治区', 'importance': [], 'biz_ext': {'cost': [], 'rating': '4.4'}, 'biz_type': [], 'cityname': '北海市', 'type': '汽车服务;汽车养护/装饰;汽车养护|汽车维修;汽车维修;汽车维修', 'photos': [{'title': [], 'url': 'http://store.is.autonavi.com/showpic/dbb0e25be566ecaf331b0cf351ad4c77'}, {'title': [], 'url': 'http://store.is.autonavi.com/showpic/68efb1c8e5922894d7ce4ac9eef757b0'}, {'title': [], 'url': 'http://store.is.autonavi.com/showpic/ba4e0cc41c66bb51b1128440d82498e2'}], 'typecode': '010400|030000', 'shopinfo': '0', 'poiweight': [], 'childtype': [], 'adname': '海城区', 'name': '车友间汽车维修美容中心', 'location': '109.119826,21.465988', 'tel': '0779-2088565;13367693323', 'shopid': [], 'id': 'B0FFFQZZ9F'}, {'parent': [], 'address': '重庆路158号', 'distance': [], 'pname': '广西壮族自治区', 'importance': [], 'biz_ext': {'cost': [], 'rating': '3.6'}, 'biz_type': [], 'cityname': '北海市', 'type': '汽车服务;汽车养护/装饰;汽车养护', 'photos': [{'title': [], 'url': 'http://store.is.autonavi.com/showpic/604168710e52fd84de388ee48bd99d7a'}, {'title': [], 'url': 'http://store.is.autonavi.com/showpic/8977084772fa5ede21175076e12abbdc'}], 'typecode': '010400', 'shopinfo': '0', 'poiweight': [], 'childtype': [], 'adname': '海城区', 'name': '明耀汽车养护', 'location': '109.137180,21.467418', 'tel': '13877956370;19107792142', 'shopid': [], 'id': 'B0K0O7NU9Q'}, {'parent': [], 'address': '云南路棕榈泉', 'distance': [], 'pname': '广西壮族自治区', 'importance': [], 'biz_ext': {'cost': [], 'rating': '3.6'}, 'biz_type': [], 'cityname': '北海市', 'type': '汽车服务;汽车养护/装饰;汽车养护', 'photos': [{'title': [], 'url': 'http://store.is.autonavi.com/showpic/de819071fef68bbc2e586a6698cfb279'}, {'title': [], 'url': 'http://store.is.autonavi.com/showpic/b77e1ff092df86a7e961fe66f874a3e0'}, {'title': [], 'url': 'http://store.is.autonavi.com/showpic/de93f8ef2cd76289480bf3d7965ead28'}], 'typecode': '010400', 'shopinfo': '1', 'poiweight': [], 'childtype': [], 'adname': '银海区', 'name': '车先绅汽车美容影音工作室', 'location': '109.110620,21.439079', 'tel': '13977919733', 'shopid': [], 'id': 'B0LDBHEEKJ'}, {'parent': [], 'address': '福成镇福北路66号', 'distance': [], 'pname': '广西壮族自治区', 'importance': [], 'biz_ext': {'cost': [], 'rating': '4.0'}, 'biz_type': [], 'cityname': '北海市', 'type': '汽车服务;汽车养护/装饰;汽车养护', 'photos': [{'title': [], 'url': 'http://store.is.autonavi.com/showpic/3c68aacfa2e811ef9550f16ffe5e8fa6'}, {'title': [], 'url': 'http://store.is.autonavi.com/showpic/d756afc5f2f416990eef4650dba4d443'}], 'typecode': '010400', 'shopinfo': '1', 'poiweight': [], 'childtype': [], 'adname': '银海区', 'name': '泉源汽车美容养护中心', 'location': '109.329277,21.567049', 'tel': '15207704002', 'shopid': [], 'id': 'B0HB5ZW6DS'}, {'parent': [], 'address': '兴国路8号', 'distance': [], 'pname': '广西壮族自治区', 'importance': [], 'biz_ext': {'cost': [], 'rating': '4.4'}, 'biz_type': [], 'cityname': '北海市', 'type': '汽车维修;汽车维修;汽车维修', 'photos': [{'title': [], 'url': 'http://store.is.autonavi.com/showpic/01a4232e59a38578d0a4418e38a56883'}], 'typecode': '030000', 'shopinfo': '0', 'poiweight': [], 'childtype': [], 'adname': '银海区', 'name': '车管家汽车维修美容养护中心', 'location': '109.133338,21.441689', 'tel': '15007796548;15207804494', 'shopid': [], 'id': 'B0LGN7MG95'}, {'parent': [], 'address': '廉州镇珠海路一号', 'distance': [], 'pname': '广西壮族自治区', 'importance': [], 'biz_ext': {'cost': [], 'rating': '4.3'}, 'biz_type': [], 'cityname': '北海市', 'type': '汽车服务;汽车养护/装饰;汽车养护', 'photos': [{'title': [], 'url': 'http://store.is.autonavi.com/showpic/54d842d6203849338be51da8949302ac'}, {'title': [], 'url': 'http://store.is.autonavi.com/showpic/6c2d3fb7535efd9f922cd02dfa7545b1'}, {'title': [], 'url': 'http://store.is.autonavi.com/showpic/5ae2c7415ed81c362238b159624cd6b1'}], 'typecode': '010400', 'shopinfo': '1', 'poiweight': [], 'childtype': [], 'adname': '合浦县', 'name': '合昌汽车美容快修养护中心(一分店)', 'location': '109.211095,21.667243', 'tel': '18277934805', 'shopid': [], 'id': 'B0FFKV0F64'}, {'parent': [], 'address': '海湾新城回建区社会主义新农村小区C128号', 'distance': [], 'pname': '广西壮族自治区', 'importance': [], 'biz_ext': {'cost': [], 'rating': '4.1'}, 'biz_type': [], 'cityname': '北海市', 'type': '汽车服务;汽车养护/装饰;汽车养护', 'photos': [{'title': [], 'url': 'http://aos-cdn-image.amap.com/sns/ugccomment/2c2d5151-f3b1-4952-89c7-52093ddde4a1.jpg'}, {'title': [], 'url': 'http://store.is.autonavi.com/showpic/454f7528eff047e8a81b1889b50caa27'}, {'title': [], 'url': 'http://store.is.autonavi.com/showpic/1a8f09a27759ffcfc661bd5db32a1fce'}], 'typecode': '010400', 'shopinfo': '1', 'poiweight': [], 'childtype': [], 'adname': '海城区', 'name': '车时空影音装饰', 'location': '109.156811,21.493040', 'tel': '18877902330', 'shopid': [], 'id': 'B0GD1HMH8Z'}, {'parent': [], 'address': '四川路与站前路交汇处往西30米百合花园商住楼B4号栋一楼商铺', 'distance': [], 'pname': '广西壮族自治区', 'importance': [], 'biz_ext': {'cost': [], 'rating': '3.9'}, 'biz_type': [], 'cityname': '北海市', 'type': '汽车维修;汽车维修;汽车维修', 'photos': [{'title': [], 'url': 'http://store.is.autonavi.com/showpic/bced46830d85c9212e0fb29785c26f5f'}, {'title': [], 'url': 'http://store.is.autonavi.com/showpic/d9bc39a28855af7d7a2b72096b178f54'}, {'title': [], 'url': 'http://store.is.autonavi.com/showpic/158b0e24f7876db8290f165fe350a6bf'}], 'typecode': '030000', 'shopinfo': '1', 'poiweight': [], 'childtype': [], 'adname': '海城区', 'name': '驰安汽车养护中心', 'location': '109.118314,21.451864', 'tel': '15278977160', 'shopid': [], 'id': 'B0H0L7JB18'}, {'parent': [], 'address': '云南路滨城公寓C栋2号', 'distance': [], 'pname': '广西壮族自治区', 'importance': [], 'biz_ext': {'cost': [], 'rating': '3.9'}, 'biz_type': [], 'cityname': '北海市', 'type': '汽车服务;汽车养护/装饰;汽车养护', 'photos': [{'title': [], 'url': 'http://store.is.autonavi.com/showpic/ee2652e79389d327055495eb0e1ab0b7'}, {'title': [], 'url': 'http://store.is.autonavi.com/showpic/558cd1e1a3102f265a7d73a9'}, {'title': [], 'url': 'http://store.is.autonavi.com/showpic/ac2f4e844c8135f47c47d267067de30f'}], 'typecode': '010400', 'shopinfo': '1', 'poiweight': [], 'childtype': [], 'adname': '海城区', 'name': '北海市车世界汽车美容中心', 'location': '109.103575,21.460768', 'tel': '0779-3038836;13907799707', 'shopid': [], 'id': 'B0FFG6DEKF'}, {'parent': [], 'address': '贵州路独树根路北岸晏城B栋', 'distance': [], 'pname': '广西壮族自治区', 'importance': [], 'biz_ext': {'cost': [], 'rating': '4.2'}, 'biz_type': [], 'cityname': '北海市', 'type': '汽车服务;汽车养护/装饰;汽车养护', 'photos': [{'title': [], 'url': 'http://store.is.autonavi.com/showpic/510499ef7044ce1d2effed2fbc8a6e02'}], 'typecode': '010400', 'shopinfo': '0', 'poiweight': [], 'childtype': [], 'adname': '海城区', 'name': '鸿生汽车美容中心', 'location': '109.102245,21.476124', 'tel': '18777970568', 'shopid': [], 'id': 'B0FFIKHMHA'}, {'parent': [], 'address': '广东北路与龙门路交叉口北180米', 'distance': [], 'pname': '广西壮族自治区', 'importance': [], 'biz_ext': {'cost': [], 'rating': '3.4'}, 'biz_type': [], 'cityname': '北海市', 'type': '汽车服务;汽车养护/装饰;汽车养护', 'photos': [], 'typecode': '010400', 'shopinfo': '0', 'poiweight': [], 'childtype': [], 'adname': '合浦县', 'name': '凌锋汽车美容养护中心', 'location': '109.218975,21.672125', 'tel': [], 'shopid': [], 'id': 'B0L6FHCVKF'}, {'parent': [], 'address': '恒秀花园A栋', 'distance': [], 'pname': '广西壮族自治区', 'importance': [], 'biz_ext': {'cost': [], 'rating': '4.2'}, 'biz_type': [], 'cityname': '北海市', 'type': '汽车服务;汽车养护/装饰;汽车养护', 'photos': [{'title': [], 'url': 'http://store.is.autonavi.com/showpic/e2a403451eb01a0b840197695859413b'}, {'title': [], 'url': 'http://store.is.autonavi.com/showpic/ab49d519776b2d17eb2ee398738e1a84'}, {'title': [], 'url': 'http://store.is.autonavi.com/showpic/443cdd0ccdc6263ff2344f277f28530f'}], 'typecode': '010400', 'shopinfo': '0', 'poiweight': [], 'childtype': [], 'adname': '海城区', 'name': '炫车坊汽车美容会所', 'location': '109.107444,21.449000', 'tel': '18377932935', 'shopid': [], 'id': 'B0FFJ2AGMF'}, {'parent': [], 'address': '云南路65号', 'distance': [], 'pname': '广西壮族自治区', 'importance': [], 'biz_ext': {'cost': [], 'rating': '3.8'}, 'biz_type': [], 'cityname': '北海市', 'type': '汽车服务;汽车养护/装饰;汽车养护', 'photos': [], 'typecode': '010400', 'shopinfo': '0', 'poiweight': [], 'childtype': [], 'adname': '海城区', 'name': 'TTAUTO车体养护工作室', 'location': '109.103303,21.461128', 'tel': '13707794440', 'shopid': [], 'id': 'B0K16LWE2H'}, {'parent': [], 'address': '德黔花园北门旁', 'distance': [], 'pname': '广西壮族自治区', 'importance': [], 'biz_ext': {'cost': [], 'rating': '3.4'}, 'biz_type': [], 'cityname': '北海市', 'type': '汽车服务;汽车养护/装饰;汽车养护|汽车服务;洗车场;洗车场|汽车维修;汽车维修;汽车维修', 'photos': [], 'typecode': '010400|010500|030000', 'shopinfo': '0', 'poiweight': [], 'childtype': [], 'adname': '海城区', 'name': '鑫美汽车美容养护坊', 'location': '109.098199,21.465372', 'tel': '18777183835;18977901916', 'shopid': [], 'id': 'B0J01AXA57'}, {'parent': [], 'address': '春华园西南门南80米', 'distance': [], 'pname': '广西壮族自治区', 'importance': [], 'biz_ext': {'cost': [], 'rating': '4.3'}, 'biz_type': [], 'cityname': '北海市', 'type': '汽车维修;汽车综合维修;汽车综合维修|汽车服务;汽车养护/装饰;汽车养护', 'photos': [{'title': [], 'url': 'http://store.is.autonavi.com/showpic/c5638d5ab78e09104a810acfb145fd4a'}, {'title': [], 'url': 'http://store.is.autonavi.com/showpic/ff2b711a6773f5f817422c89cc983306'}], 'typecode': '030100|010400', 'shopinfo': '0', 'poiweight': [], 'childtype': [], 'adname': '海城区', 'name': '快洁美汽车美容城', 'location': '109.121134,21.463426', 'tel': '13707795058', 'shopid': [], 'id': 'B030B00SQ0'}], 'status': '1', 'info': 'OK'}\n",
"{'suggestion': {'keywords': [], 'cities': []}, 'count': '115', 'infocode': '10000', 'pois': [{'parent': [], 'address': '南宁市经开区福胜汽车维修服务中心(个体工商户)', 'distance': [], 'pname': '广西壮族自治区', 'importance': [], 'biz_ext': {'cost': [], 'rating': '3.8'}, 'biz_type': [], 'cityname': '南宁市', 'type': '汽车服务;汽车养护/装饰;汽车养护', 'photos': [{'title': [], 'url': 'http://store.is.autonavi.com/showpic/2bc84942d73c89dc2b29b6a9fb5f0f42'}], 'typecode': '010400', 'shopinfo': '1', 'poiweight': [], 'childtype': [], 'adname': '江南区', 'name': '百援精养南宁福胜店', 'location': '108.249898,22.772376', 'tel': '13737072313', 'shopid': [], 'id': 'B0LGPZGBI2'}, {'parent': [], 'address': '江南区经开区长凯路22号(金凯创业园南门)', 'distance': [], 'pname': '广西壮族自治区', 'importance': [], 'biz_ext': {'cost': [], 'rating': '4.3'}, 'biz_type': [], 'cityname': '南宁市', 'type': '汽车维修;汽车维修;汽车维修', 'photos': [{'title': [], 'url': 'http://store.is.autonavi.com/showpic/81d254c5b746e8d69d6b96f134621bc5'}, {'title': [], 'url': 'http://store.is.autonavi.com/showpic/07df5b99e38b480675548430883ab55e'}, {'title': [], 'url': 'http://store.is.autonavi.com/showpic/bef2713d3ecbffc86a806043bba827bb'}], 'typecode': '030000', 'shopinfo': '1', 'poiweight': [], 'childtype': [], 'adname': '江南区', 'name': '斯巴鲁汽车维修喷漆贴膜有限公司', 'location': '108.304456,22.765987', 'tel': '18807717037', 'shopid': [], 'id': 'B0FFLPFHY3'}, {'parent': [], 'address': '南宁经济技术开发区银凯工业园那历路16号', 'distance': [], 'pname': '广西壮族自治区', 'importance': [], 'biz_ext': {'cost': [], 'rating': '4.8'}, 'biz_type': [], 'cityname': '南宁市', 'type': '汽车销售;通用特约销售;别克销售|汽车维修;通用特约维修;别克维修', 'photos': [{'title': [], 'url': 'http://store.is.autonavi.com/showpic/a5730dc896a6ce4e07038caab261c484'}, {'title': [], 'url': 'https://comment-oss-online.oss-cn-wulanchabu.aliyuncs.com/B03030V5D2/comment/0feedback_sendimage_1650242662377_23dde728.jpeg'}, {'title': [], 'url': 'https://comment-oss-online.oss-cn-wulanchabu.aliyuncs.com/B03030V5D2/comment/0feedback_sendimage_1650157144286_539fe41f.jpeg'}], 'typecode': '020402|030502', 'shopinfo': '1', 'poiweight': [], 'childtype': [], 'adname': '江南区', 'name': '广西鑫广达博通汽车销售服务有限公司', 'location': '108.257912,22.762794', 'tel': '0771-4880188;0771-4880988;0771-4896855', 'shopid': [], 'id': 'B03030V5D2'}, {'parent': [], 'address': '南宁经济开发区那历路17号', 'distance': [], 'pname': '广西壮族自治区', 'importance': [], 'biz_ext': {'cost': [], 'rating': '4.3'}, 'biz_type': [], 'cityname': '南宁市', 'type': '汽车维修;汽车综合维修;汽车综合维修', 'photos': [{'title': [], 'url': 'https://store.is.autonavi.com/showpic/d123a4a79f62337e395c77478dbcff4f'}, {'title': [], 'url': 'http://store.is.autonavi.com/showpic/0df32dd9de3741dd57dcf85f5db7a00f'}, {'title': [], 'url': 'http://store.is.autonavi.com/showpic/2332462e5edf6fc572edae2ef57cb357'}], 'typecode': '030100', 'shopinfo': '0', 'poiweight': [], 'childtype': [], 'adname': '江南区', 'name': '南宁市宏丰汽车维修服务有限公司', 'location': '108.259037,22.765221', 'tel': '13737193059;15907710505', 'shopid': [], 'id': 'B0FFGZY3NY'}, {'parent': [], 'address': '经济技术开发区南宁市经开区金凯路13号', 'distance': [], 'pname': '广西壮族自治区', 'importance': [], 'biz_ext': {'cost': [], 'rating': '4.3'}, 'biz_type': [], 'cityname': '南宁市', 'type': '汽车维修;汽车维修;汽车维修', 'photos': [{'title': [], 'url': 'http://store.is.autonavi.com/showpic/204af9da6a2db126e5193da895eac69d'}, {'title': [], 'url': 'http://store.is.autonavi.com/showpic/9e2152c9480c0bccf54e926c86e9d094'}], 'typecode': '030000', 'shopinfo': '0', 'poiweight': [], 'childtype': [], 'adname': '江南区', 'name': '南宁市展新汽车维修厂', 'location': '108.304895,22.767875', 'tel': '0771-4899269;13977123937', 'shopid': [], 'id': 'B030305RB7'}, {'parent': [], 'address': '经济技术开发区亭江路江南国际二手车市场', 'distance': [], 'pname': '广西壮族自治区', 'importance': [], 'biz_ext': {'cost': [], 'rating': '4.0'}, 'biz_type': [], 'cityname': '南宁市', 'type': '汽车销售;汽车销售;汽车销售', 'photos': [{'title': [], 'url': 'http://store.is.autonavi.com/showpic/5f3e12e31580eb1db64d658fc7cc751e'}], 'typecode': '020000', 'shopinfo': '0', 'poiweight': [], 'childtype': [], 'adname': '江南区', 'name': '万鑫隆汽车服务有限公司', 'location': '108.324783,22.775533', 'tel': '15078898809', 'shopid': [], 'id': 'B0FFHPNEBF'}, {'parent': [], 'address': '区农坛路297号-1', 'distance': [], 'pname': '广西壮族自治区', 'importance': [], 'biz_ext': {'cost': [], 'rating': '3.5'}, 'biz_type': [], 'cityname': '南宁市', 'type': '汽车服务;汽车养护/装饰;汽车养护', 'photos': [{'title': [], 'url': 'http://store.is.autonavi.com/showpic/944b66135e92d8e2607136286506f121'}, {'title': [], 'url': 'http://store.is.autonavi.com/showpic/832dd7be41737ec4bc3b35fda0e55f39'}], 'typecode': '010400', 'shopinfo': '1', 'poiweight': [], 'childtype': [], 'adname': '武鸣区', 'name': '美车汇汽车美容工作室', 'location': '108.284984,23.167132', 'tel': [], 'shopid': [], 'id': 'B0K1ZH304P'}, {'parent': [], 'address': '智兴路39号富乐新城64号楼11商铺', 'distance': [], 'pname': '广西壮族自治区', 'importance': [], 'biz_ext': {'cost': [], 'rating': '4.2'}, 'biz_type': [], 'cityname': '南宁市', 'type': '汽车服务;汽车养护/装饰;汽车养护|汽车服务;洗车场;洗车场|汽车维修;汽车维修;汽车维修', 'photos': [{'title': [], 'url': 'http://store.is.autonavi.com/showpic/992147e44d1b1ed30c1ae2326fbc3365'}, {'title': [], 'url': 'http://store.is.autonavi.com/showpic/9d11b18ee278efc42292c6421d583f6e'}, {'title': [], 'url': 'http://store.is.autonavi.com/showpic/af36b1a4bb4158163ed6b0381b969280'}], 'typecode': '010400|010500|030000', 'shopinfo': '1', 'poiweight': [], 'childtype': [], 'adname': '江南区', 'name': 'MER曼尼诺厚智汽车美容工作室', 'location': '108.237139,22.784375', 'tel': '19163722890', 'shopid': [], 'id': 'B0G399RP1Y'}, {'parent': [], 'address': '南站大道3-1号东盟国际汽配城A1-332', 'distance': [], 'pname': '广西壮族自治区', 'importance': [], 'biz_ext': {'cost': [], 'rating': '4.2'}, 'biz_type': [], 'cityname': '南宁市', 'type': '汽车服务;汽车养护/装饰;汽车养护', 'photos': [{'title': [], 'url': 'http://store.is.autonavi.com/showpic/af87c183cab4fcae5e10c6c649dce05e'}, {'title': [], 'url': 'http://store.is.autonavi.com/showpic/319b48f5f475f4ed4f3768f821e11916'}, {'title': [], 'url': 'http://store.is.autonavi.com/showpic/f81228a2d2a9ff02229b1afb32cb6423'}], 'typecode': '010400', 'shopinfo': '1', 'poiweight': [], 'childtype': [], 'adname': '江南区', 'name': '南宁市经济技术开发区奔克汽车用品批发店', 'location': '108.263880,22.774571', 'tel': '13878173968', 'shopid': [], 'id': 'B0FFFRJGL9'}, {'parent': [], 'address': '心圩街道科园西十路与高新三路交叉口和德村七组村口旁18.19号商铺', 'distance': [], 'pname': '广西壮族自治区', 'importance': [], 'biz_ext': {'cost': [], 'rating': '3.8'}, 'biz_type': [], 'cityname': '南宁市', 'type': '汽车服务;洗车场;洗车场', 'photos': [{'title': [], 'url': 'http://store.is.autonavi.com/showpic/00eb522d5b124dc944ac37cf525bf807'}, {'title': [], 'url': 'http://store.is.autonavi.com/showpic/bffac527631614f67c76d5316cc4bec2'}], 'typecode': '010500', 'shopinfo': '1', 'poiweight': [], 'childtype': [], 'adname': '西乡塘区', 'name': '源源汽车洗美工作室', 'location': '108.262103,22.862727', 'tel': '18878760165', 'shopid': [], 'id': 'B0K0G5597R'}, {'parent': [], 'address': '邕武路4-2号狮山综合市场1栋L1-08-09号铺面', 'distance': [], 'pname': '广西壮族自治区', 'importance': [], 'biz_ext': {'cost': [], 'rating': '4.3'}, 'biz_type': [], 'cityname': '南宁市', 'type': '汽车服务;汽车养护/装饰;汽车养护', 'photos': [{'title': [], 'url': 'http://store.is.autonavi.com/showpic/584cf230e9828a754fed56c46bc4b31c'}, {'title': [], 'url': 'http://store.is.autonavi.com/showpic/ea3ebf4c6c5790d92314a49f5cc0faf8'}], 'typecode': '010400', 'shopinfo': '0', 'poiweight': [], 'childtype': [], 'adname': '兴宁区', 'name': '滨马汽车美容工作室(狮山店)', 'location': '108.337687,22.861225', 'tel': '19907796183', 'shopid': [], 'id': 'B0KU7S8DBR'}, {'parent': [], 'address': '南宁经济技术开发区国凯大道东21号1A号楼', 'distance': [], 'pname': '广西壮族自治区', 'importance': [], 'biz_ext': {'cost': [], 'rating': '4.3'}, 'biz_type': [], 'cityname': '南宁市', 'type': '汽车销售;汽车销售;汽车销售', 'photos': [{'title': [], 'url': 'http://store.is.autonavi.com/showpic/8749407e918ce95f61512757b31dd361'}, {'title': [], 'url': 'http://store.is.autonavi.com/showpic/517d6a9849d59b5b062fb473fd434357'}, {'title': [], 'url': 'http://store.is.autonavi.com/showpic/67972e963f1709e1379cd8fc9242a6d8'}], 'typecode': '020000', 'shopinfo': '1', 'poiweight': [], 'childtype': [], 'adname': '江南区', 'name': '劳斯莱斯汽车 南宁', 'location': '108.299196,22.752942', 'tel': '0771-2850808', 'shopid': [], 'id': 'B03030V5B0'}, {'parent': [], 'address': '蝶城路782号', 'distance': [], 'pname': '广西壮族自治区', 'importance': [], 'biz_ext': {'cost': [], 'rating': '3.9'}, 'biz_type': [], 'cityname': '南宁市', 'type': '汽车服务;汽车养护/装饰;汽车养护', 'photos': [{'title': [], 'url': 'http://store.is.autonavi.com/showpic/29148c6824628ae47a507387ac8f0024'}, {'title': [], 'url': 'http://store.is.autonavi.com/showpic/155b9889f298b487f85cb67c4c2e8138'}], 'typecode': '010400', 'shopinfo': '1', 'poiweight': [], 'childtype': [], 'adname': '隆安县', 'name': '膜界汽车工作室', 'location': '107.677275,23.183313', 'tel': [], 'shopid': [], 'id': 'B0J1AC68NW'}, {'parent': [], 'address': '新际路8号', 'distance': [], 'pname': '广西壮族自治区', 'importance': [], 'biz_ext': {'cost': [], 'rating': '4.2'}, 'biz_type': [], 'cityname': '南宁市', 'type': '汽车服务;汽车养护/装饰;汽车养护', 'photos': [{'title': [], 'url': 'http://store.is.autonavi.com/showpic/8e684c2e3820ee1616efc6ee272bc92d'}, {'title': [], 'url': 'http://store.is.autonavi.com/showpic/a8f27557786b13f04571a673f415eab8'}, {'title': [], 'url': 'http://store.is.autonavi.com/showpic/05fa1e35ae891be543552ef67b2dd441'}], 'typecode': '010400', 'shopinfo': '1', 'poiweight': [], 'childtype': [], 'adname': '西乡塘区', 'name': '长虹汽车美容工作室', 'location': '108.248838,22.865895', 'tel': '15778890089', 'shopid': [], 'id': 'B0K1PLCE5U'}, {'parent': [], 'address': '仙葫经济开发区管理委员会开泰路141-7号', 'distance': [], 'pname': '广西壮族自治区', 'importance': [], 'biz_ext': {'cost': [], 'rating': '4.1'}, 'biz_type': [], 'cityname': '南宁市', 'type': '汽车维修;汽车综合维修;汽车综合维修', 'photos': [{'title': [], 'url': 'http://store.is.autonavi.com/showpic/a2f8fa13771dbaebf8fe6bc3dae24b68'}], 'typecode': '030100', 'shopinfo': '0', 'poiweight': [], 'childtype': [], 'adname': '青秀区', 'name': '越世通汽车维修中心', 'location': '108.445673,22.802361', 'tel': '13978686553;15977711181', 'shopid': [], 'id': 'B0FFHZ7LWG'}, {'parent': [], 'address': '昆仑大道大嘉汇汽车城35栋101-102(原MK)', 'distance': [], 'pname': '广西壮族自治区', 'importance': [], 'biz_ext': {'cost': [], 'rating': '4.1'}, 'biz_type': [], 'cityname': '南宁市', 'type': '汽车服务;汽车养护/装饰;汽车养护', 'photos': [{'title': [], 'url': 'http://store.is.autonavi.com/showpic/99e322eed9e5b7a3abe3b0afcfb99e54'}, {'title': [], 'url': 'http://store.is.autonavi.com/showpic/c8d7805ff434d7a5928bb1e30822e932'}, {'title': [], 'url': 'http://store.is.autonavi.com/showpic/de33fc3cfd7984331c3665cd8ce6dd25'}], 'typecode': '010400', 'shopinfo': '0', 'poiweight': [], 'childtype': [], 'adname': '兴宁区', 'name': '西磊汽车内饰改装工作室', 'location': '108.368339,22.864618', 'tel': '15177177700', 'shopid': [], 'id': 'B0IGFUX2GW'}, {'parent': [], 'address': '仙葫经济开发区仙葫开发区通泰路35号', 'distance': [], 'pname': '广西壮族自治区', 'importance': [], 'biz_ext': {'cost': [], 'rating': '4.2'}, 'biz_type': [], 'cityname': '南宁市', 'type': '汽车维修;汽车维修;汽车维修', 'photos': [{'title': [], 'url': 'http://store.is.autonavi.com/showpic/33e4a371adf8075af1e82a4e904e2672'}, {'title': [], 'url': 'http://store.is.autonavi.com/showpic/2ac1e5871336cd94023ae7893a34c9af'}], 'typecode': '030000', 'shopinfo': '0', 'poiweight': [], 'childtype': [], 'adname': '青秀区', 'name': '南宁市起印汽车维修服务部', 'location': '108.443331,22.806852', 'tel': '15877177355', 'shopid': [], 'id': 'B0HA5HLEX5'}, {'parent': [], 'address': '罗文大道102号', 'distance': [], 'pname': '广西壮族自治区', 'importance': [], 'biz_ext': {'cost': [], 'rating': '3.8'}, 'biz_type': [], 'cityname': '南宁市', 'type': '汽车服务;汽车养护/装饰;汽车养护', 'photos': [{'title': [], 'url': 'http://store.is.autonavi.com/showpic/bc985c8f5e2cbf4bfa8139f8274f3c80'}], 'typecode': '010400', 'shopinfo': '0', 'poiweight': [], 'childtype': [], 'adname': '西乡塘区', 'name': '宇星车届汽车贴膜美容工作室', 'location': '108.228832,22.857188', 'tel': [], 'shopid': [], 'id': 'B0J1FL5QEE'}, {'parent': [], 'address': '民生街道时代茗城底商1-28号逗逗车汽美工作室', 'distance': [], 'pname': '广西壮族自治区', 'importance': [], 'biz_ext': {'cost': [], 'rating': '4.1'}, 'biz_type': [], 'cityname': '南宁市', 'type': '汽车服务;汽车养护/装饰;汽车养护', 'photos': [{'title': [], 'url': 'http://store.is.autonavi.com/showpic/f4f1a9e54cc4b4d5579b2ac05f73c5fd'}, {'title': [], 'url': 'http://store.is.autonavi.com/showpic/98b9ccc0a223256d2f9d3cf7d76dfa25'}, {'title': [], 'url': 'https://aos-comment.amap.com/B0HAUHS9RV/comment/IMG_20250618_185255_tem_1750243986251_17643493.jpg'}], 'typecode': '010400', 'shopinfo': '0', 'poiweight': [], 'childtype': [], 'adname': '兴宁区', 'name': '逗逗车汽美工作室', 'location': '108.337934,22.834530', 'tel': '15277179497;15277719497', 'shopid': [], 'id': 'B0HAUHS9RV'}, {'parent': [], 'address': '秀厢大道92号', 'distance': [], 'pname': '广西壮族自治区', 'importance': [], 'biz_ext': {'cost': [], 'rating': '3.9'}, 'biz_type': [], 'cityname': '南宁市', 'type': '汽车服务;汽车养护/装饰;汽车养护', 'photos': [{'title': [], 'url': 'http://store.is.autonavi.com/showpic/a003ecc613b7407854de8ed24418e820'}], 'typecode': '010400', 'shopinfo': '0', 'poiweight': [], 'childtype': [], 'adname': '兴宁区', 'name': '宾马汽车美容工作室', 'location': '108.341354,22.862500', 'tel': '19907796183', 'shopid': [], 'id': 'B0KGBHZRUT'}], 'status': '1', 'info': 'OK'}\n",
"{'suggestion': {'keywords': [], 'cities': []}, 'count': '115', 'infocode': '10000', 'pois': [{'parent': [], 'address': '仙葫经济开发区蓉茉大道71号', 'distance': [], 'pname': '广西壮族自治区', 'importance': [], 'biz_ext': {'cost': [], 'rating': '3.8'}, 'biz_type': [], 'cityname': '南宁市', 'type': '汽车维修;汽车维修;汽车维修', 'photos': [], 'typecode': '030000', 'shopinfo': '0', 'poiweight': [], 'childtype': [], 'adname': '青秀区', 'name': '南宁市中明汽车修理厂', 'location': '108.454356,22.800041', 'tel': '0771-5783761;13481167158;15977672626', 'shopid': [], 'id': 'B0FFKVELSJ'}, {'parent': [], 'address': '仙湖经济开发区开泰路西四二里46号', 'distance': [], 'pname': '广西壮族自治区', 'importance': [], 'biz_ext': {'cost': [], 'rating': '4.2'}, 'biz_type': [], 'cityname': '南宁市', 'type': '汽车维修;汽车维修;汽车维修', 'photos': [{'title': [], 'url': 'http://store.is.autonavi.com/showpic/5f42cb8cea2ec93d2441405e2e26eee6'}, {'title': [], 'url': 'http://store.is.autonavi.com/showpic/0211c15ab9d1c6196b917735171e6e4b'}, {'title': [], 'url': 'http://store.is.autonavi.com/showpic/c4f2cbf31ff40568bbfa3bc570325c4c'}], 'typecode': '030000', 'shopinfo': '1', 'poiweight': [], 'childtype': [], 'adname': '青秀区', 'name': '铭成汽车养护中心', 'location': '108.444421,22.809571', 'tel': '13123513133', 'shopid': [], 'id': 'B0HBTA1UHG'}, {'parent': [], 'address': '经济技术开发区洞岭路哈利玛化工有限公司斜对面', 'distance': [], 'pname': '广西壮族自治区', 'importance': [], 'biz_ext': {'cost': [], 'rating': '4.6'}, 'biz_type': [], 'cityname': '南宁市', 'type': '汽车维修;汽车维修;汽车维修', 'photos': [{'title': [], 'url': 'http://store.is.autonavi.com/showpic/358558c18565fbbc2af49e2941dca0b0'}], 'typecode': '030000', 'shopinfo': '0', 'poiweight': [], 'childtype': [], 'adname': '江南区', 'name': '金盾(那洪)汽车维修服务中心', 'location': '108.292391,22.760379', 'tel': [], 'shopid': [], 'id': 'B0FFKFCCXT'}, {'parent': [], 'address': '南宁·东盟经济开发区客运站东南门旁', 'distance': [], 'pname': '广西壮族自治区', 'importance': [], 'biz_ext': {'cost': [], 'rating': '4.1'}, 'biz_type': [], 'cityname': '南宁市', 'type': '汽车维修;汽车维修;汽车维修', 'photos': [{'title': [], 'url': 'https://aos-comment.amap.com/B0J0JZJJJM/comment/content_media_external_images_media_100000874_1741921248279_01545255.jpg'}, {'title': [], 'url': 'https://aos-comment.amap.com/B0J0JZJJJM/comment/202507_06-17580_1751795890481_12055963.jpg'}, {'title': [], 'url': 'http://store.is.autonavi.com/showpic/3ac2b3bc493fd7ce4ca246593b618247'}], 'typecode': '030000', 'shopinfo': '0', 'poiweight': [], 'childtype': [], 'adname': '武鸣区', 'name': '锦华修车行', 'location': '108.174947,23.192148', 'tel': [], 'shopid': [], 'id': 'B0J0JZJJJM'}, {'parent': [], 'address': '仙葫经济开发区长福路长福加油站入口直走30米', 'distance': [], 'pname': '广西壮族自治区', 'importance': [], 'biz_ext': {'cost': [], 'rating': '3.9'}, 'biz_type': [], 'cityname': '南宁市', 'type': '汽车维修;汽车维修;汽车维修', 'photos': [{'title': [], 'url': 'http://store.is.autonavi.com/showpic/ce02901f78c1c62ebcff916f4bd8efd7'}, {'title': [], 'url': 'http://store.is.autonavi.com/showpic/60c418b3183435d8da0b2a90aa9b4e5c'}, {'title': [], 'url': 'http://store.is.autonavi.com/showpic/b221dd07bd2f30b88b50da3a4e294f73'}], 'typecode': '030000', 'shopinfo': '1', 'poiweight': [], 'childtype': [], 'adname': '青秀区', 'name': '南宁长福汽车维修服务有限公司', 'location': '108.452376,22.797342', 'tel': '18172539533', 'shopid': [], 'id': 'B0KDJC1PQ4'}, {'parent': [], 'address': '仙葫经济开发区滨江别墅区', 'distance': [], 'pname': '广西壮族自治区', 'importance': [], 'biz_ext': {'cost': [], 'rating': '4.1'}, 'biz_type': [], 'cityname': '南宁市', 'type': '汽车维修;汽车维修;汽车维修', 'photos': [{'title': [], 'url': 'http://store.is.autonavi.com/showpic/9e38c514505df30b4ccd120470f59d2b'}], 'typecode': '030000', 'shopinfo': '1', 'poiweight': [], 'childtype': [], 'adname': '青秀区', 'name': 'Jeep专修俱乐部(车纪元仙葫店)', 'location': '108.468753,22.809128', 'tel': '0771-5824047;18078152820', 'shopid': [], 'id': 'B0J39UD78V'}, {'parent': [], 'address': '南宁经开区金凯路20号', 'distance': [], 'pname': '广西壮族自治区', 'importance': [], 'biz_ext': {'cost': [], 'rating': '3.7'}, 'biz_type': [], 'cityname': '南宁市', 'type': '汽车服务;洗车场;洗车场|汽车服务;汽车养护/装饰;汽车养护|汽车维修;汽车维修;汽车维修', 'photos': [{'title': [], 'url': 'https://aos-comment.amap.com/B0JDRHK85W/comment/84086c87e340731132c2177f6216268e_2048_2048_80.jpg'}, {'title': [], 'url': 'https://aos-comment.amap.com/B0JDRHK85W/comment/5b95b67a1bb352f6dd100e1a188761ec_2048_2048_80.jpg'}], 'typecode': '010500|010400|030000', 'shopinfo': '0', 'poiweight': [], 'childtype': [], 'adname': '江南区', 'name': 'KTfO教书匠汽车服务', 'location': '108.296015,22.768743', 'tel': '13617884141', 'shopid': [], 'id': 'B0JKGZW9M5'}, {'parent': [], 'address': '叠彩路万里国际南宁汽配城', 'distance': [], 'pname': '广西壮族自治区', 'importance': [], 'biz_ext': {'cost': [], 'rating': '3.5'}, 'biz_type': [], 'cityname': '南宁市', 'type': '汽车服务;汽车养护/装饰;汽车养护', 'photos': [{'title': [], 'url': 'http://store.is.autonavi.com/showpic/51e42adcbb34c72ffb9745b36266ea15'}], 'typecode': '010400', 'shopinfo': '0', 'poiweight': [], 'childtype': [], 'adname': '兴宁区', 'name': '卡仕邦贴膜工作室', 'location': '108.338984,22.838006', 'tel': [], 'shopid': [], 'id': 'B0H0XS4ZJK'}, {'parent': [], 'address': '东盟汽配城C8-5号', 'distance': [], 'pname': '广西壮族自治区', 'importance': [], 'biz_ext': {'cost': [], 'rating': '3.9'}, 'biz_type': [], 'cityname': '南宁市', 'type': '汽车服务;汽车配件销售;汽车配件销售', 'photos': [{'title': [], 'url': 'http://store.is.autonavi.com/showpic/ce5ca987f8ad16794e458354dbfed924'}, {'title': [], 'url': 'http://store.is.autonavi.com/showpic/74c43bba65ca25ee3509bb9add6104d1'}], 'typecode': '010800', 'shopinfo': '1', 'poiweight': [], 'childtype': [], 'adname': '江南区', 'name': '南宁市经开区汇顺汽配', 'location': '108.265679,22.769871', 'tel': '18076559971', 'shopid': [], 'id': 'B0KGSLMCY0'}, {'parent': [], 'address': '仙葫经济开发区管理委员会蓉茉大道84号龙江楼1号', 'distance': [], 'pname': '广西壮族自治区', 'importance': [], 'biz_ext': {'cost': [], 'rating': '4.4'}, 'biz_type': [], 'cityname': '南宁市', 'type': '汽车服务;汽车养护/装饰;汽车养护', 'photos': [{'title': [], 'url': 'http://store.is.autonavi.com/showpic/5ad78417dac943b04e8d2cd58a03b6f2'}], 'typecode': '010400', 'shopinfo': '0', 'poiweight': [], 'childtype': [], 'adname': '青秀区', 'name': '广西南宁聚通汽车服务有限公司', 'location': '108.455005,22.796043', 'tel': '13077758818;15578076789', 'shopid': [], 'id': 'B0FFHMMJ82'}, {'parent': [], 'address': '宏福路与牛岭路交叉口东南200米', 'distance': [], 'pname': '广西壮族自治区', 'importance': [], 'biz_ext': {'cost': [], 'rating': '3.4'}, 'biz_type': [], 'cityname': '南宁市', 'type': '汽车维修;汽车维修;汽车维修', 'photos': [], 'typecode': '030000', 'shopinfo': '0', 'poiweight': [], 'childtype': [], 'adname': '青秀区', 'name': '车无痕车身修复工作室', 'location': '108.455497,22.802241', 'tel': [], 'shopid': [], 'id': 'B0LBSCUWYK'}, {'parent': [], 'address': '仙葫经济开发区管理委员会通泰路181号', 'distance': [], 'pname': '广西壮族自治区', 'importance': [], 'biz_ext': {'cost': [], 'rating': '4.0'}, 'biz_type': [], 'cityname': '南宁市', 'type': '汽车服务;汽车养护/装饰;汽车养护', 'photos': [{'title': [], 'url': 'https://aos-comment.amap.com/B0FFI5CE1Z/comment/content_media_external_images_media_3687_ss__1740979170371_09979274.jpg'}, {'title': [], 'url': 'http://store.is.autonavi.com/showpic/757798616119efe11274fd436481160a'}, {'title': [], 'url': 'http://store.is.autonavi.com/showpic/18e444898e64cd3dbcd522f501dcfe33'}], 'typecode': '010400', 'shopinfo': '1', 'poiweight': [], 'childtype': [], 'adname': '青秀区', 'name': '军辉汽车维修保养钣金喷漆', 'location': '108.450275,22.807433', 'tel': '18376787138', 'shopid': [], 'id': 'B0FFI5CE1Z'}, {'parent': [], 'address': '城厢镇春华支路20号22号门面', 'distance': [], 'pname': '广西壮族自治区', 'importance': [], 'biz_ext': {'cost': [], 'rating': '3.9'}, 'biz_type': [], 'cityname': '南宁市', 'type': '汽车服务;汽车养护/装饰;汽车养护', 'photos': [{'title': [], 'url': 'http://store.is.autonavi.com/showpic/e7a91f056761815b8c60f49250df056a'}, {'title': [], 'url': 'http://store.is.autonavi.com/showpic/920ff3bc29cfa3853576a50d30cb0b81'}, {'title': [], 'url': 'http://store.is.autonavi.com/showpic/fe015eea17bb7116fef0f0f647ee0a52'}], 'typecode': '010400', 'shopinfo': '1', 'poiweight': [], 'childtype': [], 'adname': '武鸣区', 'name': '车美居贴膜工作室', 'location': '108.255130,23.159010', 'tel': [], 'shopid': [], 'id': 'B0KK7DNFII'}, {'parent': [], 'address': '经济技术开发区长凯路22号-2号楼', 'distance': [], 'pname': '广西壮族自治区', 'importance': [], 'biz_ext': {'cost': [], 'rating': []}, 'biz_type': [], 'cityname': '南宁市', 'type': '汽车维修;汽车维修;汽车维修', 'photos': [{'title': [], 'url': 'http://store.is.autonavi.com/showpic/839f61c5f8b854dd82f5b47adf3dbd88'}, {'title': [], 'url': 'http://store.is.autonavi.com/showpic/971e404def68741b869dd6ab78ea8426'}], 'typecode': '030000', 'shopinfo': '0', 'poiweight': [], 'childtype': [], 'adname': '江南区', 'name': '南宁市晟奕诚汽车服务有限公司', 'location': '108.304499,22.766014', 'tel': '18807717037', 'shopid': [], 'id': 'B0LGX67W2W'}, {'parent': [], 'address': '东盟经济技术开发区武华大道三区46号', 'distance': [], 'pname': '广西壮族自治区', 'importance': [], 'biz_ext': {'cost': [], 'rating': '4.1'}, 'biz_type': [], 'cityname': '南宁市', 'type': '汽车维修;汽车维修;汽车维修', 'photos': [{'title': [], 'url': 'http://store.is.autonavi.com/showpic/b6a2710221fc4d75e722ecf2c0ae4cba'}], 'typecode': '030000', 'shopinfo': '0', 'poiweight': [], 'childtype': [], 'adname': '武鸣区', 'name': '吉恒汽车修理部', 'location': '108.165733,23.199157', 'tel': '15177820342', 'shopid': [], 'id': 'B0FFGPIAI9'}, {'parent': [], 'address': '北湖村七冬坡1队176号', 'distance': [], 'pname': '广西壮族自治区', 'importance': [], 'biz_ext': {'cost': [], 'rating': '3.8'}, 'biz_type': [], 'cityname': '南宁市', 'type': '汽车服务;汽车养护/装饰;汽车养护', 'photos': [{'title': [], 'url': 'http://store.is.autonavi.com/showpic/f20ecdad2e22a729b768f9ce187f7420'}], 'typecode': '010400', 'shopinfo': '0', 'poiweight': [], 'childtype': [], 'adname': '西乡塘区', 'name': '无暇车体护理工作室', 'location': '108.324222,22.872227', 'tel': [], 'shopid': [], 'id': 'B0JRGAQYNI'}, {'parent': [], 'address': '经济技术开发区洞岭路8-1号', 'distance': [], 'pname': '广西壮族自治区', 'importance': [], 'biz_ext': {'cost': [], 'rating': '3.8'}, 'biz_type': [], 'cityname': '南宁市', 'type': '汽车维修;汽车维修;汽车维修', 'photos': [{'title': [], 'url': 'http://store.is.autonavi.com/showpic/e42ee84d64f6e93ee0494a9b55873221'}], 'typecode': '030000', 'shopinfo': '0', 'poiweight': [], 'childtype': [], 'adname': '江南区', 'name': '氩银汽修', 'location': '108.290842,22.761086', 'tel': [], 'shopid': [], 'id': 'B0KASMKUWJ'}, {'parent': [], 'address': '东盟经济技术开发区定合北路10号门店宝友汽修', 'distance': [], 'pname': '广西壮族自治区', 'importance': [], 'biz_ext': {'cost': [], 'rating': '4.3'}, 'biz_type': [], 'cityname': '南宁市', 'type': '汽车维修;汽车综合维修;汽车综合维修', 'photos': [{'title': [], 'url': 'http://store.is.autonavi.com/showpic/6617483a428341dc083009cdafa1858f'}, {'title': [], 'url': 'http://store.is.autonavi.com/showpic/52a3140487fe04c9266d88ae1c4a5d46'}, {'title': [], 'url': 'http://store.is.autonavi.com/showpic/ac98cb05079e17bd731900a07db41c1c'}], 'typecode': '030100', 'shopinfo': '0', 'poiweight': [], 'childtype': [], 'adname': '武鸣区', 'name': '宝友汽修', 'location': '108.162549,23.202588', 'tel': '18607882581', 'shopid': [], 'id': 'B0FFHM0D0F'}, {'parent': [], 'address': '白沙大道55号B栋4-6号', 'distance': [], 'pname': '广西壮族自治区', 'importance': [], 'biz_ext': {'cost': [], 'rating': '4.2'}, 'biz_type': [], 'cityname': '南宁市', 'type': '汽车维修;汽车维修;汽车维修', 'photos': [{'title': [], 'url': 'http://store.is.autonavi.com/showpic/dd86c4451006d2819a1f44d5167e2e99'}], 'typecode': '030000', 'shopinfo': '0', 'poiweight': [], 'childtype': [], 'adname': '江南区', 'name': '南宁经开雷达汽车服务中心', 'location': '108.306831,22.776343', 'tel': '0771-5885095', 'shopid': [], 'id': 'B0K6JMXV6B'}, {'parent': [], 'address': '东盟经济技术开发区武华大道263号', 'distance': [], 'pname': '广西壮族自治区', 'importance': [], 'biz_ext': {'cost': [], 'rating': '3.9'}, 'biz_type': [], 'cityname': '南宁市', 'type': '汽车维修;货车维修;货车维修|汽车维修;汽车综合维修;汽车综合维修', 'photos': [{'title': [], 'url': 'http://store.is.autonavi.com/showpic/0f2443d6587caa7e57db2e7b0588e814'}, {'title': [], 'url': 'http://store.is.autonavi.com/showpic/4a304df46f7da6ca4c3cd78a918a2566'}, {'title': [], 'url': 'http://store.is.autonavi.com/showpic/2580a21593de05ab1d3bd72800c0f361'}], 'typecode': '035000|030100', 'shopinfo': '1', 'poiweight': [], 'childtype': [], 'adname': '武鸣区', 'name': '南宁市启宏汽车修理厂', 'location': '108.142633,23.214042', 'tel': '18076371350', 'shopid': [], 'id': 'B0FFLGVH7T'}], 'status': '1', 'info': 'OK'}\n",
"{'suggestion': {'keywords': [], 'cities': []}, 'count': '107', 'infocode': '10000', 'pois': [{'parent': [], 'address': '经济开发区新港物流园61号', 'distance': [], 'pname': '江苏省', 'importance': [], 'biz_ext': {'cost': [], 'rating': '3.8'}, 'biz_type': [], 'cityname': '淮安市', 'type': '汽车维修;汽车维修;汽车维修', 'photos': [{'title': [], 'url': 'http://store.is.autonavi.com/showpic/2b7ea85fda62e9ffcc79f8d7c1f4426d'}], 'typecode': '030000', 'shopinfo': '0', 'poiweight': [], 'childtype': [], 'adname': '涟水县', 'name': '兄弟汽车修理部', 'location': '119.240735,33.800088', 'tel': '13852264469;13852324626', 'shopid': [], 'id': 'B0FFG4647I'}, {'parent': [], 'address': '淮安经济开发区翔宇中道21号', 'distance': [], 'pname': '江苏省', 'importance': [], 'biz_ext': {'cost': [], 'rating': '4.8'}, 'biz_type': [], 'cityname': '淮安市', 'type': '汽车销售;汽车销售;汽车销售', 'photos': [{'title': [], 'url': 'http://store.is.autonavi.com/showpic/787e43f230721e6d853c56138df3c95c'}, {'title': [], 'url': 'https://aos-comment.amap.com/B0J1JSR8XT/comment/bbd92eeeeebc57c5cf99d5e9b3cc35fe_2048_2048_80.jpg'}, {'title': [], 'url': 'http://store.is.autonavi.com/showpic/4cde5bbccf10b93a95fd9d659b2c12b8'}], 'typecode': '020000', 'shopinfo': '1', 'poiweight': [], 'childtype': [], 'adname': '清江浦区', 'name': '比亚迪汽车王朝网(淮安海之森4S店)', 'location': '119.087351,33.566188', 'tel': [], 'shopid': [], 'id': 'B0J1JSR8XT'}, {'parent': [], 'address': '淮城街道淮安经济开发区富准路62号', 'distance': [], 'pname': '江苏省', 'importance': [], 'biz_ext': {'cost': [], 'rating': '4.9'}, 'biz_type': [], 'cityname': '淮安市', 'type': '汽车维修;汽车综合维修;汽车综合维修|汽车服务;汽车养护/装饰;汽车养护|汽车服务;洗车场;洗车场', 'photos': [{'title': [], 'url': 'http://store.is.autonavi.com/showpic/0f9c6cd2c3f8729fc6b54fab001db911'}, {'title': [], 'url': 'http://aos-cdn-image.amap.com/sns/ugccomment/228a7933-5523-43f9-90fe-6b1db2784292.jpg'}, {'title': [], 'url': 'http://store.is.autonavi.com/showpic/aa4d6f246fb402ff8ca5011d4f81d6c4'}], 'typecode': '030100|010400|010500', 'shopinfo': '1', 'poiweight': [], 'childtype': [], 'adname': '清江浦区', 'name': '华胜奔驰宝马奥迪专修连锁(淮安开发区店)', 'location': '119.121907,33.598568', 'tel': '15152356853', 'shopid': [], 'id': 'B0G3ZBLCQ0'}, {'parent': [], 'address': '淮安区经济开发区纬二路北侧1号厂房', 'distance': [], 'pname': '江苏省', 'importance': [], 'biz_ext': {'cost': [], 'rating': '4.3'}, 'biz_type': [], 'cityname': '淮安市', 'type': '汽车维修;汽车维修;汽车维修', 'photos': [{'title': [], 'url': 'http://store.is.autonavi.com/showpic/4617a8f9491de54e1bd9b4a82a082159'}, {'title': [], 'url': 'http://store.is.autonavi.com/showpic/e6327a5b0e7d5bcb40241e90dd658e58'}], 'typecode': '030000', 'shopinfo': '1', 'poiweight': [], 'childtype': [], 'adname': '淮安区', 'name': '淮驰汽车修理厂', 'location': '119.179792,33.545152', 'tel': [], 'shopid': [], 'id': 'B0K62D5VI3'}, {'parent': [], 'address': '清江浦区韩侯大道8号', 'distance': [], 'pname': '江苏省', 'importance': [], 'biz_ext': {'cost': [], 'rating': '3.9'}, 'biz_type': [], 'cityname': '淮安市', 'type': '汽车维修;汽车维修;汽车维修', 'photos': [], 'typecode': '030000', 'shopinfo': '0', 'poiweight': [], 'childtype': [], 'adname': '清江浦区', 'name': '淮安经济技术开发区顺德唐骏汽车服务站', 'location': '118.982267,33.587031', 'tel': [], 'shopid': [], 'id': 'B0HBX4PCL7'}, {'parent': [], 'address': '清江浦区经济技术开发区翔宇中道21号', 'distance': [], 'pname': '江苏省', 'importance': [], 'biz_ext': {'cost': [], 'rating': '4.6'}, 'biz_type': [], 'cityname': '淮安市', 'type': '汽车销售;汽车销售;汽车销售', 'photos': [{'title': [], 'url': 'http://store.is.autonavi.com/showpic/eaec113416e694bfc29098867f64d01a'}, {'title': [], 'url': 'http://store.is.autonavi.com/showpic/6358fd40484c00815b952136d146decd'}, {'title': [], 'url': 'http://store.is.autonavi.com/showpic/aabad3ee818d49169293ac8223cd44ff'}], 'typecode': '020000', 'shopinfo': '0', 'poiweight': [], 'childtype': [], 'adname': '清江浦区', 'name': '方程豹汽车(淮安森航4S店)', 'location': '119.086411,33.566467', 'tel': '17506108118', 'shopid': [], 'id': 'B0LUHRJB93'}, {'parent': [], 'address': '经济开发区淮安市经济开发区苏州南路99号门市', 'distance': [], 'pname': '江苏省', 'importance': [], 'biz_ext': {'cost': [], 'rating': '4.0'}, 'biz_type': [], 'cityname': '淮安市', 'type': '汽车服务;汽车配件销售;汽车配件销售', 'photos': [{'title': [], 'url': 'http://store.is.autonavi.com/showpic/3cb3f45dcf53bbd586ead1923e031a5d'}, {'title': [], 'url': 'http://store.is.autonavi.com/showpic/2558918c3050b965b9231cca3873af91'}, {'title': [], 'url': 'http://store.is.autonavi.com/showpic/3baa6d1a80541760d9a6570f34d1fdd2'}], 'typecode': '010800', 'shopinfo': '0', 'poiweight': [], 'childtype': [], 'adname': '清江浦区', 'name': '固特异轮胎(威海路店)', 'location': '119.067655,33.586605', 'tel': '15896161446', 'shopid': [], 'id': 'B0FFHPQLQQ'}, {'parent': [], 'address': '淮安高新技术产业开发区国际汽车城车管所南侧', 'distance': [], 'pname': '江苏省', 'importance': [], 'biz_ext': {'cost': [], 'rating': '4.3'}, 'biz_type': [], 'cityname': '淮安市', 'type': '汽车销售;汽车销售;汽车销售', 'photos': [{'title': [], 'url': 'http://store.is.autonavi.com/showpic/813d7a13de59445595b548af2a2683e3'}, {'title': [], 'url': 'http://store.is.autonavi.com/showpic/aecbfac08befedc73b46224b7bbc2c21'}, {'title': [], 'url': 'http://store.is.autonavi.com/showpic/2f7414bdefebca99598ca1ded02f52b4'}], 'typecode': '020000', 'shopinfo': '1', 'poiweight': [], 'childtype': [], 'adname': '淮阴区', 'name': '易之速汽车', 'location': '119.030585,33.654562', 'tel': '15161754123', 'shopid': [], 'id': 'B0KD9CRSVQ'}, {'parent': [], 'address': '高新技术产业开发区钱江路与香港路交叉口国际汽车城一期南门3幢', 'distance': [], 'pname': '江苏省', 'importance': [], 'biz_ext': {'cost': [], 'rating': '4.1'}, 'biz_type': [], 'cityname': '淮安市', 'type': '汽车维修;汽车综合维修;汽车综合维修', 'photos': [{'title': [], 'url': 'http://store.is.autonavi.com/showpic/b7b2979184f81110909bb6a6bbf09ae2'}], 'typecode': '030100', 'shopinfo': '0', 'poiweight': [], 'childtype': [], 'adname': '淮阴区', 'name': '日升昌汽车修理', 'location': '119.023823,33.654499', 'tel': '15189664635', 'shopid': [], 'id': 'B0FFIZQWR6'}, {'parent': [], 'address': '淮安市经济开发区青岛路6号1幢113门面', 'distance': [], 'pname': '江苏省', 'importance': [], 'biz_ext': {'cost': [], 'rating': '3.9'}, 'biz_type': [], 'cityname': '淮安市', 'type': '汽车维修;汽车维修;汽车维修', 'photos': [{'title': [], 'url': 'http://store.is.autonavi.com/showpic/f98860405b100f0f634ed9f076d50af3'}, {'title': [], 'url': 'http://store.is.autonavi.com/showpic/34d4311caa23c9869da9e0c85f4f199e'}, {'title': [], 'url': 'http://store.is.autonavi.com/showpic/443ccb456cdeb9b55af2796261850340'}], 'typecode': '030000', 'shopinfo': '0', 'poiweight': [], 'childtype': [], 'adname': '清江浦区', 'name': '菲凡汽车修配中心', 'location': '119.072440,33.580278', 'tel': '15298669392', 'shopid': [], 'id': 'B0FFHBZ5IS'}, {'parent': [], 'address': '高新技术产业开发区钱江路66号', 'distance': [], 'pname': '江苏省', 'importance': [], 'biz_ext': {'cost': [], 'rating': []}, 'biz_type': [], 'cityname': '淮安市', 'type': '政府机构及社会团体;交通车辆管理;车辆管理机构|汽车服务;汽车养护/装饰;汽车养护', 'photos': [{'title': [], 'url': 'http://store.is.autonavi.com/showpic/d8b75b2e17c1c062c1cf3dd393999e5e'}, {'title': [], 'url': 'http://store.is.autonavi.com/showpic/851675fc7d3168399a89159f99053434'}, {'title': [], 'url': 'http://store.is.autonavi.com/showpic/7d2ce9294c84e82d0581f8467f40d60a'}], 'typecode': '130602|010400', 'shopinfo': '2', 'poiweight': [], 'childtype': [], 'adname': '淮阴区', 'name': '淮安市车管所城北分所', 'location': '119.030704,33.656188', 'tel': [], 'shopid': [], 'id': 'B0FFJZ75U0'}, {'parent': [], 'address': '淮安经济技术开发区广州南路', 'distance': [], 'pname': '江苏省', 'importance': [], 'biz_ext': {'cost': [], 'rating': '4.3'}, 'biz_type': [], 'cityname': '淮安市', 'type': '汽车维修;汽车维修;汽车维修', 'photos': [{'title': [], 'url': 'http://store.is.autonavi.com/showpic/7c82425bca4954d57512c081152f6c9d'}], 'typecode': '030000', 'shopinfo': '0', 'poiweight': [], 'childtype': [], 'adname': '清江浦区', 'name': '盛强汽修', 'location': '119.116031,33.578742', 'tel': '15195402506;18852352506', 'shopid': [], 'id': 'B0I6LH12BI'}, {'parent': [], 'address': '清江浦区经济技术开发区徐杨街道景华路黄元商业综合体5号105室', 'distance': [], 'pname': '江苏省', 'importance': [], 'biz_ext': {'cost': [], 'rating': '4.0'}, 'biz_type': [], 'cityname': '淮安市', 'type': '汽车服务;洗车场;洗车场|政府机构及社会团体;政府机关;政府机关相关', 'photos': [{'title': [], 'url': 'http://store.is.autonavi.com/showpic/a72d7dc03269c0ab6c208169ba2fe50c'}, {'title': [], 'url': 'http://store.is.autonavi.com/showpic/49249358447728ca1e280f1b55a47999'}, {'title': [], 'url': 'http://store.is.autonavi.com/showpic/5376344a65bb4031a08de6dae1eab786'}], 'typecode': '010500|130100', 'shopinfo': '2', 'poiweight': [], 'childtype': [], 'adname': '清江浦区', 'name': '淮安经济技术开发区车会水洗服务部', 'location': '119.106223,33.589090', 'tel': [], 'shopid': [], 'id': 'B0H6DS7EYD'}, {'parent': [], 'address': '盱眙县经济开发区工六路加油站对面', 'distance': [], 'pname': '江苏省', 'importance': [], 'biz_ext': {'cost': [], 'rating': '3.9'}, 'biz_type': [], 'cityname': '淮安市', 'type': '汽车维修;汽车维修;汽车维修', 'photos': [{'title': [], 'url': 'http://store.is.autonavi.com/showpic/aef9bea43e7fb1a8a3e8f8543a7d2d72'}], 'typecode': '030000', 'shopinfo': '0', 'poiweight': [], 'childtype': [], 'adname': '盱眙县', 'name': '欧亚汽修', 'location': '118.536863,32.986568', 'tel': [], 'shopid': [], 'id': 'B0FFGYIM08'}, {'parent': [], 'address': '楚州经济开发区华西路', 'distance': [], 'pname': '江苏省', 'importance': [], 'biz_ext': {'cost': [], 'rating': '4.0'}, 'biz_type': [], 'cityname': '淮安市', 'type': '汽车维修;汽车维修;汽车维修', 'photos': [{'title': [], 'url': 'http://store.is.autonavi.com/showpic/e48b38e5c1ab3c32e38bc4273157f12f'}, {'title': [], 'url': 'http://store.is.autonavi.com/showpic/85bbff68cbdaa5b3249dfc0092d0ecab'}, {'title': [], 'url': 'http://store.is.autonavi.com/showpic/4c5a2bcdb26e57fe6dda75fb9e0f14d8'}], 'typecode': '030000', 'shopinfo': '0', 'poiweight': [], 'childtype': [], 'adname': '淮安区', 'name': '淮安市德奥奔宝汽车维修服务有限公司', 'location': '119.174299,33.523323', 'tel': '18352372222', 'shopid': [], 'id': 'B0FFLFBZOA'}, {'parent': [], 'address': '经济技术开发区威海小区1号楼105-106号', 'distance': [], 'pname': '江苏省', 'importance': [], 'biz_ext': {'cost': [], 'rating': '4.1'}, 'biz_type': [], 'cityname': '淮安市', 'type': '汽车服务;汽车配件销售;汽车配件销售', 'photos': [{'title': [], 'url': 'http://store.is.autonavi.com/showpic/8614f84cd5844bcc0f953acc25adcc53'}], 'typecode': '010800', 'shopinfo': '0', 'poiweight': [], 'childtype': [], 'adname': '清江浦区', 'name': '韩泰轮胎(威海小区店)', 'location': '119.076594,33.589031', 'tel': '15305239117;18762551776', 'shopid': [], 'id': 'B0GKJ6WDVG'}, {'parent': [], 'address': '南马厂乡经济开发区新东花园三期西门对面中亚仪器门口开明路8号', 'distance': [], 'pname': '江苏省', 'importance': [], 'biz_ext': {'cost': [], 'rating': '4.9'}, 'biz_type': [], 'cityname': '淮安市', 'type': '汽车服务;洗车场;洗车场|汽车服务;汽车养护/装饰;汽车养护|汽车维修;汽车维修;汽车维修', 'photos': [{'title': [], 'url': 'http://store.is.autonavi.com/showpic/cd257bb46ca8ea8e9273e411053abcea'}, {'title': [], 'url': 'http://store.is.autonavi.com/showpic/d8eb9cff7a866d9c24d3b9c7ccd2624f'}, {'title': [], 'url': 'http://store.is.autonavi.com/showpic/e04e6f591d7f6428ff96f43322230690'}], 'typecode': '010500|010400|030000', 'shopinfo': '1', 'poiweight': [], 'childtype': [], 'adname': '清江浦区', 'name': '平锋汽车养护中心', 'location': '119.199023,33.600519', 'tel': '13382301208', 'shopid': [], 'id': 'B0GKBSFCNU'}, {'parent': [], 'address': '江苏淮阴经济开发区高新技术产业开发区香港路558号', 'distance': [], 'pname': '江苏省', 'importance': [], 'biz_ext': {'cost': [], 'rating': '4.8'}, 'biz_type': [], 'cityname': '淮安市', 'type': '汽车销售;通用特约销售;凯迪拉克销售|汽车维修;通用特约维修;凯迪拉克维修', 'photos': [{'title': [], 'url': 'http://store.is.autonavi.com/showpic/b1cef030db01baa5db1bdb7027ebeb34'}, {'title': [], 'url': 'http://store.is.autonavi.com/showpic/0a5954ff32b3fe927bf7e424b6aa72db'}, {'title': [], 'url': 'http://store.is.autonavi.com/showpic/0e0fead4be3b688661bafdb3d22f8daf'}], 'typecode': '020401|030501', 'shopinfo': '0', 'poiweight': [], 'childtype': [], 'adname': '淮阴区', 'name': '淮安益都汽车销售服务有限公司', 'location': '119.022876,33.652027', 'tel': '0517-80558869;0517-80558885;0517-80558888', 'shopid': [], 'id': 'B02050TP3K'}, {'parent': [], 'address': '东湖办事处经济技术开发区深圳路39号', 'distance': [], 'pname': '江苏省', 'importance': [], 'biz_ext': {'cost': [], 'rating': '4.2'}, 'biz_type': [], 'cityname': '淮安市', 'type': '汽车维修;汽车维修;汽车维修', 'photos': [{'title': [], 'url': 'http://store.is.autonavi.com/showpic/678ddcbdc05bdf00df23d0296873a406'}, {'title': [], 'url': 'http://store.is.autonavi.com/showpic/84179120a9d119b60fcc43328d4f8e6c'}], 'typecode': '030000', 'shopinfo': '1', 'poiweight': [], 'childtype': [], 'adname': '清江浦区', 'name': '淮安捷星奔驰服务中心', 'location': '119.087049,33.594025', 'tel': [], 'shopid': [], 'id': 'B0HD4CIHUG'}, {'parent': [], 'address': '北京北路与江淮街交叉口东北约20米', 'distance': [], 'pname': '江苏省', 'importance': [], 'biz_ext': {'cost': [], 'rating': '4.9'}, 'biz_type': [], 'cityname': '淮安市', 'type': '汽车服务;汽车养护/装饰;汽车养护|汽车维修;汽车维修;汽车维修', 'photos': [{'title': [], 'url': 'http://store.is.autonavi.com/showpic/871576777a4a69b5140cdf297e3508d4'}, {'title': [], 'url': 'http://store.is.autonavi.com/query_pic?id=st1cf96fa0-c092-4720-b160-5ce19db723f6&user=search&operate=original'}, {'title': [], 'url': 'http://store.is.autonavi.com/showpic/c8ee618e919fa6f7ad44c2ede2bd1b79'}], 'typecode': '010400|030000', 'shopinfo': '1', 'poiweight': [], 'childtype': [], 'adname': '淮阴区', 'name': '驰加汽车服务中心(淮阴区北京北路店)', 'location': '119.010309,33.629144', 'tel': '17087890099', 'shopid': [], 'id': 'B0I2CHB0NX'}], 'status': '1', 'info': 'OK'}\n",
"{'suggestion': {'keywords': [], 'cities': []}, 'count': '107', 'infocode': '10000', 'pois': [{'parent': [], 'address': '淮安高新技术产业开发区锦绣百苑45号楼', 'distance': [], 'pname': '江苏省', 'importance': [], 'biz_ext': {'cost': [], 'rating': '3.9'}, 'biz_type': [], 'cityname': '淮安市', 'type': '汽车服务;汽车养护/装饰;汽车养护', 'photos': [{'title': [], 'url': 'http://store.is.autonavi.com/showpic/e23b81a8fe2b95d1e9e11f93ca47d10f'}, {'title': [], 'url': 'http://store.is.autonavi.com/showpic/afde7cb61102a68d59871a3f2c728457'}, {'title': [], 'url': 'http://store.is.autonavi.com/showpic/28d35c7f6a66b2b1d59351efe4308aa3'}], 'typecode': '010400', 'shopinfo': '0', 'poiweight': [], 'childtype': [], 'adname': '淮阴区', 'name': '途冠汽车美容养护中心', 'location': '119.058020,33.629846', 'tel': '18015139099', 'shopid': [], 'id': 'B0FFL632QT'}, {'parent': [], 'address': '淮安高新技术产业开发区钱江路98号', 'distance': [], 'pname': '江苏省', 'importance': [], 'biz_ext': {'cost': [], 'rating': '3.8'}, 'biz_type': [], 'cityname': '淮安市', 'type': '汽车销售;长安汽车销售;长安汽车销售|汽车维修;长安汽车维修;长安汽车维修', 'photos': [], 'typecode': '023000|033100', 'shopinfo': '0', 'poiweight': [], 'childtype': [], 'adname': '淮阴区', 'name': '淮安市中科汽车销售服务有限公司', 'location': '119.027334,33.653631', 'tel': '0517-89671818;0517-89709000', 'shopid': [], 'id': 'B0LUUURVA3'}, {'parent': [], 'address': '淮阴区高新技术产业开发区钱江路左庄十组', 'distance': [], 'pname': '江苏省', 'importance': [], 'biz_ext': {'cost': [], 'rating': '3.9'}, 'biz_type': [], 'cityname': '淮安市', 'type': '汽车维修;汽车维修;汽车维修', 'photos': [{'title': [], 'url': 'http://store.is.autonavi.com/showpic/889634e3f1b14e7ebf76bb37764ef796'}, {'title': [], 'url': 'http://store.is.autonavi.com/showpic/ab664bd4fe12490a83c7fe7210c84c8d'}, {'title': [], 'url': 'http://store.is.autonavi.com/showpic/b7716ff2a84d7b936050798dbc1b3640'}], 'typecode': '030000', 'shopinfo': '0', 'poiweight': [], 'childtype': [], 'adname': '淮阴区', 'name': '淮凌汽修', 'location': '119.036016,33.653834', 'tel': '19984998181', 'shopid': [], 'id': 'B0G0P1I2R7'}, {'parent': [], 'address': '经济开发区振丰社区新港物流园15-18号楼商铺', 'distance': [], 'pname': '江苏省', 'importance': [], 'biz_ext': {'cost': [], 'rating': '3.9'}, 'biz_type': [], 'cityname': '淮安市', 'type': '汽车服务;汽车养护/装饰;汽车养护', 'photos': [{'title': [], 'url': 'http://store.is.autonavi.com/showpic/9c696f8940692b6b2353d8a350c35d93'}, {'title': [], 'url': 'http://store.is.autonavi.com/showpic/c0a13cd4060d2ca7559eb43acb0e6d6e'}, {'title': [], 'url': 'http://store.is.autonavi.com/showpic/0d40527f50c0452c9b03d91f1870a476'}], 'typecode': '010400', 'shopinfo': '0', 'poiweight': [], 'childtype': [], 'adname': '涟水县', 'name': '涟水久弘汽修有限公司', 'location': '119.239676,33.798184', 'tel': '15252338968', 'shopid': [], 'id': 'B0G1MUUZGS'}, {'parent': [], 'address': '金湖经济开发区工园路洲际家园42-6', 'distance': [], 'pname': '江苏省', 'importance': [], 'biz_ext': {'cost': [], 'rating': '3.8'}, 'biz_type': [], 'cityname': '淮安市', 'type': '汽车服务;汽车养护/装饰;汽车养护', 'photos': [{'title': [], 'url': 'http://store.is.autonavi.com/showpic/49ca803e252ec862d1e19b8a21f90675'}, {'title': [], 'url': 'http://store.is.autonavi.com/showpic/150e64952659eca568ff4b119c03aad3'}], 'typecode': '010400', 'shopinfo': '0', 'poiweight': [], 'childtype': [], 'adname': '金湖县', 'name': '帕博汽车养护服务部', 'location': '118.997924,33.000534', 'tel': '13813313631', 'shopid': [], 'id': 'B0FFL1Q4EY'}, {'parent': [], 'address': '清江浦区淮安经济技术开发区剑桥佳苑小区西侧38,39号', 'distance': [], 'pname': '江苏省', 'importance': [], 'biz_ext': {'cost': [], 'rating': '3.7'}, 'biz_type': [], 'cityname': '淮安市', 'type': '汽车维修;汽车维修;汽车维修', 'photos': [{'title': [], 'url': 'http://aos-cdn-image.amap.com/sns/ugccomment/54b26972-b7ab-47d1-8e27-475ccf64353f.jpg'}, {'title': [], 'url': 'http://store.is.autonavi.com/showpic/9f28746b79fe2f70ee0a12b9cb627cf1'}], 'typecode': '030000', 'shopinfo': '1', 'poiweight': [], 'childtype': [], 'adname': '清江浦区', 'name': '瑞达天下汽修', 'location': '119.049928,33.555605', 'tel': '18305236901', 'shopid': [], 'id': 'B0FFKLOKCF'}, {'parent': [], 'address': '高新技术产业开发区王营镇纬五路18号海通花园小区33幢', 'distance': [], 'pname': '江苏省', 'importance': [], 'biz_ext': {'cost': [], 'rating': '4.1'}, 'biz_type': [], 'cityname': '淮安市', 'type': '汽车维修;汽车综合维修;汽车综合维修', 'photos': [{'title': [], 'url': 'http://store.is.autonavi.com/showpic/d789b76c21674ebdf96a4d23de057c5b'}, {'title': [], 'url': 'http://store.is.autonavi.com/showpic/8a95484e1b7d6a0bd76f019913b4e050'}], 'typecode': '030100', 'shopinfo': '0', 'poiweight': [], 'childtype': [], 'adname': '淮阴区', 'name': '启凌汽车维修', 'location': '119.049007,33.631935', 'tel': '15061418118', 'shopid': [], 'id': 'B0FFK03C73'}, {'parent': 'B0FFF6RR9M', 'address': '经济技术开发区深圳路87号麦德龙(淮安商场)', 'distance': [], 'pname': '江苏省', 'importance': [], 'biz_ext': {'cost': [], 'rating': '1.2'}, 'biz_type': [], 'cityname': '淮安市', 'type': '汽车维修;汽车维修;汽车维修', 'photos': [], 'typecode': '030000', 'shopinfo': '0', 'poiweight': [], 'childtype': '202', 'adname': '清江浦区', 'name': '雨苏·车修(清河区店)', 'location': '119.115143,33.602728', 'tel': [], 'shopid': [], 'id': 'B0LUA7I3RJ'}, {'parent': [], 'address': '经济开发区红太阳物流园', 'distance': [], 'pname': '江苏省', 'importance': [], 'biz_ext': {'cost': [], 'rating': '3.8'}, 'biz_type': [], 'cityname': '淮安市', 'type': '汽车维修;汽车维修;汽车维修', 'photos': [{'title': [], 'url': 'http://store.is.autonavi.com/showpic/27b134e2dcb5fa59775c6f0d033f5cc8'}, {'title': [], 'url': 'http://store.is.autonavi.com/showpic/534fd6602b4ade5c69768422a4157a08'}, {'title': [], 'url': 'http://store.is.autonavi.com/showpic/cf41159a520227da4ec754e89e99f6d0'}], 'typecode': '030000', 'shopinfo': '0', 'poiweight': [], 'childtype': [], 'adname': '涟水县', 'name': '许昌校传动轴修水箱', 'location': '119.237198,33.792960', 'tel': '18752325877', 'shopid': [], 'id': 'B0FFHCWPK9'}, {'parent': [], 'address': '淮安市经济开发区富士康路188号弘康兴旺角D号1028', 'distance': [], 'pname': '江苏省', 'importance': [], 'biz_ext': {'cost': [], 'rating': '4.3'}, 'biz_type': [], 'cityname': '淮安市', 'type': '汽车维修;汽车维修;汽车维修', 'photos': [{'title': [], 'url': 'https://aos-comment.amap.com/B0FFI0RTER/headerImg/bbc705a095ca831219147dcd62badb32_2048_2048_80.jpg'}, {'title': [], 'url': 'https://aos-comment.amap.com/B0FFI0RTER/headerImg/c3727458b22fcabb020aab613774aacc_2048_2048_80.jpg'}, {'title': [], 'url': 'https://aos-comment.amap.com/B0FFI0RTER/headerImg/edbb35d5a27d889e0999ea2aa4625c27_2048_2048_80.jpg'}], 'typecode': '030000', 'shopinfo': '0', 'poiweight': [], 'childtype': [], 'adname': '清江浦区', 'name': '建波汽修一站式服务(美孚认证店)', 'location': '119.148406,33.595674', 'tel': '15152416062', 'shopid': [], 'id': 'B0FFI0RTER'}, {'parent': 'B0FFHWKDGX', 'address': '清江浦区经济开发区迎宾大道一号亿丰时代广场地下停车场', 'distance': [], 'pname': '江苏省', 'importance': [], 'biz_ext': {'cost': [], 'rating': '4.4'}, 'biz_type': [], 'cityname': '淮安市', 'type': '汽车服务;汽车养护/装饰;汽车养护', 'photos': [{'title': [], 'url': 'http://store.is.autonavi.com/showpic/adcb120d4d8404fffe80d2541daf41c1'}, {'title': [], 'url': 'http://store.is.autonavi.com/showpic/84b7f2467ddb9b0aa6ab44dbb834fa46'}, {'title': [], 'url': 'http://store.is.autonavi.com/showpic/1bdd6d2b8747a45fa385691b652056e8'}], 'typecode': '010400', 'shopinfo': '1', 'poiweight': [], 'childtype': '202', 'adname': '清江浦区', 'name': '德之翼汽车养护中心', 'location': '119.075568,33.576196', 'tel': '18662997123', 'shopid': [], 'id': 'B0H3YC97XZ'}, {'parent': [], 'address': '江浦经济技术开发区威海路64号楼63-7室与福州路交叉口淮安德玺维修中心隔壁', 'distance': [], 'pname': '江苏省', 'importance': [], 'biz_ext': {'cost': [], 'rating': '4.4'}, 'biz_type': [], 'cityname': '淮安市', 'type': '汽车服务;洗车场;洗车场', 'photos': [{'title': [], 'url': 'http://store.is.autonavi.com/showpic/dee743b9065b89fc0138e1c1e10c9e37'}, {'title': [], 'url': 'http://store.is.autonavi.com/showpic/6146742131ef0300995540b6644f03b3'}, {'title': [], 'url': 'http://store.is.autonavi.com/showpic/bb51abdf016e2b2971911037e82a897d'}], 'typecode': '010500', 'shopinfo': '1', 'poiweight': [], 'childtype': [], 'adname': '清江浦区', 'name': '悦洗E族24小时自助洗车', 'location': '119.086074,33.591757', 'tel': '13645236229', 'shopid': [], 'id': 'B0HKXCP2LW'}, {'parent': [], 'address': '淮安高新技术产业开发区国际汽车城二期20幢', 'distance': [], 'pname': '江苏省', 'importance': [], 'biz_ext': {'cost': [], 'rating': '3.8'}, 'biz_type': [], 'cityname': '淮安市', 'type': '汽车服务;汽车养护/装饰;汽车养护', 'photos': [{'title': [], 'url': 'http://store.is.autonavi.com/showpic/8e32f10d20ee827247ee89129ff50e4b'}], 'typecode': '010400', 'shopinfo': '0', 'poiweight': [], 'childtype': [], 'adname': '淮阴区', 'name': '名瑞汽车养护中心', 'location': '119.025594,33.655860', 'tel': [], 'shopid': [], 'id': 'B0FFM7IDH0'}, {'parent': [], 'address': '淮安经济技术开发区鼎立紫金花苑第13幢112一113一114号', 'distance': [], 'pname': '江苏省', 'importance': [], 'biz_ext': {'cost': [], 'rating': '4.4'}, 'biz_type': [], 'cityname': '淮安市', 'type': '汽车维修;汽车维修;汽车维修', 'photos': [{'title': [], 'url': 'http://store.is.autonavi.com/showpic/0637481725e1f6333af44a76ec62b9ec'}, {'title': [], 'url': 'http://store.is.autonavi.com/showpic/837fcfe7fd368a4b1a92c3460afd7dc7'}, {'title': [], 'url': 'http://store.is.autonavi.com/showpic/ca3f2fc0872889f6ede558f93099e96c'}], 'typecode': '030000', 'shopinfo': '0', 'poiweight': [], 'childtype': [], 'adname': '清江浦区', 'name': '浩翔汽修', 'location': '119.147917,33.595559', 'tel': '15301409450;18705232427', 'shopid': [], 'id': 'B0JU6C0M7E'}, {'parent': [], 'address': '高新技术产业开发区嫩江路汽车城二期北门西侧', 'distance': [], 'pname': '江苏省', 'importance': [], 'biz_ext': {'cost': [], 'rating': '3.9'}, 'biz_type': [], 'cityname': '淮安市', 'type': '汽车维修;汽车维修;汽车维修', 'photos': [{'title': [], 'url': 'http://store.is.autonavi.com/showpic/0f923d2fa263c9a4d28cc07bbf0a01b5'}, {'title': [], 'url': 'http://store.is.autonavi.com/showpic/99f573917e71041ed972c4b7d288cd32'}, {'title': [], 'url': 'http://store.is.autonavi.com/showpic/be6560ae1eb47585b5c4fa3eb577f86e'}], 'typecode': '030000', 'shopinfo': '0', 'poiweight': [], 'childtype': [], 'adname': '淮阴区', 'name': '小杨汽车修理', 'location': '119.026993,33.656638', 'tel': '17766149669', 'shopid': [], 'id': 'B0FFFZOJM3'}, {'parent': [], 'address': '清江浦区', 'distance': [], 'pname': '江苏省', 'importance': [], 'biz_ext': {'cost': [], 'rating': '4.5'}, 'biz_type': [], 'cityname': '淮安市', 'type': '汽车维修;汽车综合维修;汽车综合维修', 'photos': [{'title': [], 'url': 'http://store.is.autonavi.com/showpic/7f2192c22823c72fd08e172af86607d1'}, {'title': [], 'url': 'http://store.is.autonavi.com/showpic/edbcf295c03eb9d6ee92614eb3163935'}], 'typecode': '030100', 'shopinfo': '1', 'poiweight': [], 'childtype': [], 'adname': '清江浦区', 'name': '淮安经济开发区神龙汽车维修有限公司', 'location': '119.083221,33.585074', 'tel': '13196968490', 'shopid': [], 'id': 'B0FFHWJXMA'}, {'parent': [], 'address': '经济技术开发区翔宇大道33号', 'distance': [], 'pname': '江苏省', 'importance': [], 'biz_ext': {'cost': [], 'rating': '4.6'}, 'biz_type': [], 'cityname': '淮安市', 'type': '汽车销售;大众特约销售;上海大众销售|汽车维修;大众特约维修;上海大众维修', 'photos': [{'title': [], 'url': 'http://store.is.autonavi.com/showpic/f6af38b0dd17980908853b3821335a14'}, {'title': [], 'url': 'http://store.is.autonavi.com/showpic/6bae7429c5bf9f1968fce127ee7158d8'}, {'title': [], 'url': 'http://store.is.autonavi.com/showpic/7afa980fc912747248651989ee5508ca'}], 'typecode': '020101|030201', 'shopinfo': '1', 'poiweight': [], 'childtype': [], 'adname': '清江浦区', 'name': '淮安市宏宇驰众汽车销售服务有限公司', 'location': '119.082639,33.569383', 'tel': '0517-83600888', 'shopid': [], 'id': 'B0FFJPH5HC'}, {'parent': [], 'address': '高新技术产业开发区淮海北路688号淮安国际汽车城30栋134', 'distance': [], 'pname': '江苏省', 'importance': [], 'biz_ext': {'cost': [], 'rating': '4.3'}, 'biz_type': [], 'cityname': '淮安市', 'type': '汽车服务;汽车养护/装饰;汽车养护', 'photos': [{'title': [], 'url': 'https://aos-comment.amap.com/B0FFGWY40R/headerImg/5929ca56355ab04fb1aad841d43bf9eb_2048_2048_80.jpg'}, {'title': [], 'url': 'http://store.is.autonavi.com/showpic/ce22a4dc4ed297a0954eb494dc5246a9'}, {'title': [], 'url': 'https://aos-comment.amap.com/B0FFGWY40R/headerImg/996cc89229a93d35a8caff4da2eb7d83_2048_2048_80.jpg'}], 'typecode': '010400', 'shopinfo': '1', 'poiweight': [], 'childtype': [], 'adname': '淮阴区', 'name': '新航线汽车影音用品', 'location': '119.027764,33.656637', 'tel': '15195355235', 'shopid': [], 'id': 'B0FFGWY40R'}, {'parent': [], 'address': '清江浦区经济技术开发区迎宾大道27号A2幢107室门面房', 'distance': [], 'pname': '江苏省', 'importance': [], 'biz_ext': {'cost': [], 'rating': '4.3'}, 'biz_type': [], 'cityname': '淮安市', 'type': '汽车维修;汽车维修;汽车维修', 'photos': [{'title': [], 'url': 'http://store.is.autonavi.com/showpic/7a0c81997beb1d2b210930f34aeb987e'}, {'title': [], 'url': 'http://store.is.autonavi.com/showpic/8f907dc39a9f041d3c6abd7512929709'}, {'title': [], 'url': 'http://store.is.autonavi.com/showpic/03e635f04e4b9ea33001f3fdc7eab927'}], 'typecode': '030000', 'shopinfo': '1', 'poiweight': [], 'childtype': [], 'adname': '清江浦区', 'name': '杰星汽修', 'location': '119.093303,33.581116', 'tel': '16651044214', 'shopid': [], 'id': 'B0IDYSVMAL'}, {'parent': [], 'address': '清江浦区经济开发区富士康路与富景路交叉口向西180米', 'distance': [], 'pname': '江苏省', 'importance': [], 'biz_ext': {'cost': [], 'rating': '4.3'}, 'biz_type': [], 'cityname': '淮安市', 'type': '汽车维修;汽车维修;汽车维修', 'photos': [{'title': [], 'url': 'http://store.is.autonavi.com/showpic/64e7f765e9bb085aa1ee52792c213144'}, {'title': [], 'url': 'http://store.is.autonavi.com/showpic/807a0d56dc447d63801bba0c21b41689'}], 'typecode': '030000', 'shopinfo': '1', 'poiweight': [], 'childtype': [], 'adname': '清江浦区', 'name': '森茂汽修', 'location': '119.146039,33.596372', 'tel': '18852359599', 'shopid': [], 'id': 'B0JBDLZE8A'}], 'status': '1', 'info': 'OK'}\n",
"{'suggestion': {'keywords': [], 'cities': []}, 'count': '58', 'infocode': '10000', 'pois': [{'parent': [], 'address': '学富镇荟雅名苑四号楼107', 'distance': [], 'pname': '江苏省', 'importance': [], 'biz_ext': {'cost': [], 'rating': '4.1'}, 'biz_type': [], 'cityname': '盐城市', 'type': '汽车服务;洗车场;洗车场', 'photos': [{'title': [], 'url': 'http://store.is.autonavi.com/showpic/d9414390eff6b429913eec740e62837b'}, {'title': [], 'url': 'http://store.is.autonavi.com/showpic/740cf3971bda7b832c7994e177fd32b2'}, {'title': [], 'url': 'http://store.is.autonavi.com/showpic/ebb92efcb0f55bea6fe3436a5dcff3d2'}], 'typecode': '010500', 'shopinfo': '1', 'poiweight': [], 'childtype': [], 'adname': '盐都区', 'name': '新琦特汽车服务经营部', 'location': '119.870393,33.287671', 'tel': '13179328256', 'shopid': [], 'id': 'B0G0SZZPVO'}, {'parent': [], 'address': '明珠东路建阳眼科医院正对面', 'distance': [], 'pname': '江苏省', 'importance': [], 'biz_ext': {'cost': [], 'rating': '4.2'}, 'biz_type': [], 'cityname': '盐城市', 'type': '汽车服务;汽车配件销售;汽车配件销售', 'photos': [{'title': [], 'url': 'http://store.is.autonavi.com/showpic/fe6d798979c1b6f8d69cce6c0380b25c'}, {'title': [], 'url': 'http://store.is.autonavi.com/showpic/398705d9574da7a944a77a480f6f0d26'}, {'title': [], 'url': 'http://store.is.autonavi.com/showpic/dedbe947b3448715992c717bca28616e'}], 'typecode': '010800', 'shopinfo': '1', 'poiweight': [], 'childtype': [], 'adname': '建湖县', 'name': '四海汽车玻璃经营部', 'location': '119.802585,33.485109', 'tel': '18252239256', 'shopid': [], 'id': 'B0I3HH8OTE'}, {'parent': [], 'address': '建湖大道与九龙大道交叉口东北180米', 'distance': [], 'pname': '江苏省', 'importance': [], 'biz_ext': {'cost': [], 'rating': '4.1'}, 'biz_type': [], 'cityname': '盐城市', 'type': '汽车维修;汽车维修;汽车维修', 'photos': [{'title': [], 'url': 'http://store.is.autonavi.com/showpic/11e086349009f8760d1f14204d7fc427'}, {'title': [], 'url': 'http://store.is.autonavi.com/showpic/d07f4a7697bcc2c10e0adba0cd02bd3a'}, {'title': [], 'url': 'http://store.is.autonavi.com/showpic/9d157905d71a590878fe0d941022754e'}], 'typecode': '030000', 'shopinfo': '1', 'poiweight': [], 'childtype': [], 'adname': '建湖县', 'name': '建湖县颜单镇建林汽车修配经营部', 'location': '119.758851,33.408943', 'tel': '13770220660', 'shopid': [], 'id': 'B0FFIKVOCH'}, {'parent': [], 'address': '301县道与工商路交叉口东北380米', 'distance': [], 'pname': '江苏省', 'importance': [], 'biz_ext': {'cost': [], 'rating': '3.7'}, 'biz_type': [], 'cityname': '盐城市', 'type': '汽车维修;汽车综合维修;汽车综合维修', 'photos': [{'title': [], 'url': 'http://store.is.autonavi.com/showpic/6383f79a8571fb1d09669fd55aacacb9'}], 'typecode': '030100', 'shopinfo': '0', 'poiweight': [], 'childtype': [], 'adname': '滨海县', 'name': '糜虎汽车修理厂', 'location': '120.222161,34.240733', 'tel': [], 'shopid': [], 'id': 'B0FFKWS4EY'}, {'parent': [], 'address': '人民路与新城大道交叉口西80米', 'distance': [], 'pname': '江苏省', 'importance': [], 'biz_ext': {'cost': [], 'rating': '3.6'}, 'biz_type': [], 'cityname': '盐城市', 'type': '汽车维修;汽车维修;汽车维修', 'photos': [{'title': [], 'url': 'http://store.is.autonavi.com/showpic/930e7a7856baa3d0996d38134273a4ca'}], 'typecode': '030000', 'shopinfo': '0', 'poiweight': [], 'childtype': [], 'adname': '射阳县', 'name': '骏捷汽修经营部', 'location': '120.302798,33.772691', 'tel': [], 'shopid': [], 'id': 'B0JDLXU16E'}, {'parent': [], 'address': '上冈镇新北大桥向北1000米', 'distance': [], 'pname': '江苏省', 'importance': [], 'biz_ext': {'cost': [], 'rating': '4.3'}, 'biz_type': [], 'cityname': '盐城市', 'type': '汽车维修;汽车维修;汽车维修', 'photos': [{'title': [], 'url': 'http://store.is.autonavi.com/showpic/5b492f71dea6b36a6704f13cdcff992c'}], 'typecode': '030000', 'shopinfo': '1', 'poiweight': [], 'childtype': [], 'adname': '建湖县', 'name': '大众汽修小崔汽车配件经营部', 'location': '120.001187,33.538656', 'tel': '13815550142', 'shopid': [], 'id': 'B0HROAIHI7'}, {'parent': [], 'address': '光荣小区内8米路往东黑鹰轮胎换胎补胎保养维修汽车搭电电瓶钣金做漆', 'distance': [], 'pname': '江苏省', 'importance': [], 'biz_ext': {'cost': [], 'rating': '4.0'}, 'biz_type': [], 'cityname': '盐城市', 'type': '汽车服务;汽车养护/装饰;汽车养护', 'photos': [{'title': [], 'url': 'http://store.is.autonavi.com/showpic/59bc5520bca99c694468b6f953eae970'}, {'title': [], 'url': 'http://store.is.autonavi.com/showpic/8471d5d86823618a29a4772a54be0e46'}, {'title': [], 'url': 'http://store.is.autonavi.com/showpic/cc89466d62934988ae04939de6a699b2'}], 'typecode': '010400', 'shopinfo': '1', 'poiweight': [], 'childtype': [], 'adname': '亭湖区', 'name': '盐城悦谦汽修美容经营部(黑鹰轮胎)', 'location': '120.187667,33.405636', 'tel': '18262381923', 'shopid': [], 'id': 'B0HU2AU3MX'}, {'parent': [], 'address': '通港大道与金丰北大街交叉口西60米', 'distance': [], 'pname': '江苏省', 'importance': [], 'biz_ext': {'cost': [], 'rating': '4.1'}, 'biz_type': [], 'cityname': '盐城市', 'type': '汽车维修;汽车维修;汽车维修', 'photos': [{'title': [], 'url': 'http://store.is.autonavi.com/showpic/753d1de37bbde4e0b842c0a508f8472a'}], 'typecode': '030000', 'shopinfo': '0', 'poiweight': [], 'childtype': [], 'adname': '大丰区', 'name': '小王汽车维修经营部', 'location': '120.453854,33.218469', 'tel': '18761200739', 'shopid': [], 'id': 'B0H6TN587Z'}, {'parent': [], 'address': '常新中路26-30', 'distance': [], 'pname': '江苏省', 'importance': [], 'biz_ext': {'cost': [], 'rating': '4.8'}, 'biz_type': [], 'cityname': '盐城市', 'type': '汽车服务;汽车养护/装饰;汽车养护|汽车维修;汽车维修;汽车维修', 'photos': [{'title': [], 'url': 'https://store.is.autonavi.com/showpic/819f9e91b1dbf304cf565ff364826ede'}, {'title': [], 'url': 'http://store.is.autonavi.com/showpic/0fdf89a63846939fc2167a84d6866b9e'}, {'title': [], 'url': 'http://store.is.autonavi.com/showpic/8277d2548d906d75f72f050ac0ebf2f7'}], 'typecode': '010400|030000', 'shopinfo': '1', 'poiweight': [], 'childtype': [], 'adname': '大丰区', 'name': '普利司通轮胎车之翼(大丰区如意轮胎经营部)', 'location': '120.449569,33.197929', 'tel': '15358288389', 'shopid': [], 'id': 'B0FFGCF8F1'}, {'parent': [], 'address': '华兴汽配城C-2-008龙成汽车用品经营部', 'distance': [], 'pname': '江苏省', 'importance': [], 'biz_ext': {'cost': [], 'rating': '4.0'}, 'biz_type': [], 'cityname': '盐城市', 'type': '汽车服务;汽车养护/装饰;汽车养护', 'photos': [{'title': [], 'url': 'http://store.is.autonavi.com/showpic/f17ee1e6a642a58b141cffb8f41535dd'}, {'title': [], 'url': 'http://store.is.autonavi.com/showpic/f14dd10b36b9dffb21cb660d5e858418'}, {'title': [], 'url': 'http://store.is.autonavi.com/showpic/ec805557866a188580f35319a553c959'}], 'typecode': '010400', 'shopinfo': '0', 'poiweight': [], 'childtype': [], 'adname': '盐都区', 'name': '腾龙内饰大灯翻新改装', 'location': '120.135558,33.326115', 'tel': '18262480993', 'shopid': [], 'id': 'B0FFGWUYPG'}, {'parent': [], 'address': '方大线', 'distance': [], 'pname': '江苏省', 'importance': [], 'biz_ext': {'cost': [], 'rating': '3.7'}, 'biz_type': [], 'cityname': '盐城市', 'type': '汽车服务;汽车配件销售;汽车配件销售', 'photos': [], 'typecode': '010800', 'shopinfo': '0', 'poiweight': [], 'childtype': [], 'adname': '大丰区', 'name': '大丰区新丰镇蔡宗群汽车经营部', 'location': '120.432608,33.374924', 'tel': '18066170652', 'shopid': [], 'id': 'B0FFIZSNLX'}, {'parent': [], 'address': '大冈镇卧龙西路26号', 'distance': [], 'pname': '江苏省', 'importance': [], 'biz_ext': {'cost': [], 'rating': '3.7'}, 'biz_type': [], 'cityname': '盐城市', 'type': '汽车服务;汽车养护/装饰;汽车养护', 'photos': [{'title': [], 'url': 'http://store.is.autonavi.com/showpic/167001f8907b552d558577c218eb7ff3'}, {'title': [], 'url': 'http://store.is.autonavi.com/showpic/858d62c7381e4724ee2ea5a9a6d2e7c7'}, {'title': [], 'url': 'http://store.is.autonavi.com/showpic/75758445d0cd5b8c0d30aff687a160d5'}], 'typecode': '010400', 'shopinfo': '1', 'poiweight': [], 'childtype': [], 'adname': '盐都区', 'name': '爱国汽车装潢美容轮胎经营部', 'location': '120.102024,33.187773', 'tel': '18914625092', 'shopid': [], 'id': 'B0FFF91R5Q'}, {'parent': [], 'address': '安丰镇镇乾广场北50米路东', 'distance': [], 'pname': '江苏省', 'importance': [], 'biz_ext': {'cost': [], 'rating': '4.4'}, 'biz_type': [], 'cityname': '盐城市', 'type': '汽车维修;汽车维修;汽车维修', 'photos': [{'title': [], 'url': 'http://store.is.autonavi.com/showpic/4ff913ab3e5f079a677a34d7a256de23'}, {'title': [], 'url': 'http://store.is.autonavi.com/showpic/1a269f15fb0630cde761649214b8d59b'}, {'title': [], 'url': 'http://store.is.autonavi.com/showpic/80bacaf60675a4ec111c139c3791a560'}], 'typecode': '030000', 'shopinfo': '1', 'poiweight': [], 'childtype': [], 'adname': '东台市', 'name': '小陈轮胎经营部', 'location': '120.401321,32.737906', 'tel': '15298599142', 'shopid': [], 'id': 'B0FFJ9OXLC'}, {'parent': [], 'address': '349省道与丰阳路交叉口西440米', 'distance': [], 'pname': '江苏省', 'importance': [], 'biz_ext': {'cost': [], 'rating': '4.3'}, 'biz_type': [], 'cityname': '盐城市', 'type': '汽车服务;汽车配件销售;汽车配件销售', 'photos': [{'title': [], 'url': 'http://store.is.autonavi.com/showpic/32f15fdc6ca44590a8bc6bbc03c77b9f'}, {'title': [], 'url': 'http://store.is.autonavi.com/showpic/4909023c6c97598b290a7ae8802dbef3'}, {'title': [], 'url': 'http://store.is.autonavi.com/showpic/a22eaa480d014142173bd9b67dd7a4c7'}], 'typecode': '010800', 'shopinfo': '0', 'poiweight': [], 'childtype': [], 'adname': '亭湖区', 'name': '盐城市正新轮胎经营部', 'location': '120.424767,33.493668', 'tel': [], 'shopid': [], 'id': 'B0FFIHMJGP'}, {'parent': [], 'address': '开放大道27号汽配城', 'distance': [], 'pname': '江苏省', 'importance': [], 'biz_ext': {'cost': [], 'rating': '4.2'}, 'biz_type': [], 'cityname': '盐城市', 'type': '汽车服务;汽车配件销售;汽车配件销售', 'photos': [{'title': [], 'url': 'http://store.is.autonavi.com/showpic/d50aaf5f98dc5371b3c69faa55695cd7'}], 'typecode': '010800', 'shopinfo': '0', 'poiweight': [], 'childtype': [], 'adname': '亭湖区', 'name': '天龙汽配经营部', 'location': '120.154554,33.376006', 'tel': '0515-88290538;13605101198;18205112699', 'shopid': [], 'id': 'B0FFI48XJE'}, {'parent': [], 'address': '白驹镇南闸口盐城神龙玩具有限公司南100米', 'distance': [], 'pname': '江苏省', 'importance': [], 'biz_ext': {'cost': [], 'rating': '4.1'}, 'biz_type': [], 'cityname': '盐城市', 'type': '汽车维修;汽车维修;汽车维修', 'photos': [{'title': [], 'url': 'http://store.is.autonavi.com/showpic/46365406f07ee7c559703a6aa4519894'}, {'title': [], 'url': 'http://store.is.autonavi.com/showpic/b4935726ac306d3ef08718ee3d596922'}, {'title': [], 'url': 'http://store.is.autonavi.com/showpic/c91220f4a5c47fa5b61a3939d8cc193f'}], 'typecode': '030000', 'shopinfo': '0', 'poiweight': [], 'childtype': [], 'adname': '大丰区', 'name': '亚辉轮胎经营部', 'location': '120.312647,33.058861', 'tel': '15298588090', 'shopid': [], 'id': 'B0FFHECYD8'}, {'parent': [], 'address': '禾顺农资经营部东南侧120米', 'distance': [], 'pname': '江苏省', 'importance': [], 'biz_ext': {'cost': [], 'rating': '2.4'}, 'biz_type': [], 'cityname': '盐城市', 'type': '汽车服务;汽车配件销售;汽车配件销售', 'photos': [], 'typecode': '010800', 'shopinfo': '0', 'poiweight': [], 'childtype': [], 'adname': '滨海县', 'name': '滨海司尔特总代理', 'location': '119.849282,33.945160', 'tel': [], 'shopid': [], 'id': 'B0LUHXKSVG'}, {'parent': [], 'address': '黄海路与银河路交叉口东南500米', 'distance': [], 'pname': '江苏省', 'importance': [], 'biz_ext': {'cost': [], 'rating': '3.1'}, 'biz_type': [], 'cityname': '盐城市', 'type': '汽车服务;汽车配件销售;汽车配件销售', 'photos': [], 'typecode': '010800', 'shopinfo': '0', 'poiweight': [], 'childtype': [], 'adname': '响水县', 'name': '响水县素雅汽车配件经营部', 'location': '119.593675,34.174325', 'tel': [], 'shopid': [], 'id': 'B0LDYKKDAU'}, {'parent': [], 'address': '响水县公安局交通警察大队大有中队西南侧100米', 'distance': [], 'pname': '江苏省', 'importance': [], 'biz_ext': {'cost': [], 'rating': '4.1'}, 'biz_type': [], 'cityname': '盐城市', 'type': '汽车服务;汽车配件销售;汽车配件销售', 'photos': [{'title': [], 'url': 'http://store.is.autonavi.com/showpic/0a3acc8c66f85d037ab60a8cc8c0869a'}, {'title': [], 'url': 'http://store.is.autonavi.com/showpic/bed72f65636600321cb517791806b4c6'}], 'typecode': '010800', 'shopinfo': '0', 'poiweight': [], 'childtype': [], 'adname': '响水县', 'name': '小徐轮胎经营部', 'location': '119.926156,34.200058', 'tel': '13770191110', 'shopid': [], 'id': 'B0FFGA8MRJ'}, {'parent': [], 'address': '天成华庭17幢S137室', 'distance': [], 'pname': '江苏省', 'importance': [], 'biz_ext': {'cost': [], 'rating': '4.0'}, 'biz_type': [], 'cityname': '盐城市', 'type': '汽车服务;汽车配件销售;汽车配件销售', 'photos': [{'title': [], 'url': 'http://store.is.autonavi.com/showpic/a8993ba707cb31c2e891779a261274f4'}, {'title': [], 'url': 'https://aos-comment.amap.com/B0FFG7P1PA/comment/202506_16-07050_1750028726044_17264002.jpg'}, {'title': [], 'url': 'http://store.is.autonavi.com/showpic/0eaa3e2a0f37b9e1f199ff092a3d7017'}], 'typecode': '010800', 'shopinfo': '1', 'poiweight': [], 'childtype': [], 'adname': '阜宁县', 'name': '轮胎经营部', 'location': '119.894143,33.664287', 'tel': '13024488085;13814328545', 'shopid': [], 'id': 'B0FFG7P1PA'}], 'status': '1', 'info': 'OK'}\n",
"{'suggestion': {'keywords': [], 'cities': []}, 'count': '58', 'infocode': '10000', 'pois': [{'parent': [], 'address': '新丰镇腰港村七组67号', 'distance': [], 'pname': '江苏省', 'importance': [], 'biz_ext': {'cost': [], 'rating': '4.2'}, 'biz_type': [], 'cityname': '盐城市', 'type': '汽车维修;汽车维修;汽车维修', 'photos': [{'title': [], 'url': 'http://store.is.autonavi.com/showpic/d222ad9c42222f1b73370bd5a87f3b9d'}, {'title': [], 'url': 'http://store.is.autonavi.com/showpic/60f163b486e9d6562c0ce3decc6a04ca'}, {'title': [], 'url': 'http://store.is.autonavi.com/showpic/1f06442817363d2ae628898b966e51cf'}], 'typecode': '030000', 'shopinfo': '1', 'poiweight': [], 'childtype': [], 'adname': '大丰区', 'name': '瑞达汽车修理部', 'location': '120.436965,33.382365', 'tel': '18912528997', 'shopid': [], 'id': 'B0FFK1JEBX'}, {'parent': [], 'address': '哈尔滨路768号', 'distance': [], 'pname': '江苏省', 'importance': [], 'biz_ext': {'cost': [], 'rating': '4.8'}, 'biz_type': [], 'cityname': '盐城市', 'type': '汽车服务;汽车养护/装饰;汽车养护|汽车服务;洗车场;洗车场|汽车服务;汽车配件销售;汽车配件销售|汽车维修;汽车维修;汽车维修', 'photos': [{'title': [], 'url': 'http://store.is.autonavi.com/showpic/1a23145872795b4cde74b4bafec5311c'}, {'title': [], 'url': 'http://store.is.autonavi.com/showpic/00a5729d036590ce8a7f6af1ae443ecf'}, {'title': [], 'url': 'http://store.is.autonavi.com/showpic/7595936d743105e50e1742ff174c8f47'}], 'typecode': '010400|010500|010800|030000', 'shopinfo': '1', 'poiweight': [], 'childtype': [], 'adname': '阜宁县', 'name': '德国马牌轮胎(哈尔滨路店)', 'location': '119.803370,33.762749', 'tel': '13815526852', 'shopid': [], 'id': 'B0IRTSFBJQ'}, {'parent': [], 'address': '东台镇东达翰林缘9号楼店面', 'distance': [], 'pname': '江苏省', 'importance': [], 'biz_ext': {'cost': [], 'rating': '4.2'}, 'biz_type': [], 'cityname': '盐城市', 'type': '汽车服务;汽车服务相关;汽车服务相关|汽车维修;汽车维修;汽车维修', 'photos': [{'title': [], 'url': 'http://store.is.autonavi.com/showpic/92891eef79676ab55cbad0fc87cc0f21'}, {'title': [], 'url': 'http://store.is.autonavi.com/showpic/0abefa78c2457dec5d637b5b29a3c2b8'}, {'title': [], 'url': 'http://store.is.autonavi.com/showpic/9456fe06e3c7988689b76940935edfe3'}], 'typecode': '010000|030000', 'shopinfo': '1', 'poiweight': [], 'childtype': [], 'adname': '东台市', 'name': '吉车汇汽车配件经营部', 'location': '120.306966,32.861728', 'tel': '15195189017', 'shopid': [], 'id': 'B0FFJS8RMU'}, {'parent': [], 'address': '迎宾大道106号', 'distance': [], 'pname': '江苏省', 'importance': [], 'biz_ext': {'cost': [], 'rating': '3.6'}, 'biz_type': [], 'cityname': '盐城市', 'type': '汽车服务;汽车配件销售;汽车配件销售', 'photos': [{'title': [], 'url': 'http://store.is.autonavi.com/showpic/77bd43fc0c29d00df466acf375a480d6'}, {'title': [], 'url': 'http://store.is.autonavi.com/showpic/4336c0afd7c8056171b5748ea2723838'}, {'title': [], 'url': 'http://store.is.autonavi.com/showpic/9f7c522ff93fc47093a36d57db915574'}], 'typecode': '010800', 'shopinfo': '1', 'poiweight': [], 'childtype': [], 'adname': '滨海县', 'name': '滨海县百援汽车用品经营部', 'location': '119.826997,33.987526', 'tel': [], 'shopid': [], 'id': 'B0JDMM4ARJ'}, {'parent': [], 'address': '明珠路288号金仕达汽配城180-63号', 'distance': [], 'pname': '江苏省', 'importance': [], 'biz_ext': {'cost': [], 'rating': '3.7'}, 'biz_type': [], 'cityname': '盐城市', 'type': '汽车服务;汽车配件销售;汽车配件销售', 'photos': [], 'typecode': '010800', 'shopinfo': '1', 'poiweight': [], 'childtype': [], 'adname': '建湖县', 'name': '建湖县近湖飞凡汽车配件经营部', 'location': '119.800292,33.484099', 'tel': '18851543909', 'shopid': [], 'id': 'B0FFMATPRS'}, {'parent': [], 'address': '大丰港路与长江路交叉口南320米', 'distance': [], 'pname': '江苏省', 'importance': [], 'biz_ext': {'cost': [], 'rating': '2.7'}, 'biz_type': [], 'cityname': '盐城市', 'type': '汽车服务;汽车配件销售;汽车配件销售', 'photos': [], 'typecode': '010800', 'shopinfo': '0', 'poiweight': [], 'childtype': [], 'adname': '大丰区', 'name': '港区汽配经营部', 'location': '120.718728,33.231962', 'tel': [], 'shopid': [], 'id': 'B0KUBOQBFE'}, {'parent': [], 'address': '天居·上尚城南门南50米', 'distance': [], 'pname': '江苏省', 'importance': [], 'biz_ext': {'cost': [], 'rating': '3.8'}, 'biz_type': [], 'cityname': '盐城市', 'type': '汽车服务;汽车配件销售;汽车配件销售', 'photos': [{'title': [], 'url': 'http://store.is.autonavi.com/showpic/2a40f139e8ccb019608da29f3dac9b7b'}, {'title': [], 'url': 'http://store.is.autonavi.com/showpic/8886b3f7d5378ccdb3a154265b3dff4c'}], 'typecode': '010800', 'shopinfo': '0', 'poiweight': [], 'childtype': [], 'adname': '大丰区', 'name': '小智轮胎经营部', 'location': '120.466668,33.173695', 'tel': '13921826156', 'shopid': [], 'id': 'B0FFF01EME'}, {'parent': [], 'address': '明珠东路与冠华三巷交叉口东200米', 'distance': [], 'pname': '江苏省', 'importance': [], 'biz_ext': {'cost': [], 'rating': '3.9'}, 'biz_type': [], 'cityname': '盐城市', 'type': '汽车服务;汽车配件销售;汽车配件销售', 'photos': [{'title': [], 'url': 'http://aos-cdn-image.amap.com/sns/ugccomment/72d5f28e-2720-45e0-8a17-2172f20cfe33.jpg'}, {'title': [], 'url': 'http://store.is.autonavi.com/showpic/856331dadec26ed8f690ddc0dc43f473'}], 'typecode': '010800', 'shopinfo': '0', 'poiweight': [], 'childtype': [], 'adname': '建湖县', 'name': '建湖天安轮胎经营部', 'location': '119.804093,33.484541', 'tel': [], 'shopid': [], 'id': 'B0FFI96JG2'}, {'parent': [], 'address': '西团镇大龙工商路58号', 'distance': [], 'pname': '江苏省', 'importance': [], 'biz_ext': {'cost': [], 'rating': '4.0'}, 'biz_type': [], 'cityname': '盐城市', 'type': '汽车服务;汽车配件销售;汽车配件销售', 'photos': [{'title': [], 'url': 'http://store.is.autonavi.com/showpic/9f2116203f296164b2c7fbd71d5c18ca'}, {'title': [], 'url': 'http://store.is.autonavi.com/showpic/869a494ce8b63ef0e4198bcb1f129d06'}, {'title': [], 'url': 'https://aos-comment.amap.com/B0JRYAC9Y3/comment/3fdcee4320f2692dd2649b4875d56876_2048_2048_80.jpg'}], 'typecode': '010800', 'shopinfo': '1', 'poiweight': [], 'childtype': [], 'adname': '大丰区', 'name': '长城润滑油授权盐城一级经销商', 'location': '120.392929,33.100767', 'tel': '18662085858', 'shopid': [], 'id': 'B0JRYAC9Y3'}, {'parent': [], 'address': '哈尔滨路洲业国际汽车城28号楼', 'distance': [], 'pname': '江苏省', 'importance': [], 'biz_ext': {'cost': [], 'rating': '3.0'}, 'biz_type': [], 'cityname': '盐城市', 'type': '汽车服务;汽车养护/装饰;汽车养护', 'photos': [], 'typecode': '010400', 'shopinfo': '0', 'poiweight': [], 'childtype': [], 'adname': '阜宁县', 'name': '车之翼汽车装潢(龙膜)', 'location': '119.820004,33.753443', 'tel': [], 'shopid': [], 'id': 'B0J3M67MNL'}, {'parent': [], 'address': '太兴村五组', 'distance': [], 'pname': '江苏省', 'importance': [], 'biz_ext': {'cost': [], 'rating': '4.1'}, 'biz_type': [], 'cityname': '盐城市', 'type': '汽车服务;汽车配件销售;汽车配件销售', 'photos': [{'title': [], 'url': 'http://store.is.autonavi.com/showpic/6d1360443ada4a1eaa92e1271b757376'}, {'title': [], 'url': 'http://store.is.autonavi.com/showpic/b6d5c42d06a9b7bddc362459bfa9891f'}, {'title': [], 'url': 'http://store.is.autonavi.com/showpic/68e4c5dc7d855d2eeb318e28474867db'}], 'typecode': '010800', 'shopinfo': '1', 'poiweight': [], 'childtype': [], 'adname': '大丰区', 'name': '文权轮胎经营部', 'location': '120.420616,33.283936', 'tel': [], 'shopid': [], 'id': 'B0J1CRCJB9'}, {'parent': [], 'address': '八滨线', 'distance': [], 'pname': '江苏省', 'importance': [], 'biz_ext': {'cost': [], 'rating': '3.9'}, 'biz_type': [], 'cityname': '盐城市', 'type': '汽车服务;汽车配件销售;汽车配件销售', 'photos': [{'title': [], 'url': 'http://aos-cdn-image.amap.com/sns/ugccomment/bb1d876e-7692-4af5-a1c7-b598edc620c4.jpg'}], 'typecode': '010800', 'shopinfo': '0', 'poiweight': [], 'childtype': [], 'adname': '滨海县', 'name': '滨海县八滩老赵轮胎经营部', 'location': '120.089060,34.145222', 'tel': '18252285230', 'shopid': [], 'id': 'B0FFIZWPPB'}, {'parent': [], 'address': '便仓镇思源村四组49号', 'distance': [], 'pname': '江苏省', 'importance': [], 'biz_ext': {'cost': [], 'rating': '4.0'}, 'biz_type': [], 'cityname': '盐城市', 'type': '汽车维修;汽车维修;汽车维修', 'photos': [{'title': [], 'url': 'http://store.is.autonavi.com/showpic/4df0bca4cf9370fb2c091837e639a5db'}], 'typecode': '030000', 'shopinfo': '0', 'poiweight': [], 'childtype': [], 'adname': '亭湖区', 'name': '卞兆祥农机维修经营部', 'location': '120.257422,33.212337', 'tel': [], 'shopid': [], 'id': 'B0KR65NOSF'}, {'parent': [], 'address': '开放大道28-4号', 'distance': [], 'pname': '江苏省', 'importance': [], 'biz_ext': {'cost': [], 'rating': '4.0'}, 'biz_type': [], 'cityname': '盐城市', 'type': '汽车服务;汽车配件销售;汽车配件销售', 'photos': [{'title': [], 'url': 'http://store.is.autonavi.com/showpic/421b500022df05e99708c68550f82efc'}, {'title': [], 'url': 'http://store.is.autonavi.com/showpic/625956d72eb625f494f3e4901404c1e4'}, {'title': [], 'url': 'http://store.is.autonavi.com/showpic/7e6c1890e2f004cc786e5b8e6fea58ce'}], 'typecode': '010800', 'shopinfo': '0', 'poiweight': [], 'childtype': [], 'adname': '亭湖区', 'name': '盐城市城东新航轮胎经营部', 'location': '120.156650,33.375391', 'tel': '13770020027', 'shopid': [], 'id': 'B0FFH6274O'}, {'parent': [], 'address': '常新中路26-30', 'distance': [], 'pname': '江苏省', 'importance': [], 'biz_ext': {'cost': [], 'rating': '3.8'}, 'biz_type': [], 'cityname': '盐城市', 'type': '汽车服务;汽车配件销售;汽车配件销售', 'photos': [], 'typecode': '010800', 'shopinfo': '0', 'poiweight': [], 'childtype': [], 'adname': '大丰区', 'name': '如意轮胎经营部', 'location': '120.449575,33.197975', 'tel': '0515-83928694;15358288389', 'shopid': [], 'id': 'B0JGCRP8HB'}, {'parent': [], 'address': '城北大桥东北200米', 'distance': [], 'pname': '江苏省', 'importance': [], 'biz_ext': {'cost': [], 'rating': '3.5'}, 'biz_type': [], 'cityname': '盐城市', 'type': '汽车服务;汽车配件销售;汽车配件销售', 'photos': [{'title': [], 'url': 'http://store.is.autonavi.com/showpic/4ed39579632da7e14beeedb638f8c045'}], 'typecode': '010800', 'shopinfo': '1', 'poiweight': [], 'childtype': [], 'adname': '阜宁县', 'name': '小周轮胎经营部', 'location': '119.835578,33.798363', 'tel': [], 'shopid': [], 'id': 'B0J1RZQLHZ'}, {'parent': [], 'address': '瑞鹤路与振北路交叉口南400米', 'distance': [], 'pname': '江苏省', 'importance': [], 'biz_ext': {'cost': [], 'rating': '2.5'}, 'biz_type': [], 'cityname': '盐城市', 'type': '汽车服务;汽车配件销售;汽车配件销售', 'photos': [], 'typecode': '010800', 'shopinfo': '0', 'poiweight': [], 'childtype': [], 'adname': '亭湖区', 'name': '宏庆轮胎经营部', 'location': '120.265325,33.444475', 'tel': [], 'shopid': [], 'id': 'B0LURS4IL5'}, {'parent': [], 'address': '上海港路与利物浦港路交叉口北220米', 'distance': [], 'pname': '江苏省', 'importance': [], 'biz_ext': {'cost': [], 'rating': '3.9'}, 'biz_type': [], 'cityname': '盐城市', 'type': '汽车服务;汽车配件销售;汽车配件销售', 'photos': [{'title': [], 'url': 'http://store.is.autonavi.com/showpic/226119754ecff9d9042e158d99143197'}], 'typecode': '010800', 'shopinfo': '0', 'poiweight': [], 'childtype': [], 'adname': '大丰区', 'name': '大丰港宗海轮胎经营部', 'location': '120.738493,33.246302', 'tel': '13651587589', 'shopid': [], 'id': 'B0GKGC7OTA'}, {'parent': [], 'address': '新民小区一期6号', 'distance': [], 'pname': '江苏省', 'importance': [], 'biz_ext': {'cost': [], 'rating': '3.8'}, 'biz_type': [], 'cityname': '盐城市', 'type': '汽车服务;汽车养护/装饰;汽车养护|汽车维修;汽车维修;汽车维修', 'photos': [{'title': [], 'url': 'http://store.is.autonavi.com/showpic/6dd64628802a8751c869cd82fb76d7e8'}, {'title': [], 'url': 'http://store.is.autonavi.com/showpic/908553b267d5e2a6468ee118447a272d'}, {'title': [], 'url': 'http://store.is.autonavi.com/showpic/5b98353ee586fbb0a17e78514ceda96d'}], 'typecode': '010400|030000', 'shopinfo': '1', 'poiweight': [], 'childtype': [], 'adname': '阜宁县', 'name': '阜宁县大刘汽修经营部', 'location': '119.842291,33.741363', 'tel': '13390738356', 'shopid': [], 'id': 'B0HB6DM4NK'}, {'parent': [], 'address': '通商小街', 'distance': [], 'pname': '江苏省', 'importance': [], 'biz_ext': {'cost': [], 'rating': '3.8'}, 'biz_type': [], 'cityname': '盐城市', 'type': '汽车服务;汽车配件销售;汽车配件销售', 'photos': [{'title': [], 'url': 'http://store.is.autonavi.com/showpic/c97ce6ad50fe27af972cd78514e5b9e0'}, {'title': [], 'url': 'http://store.is.autonavi.com/showpic/be7b362408f10594091f4fefcf4c3db6'}, {'title': [], 'url': 'http://store.is.autonavi.com/showpic/ea399f59d955c1306ac57de1cca92e90'}], 'typecode': '010800', 'shopinfo': '1', 'poiweight': [], 'childtype': [], 'adname': '大丰区', 'name': '朱三轮胎经营部', 'location': '120.591227,33.125249', 'tel': [], 'shopid': [], 'id': 'B0FFLG6RW0'}], 'status': '1', 'info': 'OK'}\n",
"{'suggestion': {'keywords': [], 'cities': []}, 'count': '450', 'infocode': '10000', 'pois': [{'parent': [], 'address': '航二路16号银山小区33栋底商', 'distance': [], 'pname': '广西壮族自治区', 'importance': [], 'biz_ext': {'cost': [], 'rating': '4.4'}, 'biz_type': [], 'cityname': '柳州市', 'type': '汽车服务;汽车养护/装饰;汽车养护', 'photos': [{'title': [], 'url': 'http://store.is.autonavi.com/showpic/216632378d1d4a4b3041691ccfd585ea'}, {'title': [], 'url': 'http://store.is.autonavi.com/showpic/2513ba9ecbfa18b5663e7c9d31e8e899'}, {'title': [], 'url': 'http://store.is.autonavi.com/showpic/889d6bfc712f0f6f2cc679940c718c66'}], 'typecode': '010400', 'shopinfo': '1', 'poiweight': [], 'childtype': [], 'adname': '柳南区', 'name': '靓车宝贝汽车服务中心', 'location': '109.395946,24.278911', 'tel': '13117721861', 'shopid': [], 'id': 'B0FFFAKD1B'}, {'parent': [], 'address': '广汽路广西汽车贸易园南150米', 'distance': [], 'pname': '广西壮族自治区', 'importance': [], 'biz_ext': {'cost': [], 'rating': '4.2'}, 'biz_type': [], 'cityname': '柳州市', 'type': '汽车销售;汽车销售;汽车销售|汽车维修;汽车维修;汽车维修', 'photos': [{'title': [], 'url': 'http://store.is.autonavi.com/showpic/33c6ce7cf7e044f756e79ef3cbde4575'}], 'typecode': '020000|030000', 'shopinfo': '0', 'poiweight': [], 'childtype': [], 'adname': '柳南区', 'name': '五菱汽车特约服务中心', 'location': '109.361916,24.307389', 'tel': [], 'shopid': [], 'id': 'B0FFG9C0EX'}, {'parent': [], 'address': '柳太路13号(23-25号门面)附近汽修店汽车轮胎补胎换胎汽车美容养护底盘维修机油保养道路救援汽车电器电路维修发动机维修', 'distance': [], 'pname': '广西壮族自治区', 'importance': [], 'biz_ext': {'cost': [], 'rating': '4.2'}, 'biz_type': [], 'cityname': '柳州市', 'type': '汽车维修;汽车维修;汽车维修|汽车服务;汽车服务相关;汽车服务相关', 'photos': [{'title': [], 'url': 'http://store.is.autonavi.com/showpic/d7fea433c34f2c6926abb0c130eff6ab'}, {'title': [], 'url': 'http://store.is.autonavi.com/showpic/ea9a782553533cc20112110be2e319ca'}, {'title': [], 'url': 'http://store.is.autonavi.com/showpic/f13c9bccf9b7f4d5e11ec09496787947'}], 'typecode': '030000|010000', 'shopinfo': '1', 'poiweight': [], 'childtype': [], 'adname': '柳南区', 'name': '顺奥汽车维修服务中心', 'location': '109.364350,24.334430', 'tel': '13407884735', 'shopid': [], 'id': 'B0FFH92HI2'}, {'parent': [], 'address': '汇轮路3-1号', 'distance': [], 'pname': '广西壮族自治区', 'importance': [], 'biz_ext': {'cost': [], 'rating': '4.8'}, 'biz_type': [], 'cityname': '柳州市', 'type': '汽车销售;汽车销售;汽车销售', 'photos': [{'title': [], 'url': 'http://store.is.autonavi.com/showpic/4e40e7454e6d1e01b699a0f03721a641'}, {'title': [], 'url': 'https://aos-comment.amap.com/B0KUMA31TQ/comment/0feedback_sendimage_1719804274710_a9408e23.jpeg'}, {'title': [], 'url': 'https://aos-comment.amap.com/B0KUMA31TQ/comment/45def1788aa59ec20fdc63de2d9c75fa_2048_2048_80.jpg'}], 'typecode': '020000', 'shopinfo': '1', 'poiweight': [], 'childtype': [], 'adname': '柳南区', 'name': '捷途汽车柳州鸿正体验中心', 'location': '109.366921,24.306394', 'tel': '0772-3176977;18172208803', 'shopid': [], 'id': 'B0KUMA31TQ'}, {'parent': [], 'address': '育才路与潭中西路辅路交叉口南180米', 'distance': [], 'pname': '广西壮族自治区', 'importance': [], 'biz_ext': {'cost': [], 'rating': '4.0'}, 'biz_type': [], 'cityname': '柳州市', 'type': '汽车服务;汽车养护/装饰;汽车养护', 'photos': [{'title': [], 'url': 'http://store.is.autonavi.com/showpic/0a3e6675944263c0a13d729150c6e23a'}, {'title': [], 'url': 'http://store.is.autonavi.com/showpic/c017e063015d07bddade7407a3aa5617'}], 'typecode': '010400', 'shopinfo': '1', 'poiweight': [], 'childtype': [], 'adname': '柳南区', 'name': '佰美达汽车维修服务中心', 'location': '109.382755,24.334147', 'tel': '18172169239', 'shopid': [], 'id': 'B0JBPL8OX1'}, {'parent': [], 'address': '柳工大道银翔万里汽车产业园B1栋19-20号', 'distance': [], 'pname': '广西壮族自治区', 'importance': [], 'biz_ext': {'cost': [], 'rating': '4.2'}, 'biz_type': [], 'cityname': '柳州市', 'type': '汽车服务;汽车养护/装饰;汽车养护', 'photos': [{'title': [], 'url': 'http://store.is.autonavi.com/showpic/a5473b511c87d5f3430bc46e857577ae'}, {'title': [], 'url': 'http://store.is.autonavi.com/showpic/c087d18b128f96f1639ed2e50e02199f'}, {'title': [], 'url': 'http://store.is.autonavi.com/showpic/70ad5d991ea2f9e902d28039dbb45348'}], 'typecode': '010400', 'shopinfo': '1', 'poiweight': [], 'childtype': [], 'adname': '柳南区', 'name': '美个车汽车服务中心', 'location': '109.360541,24.297942', 'tel': '18978224205', 'shopid': [], 'id': 'B0G22HV3W6'}, {'parent': [], 'address': '南环街道航军路', 'distance': [], 'pname': '广西壮族自治区', 'importance': [], 'biz_ext': {'cost': [], 'rating': '3.9'}, 'biz_type': [], 'cityname': '柳州市', 'type': '汽车维修;汽车维修;汽车维修', 'photos': [{'title': [], 'url': 'http://store.is.autonavi.com/showpic/55e2f423a310f1fe8e9f1d41'}, {'title': [], 'url': 'http://store.is.autonavi.com/showpic/d3801cb92c3b172cfe075017f853cabe'}, {'title': [], 'url': 'http://store.is.autonavi.com/showpic/55e2f423a310f1fe8e9f1d49'}], 'typecode': '030000', 'shopinfo': '0', 'poiweight': [], 'childtype': [], 'adname': '柳南区', 'name': '五菱汽车特约服务中心', 'location': '109.401408,24.267261', 'tel': [], 'shopid': [], 'id': 'B0FFFZSG2R'}, {'parent': [], 'address': '东环路294号2-02号场地', 'distance': [], 'pname': '广西壮族自治区', 'importance': [], 'biz_ext': {'cost': [], 'rating': '3.9'}, 'biz_type': [], 'cityname': '柳州市', 'type': '汽车维修;汽车综合维修;汽车综合维修', 'photos': [{'title': [], 'url': 'http://store.is.autonavi.com/showpic/4f18e1b6dbd3600d17a9a609ff590250'}, {'title': [], 'url': 'http://store.is.autonavi.com/showpic/8f06fdbd89d701e822ea442076e407c6'}, {'title': [], 'url': 'http://store.is.autonavi.com/showpic/3f5b5353c87cc234c69e01aa49298926'}], 'typecode': '030100', 'shopinfo': '0', 'poiweight': [], 'childtype': [], 'adname': '城中区', 'name': 'ONE盛汽车维修服务中心', 'location': '109.439118,24.359472', 'tel': '0772-2323211;19307720121;19307720137', 'shopid': [], 'id': 'B0J0F5NWM8'}, {'parent': [], 'address': '百饭路19-21号汽车电路维修发动机维修汽车保养汽车美容汽车打蜡钣金喷漆补胎换胎', 'distance': [], 'pname': '广西壮族自治区', 'importance': [], 'biz_ext': {'cost': [], 'rating': '4.2'}, 'biz_type': [], 'cityname': '柳州市', 'type': '汽车服务;汽车养护/装饰;汽车养护', 'photos': [{'title': [], 'url': 'http://store.is.autonavi.com/showpic/9bad30e209f31b1ff6f2b5b3cde2fcf5'}, {'title': [], 'url': 'http://store.is.autonavi.com/showpic/b9264ddfaec94b748d646055f0cc4319'}], 'typecode': '010400', 'shopinfo': '1', 'poiweight': [], 'childtype': [], 'adname': '柳南区', 'name': '林顺汽车维护装饰中心', 'location': '109.365311,24.322103', 'tel': '18277255375', 'shopid': [], 'id': 'B0GD15NX3C'}, {'parent': [], 'address': '江景八号公寓南侧90米', 'distance': [], 'pname': '广西壮族自治区', 'importance': [], 'biz_ext': {'cost': [], 'rating': '4.3'}, 'biz_type': [], 'cityname': '柳州市', 'type': '汽车服务;汽车养护/装饰;汽车养护', 'photos': [{'title': [], 'url': 'http://store.is.autonavi.com/showpic/57b2abb6930f5fa99b05976e36109c26'}, {'title': [], 'url': 'http://store.is.autonavi.com/showpic/e3fef7628ada819bbc9cbe282ed29295'}], 'typecode': '010400', 'shopinfo': '0', 'poiweight': [], 'childtype': [], 'adname': '柳南区', 'name': '旺旺汽车美容养护中心', 'location': '109.395965,24.326614', 'tel': '13737267252;18775107166', 'shopid': [], 'id': 'B0FFFTL617'}, {'parent': [], 'address': '航五路与航星路交叉口东60米', 'distance': [], 'pname': '广西壮族自治区', 'importance': [], 'biz_ext': {'cost': [], 'rating': '4.1'}, 'biz_type': [], 'cityname': '柳州市', 'type': '汽车维修;汽车维修;汽车维修', 'photos': [{'title': [], 'url': 'http://store.is.autonavi.com/showpic/757402c7e761345d711169c7d2f35402'}, {'title': [], 'url': 'http://store.is.autonavi.com/showpic/3fc8b2b066e78c735bd29757dd994bb6'}], 'typecode': '030000', 'shopinfo': '0', 'poiweight': [], 'childtype': [], 'adname': '柳南区', 'name': '洪翔汽车维修服务中心', 'location': '109.385849,24.266048', 'tel': '0772-6609794;13078017951;13878282165', 'shopid': [], 'id': 'B0FFFPS25S'}, {'parent': [], 'address': '航星路南丽首座2期10栋1-7门面', 'distance': [], 'pname': '广西壮族自治区', 'importance': [], 'biz_ext': {'cost': [], 'rating': '4.3'}, 'biz_type': [], 'cityname': '柳州市', 'type': '汽车服务;汽车养护/装饰;汽车养护', 'photos': [{'title': [], 'url': 'http://store.is.autonavi.com/showpic/c8df34c93e3ef2089c7494e282c55761'}, {'title': [], 'url': 'http://store.is.autonavi.com/showpic/7be9be6856184d1362167d5d4a049ca6'}, {'title': [], 'url': 'http://store.is.autonavi.com/showpic/f7ca86cfb196c435f53954c0985bca82'}], 'typecode': '010400', 'shopinfo': '1', 'poiweight': [], 'childtype': [], 'adname': '柳南区', 'name': '美优车汽车服务中心', 'location': '109.385421,24.267501', 'tel': '19167184979;19994730487', 'shopid': [], 'id': 'B0GKGM5B2W'}, {'parent': [], 'address': '航鹰大道17号金科星辰5栋110号', 'distance': [], 'pname': '广西壮族自治区', 'importance': [], 'biz_ext': {'cost': [], 'rating': '4.2'}, 'biz_type': [], 'cityname': '柳州市', 'type': '汽车服务;洗车场;洗车场', 'photos': [{'title': [], 'url': 'http://store.is.autonavi.com/showpic/8254a3848120fbd42c17dbb8908be0d3'}, {'title': [], 'url': 'http://store.is.autonavi.com/showpic/9803280f950a3b9d5077820ad767aadb'}], 'typecode': '010500', 'shopinfo': '1', 'poiweight': [], 'childtype': [], 'adname': '柳南区', 'name': '智力汽车服务中心', 'location': '109.390306,24.267971', 'tel': '0772-3252825;18978067885;18978068683', 'shopid': [], 'id': 'B0FFMGHA2P'}, {'parent': [], 'address': '航银路16号银山小区31栋1到8号门面', 'distance': [], 'pname': '广西壮族自治区', 'importance': [], 'biz_ext': {'cost': [], 'rating': '4.3'}, 'biz_type': [], 'cityname': '柳州市', 'type': '汽车服务;汽车养护/装饰;汽车养护', 'photos': [{'title': [], 'url': 'http://store.is.autonavi.com/showpic/5462a2f2c8ed2990586c94242fce500b'}, {'title': [], 'url': 'http://store.is.autonavi.com/showpic/d68c17ccb6ad3d23483eab72d01405d6'}, {'title': [], 'url': 'http://store.is.autonavi.com/showpic/55e323d0a310f1fe8ea00daa'}], 'typecode': '010400', 'shopinfo': '0', 'poiweight': [], 'childtype': [], 'adname': '柳南区', 'name': '闽车航美容养护中心(柳州鸿爵4S店)', 'location': '109.398467,24.278845', 'tel': '0772-3219998;0772-3628555', 'shopid': [], 'id': 'B0FFG8NUU5'}, {'parent': [], 'address': '经典时代商住小区E1栋12号门面', 'distance': [], 'pname': '广西壮族自治区', 'importance': [], 'biz_ext': {'cost': [], 'rating': '4.0'}, 'biz_type': [], 'cityname': '柳州市', 'type': '汽车服务;洗车场;洗车场', 'photos': [{'title': [], 'url': 'http://store.is.autonavi.com/showpic/95c8f0a348ba4b02d9bfa6a68b378dd0'}], 'typecode': '010500', 'shopinfo': '1', 'poiweight': [], 'childtype': [], 'adname': '融安县', 'name': '膜衣裳汽车贴膜美容服务中心', 'location': '109.415108,25.220915', 'tel': [], 'shopid': [], 'id': 'B0K69AJFGQ'}, {'parent': [], 'address': '龙屯路189号', 'distance': [], 'pname': '广西壮族自治区', 'importance': [], 'biz_ext': {'cost': [], 'rating': '4.5'}, 'biz_type': [], 'cityname': '柳州市', 'type': '汽车维修;汽车维修;汽车维修', 'photos': [{'title': [], 'url': 'http://store.is.autonavi.com/showpic/ca79835714f4b7284301be7a31c2066d'}], 'typecode': '030000', 'shopinfo': '0', 'poiweight': [], 'childtype': [], 'adname': '柳南区', 'name': '柳州五菱新事业售后服务中心', 'location': '109.374277,24.324908', 'tel': [], 'shopid': [], 'id': 'B0K6BUAS5W'}, {'parent': [], 'address': '高沙卫生所北侧160米', 'distance': [], 'pname': '广西壮族自治区', 'importance': [], 'biz_ext': {'cost': [], 'rating': '4.2'}, 'biz_type': [], 'cityname': '柳州市', 'type': '汽车服务;汽车养护/装饰;汽车养护', 'photos': [{'title': [], 'url': 'http://store.is.autonavi.com/showpic/f562413a394a30747dc13d1d60c3b064'}], 'typecode': '010400', 'shopinfo': '0', 'poiweight': [], 'childtype': [], 'adname': '柳南区', 'name': '车之友汽车美容保养服务中心', 'location': '109.354027,24.312539', 'tel': [], 'shopid': [], 'id': 'B0I16UW01R'}, {'parent': [], 'address': '航鹰大道10号俊园小区1-149号', 'distance': [], 'pname': '广西壮族自治区', 'importance': [], 'biz_ext': {'cost': [], 'rating': '4.7'}, 'biz_type': [], 'cityname': '柳州市', 'type': '汽车服务;汽车养护/装饰;汽车养护|汽车维修;汽车维修;汽车维修', 'photos': [{'title': [], 'url': 'http://store.is.autonavi.com/showpic/ffc9bee0f15e2cdb2ba2747b642b9218'}, {'title': [], 'url': 'http://store.is.autonavi.com/showpic/81b6cc32a318220b0040c97886e62b3b'}, {'title': [], 'url': 'http://store.is.autonavi.com/showpic/03802c44ea66f5cd5ce1a3a2800ccaca'}], 'typecode': '010400|030000', 'shopinfo': '1', 'poiweight': [], 'childtype': [], 'adname': '柳南区', 'name': '驰加汽车服务中心(航鹰大道店)', 'location': '109.389276,24.278338', 'tel': '13977238844', 'shopid': [], 'id': 'B0FFIWONPQ'}, {'parent': [], 'address': '兆安四季花城6栋(航四路北)', 'distance': [], 'pname': '广西壮族自治区', 'importance': [], 'biz_ext': {'cost': [], 'rating': '4.1'}, 'biz_type': [], 'cityname': '柳州市', 'type': '汽车维修;汽车维修;汽车维修', 'photos': [{'title': [], 'url': 'http://store.is.autonavi.com/showpic/4525044b360ca5ed192fbf98298b64f9'}, {'title': [], 'url': 'http://store.is.autonavi.com/showpic/e43dcd1db83caaf4a644c7cde412bfb0'}, {'title': [], 'url': 'http://store.is.autonavi.com/showpic/e09f2f192aae28bcb24c60938aea2540'}], 'typecode': '030000', 'shopinfo': '1', 'poiweight': [], 'childtype': [], 'adname': '柳南区', 'name': '汇奥汽车维修服务中心', 'location': '109.389159,24.271168', 'tel': [], 'shopid': [], 'id': 'B0KAYU0Y54'}, {'parent': [], 'address': '北鸿机动车检测有限责任公司西南侧210米', 'distance': [], 'pname': '广西壮族自治区', 'importance': [], 'biz_ext': {'cost': [], 'rating': '4.1'}, 'biz_type': [], 'cityname': '柳州市', 'type': '汽车服务;汽车养护/装饰;汽车养护', 'photos': [{'title': [], 'url': 'http://store.is.autonavi.com/showpic/bf242744c77feb14613e891298061c02'}], 'typecode': '010400', 'shopinfo': '0', 'poiweight': [], 'childtype': [], 'adname': '融安县', 'name': '车美佳汽车美容快修服务中心', 'location': '109.414804,25.231960', 'tel': '13737286218', 'shopid': [], 'id': 'B0FFL9DHSQ'}], 'status': '1', 'info': 'OK'}\n",
"{'suggestion': {'keywords': [], 'cities': []}, 'count': '450', 'infocode': '10000', 'pois': [{'parent': [], 'address': '潭中西路15号富丽嘉园22栋1一1号门面', 'distance': [], 'pname': '广西壮族自治区', 'importance': [], 'biz_ext': {'cost': [], 'rating': '3.9'}, 'biz_type': [], 'cityname': '柳州市', 'type': '汽车服务;汽车养护/装饰;汽车养护', 'photos': [{'title': [], 'url': 'http://store.is.autonavi.com/showpic/9264857574b85a3eda3305cfeebb129e'}, {'title': [], 'url': 'http://store.is.autonavi.com/showpic/449043728508797f3f2a0df9654e5b7c'}, {'title': [], 'url': 'http://store.is.autonavi.com/showpic/4d8a9d7769a7e2a13b9f04254d93b229'}], 'typecode': '010400', 'shopinfo': '0', 'poiweight': [], 'childtype': [], 'adname': '柳南区', 'name': '飞腾汽车美容养护中心', 'location': '109.385141,24.332428', 'tel': '15077277967', 'shopid': [], 'id': 'B0FFIUU3NF'}, {'parent': [], 'address': '航五路15号南苑2区6号', 'distance': [], 'pname': '广西壮族自治区', 'importance': [], 'biz_ext': {'cost': [], 'rating': '4.2'}, 'biz_type': [], 'cityname': '柳州市', 'type': '汽车服务;汽车养护/装饰;汽车养护', 'photos': [{'title': [], 'url': 'http://store.is.autonavi.com/showpic/a11a0011bd70ce43ac3e6f3c1bb32933'}, {'title': [], 'url': 'http://store.is.autonavi.com/showpic/3dc213a92c9e00a495ba5cea5b0f9287'}, {'title': [], 'url': 'http://store.is.autonavi.com/showpic/8f0425e316b0ef40059a13be10ae8fe3'}], 'typecode': '010400', 'shopinfo': '0', 'poiweight': [], 'childtype': [], 'adname': '柳南区', 'name': '桂鸿汽车美容养护中心(航五路)', 'location': '109.388353,24.265922', 'tel': '0772-2497043;13977200509', 'shopid': [], 'id': 'B0FFGETZR3'}, {'parent': [], 'address': '航鹰大道17号金科星辰2栋101-103号', 'distance': [], 'pname': '广西壮族自治区', 'importance': [], 'biz_ext': {'cost': [], 'rating': '4.4'}, 'biz_type': [], 'cityname': '柳州市', 'type': '汽车服务;洗车场;洗车场|汽车维修;汽车维修;汽车维修', 'photos': [{'title': [], 'url': 'http://store.is.autonavi.com/showpic/f48ca843c82ebc490af042b72b1f9f68'}, {'title': [], 'url': 'http://store.is.autonavi.com/showpic/0fcbfb408a469736b3fc90ca9c2a21df'}, {'title': [], 'url': 'http://store.is.autonavi.com/showpic/e923a19fda00b363284fe88facf4c67c'}], 'typecode': '010500|030000', 'shopinfo': '1', 'poiweight': [], 'childtype': [], 'adname': '柳南区', 'name': '柳宁汽车服务中心', 'location': '109.390446,24.269424', 'tel': '0772-3223100;13633030050', 'shopid': [], 'id': 'B030402JOG'}, {'parent': [], 'address': '航一路11-2-6号', 'distance': [], 'pname': '广西壮族自治区', 'importance': [], 'biz_ext': {'cost': [], 'rating': '4.3'}, 'biz_type': [], 'cityname': '柳州市', 'type': '汽车服务;汽车养护/装饰;汽车养护', 'photos': [{'title': [], 'url': 'http://store.is.autonavi.com/showpic/c099ff76cd06e69ed7449c04d76da641'}, {'title': [], 'url': 'http://store.is.autonavi.com/showpic/81b7fa6dae16643688c30f04a839bfe2'}, {'title': [], 'url': 'http://store.is.autonavi.com/showpic/6a1793b2681af4197d9597cac82fa24f'}], 'typecode': '010400', 'shopinfo': '0', 'poiweight': [], 'childtype': [], 'adname': '柳南区', 'name': '柳州市日兴汽车美容服务部', 'location': '109.393674,24.282981', 'tel': '0772-5358633;13977230138', 'shopid': [], 'id': 'B030402C2X'}, {'parent': [], 'address': '汇轮路汽贸园东区10-3号', 'distance': [], 'pname': '广西壮族自治区', 'importance': [], 'biz_ext': {'cost': [], 'rating': '4.6'}, 'biz_type': [], 'cityname': '柳州市', 'type': '汽车销售;汽车销售;汽车销售', 'photos': [{'title': [], 'url': 'http://store.is.autonavi.com/showpic/8d72b5ac698e265ccdece3c8afa1e336'}, {'title': [], 'url': 'http://store.is.autonavi.com/showpic/e148928d8e8f05b30ab1405e9a070c70'}, {'title': [], 'url': 'http://store.is.autonavi.com/showpic/90d95f063e788792812fe544d68d3b4e'}], 'typecode': '020000', 'shopinfo': '1', 'poiweight': [], 'childtype': [], 'adname': '柳南区', 'name': '奇瑞汽车柳州鹏越体验中心', 'location': '109.366099,24.305023', 'tel': '18172142328', 'shopid': [], 'id': 'B0JDD5OTTJ'}, {'parent': [], 'address': '柳江区柳堡路751号', 'distance': [], 'pname': '广西壮族自治区', 'importance': [], 'biz_ext': {'cost': [], 'rating': '4.0'}, 'biz_type': [], 'cityname': '柳州市', 'type': '汽车销售;汽车销售;汽车销售', 'photos': [{'title': [], 'url': 'http://store.is.autonavi.com/showpic/57430bdf705aeb1670b9bd3b43c41ddf'}, {'title': [], 'url': 'http://store.is.autonavi.com/showpic/2e7cb67fa383a75698cd3f53147473a0'}, {'title': [], 'url': 'http://store.is.autonavi.com/showpic/a1910fbda99402301e811be984425a5e'}], 'typecode': '020000', 'shopinfo': '1', 'poiweight': [], 'childtype': [], 'adname': '柳江区', 'name': '美孚Mobil(认证店)龙宝汽车服务中心', 'location': '109.349293,24.259934', 'tel': '17776054206', 'shopid': [], 'id': 'B0JUGM4GB6'}, {'parent': [], 'address': '航鹰大道5号1-11号', 'distance': [], 'pname': '广西壮族自治区', 'importance': [], 'biz_ext': {'cost': [], 'rating': '4.3'}, 'biz_type': [], 'cityname': '柳州市', 'type': '汽车服务;汽车养护/装饰;汽车养护', 'photos': [{'title': [], 'url': 'https://comment-oss-online.oss-cn-wulanchabu.aliyuncs.com/B0FFFAKESH/headerImg/content_media_external_images_media_37397_1651835444269_640a2998.jpg'}, {'title': [], 'url': 'http://store.is.autonavi.com/showpic/8469d3b2e09424aa2d96166089905fcb'}, {'title': [], 'url': 'http://store.is.autonavi.com/showpic/b7493ec2f723976758751cb31a374ee9'}], 'typecode': '010400', 'shopinfo': '1', 'poiweight': [], 'childtype': [], 'adname': '柳南区', 'name': '宝信汽车养护中心', 'location': '109.390846,24.280116', 'tel': '13978079366', 'shopid': [], 'id': 'B0FFFAKESH'}, {'parent': [], 'address': '汽贸园15-1号', 'distance': [], 'pname': '广西壮族自治区', 'importance': [], 'biz_ext': {'cost': [], 'rating': '4.5'}, 'biz_type': [], 'cityname': '柳州市', 'type': '汽车销售;汽车销售;汽车销售|汽车维修;汽车维修;汽车维修', 'photos': [{'title': [], 'url': 'http://store.is.autonavi.com/showpic/1f1d52488223c2a9ebc20ff9fc32965d'}, {'title': [], 'url': 'http://store.is.autonavi.com/showpic/f7adf5844a0b6085b1ed9fb83a573f40'}], 'typecode': '020000|030000', 'shopinfo': '0', 'poiweight': [], 'childtype': [], 'adname': '柳南区', 'name': '宝骏汽车柳州双诚用户中心', 'location': '109.361838,24.307985', 'tel': '0772-8803800;0772-8803900', 'shopid': [], 'id': 'B03040ONJC'}, {'parent': [], 'address': '磨滩路天鹅湖小区13栋', 'distance': [], 'pname': '广西壮族自治区', 'importance': [], 'biz_ext': {'cost': [], 'rating': '4.0'}, 'biz_type': [], 'cityname': '柳州市', 'type': '汽车维修;汽车维修;汽车维修', 'photos': [{'title': [], 'url': 'http://store.is.autonavi.com/showpic/4447caa2342a0d53a920778280ec798c'}, {'title': [], 'url': 'http://store.is.autonavi.com/showpic/610504763d0250c70766979638e393a8'}], 'typecode': '030000', 'shopinfo': '0', 'poiweight': [], 'childtype': [], 'adname': '柳南区', 'name': '焦点汽车服务', 'location': '109.388917,24.317181', 'tel': '13657828467', 'shopid': [], 'id': 'B0FFHG3TIZ'}, {'parent': [], 'address': '西鹅乡文山路', 'distance': [], 'pname': '广西壮族自治区', 'importance': [], 'biz_ext': {'cost': [], 'rating': '3.8'}, 'biz_type': [], 'cityname': '柳州市', 'type': '汽车维修;汽车综合维修;汽车综合维修', 'photos': [{'title': [], 'url': 'http://store.is.autonavi.com/showpic/373591cb2886aaa3ed2f3bbcdf0b1d96'}, {'title': [], 'url': 'http://store.is.autonavi.com/showpic/ed82f6e7abd23a46b776414cb087f6dd'}, {'title': [], 'url': 'http://store.is.autonavi.com/showpic/43fb22afbc4fcd81f782cc49b5cd5020'}], 'typecode': '030100', 'shopinfo': '1', 'poiweight': [], 'childtype': [], 'adname': '柳南区', 'name': '生达汽车维修服务中心', 'location': '109.353963,24.311137', 'tel': '13367620212', 'shopid': [], 'id': 'B0FFFWTNRL'}, {'parent': [], 'address': '柳工大道广西汽车贸易园-二手车市场东区', 'distance': [], 'pname': '广西壮族自治区', 'importance': [], 'biz_ext': {'cost': [], 'rating': '4.2'}, 'biz_type': [], 'cityname': '柳州市', 'type': '汽车维修;汽车维修;汽车维修', 'photos': [{'title': [], 'url': 'http://store.is.autonavi.com/showpic/37adde43f1bc3df12c1c1460f25e4ba9'}, {'title': [], 'url': 'http://store.is.autonavi.com/showpic/d5bf0f0a8e9a0e703f29c48293cb5497'}, {'title': [], 'url': 'http://store.is.autonavi.com/showpic/1e489c5c8c05047b2f05ea4509e11c52'}], 'typecode': '030000', 'shopinfo': '0', 'poiweight': [], 'childtype': [], 'adname': '柳南区', 'name': '海马汽车-柳州市卓晟汽车售后服务中心', 'location': '109.367429,24.306761', 'tel': [], 'shopid': [], 'id': 'B0HGGAVTE5'}, {'parent': [], 'address': '南环路6号尔海南山23栋1-1-2号', 'distance': [], 'pname': '广西壮族自治区', 'importance': [], 'biz_ext': {'cost': [], 'rating': '3.9'}, 'biz_type': [], 'cityname': '柳州市', 'type': '汽车服务;汽车养护/装饰;汽车养护', 'photos': [{'title': [], 'url': 'http://store.is.autonavi.com/showpic/04b16d0ccb80270a85d45ea2e4a45c2f'}, {'title': [], 'url': 'http://store.is.autonavi.com/showpic/e7fcf329f0b3fd1f39210de72b9290eb'}], 'typecode': '010400', 'shopinfo': '0', 'poiweight': [], 'childtype': [], 'adname': '鱼峰区', 'name': '银手指汽车服务中心', 'location': '109.443170,24.266882', 'tel': '18307723309', 'shopid': [], 'id': 'B0FFF3YBJ2'}, {'parent': [], 'address': '柳北汽车城内', 'distance': [], 'pname': '广西壮族自治区', 'importance': [], 'biz_ext': {'cost': [], 'rating': '4.2'}, 'biz_type': [], 'cityname': '柳州市', 'type': '汽车销售;汽车销售;汽车销售', 'photos': [{'title': [], 'url': 'http://store.is.autonavi.com/showpic/2dc0cd053b453d3ceb0d7f6878b295e2'}, {'title': [], 'url': 'http://store.is.autonavi.com/showpic/9b304ae384bc15c91e7014b15ad9e11f'}], 'typecode': '020000', 'shopinfo': '0', 'poiweight': [], 'childtype': [], 'adname': '柳北区', 'name': '五菱宝骏服务中心', 'location': '109.413314,24.369704', 'tel': [], 'shopid': [], 'id': 'B0JKVOHKPE'}, {'parent': [], 'address': '精工钢结构材料总汇(322国道北)', 'distance': [], 'pname': '广西壮族自治区', 'importance': [], 'biz_ext': {'cost': [], 'rating': '4.3'}, 'biz_type': [], 'cityname': '柳州市', 'type': '汽车服务;汽车养护/装饰;汽车养护', 'photos': [{'title': [], 'url': 'http://store.is.autonavi.com/showpic/26342f7d62ad97c4371c7b148a04a9cf'}, {'title': [], 'url': 'http://store.is.autonavi.com/showpic/011cce1d0b7fec4e3d8f9d39472c4845'}, {'title': [], 'url': 'http://store.is.autonavi.com/showpic/22c8ccc59713877e0b10ce4bc1add128'}], 'typecode': '010400', 'shopinfo': '0', 'poiweight': [], 'childtype': [], 'adname': '柳江区', 'name': '铭洋汽车美容服务中心', 'location': '109.308532,24.258563', 'tel': '15207829081;15907820868', 'shopid': [], 'id': 'B0FFG35IHE'}, {'parent': [], 'address': '西环路10号', 'distance': [], 'pname': '广西壮族自治区', 'importance': [], 'biz_ext': {'cost': [], 'rating': '4.6'}, 'biz_type': [], 'cityname': '柳州市', 'type': '汽车维修;汽车维修;汽车维修', 'photos': [{'title': [], 'url': 'http://store.is.autonavi.com/showpic/e5e9763a6dcdf35a45b88626f805dd71'}, {'title': [], 'url': 'http://store.is.autonavi.com/showpic/7f7783e2a89ef8fb90b33e52b9c9b79b'}], 'typecode': '030000', 'shopinfo': '0', 'poiweight': [], 'childtype': [], 'adname': '柳南区', 'name': '奇瑞汽车售后服务中心柳州嘉宸店', 'location': '109.378580,24.329388', 'tel': [], 'shopid': [], 'id': 'B0KBBSMRPV'}, {'parent': [], 'address': '南环路与322国道辅路交叉口东120米', 'distance': [], 'pname': '广西壮族自治区', 'importance': [], 'biz_ext': {'cost': [], 'rating': '4.1'}, 'biz_type': [], 'cityname': '柳州市', 'type': '汽车维修;汽车维修;汽车维修', 'photos': [{'title': [], 'url': 'http://store.is.autonavi.com/showpic/207f05f233d4edea60af07352e134195'}], 'typecode': '030000', 'shopinfo': '0', 'poiweight': [], 'childtype': [], 'adname': '柳南区', 'name': '永一汽修服务中心', 'location': '109.387522,24.258056', 'tel': '13627729651;15224595123', 'shopid': [], 'id': 'B0G2MDWPUQ'}, {'parent': [], 'address': '柳石路414号之一城南首座4栋负一层6', 'distance': [], 'pname': '广西壮族自治区', 'importance': [], 'biz_ext': {'cost': [], 'rating': '3.7'}, 'biz_type': [], 'cityname': '柳州市', 'type': '汽车服务;汽车养护/装饰;汽车养护', 'photos': [{'title': [], 'url': 'http://store.is.autonavi.com/showpic/6194f3167806059136b17e1d7196ee1b'}, {'title': [], 'url': 'http://store.is.autonavi.com/showpic/486b688417e89e6e7c26e83d6f6c2a5d'}], 'typecode': '010400', 'shopinfo': '1', 'poiweight': [], 'childtype': [], 'adname': '鱼峰区', 'name': '广西柳州市云龙汽车装饰汽车服务中心', 'location': '109.434137,24.267700', 'tel': '15278880060', 'shopid': [], 'id': 'B0HGZU3HYV'}, {'parent': [], 'address': '广西省柳州市柳江区柳江碧桂园23栋101档', 'distance': [], 'pname': '广西壮族自治区', 'importance': [], 'biz_ext': {'cost': [], 'rating': '4.1'}, 'biz_type': [], 'cityname': '柳州市', 'type': '汽车维修;汽车综合维修;汽车综合维修', 'photos': [{'title': [], 'url': 'http://store.is.autonavi.com/showpic/630d6af8577d75f46d89b2308f188bb1'}, {'title': [], 'url': 'https://aos-comment.amap.com/B0FFLQ4ARY/comment/content_media_external_images_media_10758854_ss__1727185754020_09514931.jpg'}], 'typecode': '030100', 'shopinfo': '0', 'poiweight': [], 'childtype': [], 'adname': '柳江区', 'name': '宝驰诚汽车维修服务中心', 'location': '109.325654,24.237807', 'tel': '13788021400;18078279136', 'shopid': [], 'id': 'B0FFLQ4ARY'}, {'parent': [], 'address': '西环路8号正南方向47米润双汽车用品配件城', 'distance': [], 'pname': '广西壮族自治区', 'importance': [], 'biz_ext': {'cost': [], 'rating': '3.1'}, 'biz_type': [], 'cityname': '柳州市', 'type': '汽车维修;汽车综合维修;汽车综合维修', 'photos': [], 'typecode': '030100', 'shopinfo': '0', 'poiweight': [], 'childtype': [], 'adname': '柳南区', 'name': '韦意汽车维护服务中心', 'location': '109.379493,24.326413', 'tel': [], 'shopid': [], 'id': 'B0JR6YKD8E'}, {'parent': [], 'address': '香港新城港城路10号', 'distance': [], 'pname': '广西壮族自治区', 'importance': [], 'biz_ext': {'cost': [], 'rating': '3.8'}, 'biz_type': [], 'cityname': '柳州市', 'type': '汽车维修;汽车维修;汽车维修', 'photos': [{'title': [], 'url': 'http://store.is.autonavi.com/showpic/12e6ad72654554f57989230911d317b3'}, {'title': [], 'url': 'http://store.is.autonavi.com/showpic/508939ca241505c94b88170f3e742aae'}], 'typecode': '030000', 'shopinfo': '1', 'poiweight': [], 'childtype': [], 'adname': '鱼峰区', 'name': '柳州市菱魂汽修美容服务部', 'location': '109.482403,24.309351', 'tel': '15678732921', 'shopid': [], 'id': 'B0FFL2UXUL'}], 'status': '1', 'info': 'OK'}\n",
"{'suggestion': {'keywords': [], 'cities': []}, 'count': '1', 'infocode': '10000', 'pois': [{'parent': [], 'address': '305县道与工商街交叉口北140米', 'distance': [], 'pname': '江苏省', 'importance': [], 'biz_ext': {'cost': [], 'rating': '3.6'}, 'biz_type': [], 'cityname': '淮安市', 'type': '汽车销售;汽车销售;汽车销售', 'photos': [{'title': [], 'url': 'http://store.is.autonavi.com/showpic/cf30c3c2e1ffb20425d627c4875c856e'}], 'typecode': '020000', 'shopinfo': '0', 'poiweight': [], 'childtype': [], 'adname': '淮安区', 'name': '恩途微电轿', 'location': '119.361351,33.551211', 'tel': [], 'shopid': [], 'id': 'B0I2X73E2M'}], 'status': '1', 'info': 'OK'}\n",
"{'suggestion': {'keywords': [], 'cities': []}, 'count': '0', 'infocode': '10000', 'pois': [], 'status': '1', 'info': 'OK'}\n",
"{'suggestion': {'keywords': [], 'cities': []}, 'count': '450', 'infocode': '10000', 'pois': [{'parent': [], 'address': '金沙江西路2618号', 'distance': [], 'pname': '上海市', 'importance': [], 'biz_ext': {'cost': [], 'rating': '4.6'}, 'biz_type': [], 'cityname': '上海市', 'type': '汽车维修;汽车维修;汽车维修', 'photos': [{'title': [], 'url': 'http://store.is.autonavi.com/showpic/0d1fb1fabbc011257d65eeca0ef28b33'}, {'title': [], 'url': 'http://store.is.autonavi.com/showpic/7d8afff05a16ffc06caebe075ec8332d'}, {'title': [], 'url': 'https://aos-comment.amap.com/B0H2H1KATI/comment/deb4c521e1770db0c53355ae96b985e3_2048_2048_80.jpg'}], 'typecode': '030000', 'shopinfo': '1', 'poiweight': [], 'childtype': [], 'adname': '嘉定区', 'name': '上海金乾汽车修理有限公司', 'location': '121.304334,31.241782', 'tel': '13764226533', 'shopid': [], 'id': 'B0H2H1KATI'}, {'parent': [], 'address': '江东路646号', 'distance': [], 'pname': '上海市', 'importance': [], 'biz_ext': {'cost': [], 'rating': '4.3'}, 'biz_type': [], 'cityname': '上海市', 'type': '汽车维修;汽车维修;汽车维修', 'photos': [{'title': [], 'url': 'http://store.is.autonavi.com/showpic/8df90d7f4fddc5e2e32802ccce80e093'}], 'typecode': '030000', 'shopinfo': '0', 'poiweight': [], 'childtype': [], 'adname': '浦东新区', 'name': '上海滋锐汽车修理厂', 'location': '121.526465,31.372747', 'tel': '13564128096', 'shopid': [], 'id': 'B0FFIZJX0F'}, {'parent': [], 'address': '金沙江西路2618号', 'distance': [], 'pname': '上海市', 'importance': [], 'biz_ext': {'cost': [], 'rating': '4.4'}, 'biz_type': [], 'cityname': '上海市', 'type': '汽车销售;汽车销售;汽车销售|汽车维修;汽车维修;汽车维修', 'photos': [{'title': [], 'url': 'http://store.is.autonavi.com/showpic/c6fc446b2f9bc97da2ebbce697cbf759'}, {'title': [], 'url': 'http://store.is.autonavi.com/showpic/621d38cbb822178f4a20f332b4e0377d'}, {'title': [], 'url': 'http://store.is.autonavi.com/showpic/a98b28a709f749e61f6738860bd07987'}], 'typecode': '020000|030000', 'shopinfo': '0', 'poiweight': [], 'childtype': [], 'adname': '嘉定区', 'name': '九龙汽车(金沙江西路)', 'location': '121.304896,31.241747', 'tel': '13764226533', 'shopid': [], 'id': 'B00155QYEA'}, {'parent': [], 'address': '祝桥镇江环路170号', 'distance': [], 'pname': '上海市', 'importance': [], 'biz_ext': {'cost': [], 'rating': '4.5'}, 'biz_type': [], 'cityname': '上海市', 'type': '汽车维修;汽车维修;汽车维修', 'photos': [{'title': [], 'url': 'http://store.is.autonavi.com/showpic/14f0adea89f32a0609f85f993e29f2eb'}, {'title': [], 'url': 'https://aos-comment.amap.com/B0FFG9822G/comment/194eb6bb98db57d84929375de64beacf_2048_2048_80.jpg'}, {'title': [], 'url': 'https://aos-comment.amap.com/B0FFG9822G/comment/CB4497A9_FB2A_47B6_A91F_CE9CAFE676C8_L0_001_1080_1920_1726957382984_23933496.jpg'}], 'typecode': '030000', 'shopinfo': '0', 'poiweight': [], 'childtype': [], 'adname': '浦东新区', 'name': '货车顺发汽车修理部', 'location': '121.742917,31.182677', 'tel': '13671594873', 'shopid': [], 'id': 'B0FFG9822G'}, {'parent': [], 'address': '松花江路36-6号附近', 'distance': [], 'pname': '上海市', 'importance': [], 'biz_ext': {'cost': [], 'rating': '3.8'}, 'biz_type': [], 'cityname': '上海市', 'type': '汽车维修;汽车综合维修;汽车综合维修', 'photos': [{'title': [], 'url': 'http://store.is.autonavi.com/showpic/e061672a942e55ca8392b65b80542ecf'}, {'title': [], 'url': 'http://store.is.autonavi.com/showpic/2049059b0bb68dc4aa876e8498a50e5e'}], 'typecode': '030100', 'shopinfo': '0', 'poiweight': [], 'childtype': [], 'adname': '杨浦区', 'name': '上海万邦汽车维修有限公司', 'location': '121.544479,31.297117', 'tel': '021-55826380;021-65483151;13601788403', 'shopid': [], 'id': 'B0FFHEGMNF'}, {'parent': [], 'address': '元江路5068号捷佳汽车', 'distance': [], 'pname': '上海市', 'importance': [], 'biz_ext': {'cost': [], 'rating': '3.3'}, 'biz_type': [], 'cityname': '上海市', 'type': '汽车服务;汽车养护/装饰;汽车养护|汽车维修;汽车维修;汽车维修', 'photos': [{'title': [], 'url': 'http://store.is.autonavi.com/showpic/c77d41ca1a2fd3ed50386615bb4c4689'}, {'title': [], 'url': 'http://store.is.autonavi.com/showpic/e247dd3d64314c6caa0bcb9f57a25dc1'}, {'title': [], 'url': 'http://store.is.autonavi.com/showpic/33807c7404472b3a02c008df6c327855'}], 'typecode': '010400|030000', 'shopinfo': '1', 'poiweight': [], 'childtype': [], 'adname': '闵行区', 'name': '上海捷佳汽车修理有限公司', 'location': '121.370748,31.041918', 'tel': '17811862707', 'shopid': [], 'id': 'B0G17SU7YF'}, {'parent': [], 'address': '浦江镇昌达路181号', 'distance': [], 'pname': '上海市', 'importance': [], 'biz_ext': {'cost': [], 'rating': '4.2'}, 'biz_type': [], 'cityname': '上海市', 'type': '汽车服务;汽车服务相关;汽车服务相关|汽车维修;汽车维修;汽车维修', 'photos': [{'title': [], 'url': 'http://store.is.autonavi.com/showpic/94be59506e6ffbbe36d4a89f3b6bb28f'}], 'typecode': '010000|030000', 'shopinfo': '1', 'poiweight': [], 'childtype': [], 'adname': '闵行区', 'name': '浦港汽车修理厂', 'location': '121.514412,31.064405', 'tel': '021-34093167;13918716907', 'shopid': [], 'id': 'B0FFHJXBNF'}, {'parent': [], 'address': '经三路与纬三路交叉口东北420米', 'distance': [], 'pname': '上海市', 'importance': [], 'biz_ext': {'cost': [], 'rating': '3.8'}, 'biz_type': [], 'cityname': '上海市', 'type': '汽车维修;汽车综合维修;汽车综合维修', 'photos': [], 'typecode': '030100', 'shopinfo': '0', 'poiweight': [], 'childtype': [], 'adname': '浦东新区', 'name': '上海宝山逸仙汽车修理厂', 'location': '121.556866,31.357887', 'tel': '021-36216118;13162488188', 'shopid': [], 'id': 'B0KDJR7NM1'}, {'parent': [], 'address': '松花江路335号', 'distance': [], 'pname': '上海市', 'importance': [], 'biz_ext': {'cost': [], 'rating': '4.3'}, 'biz_type': [], 'cityname': '上海市', 'type': '汽车服务;汽车养护/装饰;汽车养护', 'photos': [{'title': [], 'url': 'http://store.is.autonavi.com/showpic/5b834af574b034b89f8ac06e6320e141'}, {'title': [], 'url': 'https://aos-comment.amap.com/B00155E3DK/comment/64cf9ddb9afc3e9c880014442fa71d26_2048_2048_80.jpg'}, {'title': [], 'url': 'https://aos-comment.amap.com/B00155E3DK/comment/3fe5a8ce407c25b4d28dead850215385_2048_2048_80.jpg'}], 'typecode': '010400', 'shopinfo': '1', 'poiweight': [], 'childtype': [], 'adname': '杨浦区', 'name': '车艺汽车服务有限公司', 'location': '121.530895,31.290029', 'tel': '021-55621652', 'shopid': [], 'id': 'B00155E3DK'}, {'parent': [], 'address': '源泉路161号(黄兴路地铁站1号口步行200米)', 'distance': [], 'pname': '上海市', 'importance': [], 'biz_ext': {'cost': [], 'rating': '4.7'}, 'biz_type': [], 'cityname': '上海市', 'type': '汽车维修;汽车维修;汽车维修', 'photos': [{'title': [], 'url': 'http://store.is.autonavi.com/showpic/42e5fb9aff0ccfaa305afaeb84706b90'}, {'title': [], 'url': 'https://aos-comment.amap.com/B001549F07/headerImg/979dfc2be1a2fc8343b05a6e47f6cf77_2048_2048_80.jpg'}, {'title': [], 'url': 'https://aos-comment.amap.com/B001549F07/headerImg/c26e46efce40f2878e89cd0a76b16a69_2048_2048_80.jpg'}], 'typecode': '030000', 'shopinfo': '0', 'poiweight': [], 'childtype': [], 'adname': '杨浦区', 'name': '上海控江汽车修理厂', 'location': '121.530062,31.278613', 'tel': [], 'shopid': [], 'id': 'B001549F07'}, {'parent': [], 'address': '浦江镇沈杜公路3500号', 'distance': [], 'pname': '上海市', 'importance': [], 'biz_ext': {'cost': [], 'rating': '4.2'}, 'biz_type': [], 'cityname': '上海市', 'type': '汽车维修;汽车综合维修;汽车综合维修', 'photos': [{'title': [], 'url': 'http://store.is.autonavi.com/showpic/c50270255bf88007c1ee88778081014e'}, {'title': [], 'url': 'http://store.is.autonavi.com/showpic/cc1d706574c5f5224ef82e7e9edd815c'}, {'title': [], 'url': 'http://store.is.autonavi.com/showpic/4cfe2cad33a630687f280f9f13a6eae2'}], 'typecode': '030100', 'shopinfo': '0', 'poiweight': [], 'childtype': [], 'adname': '闵行区', 'name': '上海星中汽车修理厂', 'location': '121.518409,31.061868', 'tel': '021-34110025', 'shopid': [], 'id': 'B0FFF2MKJ7'}, {'parent': [], 'address': '金沙江路2069号', 'distance': [], 'pname': '上海市', 'importance': [], 'biz_ext': {'cost': [], 'rating': '4.9'}, 'biz_type': [], 'cityname': '上海市', 'type': '汽车销售;汽车销售;汽车销售', 'photos': [{'title': [], 'url': 'http://store.is.autonavi.com/showpic/b38e363a44766ce577ae227506c8ec0b'}, {'title': [], 'url': 'https://aos-comment.amap.com/B0K04ZFLHV/comment/C4510AAA_FAB8_4ADE_A7DE_0D912D45290B_L0_001_2000_1500_1744372715658_32388977.jpg'}, {'title': [], 'url': 'https://aos-comment.amap.com/B0LDULHP5I/comment/12B0FE87_CF86_46A8_BEC2_D342DD42DBFF_L0_001_1080_192_1751266475628_34905323.jpg'}], 'typecode': '020000', 'shopinfo': '1', 'poiweight': [], 'childtype': [], 'adname': '普陀区', 'name': '岚图汽车(上海金沙江路全功能用户中心)', 'location': '121.370821,31.235232', 'tel': '19802105707', 'shopid': [], 'id': 'B0LDULHP5I'}, {'parent': [], 'address': '长兴镇丰福路699弄178号109', 'distance': [], 'pname': '上海市', 'importance': [], 'biz_ext': {'cost': [], 'rating': '4.2'}, 'biz_type': [], 'cityname': '上海市', 'type': '汽车维修;汽车维修;汽车维修', 'photos': [{'title': [], 'url': 'http://store.is.autonavi.com/showpic/f8bed2165bc4c8a6561099c1d8f7694e'}], 'typecode': '030000', 'shopinfo': '0', 'poiweight': [], 'childtype': [], 'adname': '崇明区', 'name': '上海叶鑫汽车服务有限公司', 'location': '121.707847,31.386087', 'tel': [], 'shopid': [], 'id': 'B0HKTZ10CP'}, {'parent': [], 'address': '江桥路22号-1号', 'distance': [], 'pname': '上海市', 'importance': [], 'biz_ext': {'cost': [], 'rating': '4.4'}, 'biz_type': [], 'cityname': '上海市', 'type': '汽车维修;汽车综合维修;汽车综合维修', 'photos': [{'title': [], 'url': 'http://store.is.autonavi.com/showpic/ec677e12e6771e93be5165a219150d8c'}], 'typecode': '030100', 'shopinfo': '0', 'poiweight': [], 'childtype': [], 'adname': '嘉定区', 'name': '上海吉欣汽车修理有限公司', 'location': '121.341445,31.247957', 'tel': '021-59140165;021-69000128', 'shopid': [], 'id': 'B00154BC6A'}, {'parent': [], 'address': '浦江镇联航路1239号', 'distance': [], 'pname': '上海市', 'importance': [], 'biz_ext': {'cost': [], 'rating': '4.0'}, 'biz_type': [], 'cityname': '上海市', 'type': '汽车销售;通用特约销售;别克销售|汽车维修;通用特约维修;别克维修', 'photos': [{'title': [], 'url': 'http://store.is.autonavi.com/showpic/6e81472bf4cf7eb2b877f7f618a0deb3'}, {'title': [], 'url': 'http://store.is.autonavi.com/showpic/a9d5af9a3f805108d48520a0346e8c98'}, {'title': [], 'url': 'https://aos-comment.amap.com/B0FFG89OZJ/comment/35AF88E9_585E_4076_BDFB_B05CA315CC62_L0_001_1500_2000__1660817895102_6fd1f9b3.jpg'}], 'typecode': '020402|030502', 'shopinfo': '0', 'poiweight': [], 'childtype': [], 'adname': '闵行区', 'name': '上海浦江郑隆汽车销售管理有限公司', 'location': '121.525020,31.077802', 'tel': '021-34663688;021-34663699', 'shopid': [], 'id': 'B0FFG89OZJ'}, {'parent': [], 'address': '新场镇新浩路3号', 'distance': [], 'pname': '上海市', 'importance': [], 'biz_ext': {'cost': [], 'rating': '4.4'}, 'biz_type': [], 'cityname': '上海市', 'type': '汽车维修;汽车综合维修;汽车综合维修', 'photos': [{'title': [], 'url': 'http://store.is.autonavi.com/showpic/762f2523d69b9abbd36749756ca7e633'}, {'title': [], 'url': 'http://store.is.autonavi.com/showpic/063ef9cbbe3867276db075c4ab10a2ae'}], 'typecode': '030100', 'shopinfo': '0', 'poiweight': [], 'childtype': [], 'adname': '浦东新区', 'name': '上海江南汽车修理厂', 'location': '121.643748,31.083943', 'tel': '13003121293', 'shopid': [], 'id': 'B0FFIHFDYI'}, {'parent': [], 'address': '浦江镇联川路258号', 'distance': [], 'pname': '上海市', 'importance': [], 'biz_ext': {'cost': [], 'rating': '4.2'}, 'biz_type': [], 'cityname': '上海市', 'type': '汽车销售;通用特约销售;凯迪拉克销售|汽车维修;通用特约维修;凯迪拉克维修|公司企业;公司企业;公司企业', 'photos': [{'title': [], 'url': 'http://store.is.autonavi.com/showpic/5eabab7b2df6faf75c36a2e3f10aeff2'}, {'title': [], 'url': 'https://aos-comment.amap.com/B0FFK1MO34/comment/7d7ad4426df659a00afba7431eabcdde_2048_2048_80.jpg'}, {'title': [], 'url': 'https://aos-comment.amap.com/B0FFK1MO34/comment/5757a11e431dabdef8bab7973dafa0e6_2048_2048_80.jpg'}], 'typecode': '020401|030501|170000', 'shopinfo': '0', 'poiweight': [], 'childtype': [], 'adname': '闵行区', 'name': '上海浦江凯迪汽车销售服务有限公司', 'location': '121.525023,31.075915', 'tel': '021-60888566;021-60888568', 'shopid': [], 'id': 'B0FFK1MO34'}, {'parent': [], 'address': '江杨南路982号', 'distance': [], 'pname': '上海市', 'importance': [], 'biz_ext': {'cost': [], 'rating': '4.3'}, 'biz_type': [], 'cityname': '上海市', 'type': '汽车销售;梅赛德斯-奔驰特约销售;梅赛德斯-奔驰销售|汽车维修;梅赛德斯-奔驰特约维修;梅赛德斯-奔驰维修', 'photos': [{'title': [], 'url': 'http://store.is.autonavi.com/showpic/ed052235f48250115a386c59773c9473'}, {'title': [], 'url': 'http://store.is.autonavi.com/showpic/2b86a0f214538b2b2dc23f4e8ced9bc4'}, {'title': [], 'url': 'http://aos-cdn-image.amap.com/sns/ugccomment/3b918c63-3c62-4d32-b797-5fcb8d430c49.jpg'}], 'typecode': '020900|031000', 'shopinfo': '0', 'poiweight': [], 'childtype': [], 'adname': '宝山区', 'name': '奔驰上海德星', 'location': '121.467112,31.324626', 'tel': '021-61851330', 'shopid': [], 'id': 'B0FFIR6ONN'}, {'parent': [], 'address': '南翔镇翔江公路485号15-1', 'distance': [], 'pname': '上海市', 'importance': [], 'biz_ext': {'cost': [], 'rating': '4.5'}, 'biz_type': [], 'cityname': '上海市', 'type': '汽车服务;汽车配件销售;汽车配件销售', 'photos': [{'title': [], 'url': 'http://store.is.autonavi.com/showpic/240d1ba4304cbdc1884a5333b3b6d39b'}, {'title': [], 'url': 'http://store.is.autonavi.com/showpic/1527a83f7b117f229a72f7b901cf0eac'}, {'title': [], 'url': 'http://store.is.autonavi.com/showpic/a435d64b5d8535e92342e01363cf2061'}], 'typecode': '010800', 'shopinfo': '1', 'poiweight': [], 'childtype': [], 'adname': '嘉定区', 'name': '上海陆尚汽车用品有限公司', 'location': '121.294977,31.293538', 'tel': '18016388578', 'shopid': [], 'id': 'B0JK7DFE50'}, {'parent': [], 'address': '元江路3266号', 'distance': [], 'pname': '上海市', 'importance': [], 'biz_ext': {'cost': [], 'rating': '4.3'}, 'biz_type': [], 'cityname': '上海市', 'type': '汽车销售;通用特约销售;雪佛兰销售|汽车维修;通用特约维修;雪佛兰维修', 'photos': [{'title': [], 'url': 'http://store.is.autonavi.com/showpic/49e490e434d08c9ad676770f82325af9'}, {'title': [], 'url': 'http://store.is.autonavi.com/showpic/7c9c59427c44bf4a0d6e050061d19fef'}, {'title': [], 'url': 'https://aos-comment.amap.com/B00155GMM7/comment/0AEB8069_9E9A_4795_AC1A_C342C760D0EC_L0_001_0feedback_sendimage_1658543119592_26a8db18.jpeg'}], 'typecode': '020403|030503', 'shopinfo': '0', 'poiweight': [], 'childtype': [], 'adname': '闵行区', 'name': '上海文洋汽车贸易有限公司', 'location': '121.404190,31.050783', 'tel': '021-64909066', 'shopid': [], 'id': 'B00155GMM7'}], 'status': '1', 'info': 'OK'}\n",
"{'suggestion': {'keywords': [], 'cities': []}, 'count': '450', 'infocode': '10000', 'pois': [{'parent': [], 'address': '恒江路58号302', 'distance': [], 'pname': '上海市', 'importance': [], 'biz_ext': {'cost': [], 'rating': '4.2'}, 'biz_type': [], 'cityname': '上海市', 'type': '汽车服务;汽车服务相关;汽车服务相关|汽车销售;汽车销售;汽车销售', 'photos': [{'title': [], 'url': 'http://store.is.autonavi.com/showpic/3d993aa9df30f7283d335895a11dfb4a'}], 'typecode': '010000|020000', 'shopinfo': '0', 'poiweight': [], 'childtype': [], 'adname': '松江区', 'name': '上海赛闳汽车服务有限公司', 'location': '121.312495,31.118480', 'tel': [], 'shopid': [], 'id': 'B0K39LIW3O'}, {'parent': [], 'address': '松花江路111号', 'distance': [], 'pname': '上海市', 'importance': [], 'biz_ext': {'cost': [], 'rating': '4.3'}, 'biz_type': [], 'cityname': '上海市', 'type': '汽车维修;汽车综合维修;汽车综合维修', 'photos': [{'title': [], 'url': 'http://store.is.autonavi.com/showpic/70fb0a9313a1f8f971844f344c7c3ea2'}, {'title': [], 'url': 'http://store.is.autonavi.com/showpic/c542d129e13673796770258c36662e01'}], 'typecode': '030100', 'shopinfo': '1', 'poiweight': [], 'childtype': [], 'adname': '杨浦区', 'name': '融立汽车维修', 'location': '121.541906,31.296295', 'tel': '021-65483151;13601788403', 'shopid': [], 'id': 'B0H2XRHMI5'}, {'parent': [], 'address': '中国(上海)自由贸易试验区申江路288号101室', 'distance': [], 'pname': '上海市', 'importance': [], 'biz_ext': {'cost': [], 'rating': '4.6'}, 'biz_type': [], 'cityname': '上海市', 'type': '汽车销售;奥迪特约销售;上汽-大众奥迪销售|汽车维修;奥迪特约维修;上汽-大众奥迪维修', 'photos': [{'title': [], 'url': 'http://store.is.autonavi.com/showpic/4de33dc3fb9e66003e6588472dfc7792'}, {'title': [], 'url': 'http://store.is.autonavi.com/showpic/23ec736b7a3d820015415319727d7b5f'}, {'title': [], 'url': 'https://aos-comment.amap.com/B00156TKB7/comment/765295eb2b985acd84fdf387b0022729_2048_2048_80.jpg'}], 'typecode': '020300|030400', 'shopinfo': '1', 'poiweight': [], 'childtype': [], 'adname': '浦东新区', 'name': '上海永达奥诚', 'location': '121.624229,31.299547', 'tel': [], 'shopid': [], 'id': 'B00156TKB7'}, {'parent': [], 'address': '泸定路646号(大渡河路地铁站3号口步行410米)', 'distance': [], 'pname': '上海市', 'importance': [], 'biz_ext': {'cost': [], 'rating': '4.5'}, 'biz_type': [], 'cityname': '上海市', 'type': '汽车维修;汽车综合维修;汽车综合维修', 'photos': [{'title': [], 'url': 'http://store.is.autonavi.com/showpic/2fe6935882b8781711028753409bf1da'}, {'title': [], 'url': 'http://store.is.autonavi.com/showpic/f45af58dad16618f0e2d84a243c166ea'}, {'title': [], 'url': 'http://store.is.autonavi.com/showpic/2f14384dae439c6cd62b8430e80eb3ee'}], 'typecode': '030100', 'shopinfo': '0', 'poiweight': [], 'childtype': [], 'adname': '普陀区', 'name': '上海锦江汽车服务有限公司修理三厂', 'location': '121.389727,31.231168', 'tel': '021-62650842', 'shopid': [], 'id': 'B001531AD7'}, {'parent': [], 'address': '江桥镇曹安公路3879号', 'distance': [], 'pname': '上海市', 'importance': [], 'biz_ext': {'cost': [], 'rating': '4.4'}, 'biz_type': [], 'cityname': '上海市', 'type': '汽车维修;汽车综合维修;汽车综合维修', 'photos': [{'title': [], 'url': 'http://store.is.autonavi.com/showpic/e3d89b49e26cef975483db7416a8c28f'}, {'title': [], 'url': 'http://store.is.autonavi.com/showpic/5518e4c1f964685a574f5510dbc96d4b'}, {'title': [], 'url': 'http://store.is.autonavi.com/showpic/0045e8a3b889f27db9e482c9e057b123'}], 'typecode': '030100', 'shopinfo': '0', 'poiweight': [], 'childtype': [], 'adname': '嘉定区', 'name': '美芝进口汽车修理有限公司', 'location': '121.278454,31.268920', 'tel': [], 'shopid': [], 'id': 'B0FFHDY5XC'}, {'parent': [], 'address': '祝桥镇江镇沙泥码头18号', 'distance': [], 'pname': '上海市', 'importance': [], 'biz_ext': {'cost': [], 'rating': '4.0'}, 'biz_type': [], 'cityname': '上海市', 'type': '汽车维修;汽车维修;汽车维修', 'photos': [], 'typecode': '030000', 'shopinfo': '0', 'poiweight': [], 'childtype': [], 'adname': '浦东新区', 'name': '小金汽车修理部', 'location': '121.741851,31.186261', 'tel': '13917194826', 'shopid': [], 'id': 'B0FFG47G7O'}, {'parent': [], 'address': '江东路1569-1571号附近', 'distance': [], 'pname': '上海市', 'importance': [], 'biz_ext': {'cost': [], 'rating': '3.9'}, 'biz_type': [], 'cityname': '上海市', 'type': '汽车维修;汽车维修;汽车维修', 'photos': [{'title': [], 'url': 'http://store.is.autonavi.com/showpic/f4a08cf6706204d8281c7cda50f8987f'}, {'title': [], 'url': 'http://store.is.autonavi.com/showpic/401c5c899c7aa0dda2dea31ccadadfe9'}, {'title': [], 'url': 'http://store.is.autonavi.com/showpic/b5ca064e91b7c7bc0510d489375ceedf'}], 'typecode': '030000', 'shopinfo': '1', 'poiweight': [], 'childtype': [], 'adname': '浦东新区', 'name': '捷越汽车维修', 'location': '121.547566,31.364201', 'tel': '13917820409;15618921445', 'shopid': [], 'id': 'B0FFGANZU8'}, {'parent': [], 'address': '川沙路461号', 'distance': [], 'pname': '上海市', 'importance': [], 'biz_ext': {'cost': [], 'rating': '4.1'}, 'biz_type': [], 'cityname': '上海市', 'type': '汽车维修;汽车维修;汽车维修', 'photos': [{'title': [], 'url': 'https://aos-comment.amap.com/B0FFKGB4L2/comment/e0f17f7187c824d14bae56253b7347b1_2048_2048_80.jpg'}, {'title': [], 'url': 'http://store.is.autonavi.com/showpic/036ef01382429e41362da5cdd5427819'}, {'title': [], 'url': 'http://store.is.autonavi.com/showpic/aeb7b4a33c8a6d41528d8b64eebcfb0c'}], 'typecode': '030000', 'shopinfo': '1', 'poiweight': [], 'childtype': [], 'adname': '浦东新区', 'name': '上海广江汽车维修服务有限公司', 'location': '121.669242,31.276621', 'tel': '021-52181128;13795451559', 'shopid': [], 'id': 'B0FFKGB4L2'}, {'parent': [], 'address': '淞南镇长江西路818号', 'distance': [], 'pname': '上海市', 'importance': [], 'biz_ext': {'cost': [], 'rating': '4.5'}, 'biz_type': [], 'cityname': '上海市', 'type': '汽车维修;汽车维修;汽车维修', 'photos': [{'title': [], 'url': 'https://aos-comment.amap.com/B0KAUYJIFR/comment/content_media_external_images_media_1346_1742434007356_46167024.jpg'}, {'title': [], 'url': 'https://aos-comment.amap.com/B0KAUYJIFR/comment/content_media_external_images_media_1346_1742434127153_17196766.jpg'}], 'typecode': '030000', 'shopinfo': '0', 'poiweight': [], 'childtype': [], 'adname': '宝山区', 'name': '上海润都汽车修理有限公司', 'location': '121.470296,31.339814', 'tel': [], 'shopid': [], 'id': 'B0KAUYJIFR'}, {'parent': [], 'address': '江杨南路1558弄-67号', 'distance': [], 'pname': '上海市', 'importance': [], 'biz_ext': {'cost': [], 'rating': '4.7'}, 'biz_type': [], 'cityname': '上海市', 'type': '汽车维修;汽车综合维修;汽车综合维修', 'photos': [{'title': [], 'url': 'http://store.is.autonavi.com/showpic/a53df6bbf9cd3efe15ac27fbe4830632'}, {'title': [], 'url': 'http://store.is.autonavi.com/showpic/c8de70ec455930514b52bd381a427c74'}, {'title': [], 'url': 'http://store.is.autonavi.com/showpic/33c3a483fd49cfa10791df0b290affd9'}], 'typecode': '030100', 'shopinfo': '0', 'poiweight': [], 'childtype': [], 'adname': '宝山区', 'name': '上海合成汽车修理有限公司', 'location': '121.464558,31.334774', 'tel': '021-36415680;13003203207', 'shopid': [], 'id': 'B00156O1SR'}, {'parent': [], 'address': '浦江镇立跃路1728号', 'distance': [], 'pname': '上海市', 'importance': [], 'biz_ext': {'cost': [], 'rating': '4.2'}, 'biz_type': [], 'cityname': '上海市', 'type': '汽车维修;汽车维修;汽车维修', 'photos': [{'title': [], 'url': 'http://store.is.autonavi.com/showpic/49c44906ba7b76a8a26fda2c7599ebcd'}, {'title': [], 'url': 'http://store.is.autonavi.com/showpic/d6e2a5df1497b5e39bbc13f33a1c3eac'}], 'typecode': '030000', 'shopinfo': '0', 'poiweight': [], 'childtype': [], 'adname': '闵行区', 'name': '胜雄汽车修理有限公司', 'location': '121.535373,31.097972', 'tel': '13671988877;18918017729', 'shopid': [], 'id': 'B0FFLF6AXK'}, {'parent': [], 'address': '港滨路与江东路交叉口西南40米', 'distance': [], 'pname': '上海市', 'importance': [], 'biz_ext': {'cost': [], 'rating': '3.5'}, 'biz_type': [], 'cityname': '上海市', 'type': '汽车维修;汽车综合维修;汽车综合维修', 'photos': [], 'typecode': '030100', 'shopinfo': '0', 'poiweight': [], 'childtype': [], 'adname': '浦东新区', 'name': '上海盛娜汽修厂', 'location': '121.550244,31.362774', 'tel': [], 'shopid': [], 'id': 'B0JAPU2TIP'}, {'parent': [], 'address': '星华公路与翔封路交叉口西北160米', 'distance': [], 'pname': '上海市', 'importance': [], 'biz_ext': {'cost': [], 'rating': '3.6'}, 'biz_type': [], 'cityname': '上海市', 'type': '汽车维修;汽车维修;汽车维修', 'photos': [{'title': [], 'url': 'http://store.is.autonavi.com/showpic/f1762b52d538eb06a624b052529bc8b4'}, {'title': [], 'url': 'http://store.is.autonavi.com/showpic/9adb74f0cfe118c5ed80c6482d684792'}], 'typecode': '030000', 'shopinfo': '0', 'poiweight': [], 'childtype': [], 'adname': '嘉定区', 'name': '江封汽车维修', 'location': '121.294286,31.273396', 'tel': [], 'shopid': [], 'id': 'B0FFLDRRRT'}, {'parent': [], 'address': '联长路67号近江杨南路', 'distance': [], 'pname': '上海市', 'importance': [], 'biz_ext': {'cost': [], 'rating': '4.3'}, 'biz_type': [], 'cityname': '上海市', 'type': '汽车维修;汽车综合维修;汽车综合维修', 'photos': [{'title': [], 'url': 'http://store.is.autonavi.com/showpic/0bbf6b344968f703dafe107d84422c7b'}, {'title': [], 'url': 'https://aos-comment.amap.com/B0JARM03BP/comment/1A779024_1A4B_4207_AD68_F383BDE5A60C_L0_001_1500_200_1746978960835_86953722.jpg'}, {'title': [], 'url': 'https://aos-comment.amap.com/B0JARM03BP/comment/A2320547_3718_4AB1_9CCB_A37B635DA38A_L0_001_1500_200_1746978960835_75309817.jpg'}], 'typecode': '030100', 'shopinfo': '1', 'poiweight': [], 'childtype': [], 'adname': '宝山区', 'name': '上海盈远汽车维修有限公司', 'location': '121.464862,31.337368', 'tel': '17317395885', 'shopid': [], 'id': 'B0JARM03BP'}, {'parent': [], 'address': '南桥镇江南路148-154号', 'distance': [], 'pname': '上海市', 'importance': [], 'biz_ext': {'cost': [], 'rating': '4.3'}, 'biz_type': [], 'cityname': '上海市', 'type': '汽车服务;汽车养护/装饰;汽车养护|汽车服务;洗车场;洗车场|汽车维修;汽车维修;汽车维修', 'photos': [{'title': [], 'url': 'http://store.is.autonavi.com/showpic/bca4bc4ea7014d498777c89f4d428798'}, {'title': [], 'url': 'https://aos-comment.amap.com/B0FFFPWFY1/comment/e352291ad35a1828d38c7d70f65e92f4_2048_2048_80.jpg'}, {'title': [], 'url': 'https://aos-comment.amap.com/B0FFFPWFY1/comment/3f8b48d6ab2f0fa43bff118e1248d291_2048_2048_80.jpg'}], 'typecode': '010400|010500|030000', 'shopinfo': '0', 'poiweight': [], 'childtype': [], 'adname': '奉贤区', 'name': '益鸣汽修连锁(江南店)', 'location': '121.461021,30.901909', 'tel': '15000731516', 'shopid': [], 'id': 'B0FFFPWFY1'}, {'parent': [], 'address': '海湾镇五四农场五四公路1029弄18号', 'distance': [], 'pname': '上海市', 'importance': [], 'biz_ext': {'cost': [], 'rating': '4.1'}, 'biz_type': [], 'cityname': '上海市', 'type': '汽车维修;汽车维修;汽车维修', 'photos': [{'title': [], 'url': 'http://store.is.autonavi.com/showpic/7be3dc1d7490e3e62e36ceb18ea71256'}], 'typecode': '030000', 'shopinfo': '0', 'poiweight': [], 'childtype': [], 'adname': '奉贤区', 'name': '上海练江汽车修理厂', 'location': '121.737691,30.865060', 'tel': '021-57162969', 'shopid': [], 'id': 'B0FFJ1SJOI'}, {'parent': [], 'address': '清峪路1081号', 'distance': [], 'pname': '上海市', 'importance': [], 'biz_ext': {'cost': [], 'rating': '3.9'}, 'biz_type': [], 'cityname': '上海市', 'type': '汽车维修;汽车综合维修;汽车综合维修|生活服务;生活服务场所;生活服务场所', 'photos': [{'title': [], 'url': 'http://store.is.autonavi.com/showpic/6f483aa9a65ed68fa07e1949a109d64e'}, {'title': [], 'url': 'http://store.is.autonavi.com/showpic/3aef703dc41c503aaa0380f156118fdb'}, {'title': [], 'url': 'http://store.is.autonavi.com/showpic/e230392c0c31c6861bcef49ddd7578b3'}], 'typecode': '030100|070000', 'shopinfo': '0', 'poiweight': [], 'childtype': [], 'adname': '嘉定区', 'name': '上海骎驭汽修', 'location': '121.356277,31.246289', 'tel': '021-39101026;18721358123', 'shopid': [], 'id': 'B0FFHBUCYC'}, {'parent': [], 'address': '浦江镇联航路1239号8A', 'distance': [], 'pname': '上海市', 'importance': [], 'biz_ext': {'cost': [], 'rating': '4.7'}, 'biz_type': [], 'cityname': '上海市', 'type': '汽车维修;奥迪特约维修;上汽-大众奥迪维修|汽车销售;奥迪特约销售;上汽-大众奥迪销售', 'photos': [{'title': [], 'url': 'http://store.is.autonavi.com/showpic/f941b8b791e5fe2e89fc12a1cd6f5db1'}, {'title': [], 'url': 'http://store.is.autonavi.com/showpic/19cbdfd32bc40eeac160d95bef2242aa'}, {'title': [], 'url': 'http://store.is.autonavi.com/showpic/685b870fc802510883fb2dcb69446683'}], 'typecode': '030400|020300', 'shopinfo': '1', 'poiweight': [], 'childtype': [], 'adname': '闵行区', 'name': '上汽奥迪上海郑隆奥特用户中心', 'location': '121.526835,31.077223', 'tel': '13501938177', 'shopid': [], 'id': 'B0LGR7F09M'}, {'parent': [], 'address': '申江南路3288号', 'distance': [], 'pname': '上海市', 'importance': [], 'biz_ext': {'cost': [], 'rating': '4.8'}, 'biz_type': [], 'cityname': '上海市', 'type': '公司企业;公司;公司|汽车销售;汽车销售;汽车销售', 'photos': [{'title': [], 'url': 'http://store.is.autonavi.com/showpic/922d4d0b4256346c0366083c65646582'}], 'typecode': '170200|020000', 'shopinfo': '0', 'poiweight': [], 'childtype': [], 'adname': '浦东新区', 'name': '箴能汽车', 'location': '121.642187,31.100288', 'tel': '021-58080099', 'shopid': [], 'id': 'B0FFJ3IJH4'}, {'parent': [], 'address': '江杨南路1321号', 'distance': [], 'pname': '上海市', 'importance': [], 'biz_ext': {'cost': [], 'rating': '4.5'}, 'biz_type': [], 'cityname': '上海市', 'type': '汽车维修;货车维修;货车维修', 'photos': [{'title': [], 'url': 'http://store.is.autonavi.com/showpic/048bd8db178a6c1b16a463db3627b64f'}, {'title': [], 'url': 'http://store.is.autonavi.com/showpic/33a9e6b6d43adf59cf166b75e15ebf48'}, {'title': [], 'url': 'http://store.is.autonavi.com/showpic/b6774c02f7f64285c0de2ecda3b45f25'}], 'typecode': '035000', 'shopinfo': '1', 'poiweight': [], 'childtype': [], 'adname': '宝山区', 'name': '乐铭汽车修理有限公司', 'location': '121.469437,31.330671', 'tel': '021-36511957;18121256780', 'shopid': [], 'id': 'B0FFGJ9LQ8'}], 'status': '1', 'info': 'OK'}\n",
"{'suggestion': {'keywords': [], 'cities': []}, 'count': '450', 'infocode': '10000', 'pois': [{'parent': [], 'address': '一环北路玉柴汽车城279号', 'distance': [], 'pname': '广西壮族自治区', 'importance': [], 'biz_ext': {'cost': [], 'rating': '4.5'}, 'biz_type': [], 'cityname': '玉林市', 'type': '汽车销售;大众特约销售;上海大众销售|汽车维修;大众特约维修;上海大众维修', 'photos': [{'title': [], 'url': 'http://aos-cdn-image.amap.com/sns/ugccomment/f64d9e07-cc10-4984-914e-9ae4dbff72bd.jpg'}, {'title': [], 'url': 'http://store.is.autonavi.com/showpic/7a538d6d0fad5cff6d796a749613e9d5'}, {'title': [], 'url': 'http://store.is.autonavi.com/showpic/a198ed9b9ec3f4b5f56c1c43847a452b'}], 'typecode': '020101|030201', 'shopinfo': '0', 'poiweight': [], 'childtype': [], 'adname': '玉州区', 'name': '广西玉林市通承汽车销售服务有限公司', 'location': '110.158818,22.648633', 'tel': '0775-2389238;0775-2389595', 'shopid': [], 'id': 'B030701BC7'}, {'parent': [], 'address': '一环北路188号入二手车市场内', 'distance': [], 'pname': '广西壮族自治区', 'importance': [], 'biz_ext': {'cost': [], 'rating': '4.5'}, 'biz_type': [], 'cityname': '玉林市', 'type': '汽车维修;汽车综合维修;汽车综合维修|汽车服务;汽车养护/装饰;汽车养护', 'photos': [{'title': [], 'url': 'http://store.is.autonavi.com/showpic/8291e454d0c2c48d3f940d3845e0ae97'}, {'title': [], 'url': 'http://store.is.autonavi.com/showpic/e131c0e867ffd37940049b28a4a18291'}, {'title': [], 'url': 'http://store.is.autonavi.com/showpic/d2c782f3487834447ddeb3f205bb3b40'}], 'typecode': '030100|010400', 'shopinfo': '1', 'poiweight': [], 'childtype': [], 'adname': '玉州区', 'name': '玉林市卓佳汽车维修服务有限公司', 'location': '110.161138,22.647105', 'tel': '0775-2308680', 'shopid': [], 'id': 'B0J0YUTLES'}, {'parent': [], 'address': '容州镇容县经济开发区工业大道73号', 'distance': [], 'pname': '广西壮族自治区', 'importance': [], 'biz_ext': {'cost': [], 'rating': '3.8'}, 'biz_type': [], 'cityname': '玉林市', 'type': '汽车服务;汽车养护/装饰;汽车养护', 'photos': [{'title': [], 'url': 'http://store.is.autonavi.com/showpic/2662a19c59e3ab5fa47e86c9b1b71b2c'}, {'title': [], 'url': 'http://store.is.autonavi.com/showpic/3a4a1de834a4051af0efbbc018ef1eb2'}, {'title': [], 'url': 'http://store.is.autonavi.com/showpic/d62bb849cecd12376c8c94f26033db9c'}], 'typecode': '010400', 'shopinfo': '0', 'poiweight': [], 'childtype': [], 'adname': '容县', 'name': '宝雅汽修美容', 'location': '110.569833,22.842593', 'tel': '0775-5330255;13977525591', 'shopid': [], 'id': 'B0FFJ7BG0V'}, {'parent': [], 'address': '金旺路1号玉林红十字会', 'distance': [], 'pname': '广西壮族自治区', 'importance': [], 'biz_ext': {'cost': [], 'rating': '4.2'}, 'biz_type': [], 'cityname': '玉林市', 'type': '汽车维修;汽车综合维修;汽车综合维修', 'photos': [{'title': [], 'url': 'http://store.is.autonavi.com/showpic/39e2b036cbe0623e1ad224067f99d0ca'}, {'title': [], 'url': 'http://store.is.autonavi.com/showpic/f7ec63e040bd94d8c0f14d137eb55f47'}], 'typecode': '030100', 'shopinfo': '0', 'poiweight': [], 'childtype': [], 'adname': '玉州区', 'name': '广西玉林金旺路亿佳汽车维修厂', 'location': '110.186282,22.640504', 'tel': '13517752385', 'shopid': [], 'id': 'B0KAZHIFQ4'}, {'parent': [], 'address': '经济开发区人民东路南侧100米(玉林市国防教育训练基地斜对面)', 'distance': [], 'pname': '广西壮族自治区', 'importance': [], 'biz_ext': {'cost': [], 'rating': '4.8'}, 'biz_type': [], 'cityname': '玉林市', 'type': '汽车销售;汽车销售;汽车销售', 'photos': [{'title': [], 'url': 'http://store.is.autonavi.com/showpic/f8de92af4405de07e6d11c7257d624bc'}, {'title': [], 'url': 'http://store.is.autonavi.com/showpic/cd19c9dcfe39a9028476a0eac4e0ced3'}, {'title': [], 'url': 'https://aos-comment.amap.com/B0H3TZGLEO/comment/f68571d8f000c30c15f205f9777a7c00_2048_2048_80.jpg'}], 'typecode': '020000', 'shopinfo': '0', 'poiweight': [], 'childtype': [], 'adname': '玉州区', 'name': '广西玉林市正霖汽车销售服务有限公司', 'location': '110.191488,22.647609', 'tel': [], 'shopid': [], 'id': 'B0H3TZGLEO'}, {'parent': [], 'address': '玉州区经济开发区东区人民东路南侧10米', 'distance': [], 'pname': '广西壮族自治区', 'importance': [], 'biz_ext': {'cost': [], 'rating': '4.3'}, 'biz_type': [], 'cityname': '玉林市', 'type': '汽车销售;吉利特约销售;吉利销售|汽车维修;吉利特约维修;吉利维修', 'photos': [{'title': [], 'url': 'http://store.is.autonavi.com/showpic/0473febad97dbb4801e85a7cc1f714c0'}, {'title': [], 'url': 'http://aos-cdn-image.amap.com/sns/ugccomment/4fe0c874-910f-4eb9-b27d-809ab2cd279e.jpg'}, {'title': [], 'url': 'http://store.is.autonavi.com/showpic/d9c7f592ecb78c2510460888ec7fb4ca'}], 'typecode': '022300|032400', 'shopinfo': '1', 'poiweight': [], 'childtype': [], 'adname': '玉州区', 'name': '广西玉林甘霖汽车销售服务有限公司', 'location': '110.191497,22.647648', 'tel': '0775-2663688;0775-2668588', 'shopid': [], 'id': 'B0FFH3KS0J'}, {'parent': [], 'address': '人民南路108号', 'distance': [], 'pname': '广西壮族自治区', 'importance': [], 'biz_ext': {'cost': [], 'rating': '4.2'}, 'biz_type': [], 'cityname': '玉林市', 'type': '汽车维修;汽车维修;汽车维修', 'photos': [{'title': [], 'url': 'https://aos-comment.amap.com/B0HUPSNBLL/headerImg/d2e1d21897fd49b3036dfa3ce4610d5f_2048_2048_80.jpg'}, {'title': [], 'url': 'https://aos-comment.amap.com/B0HUPSNBLL/headerImg/0e174bcbce8a1e9b995725e8f01e7ba8_2048_2048_80.jpg'}, {'title': [], 'url': 'http://store.is.autonavi.com/showpic/cda54ab6fd5824f1be1f6e3ba1a0e128'}], 'typecode': '030000', 'shopinfo': '1', 'poiweight': [], 'childtype': [], 'adname': '博白县', 'name': '百捷汽车维修服务中心', 'location': '109.966960,22.223007', 'tel': '13635054266', 'shopid': [], 'id': 'B0HUPSNBLL'}, {'parent': [], 'address': '名木居(铁力木)手工艺家具厂西南侧', 'distance': [], 'pname': '广西壮族自治区', 'importance': [], 'biz_ext': {'cost': [], 'rating': '4.4'}, 'biz_type': [], 'cityname': '玉林市', 'type': '汽车维修;汽车综合维修;汽车综合维修', 'photos': [{'title': [], 'url': 'http://store.is.autonavi.com/showpic/0111b066450ae628c1a602f995513c39'}, {'title': [], 'url': 'http://store.is.autonavi.com/showpic/5f013862ee7e468ea7281f37f49644f9'}, {'title': [], 'url': 'http://store.is.autonavi.com/showpic/8b8bf4a5d895af66399af058f8efa0f5'}], 'typecode': '030100', 'shopinfo': '0', 'poiweight': [], 'childtype': [], 'adname': '玉州区', 'name': '祥辉汽车维修服务中心', 'location': '110.147617,22.672534', 'tel': '18176609722;18775584350', 'shopid': [], 'id': 'B0FFKXN9HF'}, {'parent': [], 'address': '金港路与苗园路交叉口北40米', 'distance': [], 'pname': '广西壮族自治区', 'importance': [], 'biz_ext': {'cost': [], 'rating': '4.3'}, 'biz_type': [], 'cityname': '玉林市', 'type': '汽车维修;汽车综合维修;汽车综合维修', 'photos': [{'title': [], 'url': 'http://store.is.autonavi.com/showpic/fa14474447d1766f6c082f3be7f48622'}], 'typecode': '030100', 'shopinfo': '0', 'poiweight': [], 'childtype': [], 'adname': '玉州区', 'name': '佳腾汽车维修服务中心', 'location': '110.179406,22.616023', 'tel': '13558057603', 'shopid': [], 'id': 'B0FFJ7BFHR'}, {'parent': [], 'address': '大南路131号健翔汽车', 'distance': [], 'pname': '广西壮族自治区', 'importance': [], 'biz_ext': {'cost': [], 'rating': '4.2'}, 'biz_type': [], 'cityname': '玉林市', 'type': '汽车销售;汽车销售;汽车销售', 'photos': [{'title': [], 'url': 'http://store.is.autonavi.com/showpic/d1fafa4c65ebdcc65105ba035f0f2277'}], 'typecode': '020000', 'shopinfo': '0', 'poiweight': [], 'childtype': [], 'adname': '玉州区', 'name': '广西健翔汽车服务有限公司', 'location': '110.146314,22.606103', 'tel': [], 'shopid': [], 'id': 'B0FFMALBD6'}, {'parent': [], 'address': '进士路209号', 'distance': [], 'pname': '广西壮族自治区', 'importance': [], 'biz_ext': {'cost': [], 'rating': '3.7'}, 'biz_type': [], 'cityname': '玉林市', 'type': '汽车维修;汽车维修;汽车维修', 'photos': [{'title': [], 'url': 'http://store.is.autonavi.com/showpic/e0f8d20ea8f4baae5c20ae3e7deace8f'}], 'typecode': '030000', 'shopinfo': '1', 'poiweight': [], 'childtype': [], 'adname': '玉州区', 'name': '旭禾汽车维修养护', 'location': '110.139014,22.639032', 'tel': [], 'shopid': [], 'id': 'B0KAYARFGE'}, {'parent': [], 'address': '城西禽畜批发市场北侧290米', 'distance': [], 'pname': '广西壮族自治区', 'importance': [], 'biz_ext': {'cost': [], 'rating': '3.6'}, 'biz_type': [], 'cityname': '玉林市', 'type': '汽车维修;汽车综合维修;汽车综合维修', 'photos': [], 'typecode': '030100', 'shopinfo': '0', 'poiweight': [], 'childtype': [], 'adname': '北流市', 'name': '车之宝汽车维修服务中心', 'location': '110.301250,22.699439', 'tel': [], 'shopid': [], 'id': 'B0KRN6B7T1'}, {'parent': [], 'address': '玉石路新定村味香园旁', 'distance': [], 'pname': '广西壮族自治区', 'importance': [], 'biz_ext': {'cost': [], 'rating': '4.5'}, 'biz_type': [], 'cityname': '玉林市', 'type': '汽车维修;货车维修;货车维修', 'photos': [{'title': [], 'url': 'http://store.is.autonavi.com/showpic/053e5632244ff0138c36514ee1900a31'}], 'typecode': '035000', 'shopinfo': '0', 'poiweight': [], 'childtype': [], 'adname': '玉州区', 'name': '玉林文福汽车维修特约服务站', 'location': '110.118530,22.628459', 'tel': '0775-2096289;13677757266', 'shopid': [], 'id': 'B0FFGYOG1M'}, {'parent': [], 'address': '温泉镇四良村六良队东环路西侧', 'distance': [], 'pname': '广西壮族自治区', 'importance': [], 'biz_ext': {'cost': [], 'rating': '4.1'}, 'biz_type': [], 'cityname': '玉林市', 'type': '汽车维修;汽车综合维修;汽车综合维修', 'photos': [{'title': [], 'url': 'http://store.is.autonavi.com/showpic/f9d867ae00f2e7cc27c43dba4415797a'}, {'title': [], 'url': 'http://store.is.autonavi.com/showpic/350554a9fe8486dab7af0c784b060c57'}, {'title': [], 'url': 'http://store.is.autonavi.com/showpic/269b93c4110d576942b727e2121d4228'}], 'typecode': '030100', 'shopinfo': '1', 'poiweight': [], 'childtype': [], 'adname': '陆川县', 'name': '笑林汽车维修服务中心', 'location': '110.283307,22.336315', 'tel': '17508999927', 'shopid': [], 'id': 'B0KGH73HYX'}, {'parent': [], 'address': '毅德商贸城新D区24栋8号', 'distance': [], 'pname': '广西壮族自治区', 'importance': [], 'biz_ext': {'cost': [], 'rating': '4.1'}, 'biz_type': [], 'cityname': '玉林市', 'type': '汽车维修;汽车维修;汽车维修', 'photos': [{'title': [], 'url': 'http://store.is.autonavi.com/showpic/d561b58346d90a8a18400e8d57d3e293'}, {'title': [], 'url': 'http://store.is.autonavi.com/showpic/b190c5c2ca18f6ad085a75ed2aede0eb'}, {'title': [], 'url': 'http://store.is.autonavi.com/showpic/79720e62c9b8374eed83ff86bd027f08'}], 'typecode': '030000', 'shopinfo': '1', 'poiweight': [], 'childtype': [], 'adname': '玉州区', 'name': '车府汽车维修服务', 'location': '110.129411,22.647274', 'tel': '13387750032', 'shopid': [], 'id': 'B0I66MFD0Q'}, {'parent': [], 'address': '玉博大道887号', 'distance': [], 'pname': '广西壮族自治区', 'importance': [], 'biz_ext': {'cost': [], 'rating': '4.2'}, 'biz_type': [], 'cityname': '玉林市', 'type': '汽车服务;汽车养护/装饰;汽车养护', 'photos': [{'title': [], 'url': 'http://store.is.autonavi.com/showpic/564ecc74302fbaa3f752e1744bb0ddd7'}, {'title': [], 'url': 'http://store.is.autonavi.com/showpic/a313443cd25482b4f6b3bd3b9ac8387c'}, {'title': [], 'url': 'http://store.is.autonavi.com/showpic/602c7594e8603529eceac956f9a4afd7'}], 'typecode': '010400', 'shopinfo': '1', 'poiweight': [], 'childtype': [], 'adname': '玉州区', 'name': '捷信汽车维修', 'location': '110.123718,22.593515', 'tel': '18775540253', 'shopid': [], 'id': 'B0FFLCZE21'}, {'parent': [], 'address': '城南二路', 'distance': [], 'pname': '广西壮族自治区', 'importance': [], 'biz_ext': {'cost': [], 'rating': '4.0'}, 'biz_type': [], 'cityname': '玉林市', 'type': '汽车维修;汽车维修;汽车维修', 'photos': [{'title': [], 'url': 'http://store.is.autonavi.com/showpic/c0deba086db265ab883d166e36fad607'}, {'title': [], 'url': 'http://store.is.autonavi.com/showpic/f6912bf118f028d5556e787a9e8b1382'}, {'title': [], 'url': 'http://store.is.autonavi.com/showpic/754c065cdf473f927192e7611bf5e503'}], 'typecode': '030000', 'shopinfo': '1', 'poiweight': [], 'childtype': [], 'adname': '北流市', 'name': '畅达汽车维修服务中心', 'location': '110.343791,22.671850', 'tel': '15807757068', 'shopid': [], 'id': 'B0FFL04X1D'}, {'parent': [], 'address': '北市镇二级公路佳车汽修', 'distance': [], 'pname': '广西壮族自治区', 'importance': [], 'biz_ext': {'cost': [], 'rating': '4.0'}, 'biz_type': [], 'cityname': '玉林市', 'type': '汽车维修;汽车维修;汽车维修', 'photos': [{'title': [], 'url': 'http://store.is.autonavi.com/showpic/d7d5e5740662945240dd84beeb585d60'}, {'title': [], 'url': 'http://store.is.autonavi.com/showpic/5a89ad9c7d5da7ecad684bad1d589767'}, {'title': [], 'url': 'http://store.is.autonavi.com/showpic/f077c414ccefa3d38e5c7b9871432884'}], 'typecode': '030000', 'shopinfo': '1', 'poiweight': [], 'childtype': [], 'adname': '兴业县', 'name': '佳车汽修', 'location': '110.074237,22.931950', 'tel': '13737555056', 'shopid': [], 'id': 'B0H6U5UJ27'}, {'parent': [], 'address': '-五联村成德130号泽源汽车维修', 'distance': [], 'pname': '广西壮族自治区', 'importance': [], 'biz_ext': {'cost': [], 'rating': '3.9'}, 'biz_type': [], 'cityname': '玉林市', 'type': '汽车维修;汽车维修;汽车维修', 'photos': [{'title': [], 'url': 'http://store.is.autonavi.com/showpic/b475e3582753776923e3d3702f17f52e'}, {'title': [], 'url': 'http://store.is.autonavi.com/showpic/3749efa7968b533d500d99a391e2623f'}, {'title': [], 'url': 'http://store.is.autonavi.com/showpic/172b9232bb1e85736101baecf100b70b'}], 'typecode': '030000', 'shopinfo': '1', 'poiweight': [], 'childtype': [], 'adname': '玉州区', 'name': '泽源汽车维修', 'location': '110.111690,22.602473', 'tel': '13737521871', 'shopid': [], 'id': 'B0HA6D8WSJ'}, {'parent': [], 'address': '大北路与莲塘路交叉口西120米', 'distance': [], 'pname': '广西壮族自治区', 'importance': [], 'biz_ext': {'cost': [], 'rating': '3.3'}, 'biz_type': [], 'cityname': '玉林市', 'type': '汽车维修;汽车维修;汽车维修', 'photos': [], 'typecode': '030000', 'shopinfo': '0', 'poiweight': [], 'childtype': [], 'adname': '玉州区', 'name': '壹佳汽车维修', 'location': '110.124577,22.636835', 'tel': [], 'shopid': [], 'id': 'B0KR69VNAW'}], 'status': '1', 'info': 'OK'}\n",
"{'suggestion': {'keywords': [], 'cities': []}, 'count': '450', 'infocode': '10000', 'pois': [{'parent': [], 'address': '南园一环南路0058-1号', 'distance': [], 'pname': '广西壮族自治区', 'importance': [], 'biz_ext': {'cost': [], 'rating': '3.7'}, 'biz_type': [], 'cityname': '玉林市', 'type': '汽车维修;汽车维修;汽车维修', 'photos': [{'title': [], 'url': 'http://store.is.autonavi.com/showpic/865ac17299e8d4f3311de9e90d949e85'}], 'typecode': '030000', 'shopinfo': '1', 'poiweight': [], 'childtype': [], 'adname': '北流市', 'name': '福众汽车维修服务部', 'location': '110.358106,22.694335', 'tel': '18775589069', 'shopid': [], 'id': 'B0GR2AAEJQ'}, {'parent': [], 'address': '金旺路2号', 'distance': [], 'pname': '广西壮族自治区', 'importance': [], 'biz_ext': {'cost': [], 'rating': '3.8'}, 'biz_type': [], 'cityname': '玉林市', 'type': '汽车维修;汽车维修;汽车维修', 'photos': [], 'typecode': '030000', 'shopinfo': '0', 'poiweight': [], 'childtype': [], 'adname': '玉州区', 'name': '玉林市诚通汽车维修服务有限公司', 'location': '110.185802,22.640838', 'tel': [], 'shopid': [], 'id': 'B0J0SZF1TK'}, {'parent': [], 'address': '城北一中路口往桂平方向100米', 'distance': [], 'pname': '广西壮族自治区', 'importance': [], 'biz_ext': {'cost': [], 'rating': '4.2'}, 'biz_type': [], 'cityname': '玉林市', 'type': '汽车维修;汽车维修;汽车维修', 'photos': [{'title': [], 'url': 'http://store.is.autonavi.com/showpic/382816c8d1d5d4e593a9ab64aa80d357'}, {'title': [], 'url': 'http://store.is.autonavi.com/showpic/a8399ccc29022e45899d89d8cf4b59d3'}, {'title': [], 'url': 'http://store.is.autonavi.com/showpic/a2f8c6c0c1ad95ddc22ac01e1f75584d'}], 'typecode': '030000', 'shopinfo': '1', 'poiweight': [], 'childtype': [], 'adname': '玉州区', 'name': '南北通汽车维修服务中心', 'location': '110.148924,22.682163', 'tel': '18178580537', 'shopid': [], 'id': 'B0H1ZZ7XS5'}, {'parent': [], 'address': '玉博大道原大转盘运生公司', 'distance': [], 'pname': '广西壮族自治区', 'importance': [], 'biz_ext': {'cost': [], 'rating': '4.2'}, 'biz_type': [], 'cityname': '玉林市', 'type': '汽车维修;汽车维修;汽车维修', 'photos': [{'title': [], 'url': 'http://store.is.autonavi.com/showpic/3e0c5d86725ace025731f72e9d2aa9b3'}], 'typecode': '030000', 'shopinfo': '0', 'poiweight': [], 'childtype': [], 'adname': '玉州区', 'name': '玉林富云汽车维修厂', 'location': '110.124374,22.615499', 'tel': '13877587833', 'shopid': [], 'id': 'B0FFL63M9T'}, {'parent': [], 'address': '民乐镇民北路141号宏强汽车维修部', 'distance': [], 'pname': '广西壮族自治区', 'importance': [], 'biz_ext': {'cost': [], 'rating': '3.9'}, 'biz_type': [], 'cityname': '玉林市', 'type': '汽车维修;汽车维修;汽车维修', 'photos': [{'title': [], 'url': 'http://store.is.autonavi.com/showpic/c277f51fb75a2f05d627fd3195f5dfb9'}, {'title': [], 'url': 'http://store.is.autonavi.com/showpic/ddaf1405654f9fc7b5c8a0277edb96d5'}, {'title': [], 'url': 'http://store.is.autonavi.com/showpic/6a3f8068a8acea727b15a8b40a74086e'}], 'typecode': '030000', 'shopinfo': '1', 'poiweight': [], 'childtype': [], 'adname': '北流市', 'name': '宏强汽车维修部', 'location': '110.352934,22.769462', 'tel': '13977536637', 'shopid': [], 'id': 'B0FFJIHEKJ'}, {'parent': [], 'address': '经济开发区机械工业园', 'distance': [], 'pname': '广西壮族自治区', 'importance': [], 'biz_ext': {'cost': [], 'rating': '4.0'}, 'biz_type': [], 'cityname': '玉林市', 'type': '汽车维修;汽车维修;汽车维修', 'photos': [{'title': [], 'url': 'http://store.is.autonavi.com/showpic/cc7d8e2a62c355583000173df9b6c341'}], 'typecode': '030000', 'shopinfo': '0', 'poiweight': [], 'childtype': [], 'adname': '容县', 'name': '腾达汽车维修中心', 'location': '110.583105,22.840139', 'tel': '18897651915', 'shopid': [], 'id': 'B0I62DGBOG'}, {'parent': [], 'address': '城站路89号(风格宾馆旁直入30米)', 'distance': [], 'pname': '广西壮族自治区', 'importance': [], 'biz_ext': {'cost': [], 'rating': '4.5'}, 'biz_type': [], 'cityname': '玉林市', 'type': '汽车维修;汽车维修;汽车维修', 'photos': [{'title': [], 'url': 'http://store.is.autonavi.com/showpic/3af26c48659364c0758610872d83e930'}, {'title': [], 'url': 'http://store.is.autonavi.com/showpic/2e8ae1f6a8ce99907e1f6439df250f53'}], 'typecode': '030000', 'shopinfo': '0', 'poiweight': [], 'childtype': [], 'adname': '玉州区', 'name': '玉林市富云汽车维修厂', 'location': '110.158350,22.604860', 'tel': '13877587833', 'shopid': [], 'id': 'B0FFJOYMK9'}, {'parent': [], 'address': '博白镇王力大道001号', 'distance': [], 'pname': '广西壮族自治区', 'importance': [], 'biz_ext': {'cost': [], 'rating': '4.2'}, 'biz_type': [], 'cityname': '玉林市', 'type': '汽车服务;汽车养护/装饰;汽车养护|汽车维修;汽车维修;汽车维修', 'photos': [{'title': [], 'url': 'http://store.is.autonavi.com/showpic/63fcabcd74719952123e3982736bf321'}, {'title': [], 'url': 'http://store.is.autonavi.com/showpic/b80e2259024faa530fe534f6419f0625'}, {'title': [], 'url': 'http://store.is.autonavi.com/showpic/71e45a5ee8ee8f007d6c58e5bda2d16e'}], 'typecode': '010400|030000', 'shopinfo': '1', 'poiweight': [], 'childtype': [], 'adname': '博白县', 'name': '宏途一站式汽车维修厂', 'location': '110.000646,22.278282', 'tel': '18776425841', 'shopid': [], 'id': 'B0K2THVZT1'}, {'parent': [], 'address': '玉福路与二环西路交叉口', 'distance': [], 'pname': '广西壮族自治区', 'importance': [], 'biz_ext': {'cost': [], 'rating': '3.6'}, 'biz_type': [], 'cityname': '玉林市', 'type': '汽车维修;汽车维修;汽车维修', 'photos': [{'title': [], 'url': 'http://store.is.autonavi.com/showpic/fae5e1f4705024fa66da142848d25da2'}, {'title': [], 'url': 'http://store.is.autonavi.com/showpic/24d38da0a6b2b6938a1e865a21920d63'}], 'typecode': '030000', 'shopinfo': '0', 'poiweight': [], 'childtype': [], 'adname': '玉州区', 'name': '众信汽车维修服务中心', 'location': '110.103792,22.601455', 'tel': [], 'shopid': [], 'id': 'B0IDAZ1QZ5'}, {'parent': [], 'address': '胜利花园东大门旁', 'distance': [], 'pname': '广西壮族自治区', 'importance': [], 'biz_ext': {'cost': [], 'rating': '4.6'}, 'biz_type': [], 'cityname': '玉林市', 'type': '汽车维修;汽车维修;汽车维修', 'photos': [{'title': [], 'url': 'http://store.is.autonavi.com/showpic/545b5ba240ed3feedd579f01a47d075e'}], 'typecode': '030000', 'shopinfo': '0', 'poiweight': [], 'childtype': [], 'adname': '玉州区', 'name': '爱车之家汽车维修服务部', 'location': '110.179154,22.638305', 'tel': '13217854689', 'shopid': [], 'id': 'B0HDGLN4OT'}, {'parent': [], 'address': '民主南路辅路与工业大道交叉口东220米', 'distance': [], 'pname': '广西壮族自治区', 'importance': [], 'biz_ext': {'cost': [], 'rating': '3.5'}, 'biz_type': [], 'cityname': '玉林市', 'type': '汽车维修;汽车综合维修;汽车综合维修', 'photos': [], 'typecode': '030100', 'shopinfo': '0', 'poiweight': [], 'childtype': [], 'adname': '玉州区', 'name': '广西通捷汽车维修有限公司', 'location': '110.187425,22.582575', 'tel': [], 'shopid': [], 'id': 'B0LBFDYY2S'}, {'parent': [], 'address': '教育东路辅路', 'distance': [], 'pname': '广西壮族自治区', 'importance': [], 'biz_ext': {'cost': [], 'rating': '4.4'}, 'biz_type': [], 'cityname': '玉林市', 'type': '汽车维修;汽车维修;汽车维修', 'photos': [{'title': [], 'url': 'http://store.is.autonavi.com/showpic/ff169f374d7561f8dcf15f3d436546be'}], 'typecode': '030000', 'shopinfo': '1', 'poiweight': [], 'childtype': [], 'adname': '玉州区', 'name': '玉林金标汽车维修服务有限公司', 'location': '110.182449,22.657983', 'tel': '13457570758', 'shopid': [], 'id': 'B0FFJ4XGE5'}, {'parent': [], 'address': '马路圩科目三考场斜对面', 'distance': [], 'pname': '广西壮族自治区', 'importance': [], 'biz_ext': {'cost': [], 'rating': '4.0'}, 'biz_type': [], 'cityname': '玉林市', 'type': '汽车维修;汽车维修;汽车维修', 'photos': [{'title': [], 'url': 'http://store.is.autonavi.com/showpic/98e68c679cc0c5c43bb3792e430e5dd9'}, {'title': [], 'url': 'https://aos-comment.amap.com/B0K2Y5SY2Z/comment/0feedback_sendimag_1751534581543_66032264.jpg'}, {'title': [], 'url': 'http://store.is.autonavi.com/showpic/ce9fc3f3f0cde50fbbf90b5b1e5c7491'}], 'typecode': '030000', 'shopinfo': '0', 'poiweight': [], 'childtype': [], 'adname': '陆川县', 'name': '亚宏汽车维修厂', 'location': '110.176356,22.559470', 'tel': '18377501966', 'shopid': [], 'id': 'B0K2Y5SY2Z'}, {'parent': [], 'address': '313省道', 'distance': [], 'pname': '广西壮族自治区', 'importance': [], 'biz_ext': {'cost': [], 'rating': '3.8'}, 'biz_type': [], 'cityname': '玉林市', 'type': '汽车维修;汽车维修;汽车维修', 'photos': [{'title': [], 'url': 'http://store.is.autonavi.com/showpic/16dc6c70d834006712516d4cdbe6138c'}, {'title': [], 'url': 'http://store.is.autonavi.com/showpic/0dbe5470a880916ff80614061fd54e60'}], 'typecode': '030000', 'shopinfo': '0', 'poiweight': [], 'childtype': [], 'adname': '博白县', 'name': '车之道汽车维修服务中心', 'location': '109.927724,21.849641', 'tel': '13978809117', 'shopid': [], 'id': 'B0HRNSX0BL'}, {'parent': [], 'address': '白马龙湾路口众信汽车维修服务中心', 'distance': [], 'pname': '广西壮族自治区', 'importance': [], 'biz_ext': {'cost': [], 'rating': '4.3'}, 'biz_type': [], 'cityname': '玉林市', 'type': '汽车维修;汽车维修;汽车维修', 'photos': [{'title': [], 'url': 'http://store.is.autonavi.com/showpic/8348d233cc1f592394794de9a58cfa2b'}, {'title': [], 'url': 'http://store.is.autonavi.com/showpic/6e6a01240bedbbef4289cbbba1504817'}, {'title': [], 'url': 'http://store.is.autonavi.com/showpic/2b12f49625d0282b431f9151ebef36af'}], 'typecode': '030000', 'shopinfo': '1', 'poiweight': [], 'childtype': [], 'adname': '北流市', 'name': '众信车业服务中心', 'location': '110.674929,22.326549', 'tel': '18077588709;19897927488', 'shopid': [], 'id': 'B0FFL3G6LQ'}, {'parent': [], 'address': '万秀路296号', 'distance': [], 'pname': '广西壮族自治区', 'importance': [], 'biz_ext': {'cost': [], 'rating': '4.4'}, 'biz_type': [], 'cityname': '玉林市', 'type': '汽车维修;汽车维修;汽车维修', 'photos': [{'title': [], 'url': 'http://store.is.autonavi.com/showpic/ca4f72fbe5b2b76490d4f9cfd105591a'}, {'title': [], 'url': 'http://store.is.autonavi.com/showpic/3fb38d1f986f88e82b5180b51a13f8a6'}, {'title': [], 'url': 'http://store.is.autonavi.com/showpic/9f8271893903c2de063839a0f15e15ac'}], 'typecode': '030000', 'shopinfo': '1', 'poiweight': [], 'childtype': [], 'adname': '玉州区', 'name': '快捷名车维修', 'location': '110.166623,22.601573', 'tel': '18078709058;18260905993', 'shopid': [], 'id': 'B0HKU7Z5G2'}, {'parent': [], 'address': '塘岸镇独竹开发区新塘岸路口', 'distance': [], 'pname': '广西壮族自治区', 'importance': [], 'biz_ext': {'cost': [], 'rating': '4.3'}, 'biz_type': [], 'cityname': '玉林市', 'type': '汽车维修;汽车维修;汽车维修', 'photos': [{'title': [], 'url': 'http://store.is.autonavi.com/showpic/5e072fda6f8d02ab1c31b4164ae0470e'}, {'title': [], 'url': 'http://aos-cdn-image.amap.com/sns/ugccomment/11a5bd3e-2f23-4910-a670-8885676e0aae.jpg'}, {'title': [], 'url': 'http://store.is.autonavi.com/showpic/dee44629b7a999d648c3b304c6c6cccd'}], 'typecode': '030000', 'shopinfo': '0', 'poiweight': [], 'childtype': [], 'adname': '北流市', 'name': '业运汽车维修部', 'location': '110.337816,22.654172', 'tel': '18607860706', 'shopid': [], 'id': 'B0H1XD47E6'}, {'parent': [], 'address': '城东路188号', 'distance': [], 'pname': '广西壮族自治区', 'importance': [], 'biz_ext': {'cost': [], 'rating': '4.3'}, 'biz_type': [], 'cityname': '玉林市', 'type': '汽车维修;汽车维修;汽车维修', 'photos': [{'title': [], 'url': 'http://store.is.autonavi.com/showpic/c72f413643011aea1457326bf3977e6f'}], 'typecode': '030000', 'shopinfo': '0', 'poiweight': [], 'childtype': [], 'adname': '博白县', 'name': '威名汽车维修服务中心', 'location': '109.989060,22.258419', 'tel': '15977534294', 'shopid': [], 'id': 'B0KK7RQLPM'}, {'parent': [], 'address': '二环北路与城北一路交叉口西南280米', 'distance': [], 'pname': '广西壮族自治区', 'importance': [], 'biz_ext': {'cost': [], 'rating': '4.4'}, 'biz_type': [], 'cityname': '玉林市', 'type': '汽车维修;汽车综合维修;汽车综合维修', 'photos': [{'title': [], 'url': 'http://store.is.autonavi.com/showpic/5b427a9c0c42be5f656eb41cc78bf967'}, {'title': [], 'url': 'http://store.is.autonavi.com/showpic/68b3c8f82e1c2591a88652416c54d31a'}], 'typecode': '030100', 'shopinfo': '0', 'poiweight': [], 'childtype': [], 'adname': '北流市', 'name': '富之源汽车维修中心', 'location': '110.341123,22.716729', 'tel': '13500185701;15277753570', 'shopid': [], 'id': 'B0FFHXOJ1U'}, {'parent': [], 'address': '金旺旺商贸城B4区1号9号楼', 'distance': [], 'pname': '广西壮族自治区', 'importance': [], 'biz_ext': {'cost': [], 'rating': []}, 'biz_type': [], 'cityname': '玉林市', 'type': '汽车销售;汽车销售;汽车销售', 'photos': [{'title': [], 'url': 'http://store.is.autonavi.com/showpic/1cee6247f7ca4aba9f9e4d0ca6fccccd'}, {'title': [], 'url': 'http://store.is.autonavi.com/showpic/320297995a5145a08de10cf3ecf22c54'}, {'title': [], 'url': 'http://store.is.autonavi.com/showpic/82e92110bb8046b49a103e41b581cf60'}], 'typecode': '020000', 'shopinfo': '0', 'poiweight': [], 'childtype': [], 'adname': '北流市', 'name': '北流市益宏汽车销售服务有限公司', 'location': '110.361564,22.687361', 'tel': '0775-6600100', 'shopid': [], 'id': 'B0LR5Y8Z4O'}], 'status': '1', 'info': 'OK'}\n",
"{'suggestion': {'keywords': [], 'cities': []}, 'count': '450', 'infocode': '10000', 'pois': [{'parent': [], 'address': '宜兴经济技术开发区融达汽车城19幢802号', 'distance': [], 'pname': '江苏省', 'importance': [], 'biz_ext': {'cost': [], 'rating': '3.9'}, 'biz_type': [], 'cityname': '无锡市', 'type': '汽车维修;汽车维修;汽车维修', 'photos': [{'title': [], 'url': 'http://store.is.autonavi.com/showpic/08801b53d0906cc47bf5a88579b9c5ca'}, {'title': [], 'url': 'http://store.is.autonavi.com/showpic/300075fd87f626ca2dd36d3ca2b18e24'}, {'title': [], 'url': 'http://store.is.autonavi.com/showpic/2ab864d24286e49332861cfabb8c6acb'}], 'typecode': '030000', 'shopinfo': '1', 'poiweight': [], 'childtype': [], 'adname': '宜兴市', 'name': '驰顺汽车维修有限公司', 'location': '119.788946,31.382459', 'tel': '15061596111', 'shopid': [], 'id': 'B0FFKPPMYI'}, {'parent': [], 'address': '经济技术开发区赛特大道188号', 'distance': [], 'pname': '江苏省', 'importance': [], 'biz_ext': {'cost': [], 'rating': '4.8'}, 'biz_type': [], 'cityname': '无锡市', 'type': '汽车销售;奥迪特约销售;一汽-大众奥迪销售|汽车维修;奥迪特约维修;一汽-大众奥迪维修', 'photos': [{'title': [], 'url': 'http://store.is.autonavi.com/showpic/b5c5f5bb490b85d5d8a3ec7d07a23fbd'}, {'title': [], 'url': 'https://aos-comment.amap.com/B01FE16TWP/comment/51daac8227d98b219944f38f801f61eb_2048_2048_80.jpg'}, {'title': [], 'url': 'https://aos-comment.amap.com/B01FE16TWP/comment/d391867b7f7bd9e9332695f50409e8c7_2048_2048_80.jpg'}], 'typecode': '020301|030401', 'shopinfo': '1', 'poiweight': [], 'childtype': [], 'adname': '宜兴市', 'name': '宜兴德同汽车有限公司', 'location': '119.811338,31.411356', 'tel': '0510-81750000;0510-81770000;0510-87210000', 'shopid': [], 'id': 'B01FE16TWP'}, {'parent': [], 'address': '梅园路669号', 'distance': [], 'pname': '江苏省', 'importance': [], 'biz_ext': {'cost': [], 'rating': '4.3'}, 'biz_type': [], 'cityname': '无锡市', 'type': '汽车维修;汽车维修;汽车维修', 'photos': [{'title': [], 'url': 'http://store.is.autonavi.com/showpic/fc4f13f2bd4435c2653149e2f2695af7'}, {'title': [], 'url': 'http://store.is.autonavi.com/showpic/a9457d16237d3b9cba7f61f567b281e4'}], 'typecode': '030000', 'shopinfo': '1', 'poiweight': [], 'childtype': [], 'adname': '江阴市', 'name': '万家富汽车维修有限公司', 'location': '120.266865,31.861082', 'tel': '0510-80282777;13771610385', 'shopid': [], 'id': 'B0FFHTM51Z'}, {'parent': [], 'address': '锡港路356号', 'distance': [], 'pname': '江苏省', 'importance': [], 'biz_ext': {'cost': [], 'rating': '4.1'}, 'biz_type': [], 'cityname': '无锡市', 'type': '汽车维修;汽车维修;汽车维修', 'photos': [{'title': [], 'url': 'http://store.is.autonavi.com/showpic/b3024a4aa01416658780705df7c38237'}, {'title': [], 'url': 'http://store.is.autonavi.com/showpic/460ef5f3e610ee7cdee9f1676a0602b1'}, {'title': [], 'url': 'http://store.is.autonavi.com/showpic/b352c1b1b08a33045f51f8eb37a221b9'}], 'typecode': '030000', 'shopinfo': '1', 'poiweight': [], 'childtype': [], 'adname': '梁溪区', 'name': '权峰汽车维修', 'location': '120.330891,31.610906', 'tel': [], 'shopid': [], 'id': 'B0KDY5WOWD'}, {'parent': [], 'address': '龙潭东路', 'distance': [], 'pname': '江苏省', 'importance': [], 'biz_ext': {'cost': [], 'rating': '4.7'}, 'biz_type': [], 'cityname': '无锡市', 'type': '汽车服务;洗车场;洗车场|汽车服务;汽车养护/装饰;汽车养护|汽车维修;汽车维修;汽车维修', 'photos': [{'title': [], 'url': 'http://store.is.autonavi.com/showpic/3176c2ff9070fe93506f92501e0d3ea6'}, {'title': [], 'url': 'http://store.is.autonavi.com/showpic/b6de99ad2d130e8482619a4e15a850df'}, {'title': [], 'url': 'http://store.is.autonavi.com/showpic/ff809ed997a31adf530348730dd9b071'}], 'typecode': '010500|010400|030000', 'shopinfo': '1', 'poiweight': [], 'childtype': [], 'adname': '宜兴市', 'name': '宜兴市利领行汽车服务有限公司', 'location': '119.839217,31.347481', 'tel': '15295400007', 'shopid': [], 'id': 'B0IKRRNYKO'}, {'parent': [], 'address': '金城东路290号东方汽车城A4座', 'distance': [], 'pname': '江苏省', 'importance': [], 'biz_ext': {'cost': [], 'rating': '4.0'}, 'biz_type': [], 'cityname': '无锡市', 'type': '汽车销售;大众特约销售;上海大众销售|汽车维修;大众特约维修;上海大众维修', 'photos': [{'title': [], 'url': 'http://store.is.autonavi.com/showpic/259e7d81f7f5e642ec2b0f9d8d1996a1'}, {'title': [], 'url': 'http://store.is.autonavi.com/showpic/8f478a1f86e5cb1780c90d3d1d328d48'}, {'title': [], 'url': 'http://store.is.autonavi.com/showpic/64fc89abaf450aeeb91bbcfbbdb84e96'}], 'typecode': '020101|030201', 'shopinfo': '0', 'poiweight': [], 'childtype': [], 'adname': '新吴区', 'name': '无锡东方誉众汽车销售服务有限公司', 'location': '120.403362,31.565315', 'tel': '0510-82117222;0510-82125933', 'shopid': [], 'id': 'B0J3CZ3BHG'}, {'parent': [], 'address': '塔影苑58-2(上马墩地铁站3号口步行420米)', 'distance': [], 'pname': '江苏省', 'importance': [], 'biz_ext': {'cost': [], 'rating': '4.9'}, 'biz_type': [], 'cityname': '无锡市', 'type': '汽车服务;汽车养护/装饰;汽车养护', 'photos': [{'title': [], 'url': 'http://store.is.autonavi.com/showpic/ffc9bee0f15e2cdb2ba2747b642b9218'}, {'title': [], 'url': 'http://store.is.autonavi.com/query_pic?id=st1cf96fa0-c092-4720-b160-5ce19db723f6&user=search&operate=original'}, {'title': [], 'url': 'https://aos-comment.amap.com/B01FE0K78P/comment/IMG_20241202_090628_tem_1733101601142_57752457.jpg'}], 'typecode': '010400', 'shopinfo': '1', 'poiweight': [], 'childtype': [], 'adname': '梁溪区', 'name': '驰加汽车服务中心(梁溪区市塔影苑店)', 'location': '120.325203,31.583192', 'tel': '13771079019;18901517771', 'shopid': [], 'id': 'B01FE0K78P'}, {'parent': [], 'address': '巷头东路51号', 'distance': [], 'pname': '江苏省', 'importance': [], 'biz_ext': {'cost': [], 'rating': '4.7'}, 'biz_type': [], 'cityname': '无锡市', 'type': '汽车维修;汽车综合维修;汽车综合维修', 'photos': [{'title': [], 'url': 'http://store.is.autonavi.com/showpic/dd4da5dee0aa65d06e1ce8647bbbeb21'}], 'typecode': '030100', 'shopinfo': '0', 'poiweight': [], 'childtype': [], 'adname': '宜兴市', 'name': '宜港汽车维修有限公司', 'location': '119.832418,31.380989', 'tel': '0510-66566666', 'shopid': [], 'id': 'B01FE1E85R'}, {'parent': [], 'address': '鹅洲南路495号', 'distance': [], 'pname': '江苏省', 'importance': [], 'biz_ext': {'cost': [], 'rating': '3.8'}, 'biz_type': [], 'cityname': '无锡市', 'type': '汽车维修;汽车综合维修;汽车综合维修', 'photos': [{'title': [], 'url': 'http://store.is.autonavi.com/showpic/3f1ebc0eae294811cf47714ced6da431'}, {'title': [], 'url': 'http://store.is.autonavi.com/showpic/adfce77f158b12511b2cbb184b2c9428'}], 'typecode': '030100', 'shopinfo': '0', 'poiweight': [], 'childtype': [], 'adname': '宜兴市', 'name': '富陶安捷汽车维修', 'location': '119.898629,31.475573', 'tel': '13915392811', 'shopid': [], 'id': 'B0FFFRYOX5'}, {'parent': [], 'address': '经济技术开发区国际汽车创意城', 'distance': [], 'pname': '江苏省', 'importance': [], 'biz_ext': {'cost': [], 'rating': '3.8'}, 'biz_type': [], 'cityname': '无锡市', 'type': '汽车销售;路虎特约销售;路虎销售|汽车销售;捷豹特约销售;捷豹销售|汽车维修;路虎特约维修;路虎维修|汽车维修;捷豹特约维修;捷豹维修', 'photos': [{'title': [], 'url': 'http://store.is.autonavi.com/showpic/d6acefd6ea6e94fa7bf90920da3bfbfe'}, {'title': [], 'url': 'http://store.is.autonavi.com/showpic/7fb7c1007be0100061b2ac179a2fa7b7'}, {'title': [], 'url': 'http://store.is.autonavi.com/showpic/ce1da6e7c094835371c5c1542e84cbe7'}], 'typecode': '022000|021900|032100|032000', 'shopinfo': '0', 'poiweight': [], 'childtype': [], 'adname': '宜兴市', 'name': '捷豹路虎汽车(宜兴路德行店)', 'location': '119.809669,31.411569', 'tel': '0510-81779888;0510-81779899', 'shopid': [], 'id': 'B0FFFA59ZL'}, {'parent': [], 'address': '澄江街道东外环路588号(芙蓉大道与东外环路交界处)', 'distance': [], 'pname': '江苏省', 'importance': [], 'biz_ext': {'cost': [], 'rating': '4.6'}, 'biz_type': [], 'cityname': '无锡市', 'type': '汽车销售;汽车销售;汽车销售|汽车维修;汽车维修;汽车维修', 'photos': [{'title': [], 'url': 'http://store.is.autonavi.com/showpic/661ac311d67bc1c07b1c8c6b1799de28'}, {'title': [], 'url': 'http://store.is.autonavi.com/showpic/62e2411c643c35afafd48e9e7349e1cf'}, {'title': [], 'url': 'http://store.is.autonavi.com/showpic/e0db0813160f0f960274914ceff265d4'}], 'typecode': '020000|030000', 'shopinfo': '0', 'poiweight': [], 'childtype': [], 'adname': '江阴市', 'name': '江阴市海鹏嘉通汽车销售服务有限公司', 'location': '120.320146,31.888623', 'tel': '0510-86352288', 'shopid': [], 'id': 'B0J1R7OHQV'}, {'parent': 'B0FFFW0JL3', 'address': '五湖大道116号红星美凯龙滨湖至尊mall东1门右侧下地库直行', 'distance': [], 'pname': '江苏省', 'importance': [], 'biz_ext': {'cost': [], 'rating': '4.0'}, 'biz_type': [], 'cityname': '无锡市', 'type': '汽车服务;汽车养护/装饰;汽车养护|汽车服务;洗车场;洗车场|汽车维修;汽车维修;汽车维修', 'photos': [{'title': [], 'url': 'http://aos-cdn-image.amap.com/sns/ugccomment/d9377075-ff95-41fb-a96f-3fc4e420b866.jpg'}, {'title': [], 'url': 'https://aos-comment.amap.com/B0FFJPRX9W/comment/424a4906b457259bc7ce49ca0ab334a7_2048_2048_80.jpg'}, {'title': [], 'url': 'https://aos-comment.amap.com/B0FFJPRX9W/comment/56b51e89fddcdf06e2aeea2f90ad461d_2048_2048_80.jpg'}], 'typecode': '010400|010500|030000', 'shopinfo': '0', 'poiweight': [], 'childtype': '202', 'adname': '滨湖区', 'name': '车之道-汽车一站式服务中心', 'location': '120.289250,31.492683', 'tel': '17306118829;17312796327', 'shopid': [], 'id': 'B0FFJPRX9W'}, {'parent': [], 'address': '阳泉西路1001号融达汽车城11幢801号', 'distance': [], 'pname': '江苏省', 'importance': [], 'biz_ext': {'cost': [], 'rating': '4.5'}, 'biz_type': [], 'cityname': '无锡市', 'type': '汽车销售;吉利特约销售;沃尔沃销售|汽车维修;吉利特约维修;沃尔沃维修', 'photos': [{'title': [], 'url': 'http://store.is.autonavi.com/showpic/8ba0222a6e3fca4b753b7ab060d15e7c'}, {'title': [], 'url': 'http://store.is.autonavi.com/showpic/ad1ea0f9f0ebc5be5465c4e2bdf34ebc'}], 'typecode': '022301|032401', 'shopinfo': '0', 'poiweight': [], 'childtype': [], 'adname': '宜兴市', 'name': '宜兴东方沃邦汽车销售服务有限公司', 'location': '119.788348,31.379599', 'tel': '0510-80783666;0510-80783999', 'shopid': [], 'id': 'B0FFHE7MQ2'}, {'parent': [], 'address': '澄杨路79号', 'distance': [], 'pname': '江苏省', 'importance': [], 'biz_ext': {'cost': [], 'rating': '4.3'}, 'biz_type': [], 'cityname': '无锡市', 'type': '汽车销售;汽车销售;汽车销售', 'photos': [{'title': [], 'url': 'https://aos-comment.amap.com/B0KUFKV74W/comment/0feedback_sendimag_1737272451464_26066048.jpg'}, {'title': [], 'url': 'http://store.is.autonavi.com/showpic/abcef46492115046e27b199949753bd8'}, {'title': [], 'url': 'http://store.is.autonavi.com/showpic/6bb67d5af3abc1926d6c0657a5e8801e'}], 'typecode': '020000', 'shopinfo': '0', 'poiweight': [], 'childtype': [], 'adname': '江阴市', 'name': '无锡伴行汽车销售服务有限公司', 'location': '120.316542,31.884514', 'tel': [], 'shopid': [], 'id': 'B0KUFKV74W'}, {'parent': [], 'address': '宜兴经济技术开发区融达汽车城6幢836号', 'distance': [], 'pname': '江苏省', 'importance': [], 'biz_ext': {'cost': [], 'rating': '3.9'}, 'biz_type': [], 'cityname': '无锡市', 'type': '汽车维修;汽车维修;汽车维修', 'photos': [{'title': [], 'url': 'http://store.is.autonavi.com/showpic/d8ba66b15ba56526dbfbf54a5b759268'}], 'typecode': '030000', 'shopinfo': '0', 'poiweight': [], 'childtype': [], 'adname': '宜兴市', 'name': '宜兴兴宝行', 'location': '119.787514,31.384376', 'tel': [], 'shopid': [], 'id': 'B0GK1R1R7O'}, {'parent': [], 'address': '东大道1888号(一汽奥迪4S店上汽奥迪授权服务商)', 'distance': [], 'pname': '江苏省', 'importance': [], 'biz_ext': {'cost': [], 'rating': '4.6'}, 'biz_type': [], 'cityname': '无锡市', 'type': '汽车销售;奥迪特约销售;一汽-大众奥迪销售|汽车维修;奥迪特约维修;一汽-大众奥迪维修', 'photos': [{'title': [], 'url': 'http://store.is.autonavi.com/showpic/f8abd871290a87d65b2004a860e9b529'}, {'title': [], 'url': 'https://aos-comment.amap.com/B01FE18R73/headerImg/4bf87866381e2cd3d1fe97fa4014eca1_2048_2048_80.jpg'}, {'title': [], 'url': 'http://store.is.autonavi.com/showpic/efd05b3a5e04a574ac9694bb0114c78e'}], 'typecode': '020301|030401', 'shopinfo': '0', 'poiweight': [], 'childtype': [], 'adname': '新吴区', 'name': '无锡德尔汽车有限公司', 'location': '120.376403,31.574226', 'tel': '0510-88271000', 'shopid': [], 'id': 'B01FE18R73'}, {'parent': [], 'address': '澄杨路59号', 'distance': [], 'pname': '江苏省', 'importance': [], 'biz_ext': {'cost': [], 'rating': '4.2'}, 'biz_type': [], 'cityname': '无锡市', 'type': '汽车维修;汽车维修;汽车维修|汽车销售;汽车销售;汽车销售', 'photos': [{'title': [], 'url': 'http://store.is.autonavi.com/showpic/9ac5673858ef3b808d7d3f86e485221f'}, {'title': '店头照片', 'url': 'http://store.is.autonavi.com/showpic/e745542b5cd7221db054284a472aa0eb'}, {'title': '销售展厅照片', 'url': 'http://store.is.autonavi.com/showpic/861038cf52dad29117df567bb5430515'}], 'typecode': '030000|020000', 'shopinfo': '0', 'poiweight': [], 'childtype': [], 'adname': '江阴市', 'name': '江阴市海华汽车销售服务有限公司', 'location': '120.313564,31.883935', 'tel': '0510-86260706;0510-86260709', 'shopid': [], 'id': 'B0KKVBYHU2'}, {'parent': [], 'address': '镇澄路371号', 'distance': [], 'pname': '江苏省', 'importance': [], 'biz_ext': {'cost': [], 'rating': '4.1'}, 'biz_type': [], 'cityname': '无锡市', 'type': '汽车维修;汽车维修;汽车维修', 'photos': [{'title': [], 'url': 'http://store.is.autonavi.com/showpic/3200c256ad79c59a0cc4ce3838bf70d3'}, {'title': [], 'url': 'https://aos-comment.amap.com/B0IGU7025R/comment/content_media_external_images_media_100003694_1738077705950_87478558.jpg'}, {'title': [], 'url': 'http://store.is.autonavi.com/showpic/5d80f19f29cc081081d4f47fe50485f6'}], 'typecode': '030000', 'shopinfo': '0', 'poiweight': [], 'childtype': [], 'adname': '江阴市', 'name': '江阴耀光汽车维修有限公司', 'location': '120.220168,31.894856', 'tel': '13961676222', 'shopid': [], 'id': 'B0IGU7025R'}, {'parent': [], 'address': '八士友谊北路和锡港路路口', 'distance': [], 'pname': '江苏省', 'importance': [], 'biz_ext': {'cost': [], 'rating': '4.5'}, 'biz_type': [], 'cityname': '无锡市', 'type': '汽车维修;汽车综合维修;汽车综合维修|汽车服务;汽车服务相关;汽车服务相关', 'photos': [{'title': [], 'url': 'http://store.is.autonavi.com/showpic/697d5a97b0d8d9a00c165c1ddd5b9567'}, {'title': [], 'url': 'http://store.is.autonavi.com/showpic/ce73d038aae6f0fe4893568df7e40f97'}, {'title': [], 'url': 'http://store.is.autonavi.com/showpic/eff0e256d030abbcba0b1f5cfb8bcafb'}], 'typecode': '030100|010000', 'shopinfo': '0', 'poiweight': [], 'childtype': [], 'adname': '锡山区', 'name': '无锡市兴发汽车维修有限公司', 'location': '120.377030,31.642034', 'tel': '0510-83781188', 'shopid': [], 'id': 'B01FE0K90Y'}, {'parent': [], 'address': '环西路858号', 'distance': [], 'pname': '江苏省', 'importance': [], 'biz_ext': {'cost': [], 'rating': '4.1'}, 'biz_type': [], 'cityname': '无锡市', 'type': '汽车维修;汽车维修;汽车维修', 'photos': [{'title': [], 'url': 'http://store.is.autonavi.com/showpic/41b948f8c214c452dcc17e5a54d98eb1'}, {'title': [], 'url': 'http://store.is.autonavi.com/showpic/fd9dc86c82dd0e843a6aac467c2d552f'}, {'title': [], 'url': 'http://store.is.autonavi.com/showpic/52ef7af02bd743e2ce7dc956feb0d4c0'}], 'typecode': '030000', 'shopinfo': '1', 'poiweight': [], 'childtype': [], 'adname': '江阴市', 'name': '岩硕汽车维修', 'location': '120.406090,31.726396', 'tel': '13771500068', 'shopid': [], 'id': 'B0J06SGA85'}], 'status': '1', 'info': 'OK'}\n",
"{'suggestion': {'keywords': [], 'cities': []}, 'count': '450', 'infocode': '10000', 'pois': [{'parent': [], 'address': '钱桥街道盛岸西路1105号', 'distance': [], 'pname': '江苏省', 'importance': [], 'biz_ext': {'cost': [], 'rating': '4.6'}, 'biz_type': [], 'cityname': '无锡市', 'type': '汽车维修;吉利特约维修;吉利维修|汽车销售;吉利特约销售;吉利销售', 'photos': [{'title': [], 'url': 'http://store.is.autonavi.com/showpic/14a2d080fc54b8be44678373ffc0de91'}, {'title': [], 'url': 'https://aos-comment.amap.com/B0I65H6ME0/comment/a2478c3b018bb320d58968e3ba82a2d3_2048_2048_80.jpg'}, {'title': [], 'url': 'https://aos-comment.amap.com/B0I65H6ME0/comment/060f53585f88117b9819ed3b17d18654_2048_2048_80.jpg'}], 'typecode': '032400|022300', 'shopinfo': '1', 'poiweight': [], 'childtype': [], 'adname': '惠山区', 'name': '领克中心(无锡华隆)', 'location': '120.226730,31.615449', 'tel': '0510-82020666', 'shopid': [], 'id': 'B0I65H6ME0'}, {'parent': [], 'address': '新华路与珠江路交叉口', 'distance': [], 'pname': '江苏省', 'importance': [], 'biz_ext': {'cost': [], 'rating': '4.7'}, 'biz_type': [], 'cityname': '无锡市', 'type': '汽车服务;汽车养护/装饰;汽车养护|汽车服务;洗车场;洗车场|汽车维修;汽车维修;汽车维修', 'photos': [{'title': [], 'url': 'http://store.is.autonavi.com/showpic/1aa611137dda7ca65c50aa06fd3b43ee'}, {'title': [], 'url': 'http://store.is.autonavi.com/showpic/7747cb3d0ef8be1bc0641ba0ec8c811f'}, {'title': [], 'url': 'http://store.is.autonavi.com/showpic/4f2caae042acbbd59dd73bac275c42e7'}], 'typecode': '010400|010500|030000', 'shopinfo': '1', 'poiweight': [], 'childtype': [], 'adname': '新吴区', 'name': '创道汽车维修', 'location': '120.391613,31.501057', 'tel': '15152252556', 'shopid': [], 'id': 'B0KUTH5GYB'}, {'parent': [], 'address': '东外环路新园路1号', 'distance': [], 'pname': '江苏省', 'importance': [], 'biz_ext': {'cost': [], 'rating': '4.5'}, 'biz_type': [], 'cityname': '无锡市', 'type': '汽车维修;汽车综合维修;汽车综合维修', 'photos': [{'title': [], 'url': 'http://store.is.autonavi.com/showpic/69eb2c4caa46241b298c82994ab2c953'}, {'title': [], 'url': 'http://store.is.autonavi.com/showpic/46cb913326471ac48dadd0c79f5041c0'}], 'typecode': '030100', 'shopinfo': '0', 'poiweight': [], 'childtype': [], 'adname': '江阴市', 'name': '江阴市华东汽车维修有限公司', 'location': '120.320241,31.899930', 'tel': '0510-81698899;0510-86263322', 'shopid': [], 'id': 'B01FE16473'}, {'parent': [], 'address': '梁溪区太湖大道257号', 'distance': [], 'pname': '江苏省', 'importance': [], 'biz_ext': {'cost': [], 'rating': '4.6'}, 'biz_type': [], 'cityname': '无锡市', 'type': '汽车维修;汽车综合维修;汽车综合维修', 'photos': [{'title': [], 'url': 'http://store.is.autonavi.com/showpic/4456eba05acba0b5b7dbbcb921e6c776'}, {'title': [], 'url': 'http://store.is.autonavi.com/showpic/42dbcff88a1cae2be3ecf22d8bf54a53'}, {'title': [], 'url': 'http://store.is.autonavi.com/showpic/ca79bbf1f67ad9bf0dff558342183c8e'}], 'typecode': '030100', 'shopinfo': '0', 'poiweight': [], 'childtype': [], 'adname': '梁溪区', 'name': '金佳汽车维修有限公司', 'location': '120.294229,31.542855', 'tel': '0510-85406068;0510-85408345;13771139090', 'shopid': [], 'id': 'B0FFFRU332'}, {'parent': [], 'address': '公益路69号(荣巷地铁站4号口步行330米)', 'distance': [], 'pname': '江苏省', 'importance': [], 'biz_ext': {'cost': [], 'rating': '4.3'}, 'biz_type': [], 'cityname': '无锡市', 'type': '汽车服务;汽车养护/装饰;汽车养护', 'photos': [{'title': [], 'url': 'http://store.is.autonavi.com/showpic/e1ada19a2855ad4b6a331d5a985bbdb6'}, {'title': [], 'url': 'http://store.is.autonavi.com/showpic/3a9947ac89cea5a907e24ec3c8850fda'}, {'title': [], 'url': 'http://store.is.autonavi.com/showpic/2e1fd066ba282db816432a9f6b3bcb01'}], 'typecode': '010400', 'shopinfo': '0', 'poiweight': [], 'childtype': [], 'adname': '滨湖区', 'name': '车饰界汽车服务(公益路店)', 'location': '120.236825,31.554270', 'tel': '18360814884', 'shopid': [], 'id': 'B0FFGNTQM1'}, {'parent': [], 'address': '梁溪警苑20-13(河埒口地铁站1号口步行160米)', 'distance': [], 'pname': '江苏省', 'importance': [], 'biz_ext': {'cost': [], 'rating': '4.2'}, 'biz_type': [], 'cityname': '无锡市', 'type': '汽车服务;汽车养护/装饰;汽车养护', 'photos': [{'title': [], 'url': 'https://store.is.autonavi.com/showpic/5fc406eedcc61d309900a0814edaad03'}], 'typecode': '010400', 'shopinfo': '1', 'poiweight': [], 'childtype': [], 'adname': '滨湖区', 'name': '驰众汽车服务中心', 'location': '120.257906,31.562415', 'tel': '13912389821', 'shopid': [], 'id': 'B0JDND66EZ'}, {'parent': [], 'address': '融达汽车城17幢806-807号', 'distance': [], 'pname': '江苏省', 'importance': [], 'biz_ext': {'cost': [], 'rating': '4.2'}, 'biz_type': [], 'cityname': '无锡市', 'type': '汽车维修;汽车维修;汽车维修', 'photos': [{'title': [], 'url': 'http://store.is.autonavi.com/showpic/80c4a76d33d525ce173353bde98f0c3e'}, {'title': [], 'url': 'http://store.is.autonavi.com/showpic/04de30b500be5afdeff8426a65393e54'}, {'title': [], 'url': 'http://store.is.autonavi.com/showpic/8f240723bfe24880bff87adc7e4601c4'}], 'typecode': '030000', 'shopinfo': '0', 'poiweight': [], 'childtype': [], 'adname': '宜兴市', 'name': '宜安汽车维修有限公司', 'location': '119.786406,31.382662', 'tel': '13701530387', 'shopid': [], 'id': 'B0HDN7ERE3'}, {'parent': [], 'address': '融达汽车城14栋', 'distance': [], 'pname': '江苏省', 'importance': [], 'biz_ext': {'cost': [], 'rating': '4.1'}, 'biz_type': [], 'cityname': '无锡市', 'type': '汽车维修;汽车维修;汽车维修', 'photos': [{'title': [], 'url': 'http://store.is.autonavi.com/showpic/246d146fb857f810a0d8ec7d1a70ca21'}], 'typecode': '030000', 'shopinfo': '1', 'poiweight': [], 'childtype': [], 'adname': '宜兴市', 'name': '宜兴佳途汽车维修有限公司', 'location': '119.787889,31.383748', 'tel': [], 'shopid': [], 'id': 'B0J1KRC34Q'}, {'parent': [], 'address': '梁溪区江海西路1081号-1', 'distance': [], 'pname': '江苏省', 'importance': [], 'biz_ext': {'cost': [], 'rating': '4.0'}, 'biz_type': [], 'cityname': '无锡市', 'type': '汽车服务;汽车配件销售;汽车配件销售', 'photos': [{'title': [], 'url': 'http://store.is.autonavi.com/showpic/7caf9f3de5576558be0204d4af662f80'}, {'title': [], 'url': 'http://store.is.autonavi.com/showpic/5b050e2904824bc2c0b20a8edbbcdb63'}, {'title': [], 'url': 'http://store.is.autonavi.com/showpic/18488b5e345e75fab265bca95493548d'}], 'typecode': '010800', 'shopinfo': '0', 'poiweight': [], 'childtype': [], 'adname': '惠山区', 'name': '永发汽车装备经营部', 'location': '120.237688,31.615067', 'tel': '0510-83135123;18051561599', 'shopid': [], 'id': 'B0FFHFNY5J'}, {'parent': [], 'address': '团结中路嘉福公寓18-118-2号', 'distance': [], 'pname': '江苏省', 'importance': [], 'biz_ext': {'cost': [], 'rating': '4.3'}, 'biz_type': [], 'cityname': '无锡市', 'type': '汽车维修;汽车维修;汽车维修', 'photos': [{'title': [], 'url': 'http://store.is.autonavi.com/showpic/2a3662c85ab753ef7905b411b1a35519'}, {'title': [], 'url': 'http://store.is.autonavi.com/showpic/2beba7a4f6e5009e446939a499119724'}, {'title': [], 'url': 'http://store.is.autonavi.com/showpic/48a87209ece2f84f7b5da8e04f43cdd0'}], 'typecode': '030000', 'shopinfo': '1', 'poiweight': [], 'childtype': [], 'adname': '锡山区', 'name': '无锡宁通汽车维修有限公司', 'location': '120.391920,31.593862', 'tel': '13771027639', 'shopid': [], 'id': 'B0HR05VSZ5'}, {'parent': [], 'address': '新区金城东路290号东方汽车城B6座', 'distance': [], 'pname': '江苏省', 'importance': [], 'biz_ext': {'cost': [], 'rating': '4.7'}, 'biz_type': [], 'cityname': '无锡市', 'type': '汽车销售;大众特约销售;一汽-大众销售|汽车维修;大众特约维修;一汽-大众维修', 'photos': [{'title': [], 'url': 'http://store.is.autonavi.com/showpic/189358b049c5b46b50e1d7daf2f5a71f'}, {'title': [], 'url': 'http://store.is.autonavi.com/showpic/f7dc5d39bb2ec826a78bfc816690a632'}, {'title': [], 'url': 'https://aos-comment.amap.com/B0I10U7QJG/comment/c19cc21b44e4315a40ea89ed4088bbdd_2048_2048_80.jpg'}], 'typecode': '020102|030202', 'shopinfo': '1', 'poiweight': [], 'childtype': [], 'adname': '新吴区', 'name': '无锡东方荣昌汽车销售服务有限公司', 'location': '120.407231,31.564048', 'tel': '0510-82122563', 'shopid': [], 'id': 'B0I10U7QJG'}, {'parent': [], 'address': '澄杨路55号', 'distance': [], 'pname': '江苏省', 'importance': [], 'biz_ext': {'cost': [], 'rating': '4.7'}, 'biz_type': [], 'cityname': '无锡市', 'type': '汽车销售;吉利特约销售;吉利销售|汽车维修;吉利特约维修;吉利维修', 'photos': [{'title': '店头照片', 'url': 'http://store.is.autonavi.com/showpic/bd71bfd4db4a53916194352f35bda15f'}, {'title': [], 'url': 'http://aos-cdn-image.amap.com/sns/ugccomment/4a923a83-b2d3-4d16-9677-736ee53faad9.jpg'}, {'title': [], 'url': 'https://aos-comment.amap.com/B0FFJA1CF5/comment/content_media_external_images_media_1000081928_ss__1734573108430_17789754.jpg'}], 'typecode': '022300|032400', 'shopinfo': '1', 'poiweight': [], 'childtype': [], 'adname': '江阴市', 'name': '领克中心(江阴海领)', 'location': '120.310570,31.885335', 'tel': '0510-86360088', 'shopid': [], 'id': 'B0FFJA1CF5'}, {'parent': 'B01FE0IQIV', 'address': '人民中路111号苏宁广场(人民路店)', 'distance': [], 'pname': '江苏省', 'importance': [], 'biz_ext': {'cost': [], 'rating': '3.9'}, 'biz_type': [], 'cityname': '无锡市', 'type': '汽车销售;汽车销售;汽车销售', 'photos': [{'title': [], 'url': 'http://store.is.autonavi.com/query_pic?id=st6b4b8e39-0d10-405c-87c8-0f9b7cdea055&user=search&operate=original'}], 'typecode': '020000', 'shopinfo': '0', 'poiweight': [], 'childtype': '202', 'adname': '梁溪区', 'name': '无锡智氪极行汽车销售服务有限公司', 'location': '120.302674,31.575790', 'tel': [], 'shopid': [], 'id': 'B0JR4XE0BU'}, {'parent': [], 'address': '新街街道创业路61号', 'distance': [], 'pname': '江苏省', 'importance': [], 'biz_ext': {'cost': [], 'rating': '4.4'}, 'biz_type': [], 'cityname': '无锡市', 'type': '汽车服务;汽车养护/装饰;汽车养护|汽车服务;洗车场;洗车场|汽车维修;汽车维修;汽车维修', 'photos': [{'title': [], 'url': 'http://store.is.autonavi.com/showpic/c14a45ff62749e3b94a07425b0df8c5f'}, {'title': [], 'url': 'http://store.is.autonavi.com/showpic/ba9182905e171f83618b739029295673'}, {'title': [], 'url': 'http://store.is.autonavi.com/showpic/dc5e54c0e3b8f6fc3a4b27c6ae149c29'}], 'typecode': '010400|010500|030000', 'shopinfo': '1', 'poiweight': [], 'childtype': [], 'adname': '宜兴市', 'name': '鸿泽汽车维修有限公司', 'location': '119.759182,31.362777', 'tel': '18861766969', 'shopid': [], 'id': 'B0IAPZPMUW'}, {'parent': [], 'address': '钱胡路1167号', 'distance': [], 'pname': '江苏省', 'importance': [], 'biz_ext': {'cost': [], 'rating': '4.5'}, 'biz_type': [], 'cityname': '无锡市', 'type': '汽车销售;汽车销售;汽车销售', 'photos': [{'title': [], 'url': 'https://aos-comment.amap.com/B0JRXH2UZV/comment/cef6fb406b2ceb4f1dc98f20adb4b0b0_2048_2048_80.jpg'}, {'title': [], 'url': 'https://aos-comment.amap.com/B0JRXH2UZV/comment/3e1a100d01951da5d00e853b3d407186_2048_2048_80.jpg'}, {'title': [], 'url': 'https://aos-comment.amap.com/B0JRXH2UZV/comment/aaa6009f7f34e154f8229c4ff15f781f_2048_2048_80.jpg'}], 'typecode': '020000', 'shopinfo': '1', 'poiweight': [], 'childtype': [], 'adname': '滨湖区', 'name': '无锡东昌宝祥别克汽车服务有限公司', 'location': '120.134795,31.558858', 'tel': '0510-85536668;18036899096', 'shopid': [], 'id': 'B0JRXH2UZV'}, {'parent': [], 'address': '华府路1-3号(锡北运河地铁站1A口步行80米)', 'distance': [], 'pname': '江苏省', 'importance': [], 'biz_ext': {'cost': [], 'rating': '4.4'}, 'biz_type': [], 'cityname': '无锡市', 'type': '汽车维修;汽车综合维修;汽车综合维修', 'photos': [{'title': [], 'url': 'http://store.is.autonavi.com/showpic/42b7f7baaa210a57da04515641093649'}], 'typecode': '030100', 'shopinfo': '0', 'poiweight': [], 'childtype': [], 'adname': '惠山区', 'name': '超雄汽车维修服务部', 'location': '120.314004,31.662989', 'tel': '0510-83575551;18751549359', 'shopid': [], 'id': 'B0FFHYFHF6'}, {'parent': [], 'address': '石门路79号', 'distance': [], 'pname': '江苏省', 'importance': [], 'biz_ext': {'cost': [], 'rating': '4.3'}, 'biz_type': [], 'cityname': '无锡市', 'type': '汽车服务;汽车养护/装饰;汽车养护|汽车服务;洗车场;洗车场|汽车维修;汽车维修;汽车维修', 'photos': [{'title': [], 'url': 'http://store.is.autonavi.com/showpic/040d11b6ad37ec7348bec82261030b40'}, {'title': [], 'url': 'http://store.is.autonavi.com/showpic/a40c7aec4637cffe5f9cfc24055c4e08'}, {'title': [], 'url': 'http://store.is.autonavi.com/showpic/64c6fc3e8af8cb25ab4707fb01629c68'}], 'typecode': '010400|010500|030000', 'shopinfo': '1', 'poiweight': [], 'childtype': [], 'adname': '梁溪区', 'name': '新沃汽车服务', 'location': '120.263852,31.605410', 'tel': '15161522621', 'shopid': [], 'id': 'B0LADH0L5D'}, {'parent': [], 'address': '融达汽车城19栋802号', 'distance': [], 'pname': '江苏省', 'importance': [], 'biz_ext': {'cost': [], 'rating': '4.2'}, 'biz_type': [], 'cityname': '无锡市', 'type': '汽车维修;汽车综合维修;汽车综合维修', 'photos': [{'title': [], 'url': 'http://store.is.autonavi.com/showpic/a8e19e05ae75b6ff4b4aa32f5339a6d9'}, {'title': [], 'url': 'http://store.is.autonavi.com/showpic/26c2d1c0da99aa12cc14cdf7470b318b'}, {'title': [], 'url': 'http://store.is.autonavi.com/showpic/114f31b587570c2593f238a4bb038a17'}], 'typecode': '030100', 'shopinfo': '1', 'poiweight': [], 'childtype': [], 'adname': '宜兴市', 'name': '宜兴瀚隆汽车维修有限公司', 'location': '119.789262,31.382382', 'tel': [], 'shopid': [], 'id': 'B0KD3ZTLD6'}, {'parent': [], 'address': '广益路一', 'distance': [], 'pname': '江苏省', 'importance': [], 'biz_ext': {'cost': [], 'rating': '3.9'}, 'biz_type': [], 'cityname': '无锡市', 'type': '汽车维修;汽车维修;汽车维修', 'photos': [{'title': [], 'url': 'http://store.is.autonavi.com/showpic/67ea06f227e39b06972940281502ae85'}, {'title': [], 'url': 'http://store.is.autonavi.com/showpic/071da3083a722b6ed8b76d1759690d3c'}, {'title': [], 'url': 'https://store.is.autonavi.com/showpic/f32d874fdc43f77d2ea69b6f2a5f946d'}], 'typecode': '030000', 'shopinfo': '0', 'poiweight': [], 'childtype': [], 'adname': '梁溪区', 'name': '欧威驰汽车维修', 'location': '120.344794,31.592798', 'tel': [], 'shopid': [], 'id': 'B0KDH5LW7P'}, {'parent': [], 'address': '金惠西路1号', 'distance': [], 'pname': '江苏省', 'importance': [], 'biz_ext': {'cost': [], 'rating': '3.9'}, 'biz_type': [], 'cityname': '无锡市', 'type': '汽车维修;汽车综合维修;汽车综合维修', 'photos': [{'title': [], 'url': 'http://store.is.autonavi.com/showpic/761981bc7185a322b060189b4deb993a'}], 'typecode': '030100', 'shopinfo': '0', 'poiweight': [], 'childtype': [], 'adname': '惠山区', 'name': '无锡市高山汽车维修有限公司', 'location': '120.267867,31.687903', 'tel': [], 'shopid': [], 'id': 'B0FFHN5GVA'}], 'status': '1', 'info': 'OK'}\n",
"{'suggestion': {'keywords': [], 'cities': []}, 'count': '450', 'infocode': '10000', 'pois': [{'parent': [], 'address': '北部湾东路92号东盛美景小区地税局旁边', 'distance': [], 'pname': '广西壮族自治区', 'importance': [], 'biz_ext': {'cost': [], 'rating': '4.4'}, 'biz_type': [], 'cityname': '北海市', 'type': '汽车维修;汽车综合维修;汽车综合维修|汽车服务;汽车配件销售;汽车配件销售', 'photos': [{'title': [], 'url': 'http://store.is.autonavi.com/showpic/2f6ba3ba952f7126f4481f2622702da9'}, {'title': [], 'url': 'http://store.is.autonavi.com/showpic/bdd280a5e2299b913f45ae7edff900e6'}, {'title': [], 'url': 'http://store.is.autonavi.com/showpic/4cb04ab43657a274f33d580d57454fa6'}], 'typecode': '030100|010800', 'shopinfo': '0', 'poiweight': [], 'childtype': [], 'adname': '海城区', 'name': '奔宝汽车维修服务中心', 'location': '109.161042,21.497125', 'tel': '13977973204;15278999315', 'shopid': [], 'id': 'B0FFFDZGEP'}, {'parent': [], 'address': '白沙镇西坎村委会元岭仔村村口', 'distance': [], 'pname': '广西壮族自治区', 'importance': [], 'biz_ext': {'cost': [], 'rating': '4.4'}, 'biz_type': [], 'cityname': '北海市', 'type': '汽车维修;汽车维修;汽车维修', 'photos': [{'title': [], 'url': 'http://store.is.autonavi.com/showpic/140cc214898033c12a0bb17e84c2eee6'}, {'title': [], 'url': 'https://aos-comment.amap.com/B0J03H0XLD/headerImg/fb24caff7c28507b936ffc1252f950df_2048_2048_80.jpg'}, {'title': [], 'url': 'http://store.is.autonavi.com/showpic/e56a740848fc898baadefacee67b3800'}], 'typecode': '030000', 'shopinfo': '1', 'poiweight': [], 'childtype': [], 'adname': '合浦县', 'name': '途盛汽车维修服务中心', 'location': '109.662990,21.690099', 'tel': '17774798762;19176404116', 'shopid': [], 'id': 'B0J03H0XLD'}, {'parent': [], 'address': '广东南路海港丽景对面', 'distance': [], 'pname': '广西壮族自治区', 'importance': [], 'biz_ext': {'cost': [], 'rating': '3.9'}, 'biz_type': [], 'cityname': '北海市', 'type': '汽车维修;汽车维修;汽车维修', 'photos': [{'title': [], 'url': 'http://store.is.autonavi.com/showpic/72337df209d0c642acc309e0557c3b91'}, {'title': [], 'url': 'http://store.is.autonavi.com/showpic/65941706a597e59ded86e5b6445ac1be'}], 'typecode': '030000', 'shopinfo': '1', 'poiweight': [], 'childtype': [], 'adname': '银海区', 'name': '奔宝路汽车维修有限公司', 'location': '109.137406,21.452685', 'tel': '15777938623', 'shopid': [], 'id': 'B0JGNCX2T6'}, {'parent': [], 'address': '国家级星创天地产业园创新创业孵化基地西南门西北50米', 'distance': [], 'pname': '广西壮族自治区', 'importance': [], 'biz_ext': {'cost': [], 'rating': '3.9'}, 'biz_type': [], 'cityname': '北海市', 'type': '汽车维修;汽车维修;汽车维修', 'photos': [{'title': [], 'url': 'http://store.is.autonavi.com/showpic/98561849f868fc7ef2987ad61eab5820'}], 'typecode': '030000', 'shopinfo': '0', 'poiweight': [], 'childtype': [], 'adname': '合浦县', 'name': '合浦骏马汽车维修服务有限公司', 'location': '109.183631,21.649795', 'tel': '0779-7192277', 'shopid': [], 'id': 'B0G1AL2CX0'}, {'parent': [], 'address': '北部湾东路82号', 'distance': [], 'pname': '广西壮族自治区', 'importance': [], 'biz_ext': {'cost': [], 'rating': '4.2'}, 'biz_type': [], 'cityname': '北海市', 'type': '汽车维修;汽车综合维修;汽车综合维修', 'photos': [{'title': [], 'url': 'http://store.is.autonavi.com/showpic/429626b4ed210fe218b23db557e0133f'}], 'typecode': '030100', 'shopinfo': '0', 'poiweight': [], 'childtype': [], 'adname': '海城区', 'name': '宏义汽车维修服务中心', 'location': '109.156098,21.494210', 'tel': '13977920951;18977948028', 'shopid': [], 'id': 'B0FFINCWU1'}, {'parent': [], 'address': '北部湾东路北海市银海区工商局西', 'distance': [], 'pname': '广西壮族自治区', 'importance': [], 'biz_ext': {'cost': [], 'rating': '3.9'}, 'biz_type': [], 'cityname': '北海市', 'type': '汽车维修;汽车综合维修;汽车综合维修', 'photos': [{'title': [], 'url': 'http://store.is.autonavi.com/showpic/b18ddaba1f69637013401af6d0641a96'}, {'title': [], 'url': 'http://store.is.autonavi.com/showpic/5d617bb355871bd276a48696b200623c'}], 'typecode': '030100', 'shopinfo': '0', 'poiweight': [], 'childtype': [], 'adname': '海城区', 'name': '广通汽车万维修服务中心', 'location': '109.162880,21.498651', 'tel': '15078900069', 'shopid': [], 'id': 'B0FFHDWLCC'}, {'parent': [], 'address': '镇北大道与241国道交叉口南60米', 'distance': [], 'pname': '广西壮族自治区', 'importance': [], 'biz_ext': {'cost': [], 'rating': '3.6'}, 'biz_type': [], 'cityname': '北海市', 'type': '汽车维修;汽车维修;汽车维修', 'photos': [{'title': [], 'url': 'http://store.is.autonavi.com/showpic/2180a72ab210e368d74fb0193bd51cce'}], 'typecode': '030000', 'shopinfo': '0', 'poiweight': [], 'childtype': [], 'adname': '合浦县', 'name': '新动力汽车维修', 'location': '109.731796,21.614118', 'tel': '13768297657', 'shopid': [], 'id': 'B0J229RJ3S'}, {'parent': [], 'address': '廉州镇平阳塘一组还珠南路西侧就业用地1号', 'distance': [], 'pname': '广西壮族自治区', 'importance': [], 'biz_ext': {'cost': [], 'rating': '4.1'}, 'biz_type': [], 'cityname': '北海市', 'type': '汽车维修;汽车综合维修;汽车综合维修', 'photos': [{'title': [], 'url': 'http://store.is.autonavi.com/showpic/53aca90a1c8d58e769d9625db9fdb638'}, {'title': [], 'url': 'http://store.is.autonavi.com/showpic/93240de461dc14bdb366cf854916c509'}, {'title': [], 'url': 'http://store.is.autonavi.com/showpic/4842d9c22867f6c93bc2b36527f6af82'}], 'typecode': '030100', 'shopinfo': '1', 'poiweight': [], 'childtype': [], 'adname': '合浦县', 'name': '合浦英富汽车维修服务中心', 'location': '109.200557,21.635309', 'tel': '15278923958', 'shopid': [], 'id': 'B0JB9H0JNH'}, {'parent': [], 'address': '驿马村312号', 'distance': [], 'pname': '广西壮族自治区', 'importance': [], 'biz_ext': {'cost': [], 'rating': '4.5'}, 'biz_type': [], 'cityname': '北海市', 'type': '汽车服务;汽车养护/装饰;汽车养护|汽车服务;洗车场;洗车场|汽车维修;汽车维修;汽车维修', 'photos': [{'title': [], 'url': 'http://store.is.autonavi.com/showpic/1ac552759e8729866b08af87ed94ee2a'}, {'title': [], 'url': 'http://store.is.autonavi.com/showpic/4948b4a9e30d15b594d300885f85ff49'}, {'title': [], 'url': 'http://store.is.autonavi.com/showpic/611c0972f4c7dd5a6f7b4c81877eb08c'}], 'typecode': '010400|010500|030000', 'shopinfo': '1', 'poiweight': [], 'childtype': [], 'adname': '海城区', 'name': '畅途汽车维修养护中心', 'location': '109.166322,21.456158', 'tel': '18877934835', 'shopid': [], 'id': 'B0JAH55ZGC'}, {'parent': [], 'address': '廉州镇珠海路一号', 'distance': [], 'pname': '广西壮族自治区', 'importance': [], 'biz_ext': {'cost': [], 'rating': '4.3'}, 'biz_type': [], 'cityname': '北海市', 'type': '汽车服务;汽车养护/装饰;汽车养护', 'photos': [{'title': [], 'url': 'http://store.is.autonavi.com/showpic/54d842d6203849338be51da8949302ac'}, {'title': [], 'url': 'http://store.is.autonavi.com/showpic/6c2d3fb7535efd9f922cd02dfa7545b1'}, {'title': [], 'url': 'http://store.is.autonavi.com/showpic/5ae2c7415ed81c362238b159624cd6b1'}], 'typecode': '010400', 'shopinfo': '1', 'poiweight': [], 'childtype': [], 'adname': '合浦县', 'name': '合昌汽车美容快修养护中心(一分店)', 'location': '109.211095,21.667243', 'tel': '18277934805', 'shopid': [], 'id': 'B0FFKV0F64'}, {'parent': [], 'address': '廉阳大道许屋兴邦停车场28米', 'distance': [], 'pname': '广西壮族自治区', 'importance': [], 'biz_ext': {'cost': [], 'rating': '4.3'}, 'biz_type': [], 'cityname': '北海市', 'type': '汽车服务;汽车养护/装饰;汽车养护|汽车维修;汽车维修;汽车维修', 'photos': [{'title': [], 'url': 'http://store.is.autonavi.com/showpic/657d55ddcd5f1128a4cdb5b8675a9928'}, {'title': [], 'url': 'http://store.is.autonavi.com/showpic/61e278277b24b8709be8479f60b515bc'}, {'title': [], 'url': 'http://store.is.autonavi.com/showpic/753dd5d80f08c8c0392c26570559dba5'}], 'typecode': '010400|030000', 'shopinfo': '1', 'poiweight': [], 'childtype': [], 'adname': '合浦县', 'name': '宏锦汽车维修中心', 'location': '109.224485,21.672511', 'tel': '18777951380', 'shopid': [], 'id': 'B0FFL1A8D2'}, {'parent': [], 'address': '广东路188号银滩圣美阳光家园45幢裙楼商场0109', 'distance': [], 'pname': '广西壮族自治区', 'importance': [], 'biz_ext': {'cost': [], 'rating': '4.3'}, 'biz_type': [], 'cityname': '北海市', 'type': '汽车维修;汽车维修;汽车维修', 'photos': [{'title': [], 'url': 'http://store.is.autonavi.com/showpic/325e77b4880731a33d34a42681cb0b3d'}, {'title': [], 'url': 'http://store.is.autonavi.com/showpic/fb31c1f4ba0e137efbce98f8f0115e83'}], 'typecode': '030000', 'shopinfo': '0', 'poiweight': [], 'childtype': [], 'adname': '银海区', 'name': '北海优卡优汽车维修服务有限公司', 'location': '109.144641,21.426511', 'tel': [], 'shopid': [], 'id': 'B0HKZ5T1V0'}, {'parent': [], 'address': '廉州镇悦港大道经济开发区悦港大酒店对面一号', 'distance': [], 'pname': '广西壮族自治区', 'importance': [], 'biz_ext': {'cost': [], 'rating': '4.2'}, 'biz_type': [], 'cityname': '北海市', 'type': '汽车维修;汽车维修;汽车维修', 'photos': [{'title': [], 'url': 'http://store.is.autonavi.com/showpic/839f016cf97a128e6bdbcf8af339af98'}], 'typecode': '030000', 'shopinfo': '0', 'poiweight': [], 'childtype': [], 'adname': '合浦县', 'name': '杰途汽修', 'location': '109.169923,21.671331', 'tel': [], 'shopid': [], 'id': 'B0FFHKXHIA'}, {'parent': [], 'address': '山口镇新圩村委会汤屋村路口往新圩方向235米', 'distance': [], 'pname': '广西壮族自治区', 'importance': [], 'biz_ext': {'cost': [], 'rating': '4.3'}, 'biz_type': [], 'cityname': '北海市', 'type': '汽车维修;汽车维修;汽车维修', 'photos': [{'title': [], 'url': 'http://store.is.autonavi.com/showpic/4c1082f69fc04622e894ce345cd69bc1'}, {'title': [], 'url': 'http://store.is.autonavi.com/showpic/4ab01d59bf79dc3f80f50a6c8e1c4fa1'}, {'title': [], 'url': 'http://store.is.autonavi.com/showpic/7a1a8b70b5149cb60961d9b1a476faa0'}], 'typecode': '030000', 'shopinfo': '1', 'poiweight': [], 'childtype': [], 'adname': '合浦县', 'name': '奔宝迪汽车维修中心', 'location': '109.726554,21.526100', 'tel': '18377988277', 'shopid': [], 'id': 'B0FFLMSH7A'}, {'parent': [], 'address': '湖北路劳动花园西区1号(十七小学斜对面)', 'distance': [], 'pname': '广西壮族自治区', 'importance': [], 'biz_ext': {'cost': [], 'rating': '4.0'}, 'biz_type': [], 'cityname': '北海市', 'type': '汽车维修;汽车综合维修;汽车综合维修', 'photos': [{'title': [], 'url': 'http://store.is.autonavi.com/showpic/609e7192196a530d69a21c3c7b6fde5a'}], 'typecode': '030100', 'shopinfo': '0', 'poiweight': [], 'childtype': [], 'adname': '海城区', 'name': '凯骏汽车维修中心', 'location': '109.155120,21.481281', 'tel': '18677973755', 'shopid': [], 'id': 'B0FFGZ4KKH'}, {'parent': [], 'address': '廉阳大道冲口社区许屋村45号', 'distance': [], 'pname': '广西壮族自治区', 'importance': [], 'biz_ext': {'cost': [], 'rating': '4.1'}, 'biz_type': [], 'cityname': '北海市', 'type': '汽车维修;汽车维修;汽车维修', 'photos': [{'title': [], 'url': 'http://store.is.autonavi.com/showpic/e92c33e305cf1d443fbd949c1bba3ce9'}, {'title': [], 'url': 'http://store.is.autonavi.com/showpic/c4b9ea5d3d8aa29bf6b719c1767044d1'}, {'title': [], 'url': 'http://store.is.autonavi.com/showpic/207e724e3a4632bc66f7a4025a65268b'}], 'typecode': '030000', 'shopinfo': '1', 'poiweight': [], 'childtype': [], 'adname': '合浦县', 'name': '北海鑫宝达汽车维修服务有限公司', 'location': '109.225322,21.674044', 'tel': '18877942828', 'shopid': [], 'id': 'B0H1YSX9BL'}, {'parent': [], 'address': '湖北路劳动花园西区一号', 'distance': [], 'pname': '广西壮族自治区', 'importance': [], 'biz_ext': {'cost': [], 'rating': '3.7'}, 'biz_type': [], 'cityname': '北海市', 'type': '汽车服务;洗车场;洗车场', 'photos': [{'title': [], 'url': 'http://store.is.autonavi.com/showpic/396054bd7933cc1324a7de482ef316e2'}, {'title': [], 'url': 'http://store.is.autonavi.com/showpic/c7ea6a536fdb11e21c37254ad8bbf59b'}], 'typecode': '010500', 'shopinfo': '1', 'poiweight': [], 'childtype': [], 'adname': '海城区', 'name': '美孚汽车养护店(北海凯骏店)', 'location': '109.155162,21.481448', 'tel': '0779-8525828;18677973755', 'shopid': [], 'id': 'B0I6PAIW9P'}, {'parent': [], 'address': '北部湾东路50号', 'distance': [], 'pname': '广西壮族自治区', 'importance': [], 'biz_ext': {'cost': [], 'rating': '3.9'}, 'biz_type': [], 'cityname': '北海市', 'type': '汽车维修;汽车维修;汽车维修', 'photos': [{'title': [], 'url': 'http://store.is.autonavi.com/showpic/c1db5e7189ea35069c50583c9cec1c0d'}], 'typecode': '030000', 'shopinfo': '0', 'poiweight': [], 'childtype': [], 'adname': '海城区', 'name': '宏世汽修', 'location': '109.137673,21.487103', 'tel': '0779-8854006;13877908033', 'shopid': [], 'id': 'B030B00SAU'}, {'parent': [], 'address': '北部湾西路与西藏路交汇处', 'distance': [], 'pname': '广西壮族自治区', 'importance': [], 'biz_ext': {'cost': [], 'rating': '4.2'}, 'biz_type': [], 'cityname': '北海市', 'type': '汽车维修;汽车维修;汽车维修', 'photos': [{'title': [], 'url': 'http://store.is.autonavi.com/showpic/64ec4c2f1aa01b2fea2caf7d760f18c2'}, {'title': [], 'url': 'http://store.is.autonavi.com/showpic/8b1e0016604b9969150f079e87e40237'}, {'title': [], 'url': 'http://store.is.autonavi.com/showpic/9e8ca6fadc2c8dd97358ef0ea77cd35f'}], 'typecode': '030000', 'shopinfo': '1', 'poiweight': [], 'childtype': [], 'adname': '海城区', 'name': '极速汽车维修服务中心', 'location': '109.094464,21.465932', 'tel': '15278932175;18077944288', 'shopid': [], 'id': 'B0HGCRHIJX'}, {'parent': [], 'address': '廉州镇还珠南路过红灯100米左侧', 'distance': [], 'pname': '广西壮族自治区', 'importance': [], 'biz_ext': {'cost': [], 'rating': '3.7'}, 'biz_type': [], 'cityname': '北海市', 'type': '汽车维修;汽车维修;汽车维修', 'photos': [{'title': [], 'url': 'http://store.is.autonavi.com/showpic/1f0e4dbd0b95c6578b6855410c670302'}], 'typecode': '030000', 'shopinfo': '0', 'poiweight': [], 'childtype': [], 'adname': '合浦县', 'name': '荣达汽车维修服务中心', 'location': '109.201998,21.635821', 'tel': '13878928229;18077936530', 'shopid': [], 'id': 'B0FFGHDLRQ'}], 'status': '1', 'info': 'OK'}\n",
"{'suggestion': {'keywords': [], 'cities': []}, 'count': '450', 'infocode': '10000', 'pois': [{'parent': [], 'address': '七号路市场向四号路300米', 'distance': [], 'pname': '广西壮族自治区', 'importance': [], 'biz_ext': {'cost': [], 'rating': '4.5'}, 'biz_type': [], 'cityname': '北海市', 'type': '汽车服务;汽车养护/装饰;汽车养护|汽车维修;汽车综合维修;汽车综合维修', 'photos': [{'title': [], 'url': 'http://store.is.autonavi.com/showpic/e38a197edee54dcf812c36943d04352f'}, {'title': [], 'url': 'http://store.is.autonavi.com/showpic/c8a9347e53c1d7134aebcd66e3553cc4'}, {'title': [], 'url': 'http://store.is.autonavi.com/showpic/fe5868b91a7efd9eff5f0d1ec336a8ed'}], 'typecode': '010400|030100', 'shopinfo': '0', 'poiweight': [], 'childtype': [], 'adname': '铁山港区', 'name': '南星汽车维修有限公司', 'location': '109.515717,21.526795', 'tel': '13324797540;13627795575', 'shopid': [], 'id': 'B0FFJTSKZR'}, {'parent': [], 'address': '合浦县名顺汽车维修养护中心', 'distance': [], 'pname': '广西壮族自治区', 'importance': [], 'biz_ext': {'cost': [], 'rating': '3.8'}, 'biz_type': [], 'cityname': '北海市', 'type': '汽车维修;汽车维修;汽车维修', 'photos': [{'title': [], 'url': 'http://store.is.autonavi.com/showpic/c81c5d16dff4f31f5930287d2bc1f9d8'}], 'typecode': '030000', 'shopinfo': '1', 'poiweight': [], 'childtype': [], 'adname': '合浦县', 'name': '名顺汽修车养护中心', 'location': '109.217355,21.677845', 'tel': '13544733077', 'shopid': [], 'id': 'B0KR97HHIP'}, {'parent': [], 'address': '湘潭路与杭州路交汇处东南角A18号', 'distance': [], 'pname': '广西壮族自治区', 'importance': [], 'biz_ext': {'cost': [], 'rating': '4.2'}, 'biz_type': [], 'cityname': '北海市', 'type': '汽车服务;汽车养护/装饰;汽车养护', 'photos': [{'title': [], 'url': 'http://store.is.autonavi.com/showpic/03e01dacb791e13958fac64e598b90b5'}, {'title': [], 'url': 'http://store.is.autonavi.com/showpic/acede3dfbb77e28f8dbef75e511f5b2c'}, {'title': [], 'url': 'http://store.is.autonavi.com/showpic/4c1511cdde3092e0ba3794ab08d57eac'}], 'typecode': '010400', 'shopinfo': '1', 'poiweight': [], 'childtype': [], 'adname': '银海区', 'name': '车友聚汽车维修店(汽车维修保养贴膜洗车钣金喷漆)', 'location': '109.148628,21.432462', 'tel': '18011896614', 'shopid': [], 'id': 'B0KGXCW5T6'}, {'parent': [], 'address': '兴国路8号', 'distance': [], 'pname': '广西壮族自治区', 'importance': [], 'biz_ext': {'cost': [], 'rating': '4.4'}, 'biz_type': [], 'cityname': '北海市', 'type': '汽车维修;汽车维修;汽车维修', 'photos': [{'title': [], 'url': 'http://store.is.autonavi.com/showpic/01a4232e59a38578d0a4418e38a56883'}], 'typecode': '030000', 'shopinfo': '0', 'poiweight': [], 'childtype': [], 'adname': '银海区', 'name': '车管家汽车维修美容养护中心', 'location': '109.133338,21.441689', 'tel': '15007796548;15207804494', 'shopid': [], 'id': 'B0LGN7MG95'}, {'parent': [], 'address': '北海大道辅路与明都路交叉口东280米汽车维修美容保养.钣金喷漆.凹陷修复', 'distance': [], 'pname': '广西壮族自治区', 'importance': [], 'biz_ext': {'cost': [], 'rating': '4.1'}, 'biz_type': [], 'cityname': '北海市', 'type': '汽车维修;汽车维修;汽车维修', 'photos': [{'title': [], 'url': 'http://store.is.autonavi.com/showpic/5bdb798db930f4f9ad2142de91291267'}, {'title': [], 'url': 'http://store.is.autonavi.com/showpic/e684dfa409b871267fd622d94f3b2492'}], 'typecode': '030000', 'shopinfo': '1', 'poiweight': [], 'childtype': [], 'adname': '海城区', 'name': '佰车汇汽车维修美容', 'location': '109.153579,21.477656', 'tel': '13977979688', 'shopid': [], 'id': 'B0GKVO6VT0'}, {'parent': [], 'address': '上海路与江苏路交汇处西南角便民市场第七第八间', 'distance': [], 'pname': '广西壮族自治区', 'importance': [], 'biz_ext': {'cost': [], 'rating': '4.0'}, 'biz_type': [], 'cityname': '北海市', 'type': '汽车维修;汽车维修;汽车维修', 'photos': [{'title': [], 'url': 'http://store.is.autonavi.com/showpic/6ffc084b8c455e85fe69e3a3bba8919e'}], 'typecode': '030000', 'shopinfo': '1', 'poiweight': [], 'childtype': [], 'adname': '银海区', 'name': '鑫铂汽车专业维修养护中心', 'location': '109.157796,21.447832', 'tel': '15777900079', 'shopid': [], 'id': 'B0J07C5KCP'}, {'parent': [], 'address': '新世纪大道与上海路交汇处往东300米驿马小学旁', 'distance': [], 'pname': '广西壮族自治区', 'importance': [], 'biz_ext': {'cost': [], 'rating': '3.9'}, 'biz_type': [], 'cityname': '北海市', 'type': '汽车维修;汽车维修;汽车维修', 'photos': [{'title': [], 'url': 'http://store.is.autonavi.com/showpic/ae440595775e242e919a86f98c7a7705'}, {'title': [], 'url': 'http://store.is.autonavi.com/showpic/208f5033178b8f4d980e3ee376fce4f6'}, {'title': [], 'url': 'http://store.is.autonavi.com/showpic/61c4ffa3606a775f0034fb78e70c2e1c'}], 'typecode': '030000', 'shopinfo': '1', 'poiweight': [], 'childtype': [], 'adname': '海城区', 'name': '顺鑫汽车维修养护中心', 'location': '109.161120,21.454660', 'tel': '17707796827', 'shopid': [], 'id': 'B0FFL7KI4O'}, {'parent': [], 'address': '兴港镇陂头村四号路旁', 'distance': [], 'pname': '广西壮族自治区', 'importance': [], 'biz_ext': {'cost': [], 'rating': '3.9'}, 'biz_type': [], 'cityname': '北海市', 'type': '汽车维修;汽车维修;汽车维修', 'photos': [{'title': [], 'url': 'http://store.is.autonavi.com/showpic/5a8bf6a8a6fd0df37aa7535c4d263ca7'}, {'title': [], 'url': 'http://store.is.autonavi.com/showpic/4bf79edda88ebbc09edf6f2d431aa531'}], 'typecode': '030000', 'shopinfo': '0', 'poiweight': [], 'childtype': [], 'adname': '铁山港区', 'name': '北海源达汽车维修有限公司', 'location': '109.512981,21.527162', 'tel': '13978964317', 'shopid': [], 'id': 'B0HRVSTE8Z'}, {'parent': [], 'address': '海芳中医诊所西侧100米', 'distance': [], 'pname': '广西壮族自治区', 'importance': [], 'biz_ext': {'cost': [], 'rating': '4.0'}, 'biz_type': [], 'cityname': '北海市', 'type': '汽车维修;汽车维修;汽车维修', 'photos': [{'title': [], 'url': 'http://store.is.autonavi.com/showpic/5e739a5dc22259a3449fff441572d672'}], 'typecode': '030000', 'shopinfo': '0', 'poiweight': [], 'childtype': [], 'adname': '海城区', 'name': '鸿盛汽车维修', 'location': '109.155590,21.494832', 'tel': '13507791089;18775786651', 'shopid': [], 'id': 'B0FFGH6678'}, {'parent': [], 'address': '东山一路与东城北路交叉口北220米', 'distance': [], 'pname': '广西壮族自治区', 'importance': [], 'biz_ext': {'cost': [], 'rating': '4.1'}, 'biz_type': [], 'cityname': '北海市', 'type': '汽车维修;汽车综合维修;汽车综合维修', 'photos': [{'title': [], 'url': 'http://store.is.autonavi.com/showpic/f9fd70e7132941e8d0c6c0c3819b0963'}], 'typecode': '030100', 'shopinfo': '0', 'poiweight': [], 'childtype': [], 'adname': '合浦县', 'name': '良骏汽车维修服务中心', 'location': '109.205900,21.677407', 'tel': [], 'shopid': [], 'id': 'B0IKMDGNFS'}, {'parent': [], 'address': '银滩镇金海岸大道西海岸国际工社对面大席村路口', 'distance': [], 'pname': '广西壮族自治区', 'importance': [], 'biz_ext': {'cost': [], 'rating': '3.9'}, 'biz_type': [], 'cityname': '北海市', 'type': '汽车维修;汽车综合维修;汽车综合维修', 'photos': [{'title': [], 'url': 'http://store.is.autonavi.com/showpic/6e43b5adc21035840e7d3515e95cb46f'}, {'title': [], 'url': 'http://store.is.autonavi.com/showpic/5e37b3978cca73ca6149796043d32b28'}], 'typecode': '030100', 'shopinfo': '0', 'poiweight': [], 'childtype': [], 'adname': '银海区', 'name': '鹏骏汽车维修中心', 'location': '109.107478,21.433894', 'tel': [], 'shopid': [], 'id': 'B0FFI74DEY'}, {'parent': [], 'address': '杭州路与沙江路交汇处', 'distance': [], 'pname': '广西壮族自治区', 'importance': [], 'biz_ext': {'cost': [], 'rating': '4.5'}, 'biz_type': [], 'cityname': '北海市', 'type': '汽车服务;洗车场;洗车场|汽车服务;汽车养护/装饰;汽车养护|汽车维修;汽车维修;汽车维修', 'photos': [{'title': [], 'url': 'http://store.is.autonavi.com/showpic/d44915eaae307a67762f13f8cab38643'}, {'title': [], 'url': 'http://store.is.autonavi.com/showpic/25b869197a90dc4a404c690ded7ac366'}, {'title': [], 'url': 'http://store.is.autonavi.com/showpic/ac66d60e22defa0b24efd6f3fdad20e7'}], 'typecode': '010500|010400|030000', 'shopinfo': '1', 'poiweight': [], 'childtype': [], 'adname': '银海区', 'name': '北海乐奥汽车服务养护(奥迪4S团队创业店)', 'location': '109.151696,21.432624', 'tel': '15777987370', 'shopid': [], 'id': 'B0LD5M5SE2'}, {'parent': [], 'address': '金鸡路与325国道交叉口东北40米', 'distance': [], 'pname': '广西壮族自治区', 'importance': [], 'biz_ext': {'cost': [], 'rating': '4.3'}, 'biz_type': [], 'cityname': '北海市', 'type': '汽车维修;汽车综合维修;汽车综合维修', 'photos': [{'title': [], 'url': 'http://store.is.autonavi.com/showpic/e2afbbe0a924049093c08e8746d7bac5'}, {'title': [], 'url': 'http://store.is.autonavi.com/showpic/c699d950e88f0f1a84a4d55fc2c97b65'}], 'typecode': '030100', 'shopinfo': '0', 'poiweight': [], 'childtype': [], 'adname': '合浦县', 'name': '佳弘汽车维修厂', 'location': '109.181278,21.655107', 'tel': [], 'shopid': [], 'id': 'B0HKDR1X1R'}, {'parent': [], 'address': '山口镇镇北大道', 'distance': [], 'pname': '广西壮族自治区', 'importance': [], 'biz_ext': {'cost': [], 'rating': '3.9'}, 'biz_type': [], 'cityname': '北海市', 'type': '汽车维修;汽车维修;汽车维修', 'photos': [{'title': [], 'url': 'http://store.is.autonavi.com/showpic/8e5f158e4723a4594a920750f72fc7f7'}, {'title': [], 'url': 'http://store.is.autonavi.com/showpic/e39df918230bafdcc080af83a199ee91'}], 'typecode': '030000', 'shopinfo': '0', 'poiweight': [], 'childtype': [], 'adname': '合浦县', 'name': '莫四汽车修理厂', 'location': '109.731771,21.612820', 'tel': '13978986478', 'shopid': [], 'id': 'B0FFH3AUIM'}, {'parent': [], 'address': '廉州大道附近', 'distance': [], 'pname': '广西壮族自治区', 'importance': [], 'biz_ext': {'cost': [], 'rating': '3.7'}, 'biz_type': [], 'cityname': '北海市', 'type': '汽车维修;汽车综合维修;汽车综合维修', 'photos': [{'title': [], 'url': 'http://store.is.autonavi.com/showpic/1a7882c5d6ebc87e81337f02708f0b8d'}], 'typecode': '030100', 'shopinfo': '0', 'poiweight': [], 'childtype': [], 'adname': '合浦县', 'name': '穗浦汽车修理厂', 'location': '109.221349,21.679814', 'tel': [], 'shopid': [], 'id': 'B0FFI75J0R'}, {'parent': [], 'address': '沿海铁路合浦综合站区东北侧250米', 'distance': [], 'pname': '广西壮族自治区', 'importance': [], 'biz_ext': {'cost': [], 'rating': '3.8'}, 'biz_type': [], 'cityname': '北海市', 'type': '汽车维修;汽车维修;汽车维修', 'photos': [{'title': [], 'url': 'http://store.is.autonavi.com/showpic/f6525b27ac9e288c0a9e592f3d78c5a3'}], 'typecode': '030000', 'shopinfo': '0', 'poiweight': [], 'childtype': [], 'adname': '合浦县', 'name': '合浦县奔捷汽修', 'location': '109.183637,21.630030', 'tel': [], 'shopid': [], 'id': 'B0H0ZUVPIB'}, {'parent': [], 'address': '北海大道63-1号诚安公寓1幢0101号众奥汽车专业维修养护中心', 'distance': [], 'pname': '广西壮族自治区', 'importance': [], 'biz_ext': {'cost': [], 'rating': '4.1'}, 'biz_type': [], 'cityname': '北海市', 'type': '汽车维修;汽车维修;汽车维修', 'photos': [{'title': [], 'url': 'https://aos-comment.amap.com/B0H1PUQHOD/headerImg/0c69e8db38b22e220158f869791c2d3f_2048_2048_80.jpg'}, {'title': [], 'url': 'http://store.is.autonavi.com/showpic/398d3f815d011c6f03111b993a873227'}], 'typecode': '030000', 'shopinfo': '1', 'poiweight': [], 'childtype': [], 'adname': '海城区', 'name': '众奥汽车专业维修养护中心', 'location': '109.145964,21.475422', 'tel': [], 'shopid': [], 'id': 'B0H1PUQHOD'}, {'parent': [], 'address': '泰丰花园2-2商铺', 'distance': [], 'pname': '广西壮族自治区', 'importance': [], 'biz_ext': {'cost': [], 'rating': '4.0'}, 'biz_type': [], 'cityname': '北海市', 'type': '汽车维修;汽车综合维修;汽车综合维修', 'photos': [{'title': [], 'url': 'http://store.is.autonavi.com/showpic/af7d195521316cab60228602ee090baa'}, {'title': [], 'url': 'http://store.is.autonavi.com/showpic/558ccf45a3102f265a7cb8cc'}], 'typecode': '030100', 'shopinfo': '0', 'poiweight': [], 'childtype': [], 'adname': '海城区', 'name': '劲速汽车维修', 'location': '109.094492,21.467210', 'tel': [], 'shopid': [], 'id': 'B030B0MU8Z'}, {'parent': [], 'address': '廉阳大道199号', 'distance': [], 'pname': '广西壮族自治区', 'importance': [], 'biz_ext': {'cost': [], 'rating': '4.0'}, 'biz_type': [], 'cityname': '北海市', 'type': '汽车维修;汽车综合维修;汽车综合维修', 'photos': [{'title': [], 'url': 'http://store.is.autonavi.com/showpic/d96b66efbcc1f0cb2a593c7997b8cf6c'}, {'title': [], 'url': 'http://store.is.autonavi.com/showpic/6fdff5c2707486331933ccd4eced8848'}, {'title': [], 'url': 'http://store.is.autonavi.com/showpic/dc328bd6e7445b598bbf3b05d8493535'}], 'typecode': '030100', 'shopinfo': '1', 'poiweight': [], 'childtype': [], 'adname': '合浦县', 'name': '强业汽车维修服务中心', 'location': '109.223392,21.672374', 'tel': '15078912198', 'shopid': [], 'id': 'B0JDVHMDX6'}, {'parent': [], 'address': '工业园科兴路鑫吉汽车公司右侧', 'distance': [], 'pname': '广西壮族自治区', 'importance': [], 'biz_ext': {'cost': [], 'rating': '3.7'}, 'biz_type': [], 'cityname': '北海市', 'type': '汽车维修;汽车综合维修;汽车综合维修', 'photos': [], 'typecode': '030100', 'shopinfo': '0', 'poiweight': [], 'childtype': [], 'adname': '海城区', 'name': '凯星汽修厂', 'location': '109.206353,21.516199', 'tel': [], 'shopid': [], 'id': 'B0JUMS4DDG'}], 'status': '1', 'info': 'OK'}\n",
"{'suggestion': {'keywords': [], 'cities': []}, 'count': '450', 'infocode': '10000', 'pois': [{'parent': [], 'address': '一环北路与城西一路交叉口北80米', 'distance': [], 'pname': '广西壮族自治区', 'importance': [], 'biz_ext': {'cost': [], 'rating': '3.7'}, 'biz_type': [], 'cityname': '玉林市', 'type': '汽车服务;汽车养护/装饰;汽车养护', 'photos': [{'title': [], 'url': 'http://store.is.autonavi.com/showpic/34039bc2757d6df22b852c197b917161'}], 'typecode': '010400', 'shopinfo': '0', 'poiweight': [], 'childtype': [], 'adname': '北流市', 'name': '车本色汽车美容工作室', 'location': '110.340782,22.704399', 'tel': '18177525979;19978946090', 'shopid': [], 'id': 'B0G3JU7KPR'}, {'parent': [], 'address': '沿江西路与大南路交叉口南180米', 'distance': [], 'pname': '广西壮族自治区', 'importance': [], 'biz_ext': {'cost': [], 'rating': '4.3'}, 'biz_type': [], 'cityname': '玉林市', 'type': '汽车服务;汽车养护/装饰;汽车养护', 'photos': [{'title': [], 'url': 'http://store.is.autonavi.com/showpic/eed06eac49dc0778e7fa674ab9cdfcba'}, {'title': [], 'url': 'http://store.is.autonavi.com/showpic/810ca2da9ed6a0aca3921aa3ab25a65e'}, {'title': [], 'url': 'http://store.is.autonavi.com/showpic/2eb226aaf996f7e3ed9e578a9f3c19c9'}], 'typecode': '010400', 'shopinfo': '0', 'poiweight': [], 'childtype': [], 'adname': '玉州区', 'name': '车爵仕汽车美容服务(大南路店)', 'location': '110.146232,22.605712', 'tel': '15578581308;18775518408', 'shopid': [], 'id': 'B0FFINF3CN'}, {'parent': [], 'address': '二环西路48号', 'distance': [], 'pname': '广西壮族自治区', 'importance': [], 'biz_ext': {'cost': [], 'rating': '4.2'}, 'biz_type': [], 'cityname': '玉林市', 'type': '汽车服务;洗车场;洗车场', 'photos': [{'title': [], 'url': 'http://store.is.autonavi.com/showpic/f6533eb3270d1aa59439a8eda5267e5e'}, {'title': [], 'url': 'http://store.is.autonavi.com/showpic/f795f03cc03ca238d236bbf447c1a980'}, {'title': [], 'url': 'http://store.is.autonavi.com/showpic/25eb3dda2fad178d14ca7367ba51d037'}], 'typecode': '010500', 'shopinfo': '1', 'poiweight': [], 'childtype': [], 'adname': '北流市', 'name': '好车坊汽车影音', 'location': '110.334502,22.701612', 'tel': [], 'shopid': [], 'id': 'B0GDCZ89D9'}, {'parent': [], 'address': '南园二路三里43号', 'distance': [], 'pname': '广西壮族自治区', 'importance': [], 'biz_ext': {'cost': [], 'rating': '3.8'}, 'biz_type': [], 'cityname': '玉林市', 'type': '汽车服务;汽车养护/装饰;汽车养护', 'photos': [{'title': [], 'url': 'http://store.is.autonavi.com/showpic/2902c30265cac6f08d64c1a040d728ca'}], 'typecode': '010400', 'shopinfo': '1', 'poiweight': [], 'childtype': [], 'adname': '北流市', 'name': '喜车(汽车美容工作室)', 'location': '110.358469,22.692597', 'tel': '15277759191', 'shopid': [], 'id': 'B0KDN5Q6LS'}, {'parent': [], 'address': '经七路与三峰路交叉口南180米', 'distance': [], 'pname': '广西壮族自治区', 'importance': [], 'biz_ext': {'cost': [], 'rating': '3.4'}, 'biz_type': [], 'cityname': '玉林市', 'type': '汽车服务;汽车养护/装饰;汽车养护', 'photos': [], 'typecode': '010400', 'shopinfo': '0', 'poiweight': [], 'childtype': [], 'adname': '陆川县', 'name': '喜车坊', 'location': '110.277975,22.307575', 'tel': [], 'shopid': [], 'id': 'B0LAXR4XGZ'}, {'parent': [], 'address': '欧景嘉园东南门旁', 'distance': [], 'pname': '广西壮族自治区', 'importance': [], 'biz_ext': {'cost': [], 'rating': '4.1'}, 'biz_type': [], 'cityname': '玉林市', 'type': '汽车服务;汽车养护/装饰;汽车养护', 'photos': [{'title': [], 'url': 'https://aos-comment.amap.com/B0G0X70L27/headerImg/83313e9ea1120409419afe86f2f8b5bf_2048_2048_80.jpg'}, {'title': [], 'url': 'https://aos-comment.amap.com/B0G0X70L27/headerImg/191a89d0f67131c48a9d6fbe495fe42a_2048_2048_80.jpg'}, {'title': [], 'url': 'http://store.is.autonavi.com/showpic/b8180dceb9293c4f8dffe65a9bcda2e8'}], 'typecode': '010400', 'shopinfo': '0', 'poiweight': [], 'childtype': [], 'adname': '玉州区', 'name': '敏匠汽车美容工作室', 'location': '110.167415,22.610538', 'tel': '15278310783', 'shopid': [], 'id': 'B0G0X70L27'}, {'parent': [], 'address': '玉兰园8-10幢110-111', 'distance': [], 'pname': '广西壮族自治区', 'importance': [], 'biz_ext': {'cost': [], 'rating': '3.6'}, 'biz_type': [], 'cityname': '玉林市', 'type': '汽车服务;洗车场;洗车场|汽车服务;汽车养护/装饰;汽车养护', 'photos': [{'title': [], 'url': 'http://store.is.autonavi.com/showpic/1e8906fbdfe8f7c1e0813207339309ba'}], 'typecode': '010500|010400', 'shopinfo': '0', 'poiweight': [], 'childtype': [], 'adname': '玉州区', 'name': '百车汇汽车美容服务(吉泉路店)', 'location': '110.176354,22.652067', 'tel': [], 'shopid': [], 'id': 'B0FFG8YWFB'}, {'parent': [], 'address': '大南路与广新路交叉口北160米', 'distance': [], 'pname': '广西壮族自治区', 'importance': [], 'biz_ext': {'cost': [], 'rating': '3.5'}, 'biz_type': [], 'cityname': '玉林市', 'type': '汽车服务;汽车养护/装饰;汽车养护', 'photos': [], 'typecode': '010400', 'shopinfo': '0', 'poiweight': [], 'childtype': [], 'adname': '玉州区', 'name': '满天星汽车美容服务中心', 'location': '110.145788,22.605345', 'tel': [], 'shopid': [], 'id': 'B0K3TXNQO5'}, {'parent': [], 'address': '玉东新区文苑路奥园康城17栋1-08号商铺', 'distance': [], 'pname': '广西壮族自治区', 'importance': [], 'biz_ext': {'cost': [], 'rating': '4.1'}, 'biz_type': [], 'cityname': '玉林市', 'type': '汽车服务;汽车养护/装饰;汽车养护', 'photos': [{'title': [], 'url': 'http://store.is.autonavi.com/showpic/b48045f54df35444e11baa66f7781eba'}], 'typecode': '010400', 'shopinfo': '0', 'poiweight': [], 'childtype': [], 'adname': '玉州区', 'name': '新启点汽车美容工作室', 'location': '110.208452,22.663593', 'tel': '18877576033', 'shopid': [], 'id': 'B0IUHCP1OC'}, {'parent': [], 'address': '翰林华府6-35育才路8号', 'distance': [], 'pname': '广西壮族自治区', 'importance': [], 'biz_ext': {'cost': [], 'rating': '3.7'}, 'biz_type': [], 'cityname': '玉林市', 'type': '汽车服务;汽车养护/装饰;汽车养护', 'photos': [{'title': [], 'url': 'http://store.is.autonavi.com/showpic/7b593c89ab79c149d39b5cb92267960e'}, {'title': [], 'url': 'http://store.is.autonavi.com/showpic/61ee8022bf2a9f466d7e693a354ff5ed'}], 'typecode': '010400', 'shopinfo': '1', 'poiweight': [], 'childtype': [], 'adname': '北流市', 'name': '车友仔汽车美容工作室', 'location': '110.332888,22.650820', 'tel': '13650152755', 'shopid': [], 'id': 'B0K3PU5P17'}, {'parent': [], 'address': '六靖镇华南街257号', 'distance': [], 'pname': '广西壮族自治区', 'importance': [], 'biz_ext': {'cost': [], 'rating': '4.1'}, 'biz_type': [], 'cityname': '玉林市', 'type': '汽车服务;汽车养护/装饰;汽车养护', 'photos': [{'title': [], 'url': 'http://store.is.autonavi.com/showpic/516260acdaf67cdf42dff8759873bfe9'}], 'typecode': '010400', 'shopinfo': '0', 'poiweight': [], 'childtype': [], 'adname': '北流市', 'name': '佰车汇汽车美容服务中心', 'location': '110.532264,22.254248', 'tel': [], 'shopid': [], 'id': 'B0FFHJXWTV'}, {'parent': [], 'address': '万园路与万良路交叉口东南100米', 'distance': [], 'pname': '广西壮族自治区', 'importance': [], 'biz_ext': {'cost': [], 'rating': '4.0'}, 'biz_type': [], 'cityname': '玉林市', 'type': '汽车服务;汽车养护/装饰;汽车养护', 'photos': [], 'typecode': '010400', 'shopinfo': '0', 'poiweight': [], 'childtype': [], 'adname': '玉州区', 'name': '展耀汽车工作室', 'location': '110.164904,22.610065', 'tel': [], 'shopid': [], 'id': 'B0I2C9HD93'}, {'parent': [], 'address': '玉州区友车维修美容中心石牛安置区B区2幢', 'distance': [], 'pname': '广西壮族自治区', 'importance': [], 'biz_ext': {'cost': [], 'rating': '3.9'}, 'biz_type': [], 'cityname': '玉林市', 'type': '汽车服务;汽车养护/装饰;汽车养护', 'photos': [{'title': [], 'url': 'http://store.is.autonavi.com/showpic/0476c465e2b79f6fd4c494ff7dad6e6e'}, {'title': [], 'url': 'http://store.is.autonavi.com/showpic/b58a427a3a1b508514b1bada188c0b84'}], 'typecode': '010400', 'shopinfo': '1', 'poiweight': [], 'childtype': [], 'adname': '玉州区', 'name': '友车维修美容中心', 'location': '110.183769,22.660174', 'tel': '15626562550;15878882556', 'shopid': [], 'id': 'B0G2U61ALB'}, {'parent': [], 'address': '一环北路188号入二手车市场内', 'distance': [], 'pname': '广西壮族自治区', 'importance': [], 'biz_ext': {'cost': [], 'rating': '4.5'}, 'biz_type': [], 'cityname': '玉林市', 'type': '汽车维修;汽车综合维修;汽车综合维修|汽车服务;汽车养护/装饰;汽车养护', 'photos': [{'title': [], 'url': 'http://store.is.autonavi.com/showpic/8291e454d0c2c48d3f940d3845e0ae97'}, {'title': [], 'url': 'http://store.is.autonavi.com/showpic/e131c0e867ffd37940049b28a4a18291'}, {'title': [], 'url': 'http://store.is.autonavi.com/showpic/d2c782f3487834447ddeb3f205bb3b40'}], 'typecode': '030100|010400', 'shopinfo': '1', 'poiweight': [], 'childtype': [], 'adname': '玉州区', 'name': '玉林市卓佳汽车维修服务有限公司', 'location': '110.161138,22.647105', 'tel': '0775-2308680', 'shopid': [], 'id': 'B0J0YUTLES'}, {'parent': [], 'address': '玉州区开发区进士路174号', 'distance': [], 'pname': '广西壮族自治区', 'importance': [], 'biz_ext': {'cost': [], 'rating': '3.8'}, 'biz_type': [], 'cityname': '玉林市', 'type': '汽车服务;汽车养护/装饰;汽车养护', 'photos': [{'title': [], 'url': 'http://store.is.autonavi.com/showpic/dcd4022534539d9e320a6cf92887ae23'}, {'title': [], 'url': 'http://store.is.autonavi.com/showpic/03829dae3c38299d82973f57c7983a01'}], 'typecode': '010400', 'shopinfo': '0', 'poiweight': [], 'childtype': [], 'adname': '玉州区', 'name': '美瑞汽车美容中心', 'location': '110.139711,22.639466', 'tel': '13877575480', 'shopid': [], 'id': 'B0FFF4TLNN'}, {'parent': [], 'address': '二环东路201号绿地城小区13幢1层11号', 'distance': [], 'pname': '广西壮族自治区', 'importance': [], 'biz_ext': {'cost': [], 'rating': '4.3'}, 'biz_type': [], 'cityname': '玉林市', 'type': '汽车服务;汽车养护/装饰;汽车养护', 'photos': [{'title': [], 'url': 'http://store.is.autonavi.com/showpic/10d54cd02666910130585e6e9e6e8d66'}, {'title': [], 'url': 'http://store.is.autonavi.com/showpic/1d269b30449a2e9e5301078e8f949fb5'}, {'title': [], 'url': 'https://aos-comment.amap.com/B0J14DZ5WZ/headerImg/5b369554330a6142654a737b6d39dc67_2048_2048_80.jpg'}], 'typecode': '010400', 'shopinfo': '1', 'poiweight': [], 'childtype': [], 'adname': '玉州区', 'name': '玉林市威驰汽车养护中心', 'location': '110.195267,22.613580', 'tel': '18878558180', 'shopid': [], 'id': 'B0J14DZ5WZ'}, {'parent': [], 'address': '玉林市公安局福绵分局正对面(福驰汽车维修美容养护中心)', 'distance': [], 'pname': '广西壮族自治区', 'importance': [], 'biz_ext': {'cost': [], 'rating': '4.3'}, 'biz_type': [], 'cityname': '玉林市', 'type': '汽车维修;汽车维修;汽车维修', 'photos': [{'title': [], 'url': 'http://store.is.autonavi.com/showpic/1906591ddf7c1b1c50b13ff77238c37e'}, {'title': [], 'url': 'https://aos-comment.amap.com/B0G395NJ5R/comment/content_media_external_file_100000255_1747413972384_99668444.jpg'}, {'title': [], 'url': 'http://store.is.autonavi.com/showpic/5dd6fc8defd23459de267ebcf93c6976'}], 'typecode': '030000', 'shopinfo': '1', 'poiweight': [], 'childtype': [], 'adname': '福绵区', 'name': '福驰汽车维修美容养护中心', 'location': '110.084482,22.600557', 'tel': '15878543704;18507716477', 'shopid': [], 'id': 'B0G395NJ5R'}, {'parent': [], 'address': '温泉中路255号', 'distance': [], 'pname': '广西壮族自治区', 'importance': [], 'biz_ext': {'cost': [], 'rating': '4.4'}, 'biz_type': [], 'cityname': '玉林市', 'type': '汽车服务;汽车养护/装饰;汽车养护', 'photos': [{'title': [], 'url': 'http://store.is.autonavi.com/showpic/f9cb94e72fde4f22b5bdb0129f16aa44'}, {'title': [], 'url': 'http://store.is.autonavi.com/showpic/9cf4befaf277206480d8997b0fa921e3'}, {'title': [], 'url': 'http://store.is.autonavi.com/showpic/323e90879486441ff78f8ea2ae540a52'}], 'typecode': '010400', 'shopinfo': '0', 'poiweight': [], 'childtype': [], 'adname': '陆川县', 'name': '车爵仕汽车美容装饰养护连锁服务(温泉大道中店)', 'location': '110.269003,22.321577', 'tel': '0775-7319899;0775-7319999;13807752186', 'shopid': [], 'id': 'B0FFF2TVZU'}, {'parent': [], 'address': '顺客汇生鲜东北侧', 'distance': [], 'pname': '广西壮族自治区', 'importance': [], 'biz_ext': {'cost': [], 'rating': '4.2'}, 'biz_type': [], 'cityname': '玉林市', 'type': '汽车服务;汽车养护/装饰;汽车养护', 'photos': [{'title': [], 'url': 'http://store.is.autonavi.com/showpic/643d6733ac6f6ff4e9ef0a33eef8be1b'}, {'title': [], 'url': 'http://store.is.autonavi.com/showpic/53cd873e9cbd0dcb19679b225e958486'}, {'title': [], 'url': 'http://store.is.autonavi.com/showpic/b7b2d3c7927ff16e5a7828db1653a902'}], 'typecode': '010400', 'shopinfo': '0', 'poiweight': [], 'childtype': [], 'adname': '博白县', 'name': '大村十八汽车美容服务中心', 'location': '109.677338,22.226706', 'tel': '15012722226', 'shopid': [], 'id': 'B0JD25LPLJ'}, {'parent': [], 'address': '玉东派出所玉林市第一职业中等专业学校警务室东侧100米', 'distance': [], 'pname': '广西壮族自治区', 'importance': [], 'biz_ext': {'cost': [], 'rating': '4.4'}, 'biz_type': [], 'cityname': '玉林市', 'type': '汽车服务;汽车养护/装饰;汽车养护', 'photos': [{'title': [], 'url': 'http://store.is.autonavi.com/showpic/da35e95470573e1403ee801f9b189fae'}, {'title': [], 'url': 'http://store.is.autonavi.com/showpic/49b730d2020fee7143c980ab0556d6b6'}], 'typecode': '010400', 'shopinfo': '0', 'poiweight': [], 'childtype': [], 'adname': '玉州区', 'name': '奥众汽车美容中心', 'location': '110.205356,22.652590', 'tel': '19148058010', 'shopid': [], 'id': 'B0FFIBGCAB'}], 'status': '1', 'info': 'OK'}\n",
"{'suggestion': {'keywords': [], 'cities': []}, 'count': '450', 'infocode': '10000', 'pois': [{'parent': [], 'address': '玉贵路571号', 'distance': [], 'pname': '广西壮族自治区', 'importance': [], 'biz_ext': {'cost': [], 'rating': '4.2'}, 'biz_type': [], 'cityname': '玉林市', 'type': '汽车服务;汽车养护/装饰;汽车养护|汽车服务;洗车场;洗车场', 'photos': [{'title': [], 'url': 'http://store.is.autonavi.com/showpic/b6a60beb4fd3650105d050f86186bf91'}, {'title': [], 'url': 'http://store.is.autonavi.com/showpic/d2ca3df603ce15559366986361e39d5c'}], 'typecode': '010400|010500', 'shopinfo': '1', 'poiweight': [], 'childtype': [], 'adname': '兴业县', 'name': '瘦弟洗车美容服务部', 'location': '109.880986,22.746014', 'tel': '13977569081', 'shopid': [], 'id': 'B0307017PH'}, {'parent': [], 'address': '新民路220号', 'distance': [], 'pname': '广西壮族自治区', 'importance': [], 'biz_ext': {'cost': [], 'rating': '4.5'}, 'biz_type': [], 'cityname': '玉林市', 'type': '汽车服务;汽车养护/装饰;汽车养护', 'photos': [{'title': [], 'url': 'http://store.is.autonavi.com/showpic/9ecc4163e70cccccffbf8414a5b81aba'}, {'title': [], 'url': 'http://store.is.autonavi.com/showpic/bc0fd518c4ae05fc1771b8e840bec913'}, {'title': [], 'url': 'http://store.is.autonavi.com/showpic/9d2f20e2148a95722672c1b376f3b6cd'}], 'typecode': '010400', 'shopinfo': '0', 'poiweight': [], 'childtype': [], 'adname': '玉州区', 'name': '顺风汽车美容服务中心(新民路店)', 'location': '110.136613,22.627109', 'tel': '18776355568', 'shopid': [], 'id': 'B03070NH12'}, {'parent': [], 'address': '永隆街西50米', 'distance': [], 'pname': '广西壮族自治区', 'importance': [], 'biz_ext': {'cost': [], 'rating': '4.2'}, 'biz_type': [], 'cityname': '玉林市', 'type': '汽车服务;汽车养护/装饰;汽车养护', 'photos': [{'title': [], 'url': 'http://store.is.autonavi.com/showpic/00b8ed12f988213cf8dd4f73ff3066e5'}, {'title': [], 'url': 'http://store.is.autonavi.com/showpic/dc97ed443378b71d3fa1ee84411a7ca6'}], 'typecode': '010400', 'shopinfo': '0', 'poiweight': [], 'childtype': [], 'adname': '容县', 'name': '兵团汽车美容服务店', 'location': '110.665626,23.060472', 'tel': '13737505384;18269253575', 'shopid': [], 'id': 'B0FFG58EBQ'}, {'parent': [], 'address': '城站路126号(公共汽车公司斜对面)', 'distance': [], 'pname': '广西壮族自治区', 'importance': [], 'biz_ext': {'cost': [], 'rating': '4.4'}, 'biz_type': [], 'cityname': '玉林市', 'type': '汽车服务;汽车养护/装饰;汽车养护', 'photos': [{'title': [], 'url': 'http://store.is.autonavi.com/showpic/8f54506aa07ed3ac6efd2eaabbc3d049'}, {'title': [], 'url': 'http://store.is.autonavi.com/showpic/78fefefcefe73476d8c240ffe136a482'}], 'typecode': '010400', 'shopinfo': '0', 'poiweight': [], 'childtype': [], 'adname': '玉州区', 'name': '车文化汽车美容会所', 'location': '110.157649,22.603771', 'tel': '0775-3830668', 'shopid': [], 'id': 'B0FFFKGOKF'}, {'parent': [], 'address': '樟木镇交通管理站东侧50米', 'distance': [], 'pname': '广西壮族自治区', 'importance': [], 'biz_ext': {'cost': [], 'rating': '3.1'}, 'biz_type': [], 'cityname': '玉林市', 'type': '汽车服务;汽车养护/装饰;汽车养护', 'photos': [], 'typecode': '010400', 'shopinfo': '0', 'poiweight': [], 'childtype': [], 'adname': '福绵区', 'name': '车之家汽车美容服务中心', 'location': '110.013341,22.530303', 'tel': [], 'shopid': [], 'id': 'B0GK1CZFHE'}, {'parent': [], 'address': '民主南路519号农行小区12排6号1一、二层', 'distance': [], 'pname': '广西壮族自治区', 'importance': [], 'biz_ext': {'cost': [], 'rating': '3.8'}, 'biz_type': [], 'cityname': '玉林市', 'type': '汽车服务;汽车养护/装饰;汽车养护|汽车维修;汽车维修;汽车维修', 'photos': [{'title': [], 'url': 'https://aos-comment.amap.com/B0FFGCS6I7/headerImg/de454d8299005949c0cb9ca6125ae42d_2048_2048_80.jpg'}, {'title': [], 'url': 'http://store.is.autonavi.com/showpic/38716568a6d58dabc5997a70a377c06e'}, {'title': [], 'url': 'http://store.is.autonavi.com/showpic/ccda41d6669b2f0182ac8e3233bf53cc'}], 'typecode': '010400|030000', 'shopinfo': '0', 'poiweight': [], 'childtype': [], 'adname': '玉州区', 'name': '壳牌喜力(威龙汽车美容)', 'location': '110.170877,22.619567', 'tel': '0775-2222258;13117758110;18776329500', 'shopid': [], 'id': 'B0FFGCS6I7'}, {'parent': [], 'address': '六靖镇镇北路', 'distance': [], 'pname': '广西壮族自治区', 'importance': [], 'biz_ext': {'cost': [], 'rating': '4.3'}, 'biz_type': [], 'cityname': '玉林市', 'type': '汽车服务;汽车养护/装饰;汽车养护', 'photos': [{'title': [], 'url': 'http://store.is.autonavi.com/showpic/21a5196a62d4522e6615e019fb61cc19'}, {'title': [], 'url': 'http://store.is.autonavi.com/showpic/41d25df65ce20ba0520b58adc3a58619'}], 'typecode': '010400', 'shopinfo': '0', 'poiweight': [], 'childtype': [], 'adname': '北流市', 'name': '东鹏汽车美容服务', 'location': '110.537166,22.255229', 'tel': '13087952686', 'shopid': [], 'id': 'B0FFFZMIMI'}, {'parent': [], 'address': '城南大道280号', 'distance': [], 'pname': '广西壮族自治区', 'importance': [], 'biz_ext': {'cost': [], 'rating': '4.2'}, 'biz_type': [], 'cityname': '玉林市', 'type': '汽车服务;汽车养护/装饰;汽车养护', 'photos': [{'title': [], 'url': 'http://store.is.autonavi.com/showpic/88dbff2ae6e0f2749acfa12fd372d424'}, {'title': [], 'url': 'http://store.is.autonavi.com/showpic/c69fc0a087c124c12c628a5b28a88b39'}, {'title': [], 'url': 'http://store.is.autonavi.com/showpic/dfd0c727d1b0fc6e295e337c971615b8'}], 'typecode': '010400', 'shopinfo': '1', 'poiweight': [], 'childtype': [], 'adname': '容县', 'name': '陆车坊汽车养护中心', 'location': '110.561175,22.834506', 'tel': '18775554479', 'shopid': [], 'id': 'B0I1F6HSJT'}, {'parent': [], 'address': '人民东路与秀水北路交叉口西220米', 'distance': [], 'pname': '广西壮族自治区', 'importance': [], 'biz_ext': {'cost': [], 'rating': '4.1'}, 'biz_type': [], 'cityname': '玉林市', 'type': '汽车服务;汽车养护/装饰;汽车养护', 'photos': [{'title': [], 'url': 'https://aos-comment.amap.com/B0JUTRMKXN/headerImg/70bf3edac1f7d62d37a588f36e696178_2048_2048_80.jpg'}], 'typecode': '010400', 'shopinfo': '0', 'poiweight': [], 'childtype': [], 'adname': '玉州区', 'name': '护车使者汽车美容', 'location': '110.211891,22.658676', 'tel': '15277513424', 'shopid': [], 'id': 'B0JUTRMKXN'}, {'parent': [], 'address': '一环北路94号', 'distance': [], 'pname': '广西壮族自治区', 'importance': [], 'biz_ext': {'cost': [], 'rating': '3.9'}, 'biz_type': [], 'cityname': '玉林市', 'type': '汽车服务;汽车养护/装饰;汽车养护', 'photos': [{'title': [], 'url': 'http://store.is.autonavi.com/showpic/c52f3ed14f40d0061060342b1725b2a7'}, {'title': [], 'url': 'http://store.is.autonavi.com/showpic/b2c917c4a9cfb01b1bd2097df3bcbb1f'}], 'typecode': '010400', 'shopinfo': '0', 'poiweight': [], 'childtype': [], 'adname': '玉州区', 'name': '顺丰汽车美容部工作室', 'location': '110.165070,22.651150', 'tel': '19110048136', 'shopid': [], 'id': 'B0K3CRASMQ'}, {'parent': [], 'address': '民西路与民北路交叉口西南120米', 'distance': [], 'pname': '广西壮族自治区', 'importance': [], 'biz_ext': {'cost': [], 'rating': '3.5'}, 'biz_type': [], 'cityname': '玉林市', 'type': '汽车服务;汽车养护/装饰;汽车养护', 'photos': [], 'typecode': '010400', 'shopinfo': '0', 'poiweight': [], 'childtype': [], 'adname': '北流市', 'name': '鸿兴汽车美容维护服务中心', 'location': '110.356123,22.782993', 'tel': [], 'shopid': [], 'id': 'B0FFG10PF1'}, {'parent': [], 'address': '雅园小区西南门旁', 'distance': [], 'pname': '广西壮族自治区', 'importance': [], 'biz_ext': {'cost': [], 'rating': '3.7'}, 'biz_type': [], 'cityname': '玉林市', 'type': '汽车服务;汽车养护/装饰;汽车养护', 'photos': [{'title': [], 'url': 'http://store.is.autonavi.com/showpic/4b38f1d650294a8324c4487bc0e250e7'}], 'typecode': '010400', 'shopinfo': '0', 'poiweight': [], 'childtype': [], 'adname': '玉州区', 'name': '爱车坊汽车美容中心', 'location': '110.176731,22.652107', 'tel': [], 'shopid': [], 'id': 'B0JA29FZA1'}, {'parent': [], 'address': '规划路与朱砂路交叉口北180米', 'distance': [], 'pname': '广西壮族自治区', 'importance': [], 'biz_ext': {'cost': [], 'rating': '3.7'}, 'biz_type': [], 'cityname': '玉林市', 'type': '汽车维修;汽车维修;汽车维修', 'photos': [{'title': [], 'url': 'http://store.is.autonavi.com/showpic/e3fd3606801183e486c04b4b31e06dc1'}], 'typecode': '030000', 'shopinfo': '0', 'poiweight': [], 'childtype': [], 'adname': '北流市', 'name': '鸿润汽车快修/美容服务中心', 'location': '110.361530,22.689216', 'tel': [], 'shopid': [], 'id': 'B0J1OHHDTG'}, {'parent': [], 'address': '站前路255号', 'distance': [], 'pname': '广西壮族自治区', 'importance': [], 'biz_ext': {'cost': [], 'rating': '4.1'}, 'biz_type': [], 'cityname': '玉林市', 'type': '汽车维修;汽车维修;汽车维修', 'photos': [{'title': [], 'url': 'http://store.is.autonavi.com/showpic/2e228f9fb16e1c147d9ac999ecb56cf4'}, {'title': [], 'url': 'http://store.is.autonavi.com/showpic/844e830c7cdd5bc47f91b20b82f6faa8'}, {'title': [], 'url': 'http://store.is.autonavi.com/showpic/090449f13c3e67a23b4a23917d91b910'}], 'typecode': '030000', 'shopinfo': '1', 'poiweight': [], 'childtype': [], 'adname': '玉州区', 'name': '博技汽车维修美容服务中心', 'location': '110.167285,22.605140', 'tel': '18269416255;18777107078', 'shopid': [], 'id': 'B0FFMEVPSP'}, {'parent': [], 'address': '425县道', 'distance': [], 'pname': '广西壮族自治区', 'importance': [], 'biz_ext': {'cost': [], 'rating': '3.5'}, 'biz_type': [], 'cityname': '玉林市', 'type': '汽车维修;汽车维修;汽车维修', 'photos': [{'title': [], 'url': 'http://store.is.autonavi.com/showpic/633409fcbb75a36f5676c524b7898ffa'}, {'title': [], 'url': 'http://store.is.autonavi.com/showpic/a7c4ab898afb7d85b32843acb768d2aa'}, {'title': [], 'url': 'http://store.is.autonavi.com/showpic/fed3495e713c33571b044a48d64a888f'}], 'typecode': '030000', 'shopinfo': '0', 'poiweight': [], 'childtype': [], 'adname': '北流市', 'name': '易记汽车钣金喷漆美容服务中心', 'location': '110.687648,22.323808', 'tel': [], 'shopid': [], 'id': 'B0LAO9BY58'}, {'parent': [], 'address': '博白镇樟岭一路美澳思国际城西南侧约70米处', 'distance': [], 'pname': '广西壮族自治区', 'importance': [], 'biz_ext': {'cost': [], 'rating': '4.1'}, 'biz_type': [], 'cityname': '玉林市', 'type': '汽车服务;汽车养护/装饰;汽车养护', 'photos': [{'title': [], 'url': 'http://store.is.autonavi.com/showpic/3bbaacc01b48c357d8ee96c8842e2f21'}], 'typecode': '010400', 'shopinfo': '0', 'poiweight': [], 'childtype': [], 'adname': '博白县', 'name': '喜车郎汽车美容中心', 'location': '109.991710,22.256459', 'tel': '18894675202', 'shopid': [], 'id': 'B0K63STGDS'}, {'parent': [], 'address': '山心镇蓉兴路387号', 'distance': [], 'pname': '广西壮族自治区', 'importance': [], 'biz_ext': {'cost': [], 'rating': '4.2'}, 'biz_type': [], 'cityname': '玉林市', 'type': '汽车维修;汽车维修;汽车维修', 'photos': [{'title': [], 'url': 'http://store.is.autonavi.com/showpic/ba393447d34dda6f8e6afce1ed2906ac'}, {'title': [], 'url': 'http://store.is.autonavi.com/showpic/2ecd8e2f6544effe65631e7002077176'}, {'title': [], 'url': 'http://store.is.autonavi.com/showpic/e792f76d8746228cf7f32b53cdff4569'}], 'typecode': '030000', 'shopinfo': '1', 'poiweight': [], 'childtype': [], 'adname': '兴业县', 'name': '蓝海汽车美容养护山心服务部', 'location': '109.871318,22.824359', 'tel': '18776437768', 'shopid': [], 'id': 'B0FFG323NG'}, {'parent': [], 'address': '南江街道苗园路383号', 'distance': [], 'pname': '广西壮族自治区', 'importance': [], 'biz_ext': {'cost': [], 'rating': '4.2'}, 'biz_type': [], 'cityname': '玉林市', 'type': '汽车维修;汽车综合维修;汽车综合维修', 'photos': [{'title': [], 'url': 'http://store.is.autonavi.com/showpic/b9300077a446fbbe389ca7d7fb508482'}], 'typecode': '030100', 'shopinfo': '0', 'poiweight': [], 'childtype': [], 'adname': '玉州区', 'name': '志成汽车维修·汽车美容', 'location': '110.160663,22.604440', 'tel': '13877560644;18607756259', 'shopid': [], 'id': 'B0FFH99ZYP'}, {'parent': [], 'address': '玉州区文化广场金西路名讯街路口61号', 'distance': [], 'pname': '广西壮族自治区', 'importance': [], 'biz_ext': {'cost': [], 'rating': '4.3'}, 'biz_type': [], 'cityname': '玉林市', 'type': '汽车服务;汽车养护/装饰;汽车养护', 'photos': [{'title': [], 'url': 'http://store.is.autonavi.com/showpic/e846a6e047ac78bdf23297f01b462fa5'}, {'title': [], 'url': 'http://store.is.autonavi.com/showpic/06e4b5a1d2ddea4c9686fd579d59e2ba'}, {'title': [], 'url': 'http://store.is.autonavi.com/showpic/276cc13b659c02d10147112b37e84368'}], 'typecode': '010400', 'shopinfo': '1', 'poiweight': [], 'childtype': [], 'adname': '玉州区', 'name': '美孚1号车养护(玉林车之美店)', 'location': '110.173213,22.646011', 'tel': '13877508575', 'shopid': [], 'id': 'B0IBFA28QO'}, {'parent': [], 'address': '朱砂路御景豪庭6号楼6-5商铺', 'distance': [], 'pname': '广西壮族自治区', 'importance': [], 'biz_ext': {'cost': [], 'rating': '3.4'}, 'biz_type': [], 'cityname': '玉林市', 'type': '汽车服务;汽车养护/装饰;汽车养护', 'photos': [], 'typecode': '010400', 'shopinfo': '1', 'poiweight': [], 'childtype': [], 'adname': '北流市', 'name': '车魅力汽车美容工作室', 'location': '110.358706,22.688521', 'tel': '15677599290', 'shopid': [], 'id': 'B0L65SO41E'}], 'status': '1', 'info': 'OK'}\n",
"{'suggestion': {'keywords': [], 'cities': []}, 'count': '414', 'infocode': '10000', 'pois': [{'parent': [], 'address': '金宜大道与叶茂互通立交桥交叉口北80米', 'distance': [], 'pname': '广西壮族自治区', 'importance': [], 'biz_ext': {'cost': [], 'rating': '4.1'}, 'biz_type': [], 'cityname': '河池市', 'type': '汽车维修;汽车综合维修;汽车综合维修', 'photos': [{'title': [], 'url': 'http://store.is.autonavi.com/showpic/14e9444d5d412c5a5b224778cb7e9421'}], 'typecode': '030100', 'shopinfo': '0', 'poiweight': [], 'childtype': [], 'adname': '宜州区', 'name': '乐乐汽车维修美容中心', 'location': '108.573498,24.509865', 'tel': [], 'shopid': [], 'id': 'B0FFIWFC0R'}, {'parent': [], 'address': '金宜大道652号', 'distance': [], 'pname': '广西壮族自治区', 'importance': [], 'biz_ext': {'cost': [], 'rating': '3.8'}, 'biz_type': [], 'cityname': '河池市', 'type': '汽车服务;汽车养护/装饰;汽车养护', 'photos': [{'title': [], 'url': 'http://store.is.autonavi.com/showpic/8252a4332b43a2db30e5b2dfb5fe3f6a'}], 'typecode': '010400', 'shopinfo': '0', 'poiweight': [], 'childtype': [], 'adname': '宜州区', 'name': '河池·恒鑫汽车美容店', 'location': '108.600755,24.501441', 'tel': [], 'shopid': [], 'id': 'B0KBHZ8JS1'}, {'parent': [], 'address': '河池市公安局交通警察支队宜州大队车辆管理所城西工作站西侧', 'distance': [], 'pname': '广西壮族自治区', 'importance': [], 'biz_ext': {'cost': [], 'rating': '3.8'}, 'biz_type': [], 'cityname': '河池市', 'type': '汽车服务;汽车养护/装饰;汽车养护', 'photos': [{'title': [], 'url': 'http://store.is.autonavi.com/showpic/a7606daf47788b9e89755ef4e69f1ada'}], 'typecode': '010400', 'shopinfo': '0', 'poiweight': [], 'childtype': [], 'adname': '宜州区', 'name': '三十三汽车美容修理店', 'location': '108.610883,24.499840', 'tel': '13471811204', 'shopid': [], 'id': 'B0HBLCAW6P'}, {'parent': [], 'address': '安阳镇百才新区南二巷福安小区3号4门面', 'distance': [], 'pname': '广西壮族自治区', 'importance': [], 'biz_ext': {'cost': [], 'rating': '4.2'}, 'biz_type': [], 'cityname': '河池市', 'type': '汽车服务;洗车场;洗车场', 'photos': [{'title': [], 'url': 'http://store.is.autonavi.com/showpic/4c7a8335dfe1c098a08f43b38c9626e6'}, {'title': [], 'url': 'http://store.is.autonavi.com/showpic/ca7e32475cff25ed517b557eba61b4d2'}, {'title': [], 'url': 'http://store.is.autonavi.com/showpic/9b5719bf1ba774eb1fb42cb2b27c06a1'}], 'typecode': '010500', 'shopinfo': '1', 'poiweight': [], 'childtype': [], 'adname': '都安瑶族自治县', 'name': '壹号汽车养护中心', 'location': '108.100710,23.920699', 'tel': '13557910037', 'shopid': [], 'id': 'B0H2UAP1SB'}, {'parent': [], 'address': '中山大道九龙加油站往政府广场方向300米', 'distance': [], 'pname': '广西壮族自治区', 'importance': [], 'biz_ext': {'cost': [], 'rating': '4.0'}, 'biz_type': [], 'cityname': '河池市', 'type': '汽车服务;汽车养护/装饰;汽车养护', 'photos': [{'title': [], 'url': 'http://store.is.autonavi.com/showpic/b2692ebdd8db2567d0681ed8a72cba63'}], 'typecode': '010400', 'shopinfo': '1', 'poiweight': [], 'childtype': [], 'adname': '宜州区', 'name': '车时代汽车美容养护', 'location': '108.646350,24.486636', 'tel': [], 'shopid': [], 'id': 'B0JGF7N8WZ'}, {'parent': [], 'address': '北牙街西头', 'distance': [], 'pname': '广西壮族自治区', 'importance': [], 'biz_ext': {'cost': [], 'rating': '4.0'}, 'biz_type': [], 'cityname': '河池市', 'type': '汽车服务;汽车养护/装饰;汽车养护', 'photos': [{'title': [], 'url': 'http://store.is.autonavi.com/showpic/255c36c00c04e15d1a16b2f11a9f2c82'}, {'title': [], 'url': 'http://store.is.autonavi.com/showpic/a374ca5f532e79118be69b61a2e3b7cd'}, {'title': [], 'url': 'http://store.is.autonavi.com/showpic/562c5bb44fb08e2deb310615f9715820'}], 'typecode': '010400', 'shopinfo': '1', 'poiweight': [], 'childtype': [], 'adname': '宜州区', 'name': '世博汽车维护美容中心', 'location': '108.401993,24.410370', 'tel': [], 'shopid': [], 'id': 'B0JUNUDIRO'}, {'parent': [], 'address': '龙降路附近', 'distance': [], 'pname': '广西壮族自治区', 'importance': [], 'biz_ext': {'cost': [], 'rating': '4.1'}, 'biz_type': [], 'cityname': '河池市', 'type': '汽车服务;汽车养护/装饰;汽车养护', 'photos': [{'title': [], 'url': 'http://store.is.autonavi.com/showpic/fbee7d43b0414785a4ebd61c0b645b89'}], 'typecode': '010400', 'shopinfo': '0', 'poiweight': [], 'childtype': [], 'adname': '宜州区', 'name': '亮辉专业汽车维修美容', 'location': '108.631882,24.484950', 'tel': '18207885998', 'shopid': [], 'id': 'B0FFKYZQJU'}, {'parent': [], 'address': '公园路与西环路交叉口北120米', 'distance': [], 'pname': '广西壮族自治区', 'importance': [], 'biz_ext': {'cost': [], 'rating': '3.5'}, 'biz_type': [], 'cityname': '河池市', 'type': '汽车服务;汽车养护/装饰;汽车养护', 'photos': [{'title': [], 'url': 'http://store.is.autonavi.com/showpic/50c006897db678538e7458d9759d04ef'}], 'typecode': '010400', 'shopinfo': '0', 'poiweight': [], 'childtype': [], 'adname': '凤山县', 'name': '喜车房汽车美容工作室', 'location': '107.040599,24.543556', 'tel': [], 'shopid': [], 'id': 'B0JU41E954'}, {'parent': [], 'address': '大化镇建丰路路尾1号都安路口', 'distance': [], 'pname': '广西壮族自治区', 'importance': [], 'biz_ext': {'cost': [], 'rating': '4.1'}, 'biz_type': [], 'cityname': '河池市', 'type': '汽车维修;汽车维修;汽车维修', 'photos': [{'title': [], 'url': 'http://store.is.autonavi.com/showpic/ad26f5fd58d4cc7d22957dc5861af281'}], 'typecode': '030000', 'shopinfo': '0', 'poiweight': [], 'childtype': [], 'adname': '大化瑶族自治县', 'name': '信和汽车专业维修', 'location': '107.998861,23.743491', 'tel': [], 'shopid': [], 'id': 'B0FFGATBTO'}, {'parent': [], 'address': '星河路166号', 'distance': [], 'pname': '广西壮族自治区', 'importance': [], 'biz_ext': {'cost': [], 'rating': '4.0'}, 'biz_type': [], 'cityname': '河池市', 'type': '汽车服务;汽车养护/装饰;汽车养护', 'photos': [{'title': [], 'url': 'http://store.is.autonavi.com/showpic/708e3266fc2812145f21d45893a9dcb8'}, {'title': [], 'url': 'http://store.is.autonavi.com/showpic/093661cf63078e68bf62adcd85a7521b'}, {'title': [], 'url': 'http://store.is.autonavi.com/showpic/0746aa5a458005fcd077601c809ff965'}], 'typecode': '010400', 'shopinfo': '1', 'poiweight': [], 'childtype': [], 'adname': '金城江区', 'name': '新感觉汽车专业贴膜工作室', 'location': '108.082828,24.685869', 'tel': '18775842518', 'shopid': [], 'id': 'B0JAHACZ9A'}, {'parent': [], 'address': '宜州区农业机械化技术学校东南侧160米', 'distance': [], 'pname': '广西壮族自治区', 'importance': [], 'biz_ext': {'cost': [], 'rating': '3.5'}, 'biz_type': [], 'cityname': '河池市', 'type': '汽车维修;汽车维修;汽车维修', 'photos': [], 'typecode': '030000', 'shopinfo': '0', 'poiweight': [], 'childtype': [], 'adname': '宜州区', 'name': '亿嘉汽车维修美容中心', 'location': '108.599963,24.501586', 'tel': [], 'shopid': [], 'id': 'B0I3F1ZK5S'}, {'parent': [], 'address': '中山大道宜州区安泰园', 'distance': [], 'pname': '广西壮族自治区', 'importance': [], 'biz_ext': {'cost': [], 'rating': '4.1'}, 'biz_type': [], 'cityname': '河池市', 'type': '汽车服务;汽车养护/装饰;汽车养护', 'photos': [{'title': [], 'url': 'http://store.is.autonavi.com/showpic/27e03307a289a6bd64b0fad8b02a9f69'}], 'typecode': '010400', 'shopinfo': '0', 'poiweight': [], 'childtype': [], 'adname': '宜州区', 'name': '美驰车服', 'location': '108.640855,24.486846', 'tel': '0778-3836361', 'shopid': [], 'id': 'B0HUA57XYR'}, {'parent': [], 'address': '九龙路一号', 'distance': [], 'pname': '广西壮族自治区', 'importance': [], 'biz_ext': {'cost': [], 'rating': '3.9'}, 'biz_type': [], 'cityname': '河池市', 'type': '汽车服务;汽车养护/装饰;汽车养护', 'photos': [{'title': [], 'url': 'http://store.is.autonavi.com/showpic/ef7e46197aa70e72cd7c8b6fb1c19b1a'}, {'title': [], 'url': 'http://store.is.autonavi.com/showpic/734057c6c2204e191b1789885b22c340'}], 'typecode': '010400', 'shopinfo': '0', 'poiweight': [], 'childtype': [], 'adname': '宜州区', 'name': '车阵汽车美容养护中心', 'location': '108.652064,24.490855', 'tel': [], 'shopid': [], 'id': 'B0IB39B9IG'}, {'parent': [], 'address': '古谭路与绿岑路交叉口东160米', 'distance': [], 'pname': '广西壮族自治区', 'importance': [], 'biz_ext': {'cost': [], 'rating': '3.9'}, 'biz_type': [], 'cityname': '河池市', 'type': '汽车维修;汽车维修;汽车维修', 'photos': [{'title': [], 'url': 'http://store.is.autonavi.com/showpic/12cc709938c3e9011969a5bb78275751'}], 'typecode': '030000', 'shopinfo': '0', 'poiweight': [], 'childtype': [], 'adname': '都安瑶族自治县', 'name': '一号汽车电子维修专家', 'location': '108.097836,23.947592', 'tel': [], 'shopid': [], 'id': 'B0JRT6ZFBT'}, {'parent': [], 'address': '庆远镇山谷路现代城侧后门', 'distance': [], 'pname': '广西壮族自治区', 'importance': [], 'biz_ext': {'cost': [], 'rating': '3.7'}, 'biz_type': [], 'cityname': '河池市', 'type': '汽车服务;汽车养护/装饰;汽车养护', 'photos': [{'title': [], 'url': 'http://store.is.autonavi.com/showpic/10dd891b929877bb9162a50f07516b4c'}, {'title': [], 'url': 'http://store.is.autonavi.com/showpic/62c8b22c47a7fc59ede62dbf46a436d0'}], 'typecode': '010400', 'shopinfo': '0', 'poiweight': [], 'childtype': [], 'adname': '宜州区', 'name': '尚酷汽车美容养护中心', 'location': '108.639298,24.494704', 'tel': '15707781585', 'shopid': [], 'id': 'B0FFHH2ZRT'}, {'parent': [], 'address': '山谷路与丹桂路交叉口东南20米', 'distance': [], 'pname': '广西壮族自治区', 'importance': [], 'biz_ext': {'cost': [], 'rating': '3.7'}, 'biz_type': [], 'cityname': '河池市', 'type': '汽车服务;汽车养护/装饰;汽车养护', 'photos': [{'title': [], 'url': 'http://store.is.autonavi.com/showpic/a89d17111fcbbd0319318c701a1f3f4d'}, {'title': [], 'url': 'http://store.is.autonavi.com/showpic/135beb5f3e2bb26ef5644f467a23745e'}, {'title': [], 'url': 'http://store.is.autonavi.com/showpic/2fc47c39655a1d4b3435afff23211098'}], 'typecode': '010400', 'shopinfo': '0', 'poiweight': [], 'childtype': [], 'adname': '宜州区', 'name': '新界汽车美容用品', 'location': '108.633670,24.496179', 'tel': '13977843318', 'shopid': [], 'id': 'B030A0N762'}, {'parent': [], 'address': '乾霄路83号(民族公园对面)', 'distance': [], 'pname': '广西壮族自治区', 'importance': [], 'biz_ext': {'cost': [], 'rating': '4.1'}, 'biz_type': [], 'cityname': '河池市', 'type': '汽车服务;汽车养护/装饰;汽车养护', 'photos': [{'title': [], 'url': 'http://store.is.autonavi.com/showpic/34823014c00930fb9fde145b25ecaed0'}, {'title': [], 'url': 'http://store.is.autonavi.com/showpic/c4568d4fbf5d802d369ddbe48a1a2e37'}, {'title': [], 'url': 'http://store.is.autonavi.com/showpic/069afc5c067d0ef92284f46d217c2bc3'}], 'typecode': '010400', 'shopinfo': '1', 'poiweight': [], 'childtype': [], 'adname': '金城江区', 'name': '美孚1号车养护(河池福邦车缘店)', 'location': '108.036296,24.673607', 'tel': '13977869699', 'shopid': [], 'id': 'B0FFIIIX6B'}, {'parent': [], 'address': '宜州区广西壮族自治区宜州区宜州区广西壮族自治区宜州区江头社区城西一号公馆1-1-3商铺', 'distance': [], 'pname': '广西壮族自治区', 'importance': [], 'biz_ext': {'cost': [], 'rating': '4.0'}, 'biz_type': [], 'cityname': '河池市', 'type': '汽车服务;汽车养护/装饰;汽车养护', 'photos': [{'title': [], 'url': 'http://store.is.autonavi.com/showpic/e15d5e0624254b0c7e720d9db61636cd'}, {'title': [], 'url': 'http://store.is.autonavi.com/showpic/7cf318396b618fea12de1b5a962f7cc4'}, {'title': [], 'url': 'http://store.is.autonavi.com/showpic/ea65c64f667d0aeaf665824ad9188495'}], 'typecode': '010400', 'shopinfo': '1', 'poiweight': [], 'childtype': [], 'adname': '宜州区', 'name': '鸿途汽车装饰音响改装', 'location': '108.620671,24.497908', 'tel': '14777488832', 'shopid': [], 'id': 'B0J2LRZJZP'}, {'parent': [], 'address': '金宜大道418-420', 'distance': [], 'pname': '广西壮族自治区', 'importance': [], 'biz_ext': {'cost': [], 'rating': '4.1'}, 'biz_type': [], 'cityname': '河池市', 'type': '汽车服务;汽车养护/装饰;汽车养护', 'photos': [{'title': [], 'url': 'http://store.is.autonavi.com/showpic/b99ce46d819651b2292f5fc8b41093cf'}, {'title': [], 'url': 'http://store.is.autonavi.com/showpic/db0d73a397a405f00d13e99876b7def7'}, {'title': [], 'url': 'http://store.is.autonavi.com/showpic/8904a6c855e90bbf299989b0899f04fc'}], 'typecode': '010400', 'shopinfo': '1', 'poiweight': [], 'childtype': [], 'adname': '宜州区', 'name': '快创美汽车调漆美容部', 'location': '108.614345,24.499127', 'tel': '13377386345', 'shopid': [], 'id': 'B0FFG31JMF'}, {'parent': [], 'address': '平安大道三巷与平安大道交叉口西20米', 'distance': [], 'pname': '广西壮族自治区', 'importance': [], 'biz_ext': {'cost': [], 'rating': '4.2'}, 'biz_type': [], 'cityname': '河池市', 'type': '汽车服务;汽车养护/装饰;汽车养护', 'photos': [{'title': [], 'url': 'http://store.is.autonavi.com/showpic/a6ec2c52ffb658b3d76eb9507538b464'}, {'title': [], 'url': 'http://store.is.autonavi.com/showpic/e94ecae613fde9aedb7d9f2d3072d8d3'}, {'title': [], 'url': 'http://store.is.autonavi.com/showpic/ed5c2d38431df085f90219c32a624939'}], 'typecode': '010400', 'shopinfo': '0', 'poiweight': [], 'childtype': [], 'adname': '南丹县', 'name': '车爵仕汽车美容养护维修一站式服务部(平安大道店)', 'location': '107.540571,24.984725', 'tel': '18277871855', 'shopid': [], 'id': 'B0G3F5KX00'}], 'status': '1', 'info': 'OK'}\n",
"{'suggestion': {'keywords': [], 'cities': []}, 'count': '414', 'infocode': '10000', 'pois': [{'parent': [], 'address': '庆远镇金宜大道(双林采血站隔壁)', 'distance': [], 'pname': '广西壮族自治区', 'importance': [], 'biz_ext': {'cost': [], 'rating': '3.8'}, 'biz_type': [], 'cityname': '河池市', 'type': '汽车服务;汽车养护/装饰;汽车养护', 'photos': [{'title': [], 'url': 'http://store.is.autonavi.com/showpic/36e481913c3033c83c43d36994123044'}, {'title': [], 'url': 'http://store.is.autonavi.com/showpic/d7988898abfa86a9a7379cc67290c0e4'}, {'title': [], 'url': 'http://store.is.autonavi.com/showpic/c09c2a95df9b7985cf59d9489634f70b'}], 'typecode': '010400', 'shopinfo': '0', 'poiweight': [], 'childtype': [], 'adname': '宜州区', 'name': '新宜汽车喷漆美容装饰中心', 'location': '108.607588,24.500848', 'tel': '15078615417', 'shopid': [], 'id': 'B0FFH6G44E'}, {'parent': [], 'address': '庆远镇南环路(台胞联谊住宅小区)', 'distance': [], 'pname': '广西壮族自治区', 'importance': [], 'biz_ext': {'cost': [], 'rating': '3.9'}, 'biz_type': [], 'cityname': '河池市', 'type': '汽车服务;汽车养护/装饰;汽车养护', 'photos': [{'title': [], 'url': 'https://aos-comment.amap.com/B0I1RSZ4FY/headerImg/351c632558a16744579fd074f762649f_2048_2048_80.jpg'}, {'title': [], 'url': 'https://aos-comment.amap.com/B0I1RSZ4FY/headerImg/7a80722a6ba8779d94567868fdf64069_2048_2048_80.jpg'}, {'title': [], 'url': 'http://store.is.autonavi.com/showpic/403042ee86e6e97734b10bad6d710a9e'}], 'typecode': '010400', 'shopinfo': '1', 'poiweight': [], 'childtype': [], 'adname': '宜州区', 'name': '河池市宜州区御兴汽车服务有限责任公司', 'location': '108.640388,24.483647', 'tel': '18877885118', 'shopid': [], 'id': 'B0I1RSZ4FY'}, {'parent': [], 'address': '锦绣祺峰东南1门北90米', 'distance': [], 'pname': '广西壮族自治区', 'importance': [], 'biz_ext': {'cost': [], 'rating': '3.3'}, 'biz_type': [], 'cityname': '河池市', 'type': '汽车服务;汽车养护/装饰;汽车养护', 'photos': [], 'typecode': '010400', 'shopinfo': '0', 'poiweight': [], 'childtype': [], 'adname': '宜州区', 'name': '鑫发汽车美容中心', 'location': '108.662809,24.511150', 'tel': '19877818682', 'shopid': [], 'id': 'B0G12NK02A'}, {'parent': [], 'address': '六圩社区芝田组(个人)散户生活安置区内第22号1层门面', 'distance': [], 'pname': '广西壮族自治区', 'importance': [], 'biz_ext': {'cost': [], 'rating': '3.8'}, 'biz_type': [], 'cityname': '河池市', 'type': '汽车服务;汽车养护/装饰;汽车养护', 'photos': [{'title': [], 'url': 'http://store.is.autonavi.com/showpic/3a5c2fe3b1b70d1c6325901bd2bebd47'}, {'title': [], 'url': 'http://store.is.autonavi.com/showpic/40ac9e89800e26e2e4598c205ec28445'}], 'typecode': '010400', 'shopinfo': '0', 'poiweight': [], 'childtype': [], 'adname': '金城江区', 'name': '8号车库汽车装饰美容店', 'location': '108.027540,24.685730', 'tel': '18775830300', 'shopid': [], 'id': 'B0HA2CRR6Q'}, {'parent': [], 'address': '燕山路与中山大道交叉口南120米', 'distance': [], 'pname': '广西壮族自治区', 'importance': [], 'biz_ext': {'cost': [], 'rating': '4.2'}, 'biz_type': [], 'cityname': '河池市', 'type': '汽车服务;汽车养护/装饰;汽车养护', 'photos': [{'title': [], 'url': 'http://store.is.autonavi.com/showpic/2125cd9c5a511bc54115a89d6b658aef'}], 'typecode': '010400', 'shopinfo': '0', 'poiweight': [], 'childtype': [], 'adname': '宜州区', 'name': '瑞达汽车美容养护服务中心', 'location': '108.645932,24.485306', 'tel': '18176742368', 'shopid': [], 'id': 'B0FFJ89FQA'}, {'parent': [], 'address': '庆远镇中央豪庭', 'distance': [], 'pname': '广西壮族自治区', 'importance': [], 'biz_ext': {'cost': [], 'rating': '4.3'}, 'biz_type': [], 'cityname': '河池市', 'type': '汽车服务;汽车养护/装饰;汽车养护', 'photos': [{'title': [], 'url': 'http://store.is.autonavi.com/showpic/48626d6087596cce540d18730054bfdf'}, {'title': [], 'url': 'http://store.is.autonavi.com/showpic/6abf25bf7100382874f27e4e4073e552'}], 'typecode': '010400', 'shopinfo': '0', 'poiweight': [], 'childtype': [], 'adname': '宜州区', 'name': '至尚汽车美容会所', 'location': '108.638808,24.489990', 'tel': '15977871330;18377811556', 'shopid': [], 'id': 'B0FFHH4DKG'}, {'parent': [], 'address': '庆远镇龙溪路303号豪门尊府小区1号楼商铺06', 'distance': [], 'pname': '广西壮族自治区', 'importance': [], 'biz_ext': {'cost': [], 'rating': '3.8'}, 'biz_type': [], 'cityname': '河池市', 'type': '汽车维修;汽车维修;汽车维修', 'photos': [{'title': [], 'url': 'http://store.is.autonavi.com/showpic/33aa4287df54a8d3a9c8ed8e39bebb30'}, {'title': [], 'url': 'http://store.is.autonavi.com/showpic/c7931008f42f0ab23ddb06f55d72c979'}], 'typecode': '030000', 'shopinfo': '0', 'poiweight': [], 'childtype': [], 'adname': '宜州区', 'name': '壳牌喜力(河池市宜州区畅达汽车维修有限公司)', 'location': '108.629087,24.492902', 'tel': '15078653303', 'shopid': [], 'id': 'B0KUZYMXPL'}, {'parent': [], 'address': '河池市宜州区山谷路90-1号', 'distance': [], 'pname': '广西壮族自治区', 'importance': [], 'biz_ext': {'cost': [], 'rating': '4.3'}, 'biz_type': [], 'cityname': '河池市', 'type': '汽车服务;汽车配件销售;汽车配件销售', 'photos': [{'title': [], 'url': 'http://store.is.autonavi.com/showpic/68f0f38e1adc30817a46816d71fbace3'}, {'title': [], 'url': 'http://store.is.autonavi.com/showpic/737395b8ebea1f6809ef4b514c139d27'}, {'title': [], 'url': 'http://store.is.autonavi.com/showpic/55130e817b23db27658f4469e9d30af3'}], 'typecode': '010800', 'shopinfo': '1', 'poiweight': [], 'childtype': [], 'adname': '宜州区', 'name': '清风车影汽车音响贴膜车灯', 'location': '108.636880,24.495937', 'tel': '0778-3177378', 'shopid': [], 'id': 'B0FFG52382'}, {'parent': [], 'address': '宏旭二手车市场内BG1区23号', 'distance': [], 'pname': '广西壮族自治区', 'importance': [], 'biz_ext': {'cost': [], 'rating': '4.3'}, 'biz_type': [], 'cityname': '河池市', 'type': '汽车服务;汽车养护/装饰;汽车养护', 'photos': [{'title': [], 'url': 'http://store.is.autonavi.com/showpic/16de0cd7f7c21eb977c9ca0179ba742e'}, {'title': [], 'url': 'http://store.is.autonavi.com/showpic/c9d05af976d6546d6e4cdce1ebd81ad2'}], 'typecode': '010400', 'shopinfo': '1', 'poiweight': [], 'childtype': [], 'adname': '金城江区', 'name': '精一门膜业(河池店)', 'location': '108.090945,24.681931', 'tel': '19127008880', 'shopid': [], 'id': 'B0IG7CQOG1'}, {'parent': [], 'address': '民族路488-16号', 'distance': [], 'pname': '广西壮族自治区', 'importance': [], 'biz_ext': {'cost': [], 'rating': '4.2'}, 'biz_type': [], 'cityname': '河池市', 'type': '汽车服务;汽车养护/装饰;汽车养护', 'photos': [{'title': [], 'url': 'http://store.is.autonavi.com/showpic/030c6fcd7699c9b584cc0bf9be506175'}, {'title': [], 'url': 'http://store.is.autonavi.com/showpic/21c96c2fe7b23c74d73a06a5c958a4de'}, {'title': [], 'url': 'http://store.is.autonavi.com/showpic/10fd7c4994510d6d7b2c915f7ed8ce5a'}], 'typecode': '010400', 'shopinfo': '1', 'poiweight': [], 'childtype': [], 'adname': '巴马瑶族自治县', 'name': '车骑饰汽车美容装饰', 'location': '107.254037,24.137054', 'tel': '18666604366', 'shopid': [], 'id': 'B0FFI8U8AV'}, {'parent': [], 'address': '西环路224-1号', 'distance': [], 'pname': '广西壮族自治区', 'importance': [], 'biz_ext': {'cost': [], 'rating': '4.2'}, 'biz_type': [], 'cityname': '河池市', 'type': '汽车服务;汽车养护/装饰;汽车养护|汽车维修;汽车维修;汽车维修', 'photos': [{'title': [], 'url': 'http://store.is.autonavi.com/showpic/ae6271cd029093bcce333b025b3dc923'}, {'title': [], 'url': 'http://store.is.autonavi.com/showpic/34b2efdfae231f1323f401de460fa0b4'}, {'title': [], 'url': 'http://store.is.autonavi.com/showpic/3c2d5d14a7856cabfd9916b98554b4fe'}], 'typecode': '010400|030000', 'shopinfo': '1', 'poiweight': [], 'childtype': [], 'adname': '金城江区', 'name': '驾捷乐汽车养护(河池店)', 'location': '108.046085,24.685920', 'tel': '18677891117', 'shopid': [], 'id': 'B0I2FAEW0U'}, {'parent': [], 'address': '城东路65-1号附近', 'distance': [], 'pname': '广西壮族自治区', 'importance': [], 'biz_ext': {'cost': [], 'rating': '3.5'}, 'biz_type': [], 'cityname': '河池市', 'type': '汽车维修;汽车维修;汽车维修', 'photos': [{'title': [], 'url': 'http://store.is.autonavi.com/showpic/bf001baf3626d95da217d9f8001b84db'}], 'typecode': '030000', 'shopinfo': '0', 'poiweight': [], 'childtype': [], 'adname': '金城江区', 'name': '力帆服务修理厂', 'location': '108.090772,24.688079', 'tel': [], 'shopid': [], 'id': 'B0FFH9G3CV'}, {'parent': [], 'address': '庆远镇九龙路', 'distance': [], 'pname': '广西壮族自治区', 'importance': [], 'biz_ext': {'cost': [], 'rating': '3.8'}, 'biz_type': [], 'cityname': '河池市', 'type': '汽车服务;汽车养护/装饰;汽车养护', 'photos': [{'title': [], 'url': 'http://store.is.autonavi.com/showpic/b7d21421a8fd3763656e0ec989c2a7df'}, {'title': [], 'url': 'http://store.is.autonavi.com/showpic/75c8d20faad7acc14bb2bb6c28d3ca75'}], 'typecode': '010400', 'shopinfo': '1', 'poiweight': [], 'childtype': [], 'adname': '宜州区', 'name': '顺景汽车美容养护', 'location': '108.648142,24.484955', 'tel': '15113539711', 'shopid': [], 'id': 'B0G2Y5R31O'}, {'parent': [], 'address': '庆远镇中山大道中医院路口', 'distance': [], 'pname': '广西壮族自治区', 'importance': [], 'biz_ext': {'cost': [], 'rating': '4.1'}, 'biz_type': [], 'cityname': '河池市', 'type': '汽车服务;汽车养护/装饰;汽车养护', 'photos': [{'title': [], 'url': 'http://store.is.autonavi.com/showpic/3e97c321e576253b112b1b9dee2045bf'}, {'title': [], 'url': 'http://store.is.autonavi.com/showpic/fb8b01963290c07bff4e4c6fe93adbfb'}, {'title': [], 'url': 'http://store.is.autonavi.com/showpic/c61255cbd45ddb774969b3a5ff2e3ef4'}], 'typecode': '010400', 'shopinfo': '1', 'poiweight': [], 'childtype': [], 'adname': '宜州区', 'name': '宜州星匠汽车贴膜3M特约施工中心', 'location': '108.649838,24.485609', 'tel': '18778888342', 'shopid': [], 'id': 'B0IR2M20PT'}, {'parent': [], 'address': '上任新区81号', 'distance': [], 'pname': '广西壮族自治区', 'importance': [], 'biz_ext': {'cost': [], 'rating': '4.2'}, 'biz_type': [], 'cityname': '河池市', 'type': '汽车服务;汽车养护/装饰;汽车养护|汽车服务;洗车场;洗车场', 'photos': [{'title': [], 'url': 'http://store.is.autonavi.com/showpic/ab24ee684a0b9266522e7dea3a9ad8d1'}, {'title': [], 'url': 'http://store.is.autonavi.com/showpic/4f52bcb1c145af7b78bfa07582e2155d'}, {'title': [], 'url': 'http://store.is.autonavi.com/showpic/389824b6273ab64b46a84685a7dfdc69'}], 'typecode': '010400|010500', 'shopinfo': '1', 'poiweight': [], 'childtype': [], 'adname': '金城江区', 'name': '大拇指汽车美容中心', 'location': '108.088420,24.694300', 'tel': '18077839689', 'shopid': [], 'id': 'B0FFFX945L'}, {'parent': [], 'address': '金城江南环路金钻商都对面钢铁棚1号门面', 'distance': [], 'pname': '广西壮族自治区', 'importance': [], 'biz_ext': {'cost': [], 'rating': '3.9'}, 'biz_type': [], 'cityname': '河池市', 'type': '汽车维修;汽车维修;汽车维修', 'photos': [{'title': [], 'url': 'http://store.is.autonavi.com/showpic/f0323d4bfc90cd67169182db51856b7a'}], 'typecode': '030000', 'shopinfo': '0', 'poiweight': [], 'childtype': [], 'adname': '金城江区', 'name': '陈伟汽车服务中心', 'location': '108.049082,24.677489', 'tel': [], 'shopid': [], 'id': 'B0LB75D4QX'}, {'parent': [], 'address': '宜州区城西开发区中国人寿保险公司旁', 'distance': [], 'pname': '广西壮族自治区', 'importance': [], 'biz_ext': {'cost': [], 'rating': '3.9'}, 'biz_type': [], 'cityname': '河池市', 'type': '汽车服务;汽车养护/装饰;汽车养护', 'photos': [{'title': [], 'url': 'http://store.is.autonavi.com/showpic/d700379309dc7413a06ebb07df9ac517'}, {'title': [], 'url': 'http://store.is.autonavi.com/showpic/5dd66d6c35f92c884017762d6b47005f'}, {'title': [], 'url': 'http://store.is.autonavi.com/showpic/37130c9196188b7087308c2741330b1f'}], 'typecode': '010400', 'shopinfo': '1', 'poiweight': [], 'childtype': [], 'adname': '宜州区', 'name': '宜州凯美汽车养护中心', 'location': '108.627775,24.497785', 'tel': '18074891283', 'shopid': [], 'id': 'B0FFME8P7C'}, {'parent': [], 'address': '山谷路84-3号', 'distance': [], 'pname': '广西壮族自治区', 'importance': [], 'biz_ext': {'cost': [], 'rating': '3.7'}, 'biz_type': [], 'cityname': '河池市', 'type': '汽车服务;汽车养护/装饰;汽车养护', 'photos': [{'title': [], 'url': 'http://store.is.autonavi.com/showpic/00515f44afb3f52454d10dae03633b96'}, {'title': [], 'url': 'http://store.is.autonavi.com/showpic/5e15378c5275981a4f32a5ecca41f628'}, {'title': [], 'url': 'http://store.is.autonavi.com/showpic/12cc9a862d11da763026210b0995ffc8'}], 'typecode': '010400', 'shopinfo': '0', 'poiweight': [], 'childtype': [], 'adname': '宜州区', 'name': '车知林汽车装饰美容店', 'location': '108.636381,24.496125', 'tel': [], 'shopid': [], 'id': 'B0K3XS43BE'}, {'parent': [], 'address': '东门镇公园路大新村23号', 'distance': [], 'pname': '广西壮族自治区', 'importance': [], 'biz_ext': {'cost': [], 'rating': '4.3'}, 'biz_type': [], 'cityname': '河池市', 'type': '汽车服务;汽车养护/装饰;汽车养护', 'photos': [{'title': [], 'url': 'http://aos-cdn-image.amap.com/sns/ugccomment/6d7229d6-8715-403e-bfdd-efa210a83836.jpg'}, {'title': [], 'url': 'http://store.is.autonavi.com/showpic/279a70eb37249b3f363c77f1a8bfa1cf'}, {'title': [], 'url': 'http://store.is.autonavi.com/showpic/afc730e449ae9bcc03d57aa8401a368c'}], 'typecode': '010400', 'shopinfo': '1', 'poiweight': [], 'childtype': [], 'adname': '罗城仫佬族自治县', 'name': '心轩汽车美容服务中心', 'location': '108.896239,24.782793', 'tel': '0778-8280608', 'shopid': [], 'id': 'B0FFJYAPG2'}, {'parent': [], 'address': '城西路职业教育中心学校北侧约250米', 'distance': [], 'pname': '广西壮族自治区', 'importance': [], 'biz_ext': {'cost': [], 'rating': '4.4'}, 'biz_type': [], 'cityname': '河池市', 'type': '汽车服务;洗车场;洗车场', 'photos': [{'title': [], 'url': 'http://store.is.autonavi.com/showpic/8df6db19b2e4a79b444923c63b14114b'}, {'title': [], 'url': 'http://store.is.autonavi.com/showpic/bb889c29a582b5613010c200a6ac5d01'}, {'title': [], 'url': 'http://store.is.autonavi.com/showpic/c558649145beeac57fe066f0e156a897'}], 'typecode': '010500', 'shopinfo': '1', 'poiweight': [], 'childtype': [], 'adname': '金城江区', 'name': '金城江区建辉汽车美容店', 'location': '108.032957,24.695324', 'tel': [], 'shopid': [], 'id': 'B0FFL17K5W'}], 'status': '1', 'info': 'OK'}\n",
"{'suggestion': {'keywords': [], 'cities': []}, 'count': '5', 'infocode': '10000', 'pois': [{'parent': [], 'address': '305县道与工商街交叉口北140米', 'distance': [], 'pname': '江苏省', 'importance': [], 'biz_ext': {'cost': [], 'rating': '3.6'}, 'biz_type': [], 'cityname': '淮安市', 'type': '汽车销售;汽车销售;汽车销售', 'photos': [{'title': [], 'url': 'http://store.is.autonavi.com/showpic/cf30c3c2e1ffb20425d627c4875c856e'}], 'typecode': '020000', 'shopinfo': '0', 'poiweight': [], 'childtype': [], 'adname': '淮安区', 'name': '恩途微电轿', 'location': '119.361351,33.551211', 'tel': [], 'shopid': [], 'id': 'B0I2X73E2M'}, {'parent': [], 'address': '305县道与工商街交叉口南200米', 'distance': [], 'pname': '江苏省', 'importance': [], 'biz_ext': {'cost': [], 'rating': '4.0'}, 'biz_type': [], 'cityname': '淮安市', 'type': '汽车维修;汽车维修;汽车维修', 'photos': [{'title': [], 'url': 'http://store.is.autonavi.com/showpic/7440770b307802d0dc518a873408dbeb'}], 'typecode': '030000', 'shopinfo': '0', 'poiweight': [], 'childtype': [], 'adname': '淮安区', 'name': '阳光汽修汽配', 'location': '119.361117,33.548217', 'tel': '15861702552', 'shopid': [], 'id': 'B0FFG4T99A'}, {'parent': [], 'address': '华西路北侧、经十路东侧轻工商贸港商业街16号楼菜场室', 'distance': [], 'pname': '江苏省', 'importance': [], 'biz_ext': {'cost': [], 'rating': '3.7'}, 'biz_type': [], 'cityname': '淮安市', 'type': '汽车维修;汽车维修;汽车维修', 'photos': [{'title': [], 'url': 'http://store.is.autonavi.com/showpic/247b8fec1c6f38288b8c4de4022ff4cc'}, {'title': [], 'url': 'http://store.is.autonavi.com/showpic/6c8cccc9d2f0c25f6a52dacf210796ae'}], 'typecode': '030000', 'shopinfo': '0', 'poiweight': [], 'childtype': [], 'adname': '淮安区', 'name': '道达尔能源养车(公园南路店)', 'location': '119.170126,33.522446', 'tel': '15161782623', 'shopid': [], 'id': 'B0K1KCOV4O'}, {'parent': [], 'address': '淮城镇南门大街工商局斜对面', 'distance': [], 'pname': '江苏省', 'importance': [], 'biz_ext': {'cost': [], 'rating': '3.9'}, 'biz_type': [], 'cityname': '淮安市', 'type': '汽车销售;汽车销售;汽车销售', 'photos': [{'title': [], 'url': 'http://store.is.autonavi.com/showpic/1dbc9b676c6011dae8b9e45a7b71fa3a'}], 'typecode': '020000', 'shopinfo': '1', 'poiweight': [], 'childtype': [], 'adname': '淮安区', 'name': '瑞鑫汽贸', 'location': '119.145565,33.489214', 'tel': '17301551888', 'shopid': [], 'id': 'B0FFIRXAG7'}], 'status': '1', 'info': 'OK'}\n",
"{'suggestion': {'keywords': [], 'cities': []}, 'count': '0', 'infocode': '10000', 'pois': [], 'status': '1', 'info': 'OK'}\n",
"{'suggestion': {'keywords': [], 'cities': []}, 'count': '22', 'infocode': '10000', 'pois': [{'parent': [], 'address': '高新技术产业开发区新区街道长安路9号聚盛国际汽车城B4-056', 'distance': [], 'pname': '江苏省', 'importance': [], 'biz_ext': {'cost': [], 'rating': '3.6'}, 'biz_type': [], 'cityname': '徐州市', 'type': '汽车服务;汽车配件销售;汽车配件销售', 'photos': [{'title': [], 'url': 'http://store.is.autonavi.com/showpic/244b0484424ee07ef0b2f76bca11494d'}], 'typecode': '010800', 'shopinfo': '1', 'poiweight': [], 'childtype': [], 'adname': '铜山区', 'name': '徐州高新技术产业开发区顺发汽配经营部', 'location': '117.223965,34.195131', 'tel': '15162127550', 'shopid': [], 'id': 'B0IDAA13Y0'}, {'parent': [], 'address': '牛山路与赣江路交叉口东北40米', 'distance': [], 'pname': '江苏省', 'importance': [], 'biz_ext': {'cost': [], 'rating': '4.2'}, 'biz_type': [], 'cityname': '徐州市', 'type': '汽车维修;汽车维修;汽车维修', 'photos': [{'title': [], 'url': 'http://store.is.autonavi.com/showpic/407c82e2b7a4419b82ae80de599d4d2f'}], 'typecode': '030000', 'shopinfo': '0', 'poiweight': [], 'childtype': [], 'adname': '铜山区', 'name': '途优塔汽车维修经营部', 'location': '117.189986,34.177595', 'tel': [], 'shopid': [], 'id': 'B0I3F15M83'}, {'parent': [], 'address': '徐州市经济技术开发区大黄山街道胡庄村四组', 'distance': [], 'pname': '江苏省', 'importance': [], 'biz_ext': {'cost': [], 'rating': '4.3'}, 'biz_type': [], 'cityname': '徐州市', 'type': '汽车服务;汽车养护/装饰;汽车养护', 'photos': [{'title': [], 'url': 'http://store.is.autonavi.com/showpic/f9e2848973be06ec63e617d5faf20f33'}, {'title': [], 'url': 'http://store.is.autonavi.com/showpic/bad9c031a315f570aaea7519bf1bcced'}], 'typecode': '010400', 'shopinfo': '1', 'poiweight': [], 'childtype': [], 'adname': '贾汪区', 'name': '蓝酷养车徐州经济技术开发区博派汽车养护经营部', 'location': '117.353977,34.296504', 'tel': '18052116422', 'shopid': [], 'id': 'B0JKK5DYT6'}, {'parent': [], 'address': '311国道与新淮海西路交叉口东北220米', 'distance': [], 'pname': '江苏省', 'importance': [], 'biz_ext': {'cost': [], 'rating': '4.8'}, 'biz_type': [], 'cityname': '徐州市', 'type': '汽车服务;汽车养护/装饰;汽车养护|汽车维修;汽车维修;汽车维修', 'photos': [{'title': [], 'url': 'http://store.is.autonavi.com/showpic/b391837c0c81245a4f0b92358a327307'}, {'title': [], 'url': 'http://store.is.autonavi.com/showpic/43ed3ba0ecc0b0ff37c15fbc47ccd7e0'}, {'title': [], 'url': 'http://store.is.autonavi.com/showpic/559014912aa2405ee73f319f79c8fd1f'}], 'typecode': '010400|030000', 'shopinfo': '1', 'poiweight': [], 'childtype': [], 'adname': '泉山区', 'name': '黄超轮胎经营部', 'location': '117.100249,34.264535', 'tel': '15952256543', 'shopid': [], 'id': 'B0JBP9AFMB'}, {'parent': [], 'address': '泉兴大道', 'distance': [], 'pname': '江苏省', 'importance': [], 'biz_ext': {'cost': [], 'rating': '3.8'}, 'biz_type': [], 'cityname': '徐州市', 'type': '汽车销售;汽车销售;汽车销售', 'photos': [{'title': [], 'url': 'http://store.is.autonavi.com/showpic/9455f5f262c11ee9ca7edf30346b615c'}], 'typecode': '020000', 'shopinfo': '0', 'poiweight': [], 'childtype': [], 'adname': '铜山区', 'name': '铜山区富洋汽车销售经营部', 'location': '117.309385,34.441502', 'tel': [], 'shopid': [], 'id': 'B0KGRSGIRE'}, {'parent': [], 'address': '205国道与沭东大道交叉口东南60米', 'distance': [], 'pname': '江苏省', 'importance': [], 'biz_ext': {'cost': [], 'rating': '3.8'}, 'biz_type': [], 'cityname': '徐州市', 'type': '汽车服务;汽车配件销售;汽车配件销售', 'photos': [{'title': [], 'url': 'http://store.is.autonavi.com/showpic/c2bc3325b276efc4e2318150f043d588'}], 'typecode': '010800', 'shopinfo': '0', 'poiweight': [], 'childtype': [], 'adname': '新沂市', 'name': '新沂双塘劲虎轮胎经营部', 'location': '118.457464,34.356437', 'tel': '13914852578', 'shopid': [], 'id': 'B0FFL062H8'}, {'parent': [], 'address': '冠兴钢厂南门', 'distance': [], 'pname': '江苏省', 'importance': [], 'biz_ext': {'cost': [], 'rating': '3.6'}, 'biz_type': [], 'cityname': '徐州市', 'type': '汽车服务;汽车配件销售;汽车配件销售', 'photos': [{'title': [], 'url': 'http://store.is.autonavi.com/showpic/c0b82cfcf0994f2b5df271cffcbf38f3'}], 'typecode': '010800', 'shopinfo': '1', 'poiweight': [], 'childtype': [], 'adname': '睢宁县', 'name': '牵秀汽车配件经营部', 'location': '118.009542,33.894980', 'tel': [], 'shopid': [], 'id': 'B0K0RSO1DH'}, {'parent': [], 'address': '运平路9号', 'distance': [], 'pname': '江苏省', 'importance': [], 'biz_ext': {'cost': [], 'rating': '4.1'}, 'biz_type': [], 'cityname': '徐州市', 'type': '汽车服务;汽车养护/装饰;汽车养护', 'photos': [{'title': [], 'url': 'http://store.is.autonavi.com/showpic/d09e96c91eaf9fa82fc424399cb2f211'}, {'title': [], 'url': 'http://store.is.autonavi.com/showpic/0dc178a8c12c7196b2632ecc39c3208d'}, {'title': [], 'url': 'http://store.is.autonavi.com/showpic/13381749cc926e1e4a85da7440935113'}], 'typecode': '010400', 'shopinfo': '1', 'poiweight': [], 'childtype': [], 'adname': '邳州市', 'name': '邳州市龙庆汽车维修经营部', 'location': '117.971782,34.350889', 'tel': '13179709111;13914298651', 'shopid': [], 'id': 'B0J29L8KNK'}, {'parent': [], 'address': '沛城街道尚文苑', 'distance': [], 'pname': '江苏省', 'importance': [], 'biz_ext': {'cost': [], 'rating': '3.7'}, 'biz_type': [], 'cityname': '徐州市', 'type': '汽车服务;汽车养护/装饰;汽车养护', 'photos': [{'title': [], 'url': 'http://store.is.autonavi.com/showpic/f57c3dbf951c911e6dcd16b4b7785f74'}, {'title': [], 'url': 'http://store.is.autonavi.com/showpic/cb81bef763bbfef3bfd6b21fa1939af8'}], 'typecode': '010400', 'shopinfo': '1', 'poiweight': [], 'childtype': [], 'adname': '沛县', 'name': '沛县车是客汽车脚垫经营部', 'location': '116.953605,34.715169', 'tel': '18652167288', 'shopid': [], 'id': 'B0LBF9ZKNQ'}, {'parent': [], 'address': '港南小区北1门旁(九龙湖地铁站1号口步行320米)', 'distance': [], 'pname': '江苏省', 'importance': [], 'biz_ext': {'cost': [], 'rating': '3.8'}, 'biz_type': [], 'cityname': '徐州市', 'type': '汽车服务;汽车配件销售;汽车配件销售', 'photos': [{'title': [], 'url': 'http://store.is.autonavi.com/showpic/54ae3317a3108d62e9a0c560'}, {'title': [], 'url': 'http://store.is.autonavi.com/showpic/552b72bfeb15ec3ff937334d373049a6'}], 'typecode': '010800', 'shopinfo': '0', 'poiweight': [], 'childtype': [], 'adname': '鼓楼区', 'name': '丰华汽配经营部', 'location': '117.184071,34.283849', 'tel': [], 'shopid': [], 'id': 'B0FFFOSLAE'}, {'parent': [], 'address': '孙洼大沟路与沛敬线交叉口东北220米', 'distance': [], 'pname': '江苏省', 'importance': [], 'biz_ext': {'cost': [], 'rating': '3.7'}, 'biz_type': [], 'cityname': '徐州市', 'type': '汽车服务;汽车配件销售;汽车配件销售', 'photos': [{'title': [], 'url': 'http://store.is.autonavi.com/showpic/807b3f11112ced91f98e265d5db0ba5c'}, {'title': [], 'url': 'http://store.is.autonavi.com/showpic/ff148967fa4903c30053ff0dc3de4062'}], 'typecode': '010800', 'shopinfo': '0', 'poiweight': [], 'childtype': [], 'adname': '沛县', 'name': '永朋轮胎经营部', 'location': '116.894397,34.711167', 'tel': '15380186256', 'shopid': [], 'id': 'B0JBOZKUE8'}, {'parent': [], 'address': '东湖街道左东村四组45号', 'distance': [], 'pname': '江苏省', 'importance': [], 'biz_ext': {'cost': [], 'rating': '3.8'}, 'biz_type': [], 'cityname': '徐州市', 'type': '汽车维修;汽车维修;汽车维修', 'photos': [{'title': [], 'url': 'http://store.is.autonavi.com/showpic/440426834a27c20c76c7f853418b1907'}], 'typecode': '030000', 'shopinfo': '0', 'poiweight': [], 'childtype': [], 'adname': '邳州市', 'name': '邳州市广恩汽车维修经营部', 'location': '118.030108,34.374169', 'tel': [], 'shopid': [], 'id': 'B0FFLKW391'}, {'parent': [], 'address': '官灵路与复兴路交叉口西40米', 'distance': [], 'pname': '江苏省', 'importance': [], 'biz_ext': {'cost': [], 'rating': '3.8'}, 'biz_type': [], 'cityname': '徐州市', 'type': '汽车服务;汽车养护/装饰;汽车养护', 'photos': [{'title': [], 'url': 'https://store.is.autonavi.com/showpic/397c9c367372d1ea45494226be68b1e0'}], 'typecode': '010400', 'shopinfo': '0', 'poiweight': [], 'childtype': [], 'adname': '睢宁县', 'name': '朱浩洗车经营部', 'location': '117.798111,33.759778', 'tel': [], 'shopid': [], 'id': 'B0HA2YOLME'}, {'parent': [], 'address': '南环路237国道130公里处', 'distance': [], 'pname': '江苏省', 'importance': [], 'biz_ext': {'cost': [], 'rating': '4.3'}, 'biz_type': [], 'cityname': '徐州市', 'type': '汽车服务;汽车配件销售;汽车配件销售', 'photos': [{'title': [], 'url': 'http://store.is.autonavi.com/showpic/c0e8b513e1298d0109791800faf4bcf2'}, {'title': [], 'url': 'http://store.is.autonavi.com/showpic/3c5f522059c8af35052743301d88c277'}], 'typecode': '010800', 'shopinfo': '1', 'poiweight': [], 'childtype': [], 'adname': '丰县', 'name': '丰县正新轮胎经营部', 'location': '116.663648,34.652088', 'tel': '13382669655', 'shopid': [], 'id': 'B0FFMAOSK9'}, {'parent': [], 'address': '新沛路与迎宾大道交叉口西150米', 'distance': [], 'pname': '江苏省', 'importance': [], 'biz_ext': {'cost': [], 'rating': '4.0'}, 'biz_type': [], 'cityname': '徐州市', 'type': '汽车服务;汽车配件销售;汽车配件销售', 'photos': [{'title': [], 'url': 'http://store.is.autonavi.com/showpic/32f1705425e37b451023d966d241920e'}, {'title': [], 'url': 'http://store.is.autonavi.com/showpic/1232ccb4efeacd48b6a9f5d2edd04f46'}], 'typecode': '010800', 'shopinfo': '0', 'poiweight': [], 'childtype': [], 'adname': '沛县', 'name': '普利司通(新沛路店)', 'location': '116.943992,34.717388', 'tel': '0516-86388185;15252288553;18751616618', 'shopid': [], 'id': 'B0FFH6NS4Z'}, {'parent': [], 'address': '燕陈线与南京路交叉口东南80米', 'distance': [], 'pname': '江苏省', 'importance': [], 'biz_ext': {'cost': [], 'rating': '2.5'}, 'biz_type': [], 'cityname': '徐州市', 'type': '汽车服务;汽车配件销售;汽车配件销售', 'photos': [], 'typecode': '010800', 'shopinfo': '0', 'poiweight': [], 'childtype': [], 'adname': '邳州市', 'name': '智行轮胎经营部', 'location': '118.027058,34.394046', 'tel': [], 'shopid': [], 'id': 'B0LA7UW110'}, {'parent': [], 'address': '中央大街与中山北路交叉口东180米', 'distance': [], 'pname': '江苏省', 'importance': [], 'biz_ext': {'cost': [], 'rating': '3.4'}, 'biz_type': [], 'cityname': '徐州市', 'type': '汽车服务;汽车养护/装饰;汽车养护', 'photos': [], 'typecode': '010400', 'shopinfo': '0', 'poiweight': [], 'childtype': [], 'adname': '睢宁县', 'name': '睢宁膜家贴膜经营部', 'location': '117.951475,33.909675', 'tel': [], 'shopid': [], 'id': 'B0LA143V79'}, {'parent': [], 'address': '珠江西路金陵人家5幢01号商铺', 'distance': [], 'pname': '江苏省', 'importance': [], 'biz_ext': {'cost': [], 'rating': '2.7'}, 'biz_type': [], 'cityname': '徐州市', 'type': '汽车服务;汽车配件销售;汽车配件销售', 'photos': [], 'typecode': '010800', 'shopinfo': '0', 'poiweight': [], 'childtype': [], 'adname': '邳州市', 'name': '耿亮轮胎轮毂经营部', 'location': '117.958923,34.323364', 'tel': [], 'shopid': [], 'id': 'B0JRCO1HRV'}, {'parent': [], 'address': '东环岛圆盘西北角旭旺超市北200米路西', 'distance': [], 'pname': '江苏省', 'importance': [], 'biz_ext': {'cost': [], 'rating': '3.8'}, 'biz_type': [], 'cityname': '徐州市', 'type': '汽车服务;汽车配件销售;汽车配件销售', 'photos': [{'title': [], 'url': 'http://store.is.autonavi.com/showpic/64fdb7c7b5e0a759990b4ee9d9f10799'}], 'typecode': '010800', 'shopinfo': '0', 'poiweight': [], 'childtype': [], 'adname': '睢宁县', 'name': '普利司通轮胎(汽配城店)', 'location': '117.982546,33.902899', 'tel': '13375115488;15262130520', 'shopid': [], 'id': 'B0FFJRWXTS'}, {'parent': [], 'address': '府前路与人民路交叉口东20米', 'distance': [], 'pname': '江苏省', 'importance': [], 'biz_ext': {'cost': [], 'rating': '3.7'}, 'biz_type': [], 'cityname': '徐州市', 'type': '汽车服务;汽车配件销售;汽车配件销售', 'photos': [{'title': [], 'url': 'http://store.is.autonavi.com/showpic/f5e547086491771336bb02ff35f1f833'}, {'title': [], 'url': 'http://store.is.autonavi.com/showpic/dcde16bddffcf3bd967b60836e59b3a1'}], 'typecode': '010800', 'shopinfo': '0', 'poiweight': [], 'childtype': [], 'adname': '铜山区', 'name': '韩泰轮胎(府前路店)', 'location': '117.560605,34.293726', 'tel': [], 'shopid': [], 'id': 'B0FFH4OZ8A'}], 'status': '1', 'info': 'OK'}\n",
"{'suggestion': {'keywords': [], 'cities': []}, 'count': '0', 'infocode': '10000', 'pois': [{'parent': [], 'address': '高新技术产业开发区', 'distance': '0', 'pname': [], 'importance': [], 'biz_ext': {'cost': [], 'rating': []}, 'biz_type': [], 'cityname': [], 'type': [], 'photos': [], 'typecode': [], 'shopinfo': [], 'poiweight': [], 'childtype': [], 'adname': [], 'name': '江苏省徐州市铜山区高新技术产业开发区', 'location': '117.189360,34.161538', 'tel': [], 'shopid': []}], 'status': '1', 'info': 'OK'}\n",
"本次共处理 23 条数据\n",
"数据已保存至:C:\\Users\\Administrator.DESKTOP-7IC2USJ\\Desktop\\返回结果地址7.xlsx\n",
"源文件已更新“是否已查询”字段\n"
]
}
],
"execution_count": 2
},
{
"metadata": {
"ExecuteTime": {
"end_time": "2025-10-21T02:06:23.405487Z",
"start_time": "2025-10-21T02:05:49.039865Z"
}
},
"cell_type": "code",
"source": [
"import pandas as pd\n",
"from thefuzz import fuzz\n",
"# 如果你更看重性能,也可以用 rapidfuzz (API 基本兼容)\n",
"# from rapidfuzz import fuzz\n",
"\n",
"# --- 1. 创建示例数据 ---\n",
"df = pd.read_excel(r\"C:\\Users\\zy187\\Downloads\\手机号匹配结果_20251021095300.xlsx\", sheet_name=\"手机号匹配结果\") # 合并后的数据\n",
"print(\"原始数据:\")\n",
"print(df)\n",
"print(\"\\n\" + \"-\"*50 + \"\\n\")\n",
"\n",
"# --- 2. 定义要进行模糊匹配的列 ---\n",
"# 你根据实际情况修改这四列的名称\n",
"source_name_col = 'name' # 源名称列\n",
"source_loc_col = 'address' # 源位置列\n",
"target_name_col = '源文件门店店名' # 目标名称列\n",
"target_loc_col = '源文件地址' # 目标位置列\n",
"\n",
"# --- 3. 定义相似度计算函数 ---\n",
"def calculate_similarity(row):\n",
" \"\"\"\n",
" 对 DataFrame 的单行计算两个字段组合的相似度。\n",
" 这里我们分别计算 name 和 location 的相似度,然后可以取平均值或其他组合方式。\n",
" \"\"\"\n",
" # 获取当前行的四个值\n",
" name_src = str(row[source_name_col]) # 确保是字符串\n",
" loc_src = str(row[source_loc_col])\n",
" name_tgt = str(row[target_name_col])\n",
" loc_tgt = str(row[target_loc_col])\n",
"\n",
" # 计算名称的相似度 (使用 ratio)\n",
" name_similarity = fuzz.ratio(name_src, name_tgt)\n",
"\n",
" # 计算位置的相似度 (使用 ratio)\n",
" loc_similarity = fuzz.ratio(loc_src, loc_tgt)\n",
"\n",
" # 方法1: 返回两个独立的相似度分数\n",
" return pd.Series([name_similarity, loc_similarity])\n",
"\n",
" # 方法2: 返回一个综合分数 (例如简单平均)\n",
" # combined_similarity = (name_similarity + loc_similarity) / 2\n",
" # return combined_similarity\n",
"\n",
" # 方法3: 使用更复杂的组合,比如加权平均\n",
" # combined_similarity = 0.7 * name_similarity + 0.3 * loc_similarity\n",
" # return combined_similarity\n",
"\n",
"# --- 4. 应用函数,逐行计算相似度 ---\n",
"# 使用 apply 函数,axis=1 表示按行应用\n",
"# 结果1: 返回两个独立的新列\n",
"df[['名称相似度', '地址相似度']] = df.apply(calculate_similarity, axis=1)\n",
"\n",
"# --- 5. (可选) 计算综合相似度 ---\n",
"# 如果你想要一个综合分数,可以在这里计算\n",
"df['综合相似度'] = (df['名称相似度'] + df['地址相似度']) / 2\n",
"# 或者使用加权\n",
"# df['combined_similarity'] = 0.7 * df['name_similarity'] + 0.3 * df['location_similarity']\n",
"\n",
"# --- 6. 查看结果 ---\n",
"print(\"添加相似度后的数据:\")\n",
"print(df)\n",
"print(\"\\n相似度分数范围在 0 (完全不同) 到 100 (完全相同) 之间。\")\n",
"df.to_excel(r\"C:\\Users\\zy187\\Desktop\\返回结果地址_相似度计算.xlsx\", index=False)"
],
"id": "69cbbb683c5f1b9",
"outputs": [
{
"name": "stdout",
"output_type": "stream",
"text": [
"原始数据:\n",
" data_id 源文件省 源文件市 源文件区 源文件地址 \\\n",
"0 68d9a29a1d4d2057d86e0916 江苏省 宿迁市 宿城区 江苏省中港雅典城B11幢05铺 \n",
"1 68d9a29a1d4d2057d86e0915 江苏省 宿迁市 宿城区 江苏省中港雅典城B11幢05铺 \n",
"2 68d9a29a1d4d2057d86e0914 江苏省 宿迁市 宿城区 江苏省中港雅典城B11幢05铺 \n",
"3 68d9a29a1d4d2057d86e0913 江苏省 宿迁市 宿城区 江苏省中港雅典城B11幢05铺 \n",
"4 68d9a29a1d4d2057d86e0912 江苏省 宿迁市 宿城区 江苏省中港雅典城B11幢05铺 \n",
"... ... ... ... ... ... \n",
"23967 68d25949387829f71a2fd370 广西壮族自治区 贵港市 平南县 平南街道盆塘村碌河东屯余汝安房屋 \n",
"23968 68d25949387829f71a2fd36f 广西壮族自治区 贵港市 平南县 平南街道盆塘村碌河东屯余汝安房屋 \n",
"23969 68d25949387829f71a2fd36c 广西壮族自治区 贵港市 平南县 平南街道盆塘村碌河东屯余汝安房屋 \n",
"23970 68d25949387829f71a2fd36a 广西壮族自治区 贵港市 平南县 平南街道盆塘村碌河东屯余汝安房屋 \n",
"23971 68d25949387829f71a2fd369 广西壮族自治区 贵港市 平南县 平南街道盆塘村碌河东屯余汝安房屋 \n",
"\n",
" 源文件门店店名 address pname cityname adname ... \\\n",
"0 宿城区迎闪汽车维修服务部 盛世景园东北门旁 江苏省 宿迁市 宿城区 ... \n",
"1 宿城区迎闪汽车维修服务部 洋河镇洋河上郡7栋C-10 江苏省 宿迁市 宿城区 ... \n",
"2 宿城区迎闪汽车维修服务部 人民北路埠子初级中学东北侧约190米 江苏省 宿迁市 宿城区 ... \n",
"3 宿城区迎闪汽车维修服务部 耿车镇徐淮路中国再生资源商贸城A1 江苏省 宿迁市 宿城区 ... \n",
"4 宿城区迎闪汽车维修服务部 格林上郡东门 江苏省 宿迁市 宿城区 ... \n",
"... ... ... ... ... ... ... \n",
"23967 平南县汽美美汽车维修店 亿通二手车交易市场对面 广西壮族自治区 贵港市 平南县 ... \n",
"23968 平南县汽美美汽车维修店 平南街道江北大道航道站旁边 广西壮族自治区 贵港市 平南县 ... \n",
"23969 平南县汽美美汽车维修店 大安镇容武路新商业中心 广西壮族自治区 贵港市 平南县 ... \n",
"23970 平南县汽美美汽车维修店 平南街道罗合社区社塘屯金鼎酒家旁 广西壮族自治区 贵港市 平南县 ... \n",
"23971 平南县汽美美汽车维修店 平南街道盛世名城对面粤龙停车场内安胜达汽修厂 广西壮族自治区 贵港市 平南县 ... \n",
"\n",
" typecode shopinfo poiweight childtype location shopid \\\n",
"0 030100 1 NaN NaN 118.359165,33.776483 NaN \n",
"1 030100 1 NaN NaN 118.354892,33.796700 NaN \n",
"2 030000 0 NaN NaN 118.247080,33.822301 NaN \n",
"3 035000 1 NaN NaN 118.170663,33.900403 NaN \n",
"4 030000 0 NaN NaN 118.301597,33.972174 NaN \n",
"... ... ... ... ... ... ... \n",
"23967 030000 1 NaN NaN 110.377196,23.556758 NaN \n",
"23968 010400 1 NaN NaN 110.406034,23.528178 NaN \n",
"23969 010400 1 NaN NaN 110.518444,23.386642 NaN \n",
"23970 030100 1 NaN NaN 110.429115,23.526564 NaN \n",
"23971 035000 1 NaN NaN 110.415380,23.543985 NaN \n",
"\n",
" id 提交人 提交时间 更新时间 \n",
"0 B0FFL9ZCPN F6汽车科技 2025-09-29 05:03:22 2025-09-29 05:03:22 \n",
"1 B0KDPS3Y96 F6汽车科技 2025-09-29 05:03:22 2025-09-29 05:03:22 \n",
"2 B0GU6ZB8V7 F6汽车科技 2025-09-29 05:03:22 2025-09-29 05:03:22 \n",
"3 B0FFLH3AGV F6汽车科技 2025-09-29 05:03:22 2025-09-29 05:03:22 \n",
"4 B0FFHRU3UE F6汽车科技 2025-09-29 05:03:22 2025-09-29 05:03:22 \n",
"... ... ... ... ... \n",
"23967 B0J3MHERLF F6汽车科技 2025-09-23 16:24:41 2025-09-23 16:24:41 \n",
"23968 B0IA5HDQMY F6汽车科技 2025-09-23 16:24:41 2025-09-23 16:24:41 \n",
"23969 B0HDDZ8XUS F6汽车科技 2025-09-23 16:24:41 2025-09-23 16:24:41 \n",
"23970 B0K2P5FYUQ F6汽车科技 2025-09-23 16:24:41 2025-09-23 16:24:41 \n",
"23971 B0GRP7K2ZD F6汽车科技 2025-09-23 16:24:41 2025-09-23 16:24:41 \n",
"\n",
"[23972 rows x 29 columns]\n",
"\n",
"--------------------------------------------------\n",
"\n",
"添加相似度后的数据:\n",
" data_id 源文件省 源文件市 源文件区 源文件地址 \\\n",
"0 68d9a29a1d4d2057d86e0916 江苏省 宿迁市 宿城区 江苏省中港雅典城B11幢05铺 \n",
"1 68d9a29a1d4d2057d86e0915 江苏省 宿迁市 宿城区 江苏省中港雅典城B11幢05铺 \n",
"2 68d9a29a1d4d2057d86e0914 江苏省 宿迁市 宿城区 江苏省中港雅典城B11幢05铺 \n",
"3 68d9a29a1d4d2057d86e0913 江苏省 宿迁市 宿城区 江苏省中港雅典城B11幢05铺 \n",
"4 68d9a29a1d4d2057d86e0912 江苏省 宿迁市 宿城区 江苏省中港雅典城B11幢05铺 \n",
"... ... ... ... ... ... \n",
"23967 68d25949387829f71a2fd370 广西壮族自治区 贵港市 平南县 平南街道盆塘村碌河东屯余汝安房屋 \n",
"23968 68d25949387829f71a2fd36f 广西壮族自治区 贵港市 平南县 平南街道盆塘村碌河东屯余汝安房屋 \n",
"23969 68d25949387829f71a2fd36c 广西壮族自治区 贵港市 平南县 平南街道盆塘村碌河东屯余汝安房屋 \n",
"23970 68d25949387829f71a2fd36a 广西壮族自治区 贵港市 平南县 平南街道盆塘村碌河东屯余汝安房屋 \n",
"23971 68d25949387829f71a2fd369 广西壮族自治区 贵港市 平南县 平南街道盆塘村碌河东屯余汝安房屋 \n",
"\n",
" 源文件门店店名 address pname cityname adname ... \\\n",
"0 宿城区迎闪汽车维修服务部 盛世景园东北门旁 江苏省 宿迁市 宿城区 ... \n",
"1 宿城区迎闪汽车维修服务部 洋河镇洋河上郡7栋C-10 江苏省 宿迁市 宿城区 ... \n",
"2 宿城区迎闪汽车维修服务部 人民北路埠子初级中学东北侧约190米 江苏省 宿迁市 宿城区 ... \n",
"3 宿城区迎闪汽车维修服务部 耿车镇徐淮路中国再生资源商贸城A1 江苏省 宿迁市 宿城区 ... \n",
"4 宿城区迎闪汽车维修服务部 格林上郡东门 江苏省 宿迁市 宿城区 ... \n",
"... ... ... ... ... ... ... \n",
"23967 平南县汽美美汽车维修店 亿通二手车交易市场对面 广西壮族自治区 贵港市 平南县 ... \n",
"23968 平南县汽美美汽车维修店 平南街道江北大道航道站旁边 广西壮族自治区 贵港市 平南县 ... \n",
"23969 平南县汽美美汽车维修店 大安镇容武路新商业中心 广西壮族自治区 贵港市 平南县 ... \n",
"23970 平南县汽美美汽车维修店 平南街道罗合社区社塘屯金鼎酒家旁 广西壮族自治区 贵港市 平南县 ... \n",
"23971 平南县汽美美汽车维修店 平南街道盛世名城对面粤龙停车场内安胜达汽修厂 广西壮族自治区 贵港市 平南县 ... \n",
"\n",
" childtype location shopid id 提交人 \\\n",
"0 NaN 118.359165,33.776483 NaN B0FFL9ZCPN F6汽车科技 \n",
"1 NaN 118.354892,33.796700 NaN B0KDPS3Y96 F6汽车科技 \n",
"2 NaN 118.247080,33.822301 NaN B0GU6ZB8V7 F6汽车科技 \n",
"3 NaN 118.170663,33.900403 NaN B0FFLH3AGV F6汽车科技 \n",
"4 NaN 118.301597,33.972174 NaN B0FFHRU3UE F6汽车科技 \n",
"... ... ... ... ... ... \n",
"23967 NaN 110.377196,23.556758 NaN B0J3MHERLF F6汽车科技 \n",
"23968 NaN 110.406034,23.528178 NaN B0IA5HDQMY F6汽车科技 \n",
"23969 NaN 110.518444,23.386642 NaN B0HDDZ8XUS F6汽车科技 \n",
"23970 NaN 110.429115,23.526564 NaN B0K2P5FYUQ F6汽车科技 \n",
"23971 NaN 110.415380,23.543985 NaN B0GRP7K2ZD F6汽车科技 \n",
"\n",
" 提交时间 更新时间 名称相似度 地址相似度 综合相似度 \n",
"0 2025-09-29 05:03:22 2025-09-29 05:03:22 55 0 27.5 \n",
"1 2025-09-29 05:03:22 2025-09-29 05:03:22 55 14 34.5 \n",
"2 2025-09-29 05:03:22 2025-09-29 05:03:22 25 18 21.5 \n",
"3 2025-09-29 05:03:22 2025-09-29 05:03:22 25 19 22.0 \n",
"4 2025-09-29 05:03:22 2025-09-29 05:03:22 25 0 12.5 \n",
"... ... ... ... ... ... \n",
"23967 2025-09-23 16:24:41 2025-09-23 16:24:41 33 0 16.5 \n",
"23968 2025-09-23 16:24:41 2025-09-23 16:24:41 44 28 36.0 \n",
"23969 2025-09-23 16:24:41 2025-09-23 16:24:41 35 7 21.0 \n",
"23970 2025-09-23 16:24:41 2025-09-23 16:24:41 64 38 51.0 \n",
"23971 2025-09-23 16:24:41 2025-09-23 16:24:41 73 26 49.5 \n",
"\n",
"[23972 rows x 32 columns]\n",
"\n",
"相似度分数范围在 0 (完全不同) 到 100 (完全相同) 之间。\n"
]
}
],
"execution_count": 3
}
],
"metadata": {
"kernelspec": {
"display_name": "Python 3",
"language": "python",
"name": "python3"
},
"language_info": {
"codemirror_mode": {
"name": "ipython",
"version": 2
},
"file_extension": ".py",
"mimetype": "text/x-python",
"name": "python",
"nbconvert_exporter": "python",
"pygments_lexer": "ipython2",
"version": "2.7.6"
}
},
"nbformat": 4,
"nbformat_minor": 5
}