python之爬取邮箱电话

这里使用requests库爬取网页要比urllib库方便
用finditer查询

import requests
import re
url='https://www.flyai.com/' # 带爬取的网页
html=requests.get(url).text  # text为转化为str数据
pat='(\w+@\w+.com)|(\d{11})' # 正则模式
res=re.finditer(pat,html)    # finditer返回的是一个迭代器
for i in res:                # i 是一个Match对象
   print(i.group())          #  group()为输出所有组

python之爬取邮箱电话_第1张图片用findall查询

import requests
import re
url='https://www.flyai.com/'
html=requests.get(url).text
pat='(?:[a-zA-Z_-]+@[a-zA-Z_-]+.com)|(?:\d{11})' 
res=re.findall(pat,html)   # 返回的结果在一个列表中
print(res)

python之爬取邮箱电话_第2张图片

import requests
import re
url='https://www.sina.com.cn/'
html=requests.get(url).text
pat='[a-zA-Z_-]+@[a-zA-Z_-]+.\w*'
res=set(re.findall(pat,html))
print(res)

python之爬取邮箱电话_第3张图片

你可能感兴趣的:(Python爬虫)