├── .gitignore ├── CHANGELOG.md ├── Clients ├── AnimePaheClient.py ├── BaseClient.py └── KissKhClient.py ├── DEVGUIDE.md ├── LICENSE.md ├── README.md ├── Utils ├── BaseDownloader.py ├── HLSDownloader.py └── commons.py ├── config_udb.yaml ├── images ├── udb-demo.gif └── udb-usage-preview.png ├── requirements.txt └── udb.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Prudhvi-pln/udb/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Prudhvi-pln/udb/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /Clients/AnimePaheClient.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Prudhvi-pln/udb/HEAD/Clients/AnimePaheClient.py -------------------------------------------------------------------------------- /Clients/BaseClient.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Prudhvi-pln/udb/HEAD/Clients/BaseClient.py -------------------------------------------------------------------------------- /Clients/KissKhClient.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Prudhvi-pln/udb/HEAD/Clients/KissKhClient.py -------------------------------------------------------------------------------- /DEVGUIDE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Prudhvi-pln/udb/HEAD/DEVGUIDE.md -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Prudhvi-pln/udb/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Prudhvi-pln/udb/HEAD/README.md -------------------------------------------------------------------------------- /Utils/BaseDownloader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Prudhvi-pln/udb/HEAD/Utils/BaseDownloader.py -------------------------------------------------------------------------------- /Utils/HLSDownloader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Prudhvi-pln/udb/HEAD/Utils/HLSDownloader.py -------------------------------------------------------------------------------- /Utils/commons.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Prudhvi-pln/udb/HEAD/Utils/commons.py -------------------------------------------------------------------------------- /config_udb.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Prudhvi-pln/udb/HEAD/config_udb.yaml -------------------------------------------------------------------------------- /images/udb-demo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Prudhvi-pln/udb/HEAD/images/udb-demo.gif -------------------------------------------------------------------------------- /images/udb-usage-preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Prudhvi-pln/udb/HEAD/images/udb-usage-preview.png -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Prudhvi-pln/udb/HEAD/requirements.txt -------------------------------------------------------------------------------- /udb.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Prudhvi-pln/udb/HEAD/udb.py --------------------------------------------------------------------------------