├── .gitignore ├── Dockerfile ├── LICENSE.md ├── README.md ├── cerberus.py ├── docker └── Dockerfile ├── downloader.png ├── lib ├── Config.py ├── Display.py ├── Search.py ├── Torrent.py └── __init__.py └── requirements.txt /.gitignore: -------------------------------------------------------------------------------- 1 | __pycache__/ 2 | tv/ 3 | mov/ 4 | cerberus.ini 5 | -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th3r00t/Cerberus/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th3r00t/Cerberus/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th3r00t/Cerberus/HEAD/README.md -------------------------------------------------------------------------------- /cerberus.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th3r00t/Cerberus/HEAD/cerberus.py -------------------------------------------------------------------------------- /docker/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th3r00t/Cerberus/HEAD/docker/Dockerfile -------------------------------------------------------------------------------- /downloader.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th3r00t/Cerberus/HEAD/downloader.png -------------------------------------------------------------------------------- /lib/Config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th3r00t/Cerberus/HEAD/lib/Config.py -------------------------------------------------------------------------------- /lib/Display.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th3r00t/Cerberus/HEAD/lib/Display.py -------------------------------------------------------------------------------- /lib/Search.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th3r00t/Cerberus/HEAD/lib/Search.py -------------------------------------------------------------------------------- /lib/Torrent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th3r00t/Cerberus/HEAD/lib/Torrent.py -------------------------------------------------------------------------------- /lib/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th3r00t/Cerberus/HEAD/requirements.txt --------------------------------------------------------------------------------