HPI/my/rss/all.py
2024-10-19 23:41:22 +01:00

17 lines
429 B
Python

'''
Unified RSS data, merged from different services I used historically
'''
# NOTE: you can comment out the sources you're not using
from collections.abc import Iterable
from . import feedbin, feedly
from .common import Subscription, compute_subscriptions
def subscriptions() -> Iterable[Subscription]:
# TODO google reader?
yield from compute_subscriptions(
feedbin.states(),
feedly.states(),
)