├── .gitignore ├── LICENSE ├── README.md ├── creds.txt ├── main.py └── requirements.txt /.gitignore: -------------------------------------------------------------------------------- 1 | creds.txt 2 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astravaganza/JC-dl/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astravaganza/JC-dl/HEAD/README.md -------------------------------------------------------------------------------- /creds.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astravaganza/JC-dl/HEAD/main.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | requests 2 | --------------------------------------------------------------------------------