initial rss
This commit is contained in:
parent
bf8ceea523
commit
35b6d6ff97
5 changed files with 109 additions and 0 deletions
12
my/_rss.py
Normal file
12
my/_rss.py
Normal file
|
@ -0,0 +1,12 @@
|
|||
# shared Rss stuff
|
||||
from typing import NamedTuple
|
||||
|
||||
class Subscription(NamedTuple):
|
||||
# TODO date?
|
||||
title: str
|
||||
url: str
|
||||
id: str
|
||||
subscribed: bool=True
|
||||
|
||||
|
||||
|
Loading…
Add table
Add a link
Reference in a new issue