Add do-it-all function

For quick lib use
master
pictuga 2014-05-24 19:02:22 +02:00
parent 26c91070f5
commit 25fdca4bf0
1 changed files with 11 additions and 0 deletions

View File

@ -643,6 +643,17 @@ def After(rss, options):
else:
return rss.tostring(xml_declaration=True, encoding='UTF-8')
def process(url, cache, options=None):
if options == None:
options = []
options = Options(options)
url, cache = Init(url, cache, options)
rss = Fetch(url, cache, options)
rss = Gather(rss, url, cache, options)
return After(rss, options)
def cgi_app(environ, start_response):
# get options
if 'REQUEST_URI' in environ: