Given a podcast object, call it's refresh feed function.
Source code in src/podcast_analyzer/tasks.py
| def async_refresh_feed(podcast_id: str) -> None:
"""
Given a podcast object, call it's refresh feed function.
"""
podcast = Podcast.objects.get(id=podcast_id)
podcast.refresh_feed()
|