Hide keyboard shortcuts

Hot-keys on this page

r m x p   toggle line displays

j k   next/prev highlighted chunk

0   (zero) top of page

1   (one) first highlighted chunk

1# -*- coding: utf-8 -*- 

2""" 

3@file 

4@brief Module *pyrsslocal*. Very slow server 

5for RSS streams. 

6""" 

7from .rss.rss_helper import rss_update_run_server, rss_run_server 

8from .rss.rss_database import DatabaseRSS 

9from .custom_server.aserver import CustomDBServerHandler, CustomDBServer 

10from .helper.subscription_helper import write_subscriptions_example 

11from .rss.rss_simple_server import RSSSimpleHandler, RSSServer 

12 

13 

14__version__ = "0.9.352" 

15__author__ = "Xavier Dupré" 

16__github__ = "https://github.com/sdpython/pyrsslocal" 

17__url__ = "http://www.xavierdupre.fr/app/pyrsslocal/helpsphinx/index.html" 

18__license__ = "MIT License" 

19 

20 

21def _setup_hook(): 

22 """ 

23 does nothing 

24 """ 

25 pass