Asynchronous FeedParser #2
Loading…
x
Reference in New Issue
Block a user
No description provided.
Delete Branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
I'm currently using
feedparser
to fetch the RSS data from the URL, this is not done asynchronously.Explore options for asynchronously fetching the RSS data, then handing that to
feedparser
directly.This should be do-able with
aiohttp
.I have used the aiohttp library to fetch the unparsed feed, then use feed parser after the fact, making it asynchronous.