├── .github ├── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md └── workflows │ └── build_windows.yml ├── .gitignore ├── .vscode └── launch.json ├── Build Release.bat ├── LICENSE ├── README.md ├── icon.ico ├── main.py ├── modules ├── __init__.py ├── auto_update.py ├── configManager.py ├── create_directory.py ├── e6systems.py ├── furbooru.py ├── logger.py ├── luscious.py ├── multporn.py ├── pretty_print.py ├── proxyScraper.py ├── rule34.py └── yiffer.py ├── preview └── preview.gif └── requirements.txt /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Official-Husko/NN-Downloader/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Official-Husko/NN-Downloader/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/workflows/build_windows.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Official-Husko/NN-Downloader/HEAD/.github/workflows/build_windows.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Official-Husko/NN-Downloader/HEAD/.gitignore -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Official-Husko/NN-Downloader/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /Build Release.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Official-Husko/NN-Downloader/HEAD/Build Release.bat -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Official-Husko/NN-Downloader/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Official-Husko/NN-Downloader/HEAD/README.md -------------------------------------------------------------------------------- /icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Official-Husko/NN-Downloader/HEAD/icon.ico -------------------------------------------------------------------------------- /main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Official-Husko/NN-Downloader/HEAD/main.py -------------------------------------------------------------------------------- /modules/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Official-Husko/NN-Downloader/HEAD/modules/__init__.py -------------------------------------------------------------------------------- /modules/auto_update.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Official-Husko/NN-Downloader/HEAD/modules/auto_update.py -------------------------------------------------------------------------------- /modules/configManager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Official-Husko/NN-Downloader/HEAD/modules/configManager.py -------------------------------------------------------------------------------- /modules/create_directory.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Official-Husko/NN-Downloader/HEAD/modules/create_directory.py -------------------------------------------------------------------------------- /modules/e6systems.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Official-Husko/NN-Downloader/HEAD/modules/e6systems.py -------------------------------------------------------------------------------- /modules/furbooru.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Official-Husko/NN-Downloader/HEAD/modules/furbooru.py -------------------------------------------------------------------------------- /modules/logger.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Official-Husko/NN-Downloader/HEAD/modules/logger.py -------------------------------------------------------------------------------- /modules/luscious.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Official-Husko/NN-Downloader/HEAD/modules/luscious.py -------------------------------------------------------------------------------- /modules/multporn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Official-Husko/NN-Downloader/HEAD/modules/multporn.py -------------------------------------------------------------------------------- /modules/pretty_print.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Official-Husko/NN-Downloader/HEAD/modules/pretty_print.py -------------------------------------------------------------------------------- /modules/proxyScraper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Official-Husko/NN-Downloader/HEAD/modules/proxyScraper.py -------------------------------------------------------------------------------- /modules/rule34.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Official-Husko/NN-Downloader/HEAD/modules/rule34.py -------------------------------------------------------------------------------- /modules/yiffer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Official-Husko/NN-Downloader/HEAD/modules/yiffer.py -------------------------------------------------------------------------------- /preview/preview.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Official-Husko/NN-Downloader/HEAD/preview/preview.gif -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Official-Husko/NN-Downloader/HEAD/requirements.txt --------------------------------------------------------------------------------