timtim 发表于 2017-11-13 23:00

python 批量获取手机号码的归属地

感谢GitHub 项目
https://github.com/ls0f/phone
可以获取手机的归属地


#coding:utf8

from phone import Phone

def get_info():
    p = Phone()
    phones = []
    with open(path,'r') as file:
      lines = file.readlines()
      for line in lines:
            phones.append(line.strip())

    for phone in phones:
      if len(phone)==11:
                city = p.find(phone)['city']
                print "%s %s"%(phone,city)

jonah 发表于 2017-11-18 00:07

不错,感谢分享

wenz 发表于 2017-11-13 23:59

谢谢分享

哈喽,你好 发表于 2017-11-14 00:03

膜拜一波

wenz 发表于 2017-11-14 00:17

谢谢楼主

dadao815 发表于 2017-11-14 00:31

希望楼主能更明白的说下!!!!!!!

chucklee 发表于 2017-11-14 00:54

谢谢分享!!!

吾爱小强强 发表于 2017-11-14 01:36

老铁 我只会易语言 没毛病

WilsonTing2017 发表于 2017-11-14 08:06

难吗?我也准备入门

fuhui 发表于 2017-11-17 21:26

这是根据归属扫描手机号码吗
页: [1] 2
查看完整版本: python 批量获取手机号码的归属地