从网站中的多个页面中提取电子邮件并列出

问题描述 投票:-3回答:1

我想使用python从展览网站上提取参展商的电子邮件。该页面包含参展商的超文本。点击参展商名称后,您将找到包含其电子邮件的参展商资料。

你可以在这里找到这个网站:

https://www.medica-tradefair.com/cgi-bin/md_medica/lib/pub/tt.cgi/Exhibitor_index_A-Z.html?oid=80398&lang=2&ticket=g_u_e_s_t

我怎么能用python做这个呢?先感谢您

python web-scraping scrapy python-requests web-crawler
1个回答
0
投票

您可以获取参展商的所有链接,然后遍历这些链接并为每个参与者提取电子邮件:

import requests
import bs4


url = 'https://www.medica-tradefair.com/cgi-bin/md_medica/lib/pub/tt.cgi/Exhibitor_index_A-Z.html?oid=80398&lang=2&ticket=g_u_e_s_t'

response = requests.get(url)

soup = bs4.BeautifulSoup(response.text, 'html.parser')

links = soup.find_all('a', href=True)
exhibitor_links = ['https://www.medica-tradefair.com'+link['href'] for link in links if 'vis/v1/en/exhibitors' in link['href'] ]
exhibitor_links = list(set(exhibitor_links))

for link in exhibitor_links:
    response = requests.get(link)
    soup = bs4.BeautifulSoup(response.text, 'html.parser')

    name = soup.find('h1',{'itemprop':'name'}).text
    try:
        email = soup.find('a', {'itemprop':'email'}).text
    except:
        email = 'N/A'

    print('Name: %s\tEmail: %s' %(name, email))
© www.soinside.com 2019 - 2024. All rights reserved.