This commit is contained in:
Rob 2019-07-30 15:53:40 +02:00
commit d1b405a9d4
1 changed files with 4 additions and 4 deletions

View File

@ -5,8 +5,8 @@ import csv
source = requests.get('https://www.philanthropycalendar.eu/').text
soup = BeautifulSoup(source, 'lxml')
iframe = soup.find("iframe")['']
# link = iframe.find("iframe")['href']
# event_url = soup.find("iframe")["href"]
iframe = soup.find("iframe")["data-src"]
print(iframe)
content = requests.get(iframe).text
print(content)