python 爬取httpsmehy-egcomour-partnerswaters的邮箱 输出excel文件
要爬取网页上的邮箱,并将其输出为Excel文件,你可以使用Python的requests和beautifulsoup库来实现。下面是一个示例代码:
import requests
from bs4 import BeautifulSoup
import pandas as pd
# 发送GET请求获取网页内容
url = 'https://mehy-eg.com/our-partners/waters/'
response = requests.get(url)
html_content = response.text
# 使用BeautifulSoup解析HTML内容
soup = BeautifulSoup(html_content, 'html.parser')
# 找到所有的邮箱链接
email_links = soup.select('a[href^=mailto]')
# 提取邮箱地址
emails = [link['href'][7:] for link in email_links]
# 将邮箱地址保存为Excel文件
df = pd.DataFrame({'Email': emails})
df.to_excel('emails.xlsx', index=False)
在这个示例中,我们首先发送GET请求获取网页的HTML内容,然后使用BeautifulSoup解析HTML内容,找到所有的邮箱链接,并提取出邮箱地址。最后,我们使用pandas库将邮箱地址保存为一个Excel文件。
请注意,代码中的url变量是你想要爬取的网页的URL地址,emails.xlsx是保存邮箱地址的Excel文件名,你可以根据需要进行修改
原文地址: https://www.cveoy.top/t/topic/ijI8 著作权归作者所有。请勿转载和采集!