├── .gitignore ├── LICENSE ├── README.md ├── dist ├── newscatcher-0.1.0-py3-none-any.whl └── newscatcher-0.1.0.tar.gz ├── newscatcher ├── __init__.py └── data │ └── package_rss.db ├── newscatcher_oneliner.png ├── newscatcherdemo.gif ├── poetry.lock ├── pyproject.toml ├── requirements.txt └── tests ├── __init__.py └── test_newscatcher.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kotartemiy/newscatcher/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kotartemiy/newscatcher/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kotartemiy/newscatcher/HEAD/README.md -------------------------------------------------------------------------------- /dist/newscatcher-0.1.0-py3-none-any.whl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kotartemiy/newscatcher/HEAD/dist/newscatcher-0.1.0-py3-none-any.whl -------------------------------------------------------------------------------- /dist/newscatcher-0.1.0.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kotartemiy/newscatcher/HEAD/dist/newscatcher-0.1.0.tar.gz -------------------------------------------------------------------------------- /newscatcher/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kotartemiy/newscatcher/HEAD/newscatcher/__init__.py -------------------------------------------------------------------------------- /newscatcher/data/package_rss.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kotartemiy/newscatcher/HEAD/newscatcher/data/package_rss.db -------------------------------------------------------------------------------- /newscatcher_oneliner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kotartemiy/newscatcher/HEAD/newscatcher_oneliner.png -------------------------------------------------------------------------------- /newscatcherdemo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kotartemiy/newscatcher/HEAD/newscatcherdemo.gif -------------------------------------------------------------------------------- /poetry.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kotartemiy/newscatcher/HEAD/poetry.lock -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kotartemiy/newscatcher/HEAD/pyproject.toml -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | requests 2 | feedparser 3 | tldextract 4 | -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/test_newscatcher.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kotartemiy/newscatcher/HEAD/tests/test_newscatcher.py --------------------------------------------------------------------------------