├── LICENSE ├── README.md ├── config.json ├── qo-dl_reborn.py ├── qopy ├── __init__.py ├── exceptions.py └── qopy.py ├── requirements.txt └── spoofbuz.py /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badumbass/Qo-DL-Reborn/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badumbass/Qo-DL-Reborn/HEAD/README.md -------------------------------------------------------------------------------- /config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badumbass/Qo-DL-Reborn/HEAD/config.json -------------------------------------------------------------------------------- /qo-dl_reborn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badumbass/Qo-DL-Reborn/HEAD/qo-dl_reborn.py -------------------------------------------------------------------------------- /qopy/__init__.py: -------------------------------------------------------------------------------- 1 | from .qopy import Client -------------------------------------------------------------------------------- /qopy/exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badumbass/Qo-DL-Reborn/HEAD/qopy/exceptions.py -------------------------------------------------------------------------------- /qopy/qopy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badumbass/Qo-DL-Reborn/HEAD/qopy/qopy.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | mutagen 2 | requests 3 | tqdm 4 | -------------------------------------------------------------------------------- /spoofbuz.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badumbass/Qo-DL-Reborn/HEAD/spoofbuz.py --------------------------------------------------------------------------------