initial rss

This commit is contained in:
Dima Gerasimov 2019-09-30 19:50:58 +01:00
parent bf8ceea523
commit 35b6d6ff97
5 changed files with 109 additions and 0 deletions

12
my/_rss.py Normal file
View 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