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:
2020-04-27 17:19:31 +02:00
parent d39d7bb19d
commit 2806c64326
3 changed files with 19 additions and 0 deletions

View File

@@ -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)