Coverage for src/pyrsslocal/__init__.py: 92%

13 statements  

« prev     ^ index     » next       coverage.py v7.1.0, created at 2024-04-30 08:45 +0200

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.363" 

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