gitextract_ir8937v6/ ├── .coveragerc ├── .gitattributes ├── .gitignore ├── .pylintrc ├── AUTHORS.rst ├── CHANGELOG.rst ├── CONTRIBUTING.rst ├── CONTROLS.md ├── LICENSE ├── MANIFEST.in ├── README.md ├── THEMES.md ├── requirements.txt ├── scripts/ │ ├── build_authors.py │ ├── build_manpage.py │ ├── cassettes/ │ │ └── demo_theme.yaml │ ├── count_lines.sh │ ├── demo_theme.py │ ├── initialize_session.py │ ├── inspect_webbrowser.py │ ├── pip_clean.sh │ ├── ttrv.1.template │ └── update_packages.py ├── setup.cfg ├── setup.py ├── test ├── ttrv/ │ ├── __init__.py │ ├── __main__.py │ ├── __version__.py │ ├── clipboard.py │ ├── config.py │ ├── content.py │ ├── docs.py │ ├── exceptions.py │ ├── inbox_page.py │ ├── mime_parsers.py │ ├── oauth.py │ ├── objects.py │ ├── packages/ │ │ ├── __init__.py │ │ └── praw/ │ │ ├── __init__.py │ │ ├── decorator_helpers.py │ │ ├── decorators.py │ │ ├── errors.py │ │ ├── handlers.py │ │ ├── helpers.py │ │ ├── internal.py │ │ ├── multiprocess.py │ │ ├── objects.py │ │ ├── praw.ini │ │ └── settings.py │ ├── page.py │ ├── submission_page.py │ ├── subreddit_page.py │ ├── subscription_page.py │ ├── templates/ │ │ ├── index.html │ │ ├── mailcap │ │ └── ttrv.cfg │ ├── terminal.py │ ├── theme.py │ └── themes/ │ ├── colorblind-dark.cfg │ ├── default.cfg.example │ ├── molokai.cfg │ ├── papercolor.cfg │ ├── solarized-dark.cfg │ └── solarized-light.cfg ├── ttrv.1 └── ttrv.egg-info/ ├── PKG-INFO ├── SOURCES.txt ├── dependency_links.txt ├── entry_points.txt ├── requires.txt └── top_level.txt