├── .gitignore ├── LICENSE ├── README.md ├── install.py ├── javascript ├── sd-hub-gallery-parser.js ├── sd-hub-gallery-setting.js ├── sd-hub-gallery-viewer.js ├── sd-hub-gallery.js ├── sd-hub-svg.js └── sd-hub.js ├── requirements.txt ├── scripts └── sd-hub-ui.py ├── sd-hub-translations.xlsx ├── sd_hub ├── __init__.py ├── archiverTab.py ├── downloaderTab.py ├── galleryTab.py ├── infotext.py ├── paths.py ├── scraper.py ├── shellTab.py ├── texteditorTab.py ├── uploaderTab.py ├── version.py └── zipoutputs.py ├── style.css └── styleGallery.css /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gutris1/sd-hub/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gutris1/sd-hub/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gutris1/sd-hub/HEAD/README.md -------------------------------------------------------------------------------- /install.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gutris1/sd-hub/HEAD/install.py -------------------------------------------------------------------------------- /javascript/sd-hub-gallery-parser.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gutris1/sd-hub/HEAD/javascript/sd-hub-gallery-parser.js -------------------------------------------------------------------------------- /javascript/sd-hub-gallery-setting.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gutris1/sd-hub/HEAD/javascript/sd-hub-gallery-setting.js -------------------------------------------------------------------------------- /javascript/sd-hub-gallery-viewer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gutris1/sd-hub/HEAD/javascript/sd-hub-gallery-viewer.js -------------------------------------------------------------------------------- /javascript/sd-hub-gallery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gutris1/sd-hub/HEAD/javascript/sd-hub-gallery.js -------------------------------------------------------------------------------- /javascript/sd-hub-svg.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gutris1/sd-hub/HEAD/javascript/sd-hub-svg.js -------------------------------------------------------------------------------- /javascript/sd-hub.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gutris1/sd-hub/HEAD/javascript/sd-hub.js -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | gdown>=5.2.0 2 | huggingface-hub>=0.24.5 -------------------------------------------------------------------------------- /scripts/sd-hub-ui.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gutris1/sd-hub/HEAD/scripts/sd-hub-ui.py -------------------------------------------------------------------------------- /sd-hub-translations.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gutris1/sd-hub/HEAD/sd-hub-translations.xlsx -------------------------------------------------------------------------------- /sd_hub/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sd_hub/archiverTab.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gutris1/sd-hub/HEAD/sd_hub/archiverTab.py -------------------------------------------------------------------------------- /sd_hub/downloaderTab.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gutris1/sd-hub/HEAD/sd_hub/downloaderTab.py -------------------------------------------------------------------------------- /sd_hub/galleryTab.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gutris1/sd-hub/HEAD/sd_hub/galleryTab.py -------------------------------------------------------------------------------- /sd_hub/infotext.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gutris1/sd-hub/HEAD/sd_hub/infotext.py -------------------------------------------------------------------------------- /sd_hub/paths.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gutris1/sd-hub/HEAD/sd_hub/paths.py -------------------------------------------------------------------------------- /sd_hub/scraper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gutris1/sd-hub/HEAD/sd_hub/scraper.py -------------------------------------------------------------------------------- /sd_hub/shellTab.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gutris1/sd-hub/HEAD/sd_hub/shellTab.py -------------------------------------------------------------------------------- /sd_hub/texteditorTab.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gutris1/sd-hub/HEAD/sd_hub/texteditorTab.py -------------------------------------------------------------------------------- /sd_hub/uploaderTab.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gutris1/sd-hub/HEAD/sd_hub/uploaderTab.py -------------------------------------------------------------------------------- /sd_hub/version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gutris1/sd-hub/HEAD/sd_hub/version.py -------------------------------------------------------------------------------- /sd_hub/zipoutputs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gutris1/sd-hub/HEAD/sd_hub/zipoutputs.py -------------------------------------------------------------------------------- /style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gutris1/sd-hub/HEAD/style.css -------------------------------------------------------------------------------- /styleGallery.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gutris1/sd-hub/HEAD/styleGallery.css --------------------------------------------------------------------------------