HPI/my/rss/_rss.py
2020-05-13 22:58:09 +01:00

12 lines
308 B
Python

# shared Rss stuff
from datetime import datetime
from typing import NamedTuple, Optional
class Subscription(NamedTuple):
title: str
url: str
id: str # TODO not sure about it...
# eh, not all of them got reasonable 'created' time
created_at: Optional[datetime]
subscribed: bool=True