Make it possible to directly run sub-libs (feeds, crawler, readabilite)
Run `python -im morss.feeds http://website.sample/rss.xml` and so on
This commit is contained in:
@@ -342,3 +342,11 @@ def get_article(data, url=None, encoding=None, debug=False, threshold=5):
|
||||
best.make_links_absolute(url)
|
||||
|
||||
return lxml.etree.tostring(best if not debug else html, pretty_print=True)
|
||||
|
||||
|
||||
if __name__ == '__main__':
|
||||
import sys
|
||||
from . import crawler
|
||||
|
||||
data, con, contenttype, encoding = crawler.adv_get(sys.argv[1] if len(sys.argv) > 1 else 'https://morss.it')
|
||||
article = get_article(data, url=con.geturl(), encoding=encoding)
|
||||
|
Reference in New Issue
Block a user