Source code for pyrsslocal

# -*- coding: utf-8 -*-
"""
Module *pyrsslocal*. Very slow server
for RSS streams.


:githublink:`%|py|7`
"""
from .rss.rss_helper import rss_update_run_server, rss_run_server
from .rss.rss_database import DatabaseRSS
from .custom_server.aserver import CustomDBServerHandler, CustomDBServer
from .helper.subscription_helper import write_subscriptions_example
from .rss.rss_simple_server import RSSSimpleHandler, RSSServer


__version__ = "0.9.339"
__author__ = "Xavier Dupré"
__github__ = "https://github.com/sdpython/pyrsslocal"
__url__ = "http://www.xavierdupre.fr/app/pyrsslocal/helpsphinx/index.html"
__license__ = "MIT License"


[docs]def _setup_hook(): """ does nothing :githublink:`%|py|24` """ pass