↧
Answer by Ptank for how to handle 30x when using feedparser to parse rss url
Use requests to get the feed before like:import requestsimport feedparserpage = requests.get("https://ucw.moe/feed/rss")print(page.status_code)feed = feedparser.parse(page.content)
View Articlehow to handle 30x when using feedparser to parse rss url
Now I am using Python 3 feedparser to parse some RSS url, this is my code:if __name__ == "__main__": try: feed = feedparser.parse("https://ucw.moe/feed/rss") print(feed.status) except Exception as e:...
View Article