tuir-continued 1.29.1__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- tuir_continued-1.29.1/AUTHORS.rst +76 -0
- tuir_continued-1.29.1/CHANGELOG.rst +865 -0
- tuir_continued-1.29.1/LICENSE +23 -0
- tuir_continued-1.29.1/MANIFEST.in +8 -0
- tuir_continued-1.29.1/PKG-INFO +334 -0
- tuir_continued-1.29.1/README.md +294 -0
- tuir_continued-1.29.1/setup.cfg +7 -0
- tuir_continued-1.29.1/setup.py +87 -0
- tuir_continued-1.29.1/tests/test_clipboard.py +48 -0
- tuir_continued-1.29.1/tests/test_config.py +283 -0
- tuir_continued-1.29.1/tests/test_content.py +706 -0
- tuir_continued-1.29.1/tests/test_inbox.py +189 -0
- tuir_continued-1.29.1/tests/test_mime_parsers.py +184 -0
- tuir_continued-1.29.1/tests/test_oauth.py +196 -0
- tuir_continued-1.29.1/tests/test_objects.py +614 -0
- tuir_continued-1.29.1/tests/test_packages.py +8 -0
- tuir_continued-1.29.1/tests/test_page.py +144 -0
- tuir_continued-1.29.1/tests/test_submission.py +544 -0
- tuir_continued-1.29.1/tests/test_subreddit.py +846 -0
- tuir_continued-1.29.1/tests/test_subscription.py +164 -0
- tuir_continued-1.29.1/tests/test_terminal.py +799 -0
- tuir_continued-1.29.1/tests/test_theme.py +277 -0
- tuir_continued-1.29.1/tuir/__init__.py +27 -0
- tuir_continued-1.29.1/tuir/__main__.py +291 -0
- tuir_continued-1.29.1/tuir/__version__.py +4 -0
- tuir_continued-1.29.1/tuir/clipboard.py +25 -0
- tuir_continued-1.29.1/tuir/config.py +323 -0
- tuir_continued-1.29.1/tuir/content.py +1218 -0
- tuir_continued-1.29.1/tuir/docs.py +252 -0
- tuir_continued-1.29.1/tuir/exceptions.py +63 -0
- tuir_continued-1.29.1/tuir/inbox_page.py +204 -0
- tuir_continued-1.29.1/tuir/mime_parsers.py +498 -0
- tuir_continued-1.29.1/tuir/oauth.py +251 -0
- tuir_continued-1.29.1/tuir/objects.py +709 -0
- tuir_continued-1.29.1/tuir/packages/__init__.py +26 -0
- tuir_continued-1.29.1/tuir/packages/praw/__init__.py +2813 -0
- tuir_continued-1.29.1/tuir/packages/praw/decorator_helpers.py +38 -0
- tuir_continued-1.29.1/tuir/packages/praw/decorators.py +294 -0
- tuir_continued-1.29.1/tuir/packages/praw/errors.py +475 -0
- tuir_continued-1.29.1/tuir/packages/praw/handlers.py +243 -0
- tuir_continued-1.29.1/tuir/packages/praw/helpers.py +481 -0
- tuir_continued-1.29.1/tuir/packages/praw/internal.py +271 -0
- tuir_continued-1.29.1/tuir/packages/praw/multiprocess.py +102 -0
- tuir_continued-1.29.1/tuir/packages/praw/objects.py +2026 -0
- tuir_continued-1.29.1/tuir/packages/praw/praw.ini +79 -0
- tuir_continued-1.29.1/tuir/packages/praw/settings.py +45 -0
- tuir_continued-1.29.1/tuir/page.py +892 -0
- tuir_continued-1.29.1/tuir/submission_page.py +415 -0
- tuir_continued-1.29.1/tuir/subreddit_page.py +620 -0
- tuir_continued-1.29.1/tuir/subscription_page.py +97 -0
- tuir_continued-1.29.1/tuir/templates/index.html +31 -0
- tuir_continued-1.29.1/tuir/templates/mailcap +70 -0
- tuir_continued-1.29.1/tuir/templates/tuir.cfg +237 -0
- tuir_continued-1.29.1/tuir/terminal.py +1047 -0
- tuir_continued-1.29.1/tuir/theme.py +572 -0
- tuir_continued-1.29.1/tuir/themes/colorblind-dark.cfg +70 -0
- tuir_continued-1.29.1/tuir/themes/default.cfg.example +59 -0
- tuir_continued-1.29.1/tuir/themes/molokai.cfg +82 -0
- tuir_continued-1.29.1/tuir/themes/papercolor.cfg +80 -0
- tuir_continued-1.29.1/tuir/themes/solarized-dark.cfg +78 -0
- tuir_continued-1.29.1/tuir/themes/solarized-light.cfg +78 -0
- tuir_continued-1.29.1/tuir.1 +121 -0
- tuir_continued-1.29.1/tuir_continued.egg-info/PKG-INFO +334 -0
- tuir_continued-1.29.1/tuir_continued.egg-info/SOURCES.txt +68 -0
- tuir_continued-1.29.1/tuir_continued.egg-info/dependency_links.txt +1 -0
- tuir_continued-1.29.1/tuir_continued.egg-info/entry_points.txt +2 -0
- tuir_continued-1.29.1/tuir_continued.egg-info/requires.txt +16 -0
- tuir_continued-1.29.1/tuir_continued.egg-info/top_level.txt +1 -0
- tuir_continued-1.29.1/version.py +4 -0
|
@@ -0,0 +1,76 @@
|
|
|
1
|
+
================
|
|
2
|
+
RTV Contributors
|
|
3
|
+
================
|
|
4
|
+
|
|
5
|
+
Thanks to the following people for their contributions to this project.
|
|
6
|
+
|
|
7
|
+
* `Michael Lazar <https://github.com/michael-lazar>`_
|
|
8
|
+
* `Tobin Brown <https://github.com/Brobin>`_
|
|
9
|
+
* `woorst <https://github.com/woorst>`_
|
|
10
|
+
* `Théo Piboubès <https://github.com/ThePib>`_
|
|
11
|
+
* `Yusuke Sakamoto <https://github.com/yskmt>`_
|
|
12
|
+
* `Johnathan Jenkins <https://github.com/shaggytwodope>`_
|
|
13
|
+
* `tyjak <https://github.com/tyjak>`_
|
|
14
|
+
* `Edridge D'Souza <https://github.com/edridgedsouza>`_
|
|
15
|
+
* `Josue Ortega <https://github.com/noahfx>`_
|
|
16
|
+
* `mekhami <https://github.com/mekhami>`_
|
|
17
|
+
* `Nemanja Nedeljković <https://github.com/nemanjan00>`_
|
|
18
|
+
* `obosob <https://github.com/obosob>`_
|
|
19
|
+
* `codesoap <https://github.com/codesoap>`_
|
|
20
|
+
* `Toby Hughes <https://github.com/tobywhughes>`_
|
|
21
|
+
* `Noah Morrison <https://github.com/noahmorrison>`_
|
|
22
|
+
* `Mardigon Toler <https://github.com/mardigontoler>`_
|
|
23
|
+
* `5225225 <https://github.com/5225225>`_
|
|
24
|
+
* `Shawn Hind <https://github.com/shawnhind>`_
|
|
25
|
+
* `Antoine Nguyen <https://github.com/anhtuann>`_
|
|
26
|
+
* `JuanPablo <https://github.com/juanpabloaj>`_
|
|
27
|
+
* `Pablo Arias <https://github.com/pabloariasal>`_
|
|
28
|
+
* `Robert Greener <https://github.com/ragreener1>`_
|
|
29
|
+
* `mac1202 <https://github.com/mac1202>`_
|
|
30
|
+
* `Iqbal Singh <https://github.com/nagracks>`_
|
|
31
|
+
* `Lorenz Leitner <https://github.com/LoLei>`_
|
|
32
|
+
* `Markus Pettersson <https://github.com/MarkusPettersson98>`_
|
|
33
|
+
* `Reshef Elisha <https://github.com/ReshefElisha>`_
|
|
34
|
+
* `Ryan Reno <https://github.com/rreno>`_
|
|
35
|
+
* `Sam Tebbs <https://github.com/SamTebbs33>`_
|
|
36
|
+
* `Justin Partain <https://github.com/jupart>`_
|
|
37
|
+
* `afloofloo <https://github.com/afloofloo>`_
|
|
38
|
+
* `0xflotus <https://github.com/0xflotus>`_
|
|
39
|
+
* `Caleb Perkins <https://github.com/calebperkins>`_
|
|
40
|
+
* `Charles Saracco <https://github.com/crsaracco>`_
|
|
41
|
+
* `Corey McCandless <https://github.com/cmccandless>`_
|
|
42
|
+
* `Crestwave <https://github.com/Crestwave>`_
|
|
43
|
+
* `Danilo G. Baio <https://github.com/dbaio>`_
|
|
44
|
+
* `Donovan Glover <https://github.com/GloverDonovan>`_
|
|
45
|
+
* `Fabio Alessandro Locati <https://github.com/Fale>`_
|
|
46
|
+
* `Gabriel Le Breton <https://github.com/GabLeRoux>`_
|
|
47
|
+
* `Hans Roman <https://github.com/snahor>`_
|
|
48
|
+
* `micronn <https://github.com/micronn>`_
|
|
49
|
+
* `Ivan Klishch <https://github.com/klivan>`_
|
|
50
|
+
* `Joe MacDonald <https://github.com/joeythesaint>`_
|
|
51
|
+
* `Marc Abramowitz <https://github.com/msabramo>`_
|
|
52
|
+
* `Matt <https://github.com/mehandes>`_
|
|
53
|
+
* `Matthew Smith <https://github.com/msmith491>`_
|
|
54
|
+
* `Michael Kwon <https://github.com/mskwon>`_
|
|
55
|
+
* `Michael Wei <https://github.com/no2chem>`_
|
|
56
|
+
* `Ram-Z <https://github.com/Ram-Z>`_
|
|
57
|
+
* `Vivek Anand <https://github.com/vivekanand1101>`_
|
|
58
|
+
* `Wieland Hoffmann <https://github.com/mineo>`_
|
|
59
|
+
* `Adam Talsma <https://github.com/a-tal>`_
|
|
60
|
+
* `geheimnisse <https://github.com/geheimnisse>`_
|
|
61
|
+
* `Alexander Terry <https://github.com/mralext20>`_
|
|
62
|
+
* `peterpans01 <https://github.com/peterpans01>`_
|
|
63
|
+
|
|
64
|
+
=================
|
|
65
|
+
TUIR Contributors
|
|
66
|
+
=================
|
|
67
|
+
|
|
68
|
+
* `John Helmert III <jchelmertt3@gmail.com>`_
|
|
69
|
+
* `capnhawkbill <captain@stoarmfugel.localdomain>`_
|
|
70
|
+
* `armandg <armandg@gmail.com>`_
|
|
71
|
+
* `OKelt <oakelton@gmail.com>`_
|
|
72
|
+
* `Francesco Turco <fturco@fastmail.fm>`_
|
|
73
|
+
* `John Helmert <jchelmertt3@gmail.com>`_
|
|
74
|
+
* `geeseven <2251985-geeseven@users.noreply.gitlab.com>`_
|
|
75
|
+
* `Suz'Anne Bonny <swannty@hotmail.com>`
|
|
76
|
+
* `Piotr Wójcik <chocimier@tlen.pl>`
|