IT数码 购物 网址 头条 软件 日历 阅读 图书馆
TxT小说阅读器
↓语音阅读,小说下载,古典文学↓
图片批量下载器
↓批量下载图片,美女图库↓
图片自动播放器
↓图片自动播放器↓
一键清除垃圾
↓轻轻一点,清除系统垃圾↓
开发: C++知识库 Java知识库 JavaScript Python PHP知识库 人工智能 区块链 大数据 移动开发 嵌入式 开发工具 数据结构与算法 开发测试 游戏开发 网络协议 系统运维
教程: HTML教程 CSS教程 JavaScript教程 Go语言教程 JQuery教程 VUE教程 VUE3教程 Bootstrap教程 SQL数据库教程 C语言教程 C++教程 Java教程 Python教程 Python3教程 C#教程
数码: 电脑 笔记本 显卡 显示器 固态硬盘 硬盘 耳机 手机 iphone vivo oppo 小米 华为 单反 装机 图拉丁
 
   -> Python知识库 -> 全国城市数据及地图数据-python爬取 -> 正文阅读

[Python知识库]全国城市数据及地图数据-python爬取

最近又在研究python,于是对全国的城市地图数据下手了,废话不多说,下面直接贴代码:
注释都有应该能看懂

import requests
import json
import os

# 所有地域的请求地址
ALL_AREA_URL = "http://geo.datav.aliyun.com/areas_v3/bound/all.json"
# 包含子域的json请求地址
ARREA_BOUND_URL = "http://geo.datav.aliyun.com/areas_v3/bound/geojson"
# 数据存储位置
FOLDER_PATH = "D:\\areaBound\\";
headers = {'content-type': 'charset=utf-8'}

allLen_g = 0
pullSize_g = 0;
fail_g = []


def getAllArea():
    """
    获取全国的所有地域
    :return: 返回元组
    """
    res = requests.get(url=ALL_AREA_URL, headers=headers)
    allArea = json.loads(res.text)
    global allLen_g
    allLen_g = len(allArea)
    root = None
    codemap = {}
    for area in allArea:
        code = area["adcode"]
        name = area['name']
        parent = area["parent"]
        current = {'code': code, 'name': name, "children": []}
        codemap[code] = current
        if parent is not None:
            codemap[parent]['children'].append(current)
        else:
            root = current
    return root


def getBoundData(areacode, full=False):
    if full:
        params = {"code": str(areacode) + "_full"}
    else:
        params = {"code": str(areacode)}
    res = requests.get(url=ARREA_BOUND_URL, params=params)
    return res.text


def load2file(area, folder, fail):
    code = area['code']
    name = area['name']
    if not os.path.exists(folder):
        os.makedirs(folder)

    has_fail = False
    global pullSize_g
    pullSize_g += 1
    # 无子区域
    try:
        filepath = folder + name + ".json"
        if not os.path.exists(filepath):
            res = getBoundData(code)
            with open(folder + name + ".json", "w") as f:
                f.write(res)
    except BaseException as e:
        print("pull [%s] fail!!!!" % name)
        print(e)
        has_fail = True
        # 包含子区域
    try:
        filepath = folder + name + "_full.json"
        if not os.path.exists(filepath):
            res = getBoundData(code, True)
            with open(folder + name + "_full.json", 'w') as f:
                f.write(res)
    except BaseException as e:
        print("pull [%s]_full fail!!!!" % name)
        print(e)
        has_fail = True

    if has_fail:
        fail.append(area)
    print("pull [%s] success~~~ >>> %.2f" % (name, pullSize_g / allLen_g))
    # 递归加载子区域
    folder = folder + area['name'] + "\\"
    for child in area['children']:
        load2file(child, folder, fail)


# 加载所有的地区
root = getAllArea()
folder = "D:\\qgdt\\"
if not os.path.exists(folder):
    os.makedirs(folder)
with open(folder+"qyhf.json",'w') as f:
    f.write(json.dumps(root,ensure_ascii=False))
load2file(root, "D:\\qgdt\\", fail_g)

附带爬取结果:
链接:https://pan.baidu.com/s/1taQPcS2x2rWF2H1yklVd-w
提取码:mlyu

  Python知识库 最新文章
Python中String模块
【Python】 14-CVS文件操作
python的panda库读写文件
使用Nordic的nrf52840实现蓝牙DFU过程
【Python学习记录】numpy数组用法整理
Python学习笔记
python字符串和列表
python如何从txt文件中解析出有效的数据
Python编程从入门到实践自学/3.1-3.2
python变量
上一篇文章      下一篇文章      查看所有文章
加:2021-10-27 12:47:35  更:2021-10-27 12:50:07 
 
开发: C++知识库 Java知识库 JavaScript Python PHP知识库 人工智能 区块链 大数据 移动开发 嵌入式 开发工具 数据结构与算法 开发测试 游戏开发 网络协议 系统运维
教程: HTML教程 CSS教程 JavaScript教程 Go语言教程 JQuery教程 VUE教程 VUE3教程 Bootstrap教程 SQL数据库教程 C语言教程 C++教程 Java教程 Python教程 Python3教程 C#教程
数码: 电脑 笔记本 显卡 显示器 固态硬盘 硬盘 耳机 手机 iphone vivo oppo 小米 华为 单反 装机 图拉丁

360图书馆 购物 三丰科技 阅读网 日历 万年历 2024年11日历 -2024/11/15 23:34:05-

图片自动播放器
↓图片自动播放器↓
TxT小说阅读器
↓语音阅读,小说下载,古典文学↓
一键清除垃圾
↓轻轻一点,清除系统垃圾↓
图片批量下载器
↓批量下载图片,美女图库↓
  网站联系: qq:121756557 email:121756557@qq.com  IT数码