RSS module #19

Merged
Miroslavsckaya merged 8 commits from feature_rss into master 2022-05-29 20:13:40 +00:00
Showing only changes of commit 51c9754ad8 - Show all commits

5
rss.py
View file

@ -2,7 +2,10 @@ import feedparser
class FeedItem():
pass
def __init__(self, url: str, title: str, description: str) -> None:
self.url = url
self.title = title
self.description = description
class Feed():
def __init__(self, url: str, items: list) -> None: