├── .github ├── dependabot.yaml └── workflows │ ├── lint.yaml │ ├── publish.yaml │ └── test.yaml ├── .gitignore ├── LICENSE ├── MANIFEST.in ├── README.md ├── pyproject.toml ├── src └── reader │ ├── __init__.py │ ├── __main__.py │ ├── config.toml │ ├── feed.py │ └── viewer.py └── tests ├── realpython_20180919.xml ├── realpython_descriptions_20180919.xml ├── test_feed.py └── test_viewer.py /.github/dependabot.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realpython/reader/HEAD/.github/dependabot.yaml -------------------------------------------------------------------------------- /.github/workflows/lint.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realpython/reader/HEAD/.github/workflows/lint.yaml -------------------------------------------------------------------------------- /.github/workflows/publish.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realpython/reader/HEAD/.github/workflows/publish.yaml -------------------------------------------------------------------------------- /.github/workflows/test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realpython/reader/HEAD/.github/workflows/test.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realpython/reader/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realpython/reader/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- 1 | include src/reader/*.toml 2 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realpython/reader/HEAD/README.md -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realpython/reader/HEAD/pyproject.toml -------------------------------------------------------------------------------- /src/reader/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realpython/reader/HEAD/src/reader/__init__.py -------------------------------------------------------------------------------- /src/reader/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realpython/reader/HEAD/src/reader/__main__.py -------------------------------------------------------------------------------- /src/reader/config.toml: -------------------------------------------------------------------------------- 1 | [feed] 2 | url = "https://realpython.com/atom.xml" 3 | -------------------------------------------------------------------------------- /src/reader/feed.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realpython/reader/HEAD/src/reader/feed.py -------------------------------------------------------------------------------- /src/reader/viewer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realpython/reader/HEAD/src/reader/viewer.py -------------------------------------------------------------------------------- /tests/realpython_20180919.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realpython/reader/HEAD/tests/realpython_20180919.xml -------------------------------------------------------------------------------- /tests/realpython_descriptions_20180919.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realpython/reader/HEAD/tests/realpython_descriptions_20180919.xml -------------------------------------------------------------------------------- /tests/test_feed.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realpython/reader/HEAD/tests/test_feed.py -------------------------------------------------------------------------------- /tests/test_viewer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realpython/reader/HEAD/tests/test_viewer.py --------------------------------------------------------------------------------