├── .gitignore ├── LICENSE.txt ├── README.md ├── RedditDataExtractor ├── GUI │ ├── CommonFuncs.py │ ├── __init__.py │ ├── downloadedContent.ui │ ├── downloadedContentGUI.py │ ├── downloadedContent_auto.py │ ├── genericListModelObjects.py │ ├── imgurClientId.ui │ ├── imgurClientIdGUI.py │ ├── imgurClientId_auto.py │ ├── listModel.py │ ├── redditDataExtractorGUI.py │ ├── redditDataExtractorGUI.ui │ ├── redditDataExtractorGUI_auto.py │ ├── settings.ui │ ├── settingsGUI.py │ └── settings_auto.py ├── __init__.py ├── content.py ├── downloader.py ├── imageFinder.py ├── images │ ├── jsonImage.png │ ├── logo.ico │ ├── logo.png │ └── videoImage.png └── redditDataExtractor.py ├── main.py ├── requirements.txt ├── setup.py └── test ├── GUITests.py ├── __init__.py ├── downloadTests.py └── knownGoodTestFiles ├── Gfycat gif Direct.txt ├── Gfycat gif hashtag format.txt ├── Gfycat webm Page.txt ├── Imgur Album Hashtag.txt ├── Imgur Single Direct.txt ├── Imgur Single Gif.txt ├── Imgur Single Page.txt ├── Imgur gifv direct.txt ├── Minus gif Direct.txt ├── Minus gif Page.txt ├── S3 Amazonaws gif Direct.txt ├── Selftext dailymotion video link no comments.txt ├── Selftext no link comment with video link.txt ├── Textpost imgur gallery link comments without links.txt ├── Textpost link comments with links.txt ├── Textpost link no comments.txt ├── Textpost no link comments with links.txt ├── Textpost no link comments without links.txt ├── Textpost no link no comments.txt ├── Vidble Album.txt ├── Vidble gif Page.txt ├── Vidble jpg Direct.txt └── Youtube Video.txt /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NSchrading/redditDataExtractor/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NSchrading/redditDataExtractor/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NSchrading/redditDataExtractor/HEAD/README.md -------------------------------------------------------------------------------- /RedditDataExtractor/GUI/CommonFuncs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NSchrading/redditDataExtractor/HEAD/RedditDataExtractor/GUI/CommonFuncs.py -------------------------------------------------------------------------------- /RedditDataExtractor/GUI/__init__.py: -------------------------------------------------------------------------------- 1 | __author__ = 'NSchr_000' 2 | -------------------------------------------------------------------------------- /RedditDataExtractor/GUI/downloadedContent.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NSchrading/redditDataExtractor/HEAD/RedditDataExtractor/GUI/downloadedContent.ui -------------------------------------------------------------------------------- /RedditDataExtractor/GUI/downloadedContentGUI.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NSchrading/redditDataExtractor/HEAD/RedditDataExtractor/GUI/downloadedContentGUI.py -------------------------------------------------------------------------------- /RedditDataExtractor/GUI/downloadedContent_auto.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NSchrading/redditDataExtractor/HEAD/RedditDataExtractor/GUI/downloadedContent_auto.py -------------------------------------------------------------------------------- /RedditDataExtractor/GUI/genericListModelObjects.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NSchrading/redditDataExtractor/HEAD/RedditDataExtractor/GUI/genericListModelObjects.py -------------------------------------------------------------------------------- /RedditDataExtractor/GUI/imgurClientId.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NSchrading/redditDataExtractor/HEAD/RedditDataExtractor/GUI/imgurClientId.ui -------------------------------------------------------------------------------- /RedditDataExtractor/GUI/imgurClientIdGUI.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NSchrading/redditDataExtractor/HEAD/RedditDataExtractor/GUI/imgurClientIdGUI.py -------------------------------------------------------------------------------- /RedditDataExtractor/GUI/imgurClientId_auto.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NSchrading/redditDataExtractor/HEAD/RedditDataExtractor/GUI/imgurClientId_auto.py -------------------------------------------------------------------------------- /RedditDataExtractor/GUI/listModel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NSchrading/redditDataExtractor/HEAD/RedditDataExtractor/GUI/listModel.py -------------------------------------------------------------------------------- /RedditDataExtractor/GUI/redditDataExtractorGUI.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NSchrading/redditDataExtractor/HEAD/RedditDataExtractor/GUI/redditDataExtractorGUI.py -------------------------------------------------------------------------------- /RedditDataExtractor/GUI/redditDataExtractorGUI.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NSchrading/redditDataExtractor/HEAD/RedditDataExtractor/GUI/redditDataExtractorGUI.ui -------------------------------------------------------------------------------- /RedditDataExtractor/GUI/redditDataExtractorGUI_auto.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NSchrading/redditDataExtractor/HEAD/RedditDataExtractor/GUI/redditDataExtractorGUI_auto.py -------------------------------------------------------------------------------- /RedditDataExtractor/GUI/settings.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NSchrading/redditDataExtractor/HEAD/RedditDataExtractor/GUI/settings.ui -------------------------------------------------------------------------------- /RedditDataExtractor/GUI/settingsGUI.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NSchrading/redditDataExtractor/HEAD/RedditDataExtractor/GUI/settingsGUI.py -------------------------------------------------------------------------------- /RedditDataExtractor/GUI/settings_auto.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NSchrading/redditDataExtractor/HEAD/RedditDataExtractor/GUI/settings_auto.py -------------------------------------------------------------------------------- /RedditDataExtractor/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NSchrading/redditDataExtractor/HEAD/RedditDataExtractor/__init__.py -------------------------------------------------------------------------------- /RedditDataExtractor/content.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NSchrading/redditDataExtractor/HEAD/RedditDataExtractor/content.py -------------------------------------------------------------------------------- /RedditDataExtractor/downloader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NSchrading/redditDataExtractor/HEAD/RedditDataExtractor/downloader.py -------------------------------------------------------------------------------- /RedditDataExtractor/imageFinder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NSchrading/redditDataExtractor/HEAD/RedditDataExtractor/imageFinder.py -------------------------------------------------------------------------------- /RedditDataExtractor/images/jsonImage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NSchrading/redditDataExtractor/HEAD/RedditDataExtractor/images/jsonImage.png -------------------------------------------------------------------------------- /RedditDataExtractor/images/logo.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NSchrading/redditDataExtractor/HEAD/RedditDataExtractor/images/logo.ico -------------------------------------------------------------------------------- /RedditDataExtractor/images/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NSchrading/redditDataExtractor/HEAD/RedditDataExtractor/images/logo.png -------------------------------------------------------------------------------- /RedditDataExtractor/images/videoImage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NSchrading/redditDataExtractor/HEAD/RedditDataExtractor/images/videoImage.png -------------------------------------------------------------------------------- /RedditDataExtractor/redditDataExtractor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NSchrading/redditDataExtractor/HEAD/RedditDataExtractor/redditDataExtractor.py -------------------------------------------------------------------------------- /main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NSchrading/redditDataExtractor/HEAD/main.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NSchrading/redditDataExtractor/HEAD/requirements.txt -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NSchrading/redditDataExtractor/HEAD/setup.py -------------------------------------------------------------------------------- /test/GUITests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NSchrading/redditDataExtractor/HEAD/test/GUITests.py -------------------------------------------------------------------------------- /test/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NSchrading/redditDataExtractor/HEAD/test/__init__.py -------------------------------------------------------------------------------- /test/downloadTests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NSchrading/redditDataExtractor/HEAD/test/downloadTests.py -------------------------------------------------------------------------------- /test/knownGoodTestFiles/Gfycat gif Direct.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NSchrading/redditDataExtractor/HEAD/test/knownGoodTestFiles/Gfycat gif Direct.txt -------------------------------------------------------------------------------- /test/knownGoodTestFiles/Gfycat gif hashtag format.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NSchrading/redditDataExtractor/HEAD/test/knownGoodTestFiles/Gfycat gif hashtag format.txt -------------------------------------------------------------------------------- /test/knownGoodTestFiles/Gfycat webm Page.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NSchrading/redditDataExtractor/HEAD/test/knownGoodTestFiles/Gfycat webm Page.txt -------------------------------------------------------------------------------- /test/knownGoodTestFiles/Imgur Album Hashtag.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NSchrading/redditDataExtractor/HEAD/test/knownGoodTestFiles/Imgur Album Hashtag.txt -------------------------------------------------------------------------------- /test/knownGoodTestFiles/Imgur Single Direct.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NSchrading/redditDataExtractor/HEAD/test/knownGoodTestFiles/Imgur Single Direct.txt -------------------------------------------------------------------------------- /test/knownGoodTestFiles/Imgur Single Gif.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NSchrading/redditDataExtractor/HEAD/test/knownGoodTestFiles/Imgur Single Gif.txt -------------------------------------------------------------------------------- /test/knownGoodTestFiles/Imgur Single Page.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NSchrading/redditDataExtractor/HEAD/test/knownGoodTestFiles/Imgur Single Page.txt -------------------------------------------------------------------------------- /test/knownGoodTestFiles/Imgur gifv direct.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NSchrading/redditDataExtractor/HEAD/test/knownGoodTestFiles/Imgur gifv direct.txt -------------------------------------------------------------------------------- /test/knownGoodTestFiles/Minus gif Direct.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NSchrading/redditDataExtractor/HEAD/test/knownGoodTestFiles/Minus gif Direct.txt -------------------------------------------------------------------------------- /test/knownGoodTestFiles/Minus gif Page.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NSchrading/redditDataExtractor/HEAD/test/knownGoodTestFiles/Minus gif Page.txt -------------------------------------------------------------------------------- /test/knownGoodTestFiles/S3 Amazonaws gif Direct.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NSchrading/redditDataExtractor/HEAD/test/knownGoodTestFiles/S3 Amazonaws gif Direct.txt -------------------------------------------------------------------------------- /test/knownGoodTestFiles/Selftext dailymotion video link no comments.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NSchrading/redditDataExtractor/HEAD/test/knownGoodTestFiles/Selftext dailymotion video link no comments.txt -------------------------------------------------------------------------------- /test/knownGoodTestFiles/Selftext no link comment with video link.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NSchrading/redditDataExtractor/HEAD/test/knownGoodTestFiles/Selftext no link comment with video link.txt -------------------------------------------------------------------------------- /test/knownGoodTestFiles/Textpost imgur gallery link comments without links.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NSchrading/redditDataExtractor/HEAD/test/knownGoodTestFiles/Textpost imgur gallery link comments without links.txt -------------------------------------------------------------------------------- /test/knownGoodTestFiles/Textpost link comments with links.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NSchrading/redditDataExtractor/HEAD/test/knownGoodTestFiles/Textpost link comments with links.txt -------------------------------------------------------------------------------- /test/knownGoodTestFiles/Textpost link no comments.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NSchrading/redditDataExtractor/HEAD/test/knownGoodTestFiles/Textpost link no comments.txt -------------------------------------------------------------------------------- /test/knownGoodTestFiles/Textpost no link comments with links.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NSchrading/redditDataExtractor/HEAD/test/knownGoodTestFiles/Textpost no link comments with links.txt -------------------------------------------------------------------------------- /test/knownGoodTestFiles/Textpost no link comments without links.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NSchrading/redditDataExtractor/HEAD/test/knownGoodTestFiles/Textpost no link comments without links.txt -------------------------------------------------------------------------------- /test/knownGoodTestFiles/Textpost no link no comments.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NSchrading/redditDataExtractor/HEAD/test/knownGoodTestFiles/Textpost no link no comments.txt -------------------------------------------------------------------------------- /test/knownGoodTestFiles/Vidble Album.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NSchrading/redditDataExtractor/HEAD/test/knownGoodTestFiles/Vidble Album.txt -------------------------------------------------------------------------------- /test/knownGoodTestFiles/Vidble gif Page.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NSchrading/redditDataExtractor/HEAD/test/knownGoodTestFiles/Vidble gif Page.txt -------------------------------------------------------------------------------- /test/knownGoodTestFiles/Vidble jpg Direct.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NSchrading/redditDataExtractor/HEAD/test/knownGoodTestFiles/Vidble jpg Direct.txt -------------------------------------------------------------------------------- /test/knownGoodTestFiles/Youtube Video.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NSchrading/redditDataExtractor/HEAD/test/knownGoodTestFiles/Youtube Video.txt --------------------------------------------------------------------------------