2020
09-25
09-25
python手机号前7位归属地爬虫代码实例
需求分析项目上需要用到手机号前7位,判断号码是否合法,还有归属地查询。旧的数据是几年前了太久了,打算用python爬虫重新爬一份单线程版本#coding:utf-8importrequestsfromdatetimeimportdatetimeclassPhoneInfoSpider:def__init__(self,phoneSections):self.phoneSections=phoneSectionsdefphoneInfoHandler(self,textData):text=textData.splitlines(True)#print("textlength:"+str(len(tex...
继续阅读 >