爬虫城市编号,城市名称并写入数据库

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编码关注

 



这篇关于爬虫城市编号,城市名称并写入数据库的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!


扫一扫关注最新编程教程