Created
November 28, 2021 06:23
-
-
Save kjaymiller/f0dd66f7793ef0b796790751064689bd to your computer and use it in GitHub Desktop.
DBF Show Scraper
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import feedparser as feed | |
from bs4 import BeautifulSoup | |
url = 'https://feeds.simplecast.com/5nKJV82u' | |
rss = feed.parse(url) | |
for entry in rss['entries']: | |
soup = BeautifulSoup(entry['content'][0]['value']) | |
print([x['href'] for x in soup.find_all('a')]) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment