├── .gitignore ├── LICENCE ├── README.md ├── downloader.py ├── requirements.txt ├── screenshots ├── cursePackDownloader_linux.png ├── cursePackDownloader_mac.png └── cursePackDownloader_windows.png ├── setup.py └── updater.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/portablejim/curseDownloader/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENCE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/portablejim/curseDownloader/HEAD/LICENCE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/portablejim/curseDownloader/HEAD/README.md -------------------------------------------------------------------------------- /downloader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/portablejim/curseDownloader/HEAD/downloader.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | appdirs==1.4.3 2 | requests==2.18.4 3 | -------------------------------------------------------------------------------- /screenshots/cursePackDownloader_linux.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/portablejim/curseDownloader/HEAD/screenshots/cursePackDownloader_linux.png -------------------------------------------------------------------------------- /screenshots/cursePackDownloader_mac.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/portablejim/curseDownloader/HEAD/screenshots/cursePackDownloader_mac.png -------------------------------------------------------------------------------- /screenshots/cursePackDownloader_windows.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/portablejim/curseDownloader/HEAD/screenshots/cursePackDownloader_windows.png -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/portablejim/curseDownloader/HEAD/setup.py -------------------------------------------------------------------------------- /updater.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/portablejim/curseDownloader/HEAD/updater.py --------------------------------------------------------------------------------