爬虫城市编号,城市名称并写入数据库
2021/4/8 19:30:20
本文主要是介绍爬虫城市编号,城市名称并写入数据库,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!
def reppro():
url="http:/xxx"
params={"serialNumber":15521101010}
header={"User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4324.190 Safari/537.36","Content-Type": "application/x-www-form-urlencoded; charset=UTF-8","Host": "xxx"}
res=requests.post(url,data=params,headers=header)
ret='\"areaCode\":\"(\d+)\",\"areaName\":\"(.+?)\"'
resall=re.findall(ret,str(res.text))
for resone in resall:
texucity.objects.get_or_create(citynum=resone[0],
cityname=resone[1]
)
更多python编码关注
这篇关于爬虫城市编号,城市名称并写入数据库的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!
- 2024-11-10SpringBoot 内部方法调用,事务不起作用的原因及解决办法
- 2024-11-10独立开发者 5 个月,月收入赶超北京工资,我的一点心得
- 2024-11-09程序员 SEO 系列:如何找到更多搜索关键词?
- 2024-11-09为何选择Spring AI Alibaba开发智能客服平台?
- 2024-11-09Sentinel不同的流控效果资料详解
- 2024-11-09Sentinel配置限流资料:新手入门教程
- 2024-11-09Sentinel配置限流资料详解
- 2024-11-09Sentinel熔断规则配置资料详解
- 2024-11-08Sentinel熔断规则配置资料详解
- 2024-11-08Sentinel限流资料入门教程