├── .gitignore ├── .idea ├── Tumblr_Crawler.iml ├── misc.xml ├── modules.xml ├── vcs.xml └── workspace.xml ├── ArchiveSearch.py ├── ExceptionOptions.py ├── LICENSE.txt ├── PersonalThemeSearch.py ├── README.md ├── TumblrCrawler.py ├── TumblrPostDownload.py ├── TumblrVideo.py ├── Tumblrimage.py └── executable ├── TumblrCrawler5.2.exe ├── TumblrCrawler5.5.exe ├── TumblrCrawler5.6.1.exe ├── TumblrCrawler5.6.exe ├── TumblrCrawler6.0.exe └── TumblrCrawler6.1.exe /.gitignore: -------------------------------------------------------------------------------- 1 | 2 | *.egg 3 | -------------------------------------------------------------------------------- /.idea/Tumblr_Crawler.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparrow629/Tumblr_Crawler/HEAD/.idea/Tumblr_Crawler.iml -------------------------------------------------------------------------------- /.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparrow629/Tumblr_Crawler/HEAD/.idea/misc.xml -------------------------------------------------------------------------------- /.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparrow629/Tumblr_Crawler/HEAD/.idea/modules.xml -------------------------------------------------------------------------------- /.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparrow629/Tumblr_Crawler/HEAD/.idea/vcs.xml -------------------------------------------------------------------------------- /.idea/workspace.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparrow629/Tumblr_Crawler/HEAD/.idea/workspace.xml -------------------------------------------------------------------------------- /ArchiveSearch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparrow629/Tumblr_Crawler/HEAD/ArchiveSearch.py -------------------------------------------------------------------------------- /ExceptionOptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparrow629/Tumblr_Crawler/HEAD/ExceptionOptions.py -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparrow629/Tumblr_Crawler/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /PersonalThemeSearch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparrow629/Tumblr_Crawler/HEAD/PersonalThemeSearch.py -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparrow629/Tumblr_Crawler/HEAD/README.md -------------------------------------------------------------------------------- /TumblrCrawler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparrow629/Tumblr_Crawler/HEAD/TumblrCrawler.py -------------------------------------------------------------------------------- /TumblrPostDownload.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparrow629/Tumblr_Crawler/HEAD/TumblrPostDownload.py -------------------------------------------------------------------------------- /TumblrVideo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparrow629/Tumblr_Crawler/HEAD/TumblrVideo.py -------------------------------------------------------------------------------- /Tumblrimage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparrow629/Tumblr_Crawler/HEAD/Tumblrimage.py -------------------------------------------------------------------------------- /executable/TumblrCrawler5.2.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparrow629/Tumblr_Crawler/HEAD/executable/TumblrCrawler5.2.exe -------------------------------------------------------------------------------- /executable/TumblrCrawler5.5.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparrow629/Tumblr_Crawler/HEAD/executable/TumblrCrawler5.5.exe -------------------------------------------------------------------------------- /executable/TumblrCrawler5.6.1.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparrow629/Tumblr_Crawler/HEAD/executable/TumblrCrawler5.6.1.exe -------------------------------------------------------------------------------- /executable/TumblrCrawler5.6.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparrow629/Tumblr_Crawler/HEAD/executable/TumblrCrawler5.6.exe -------------------------------------------------------------------------------- /executable/TumblrCrawler6.0.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparrow629/Tumblr_Crawler/HEAD/executable/TumblrCrawler6.0.exe -------------------------------------------------------------------------------- /executable/TumblrCrawler6.1.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparrow629/Tumblr_Crawler/HEAD/executable/TumblrCrawler6.1.exe --------------------------------------------------------------------------------