10 lines
166 B
Python
10 lines
166 B
Python
# shared Rss stuff
|
|
from typing import NamedTuple
|
|
|
|
class Subscription(NamedTuple):
|
|
# TODO date?
|
|
title: str
|
|
url: str
|
|
id: str
|
|
subscribed: bool=True
|
|
|