登录 注册
当前位置:主页 > 资源下载 > 48 > 简单python 爬虫,获取 省市区、镇、街道 爬虫原码.py下载

简单python 爬虫,获取 省市区、镇、街道 爬虫原码.py下载

  • 更新:2024-08-06 15:48:14
  • 大小:5KB
  • 推荐:★★★★★
  • 来源:网友上传分享
  • 类别:算法与数据结构 - 大数据
  • 格式:PY

资源介绍

简单python 爬虫,获取 省市区、镇、街道 爬虫原码 #!usr/bin/python #coding:utf-8 import requests import time from bs4 import BeautifulSoup # 国家统计局 2019年 行政区域划分网址 link = 'http://www.stats.gov.cn/tjsj/tjbz/tjyqhdmhcxhfdm/2019/' # 伪装 headers headers = { 'User-Agent': 'Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.100 Safari/537.36', 'Accept-Encoding': 'gzip, deflate' } ''' 获取省数据 ''' def getprovincetr(url = 'index.html'): .。。。。。。。。。。。。。。