diff options
author | terminaldweller <thabogre@gmail.com> | 2021-03-31 17:25:35 +0000 |
---|---|---|
committer | terminaldweller <thabogre@gmail.com> | 2021-03-31 17:25:35 +0000 |
commit | 5cd1e564f1f7603989007f4e16e50f8c84010360 (patch) | |
tree | f0890e9cbad5e64ddef82fdb8dff23b55f211463 /main.py | |
parent | Initial commit (diff) | |
download | devourer-5cd1e564f1f7603989007f4e16e50f8c84010360.tar.gz devourer-5cd1e564f1f7603989007f4e16e50f8c84010360.zip |
first commit
Diffstat (limited to '')
-rwxr-xr-x | main.py | 37 |
1 files changed, 37 insertions, 0 deletions
@@ -0,0 +1,37 @@ +#!/usr/bin/env python3 +# _*_ coding=utf-8 _*_ + +import argparse +import logging +import traceback +from newspaper import Article, build +import fileinput + + +class Argparser(object): + def __init__(self): + parser = argparse.ArgumentParser() + parser.add_argument("--string", type=str, help="string") + parser.add_argument("--bool", action="store_true", + help="bool", default=False) + parser.add_argument("--dbg", action="store_true", + help="debug", default=False) + self.args = parser.parse_args() + + +def main(): + urls = (line for line in fileinput.input()) + for url in urls: + parser = build(url) + for article in parser.articles: + a = Article(article.url) + try: + a.download() + a.parse() + print(a.text) + except Exception as e: + logging.error(traceback.format_exc(e)) + + +if __name__ == "__main__": + main() |