此问题在此处已有答案:
Scraping of protected email(3个答案)
3小时前关闭。
- 我的脚本是不返回电子邮件字段,我想从网站刮.任何解决办法??*
from bs4 import BeautifulSoup
import requests
url = 'https://www.kw.com/agent/UPA-6587385179144187908-1'
res = requests.get(url)
soup = BeautifulSoup(res.content,'html.parser')
name = soup.find('div',class_='AgentContent__name').text.strip()
location = soup.find('div',class_='AgentContent__location').text.strip()
website = soup.find('a',class_='AgentInformation__factBody').attrs['href']
print(website)
print(name)
print(location)
字符串
- 这就是我得到的 *
/cdn-cgi/l/email-protection#f18394909d94828590859482b199949895989093949d94df929e9c
海蒂·阿贝莱
坎贝尔,加利福尼亚州
1条答案
按热度按时间fykwrbwg1#
所有的信息都在脚本块中,你可以得到你想要的一切。例如:
字符串
输出值:
型