├── .github └── ISSUE_TEMPLATE │ └── bug_report.md ├── .gitignore ├── captcha ├── icon.png ├── main.js ├── package-lock.json ├── package.json └── public │ ├── html │ ├── captcha.html │ └── index.html │ └── js │ └── captcha.js ├── config ├── __init__.py └── settings.example.py ├── deezer ├── __init__.py └── deezer.py ├── readme.md ├── redsea.py ├── redsea ├── __init__.py ├── cli.py ├── decryption.py ├── mediadownloader.py ├── sessions.py ├── tagger.py ├── tidal_api.py └── videodownloader.py └── requirements.txt /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dniel97/RedSea/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dniel97/RedSea/HEAD/.gitignore -------------------------------------------------------------------------------- /captcha/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dniel97/RedSea/HEAD/captcha/icon.png -------------------------------------------------------------------------------- /captcha/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dniel97/RedSea/HEAD/captcha/main.js -------------------------------------------------------------------------------- /captcha/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dniel97/RedSea/HEAD/captcha/package-lock.json -------------------------------------------------------------------------------- /captcha/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dniel97/RedSea/HEAD/captcha/package.json -------------------------------------------------------------------------------- /captcha/public/html/captcha.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dniel97/RedSea/HEAD/captcha/public/html/captcha.html -------------------------------------------------------------------------------- /captcha/public/html/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dniel97/RedSea/HEAD/captcha/public/html/index.html -------------------------------------------------------------------------------- /captcha/public/js/captcha.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dniel97/RedSea/HEAD/captcha/public/js/captcha.js -------------------------------------------------------------------------------- /config/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /config/settings.example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dniel97/RedSea/HEAD/config/settings.example.py -------------------------------------------------------------------------------- /deezer/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /deezer/deezer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dniel97/RedSea/HEAD/deezer/deezer.py -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dniel97/RedSea/HEAD/readme.md -------------------------------------------------------------------------------- /redsea.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dniel97/RedSea/HEAD/redsea.py -------------------------------------------------------------------------------- /redsea/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /redsea/cli.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dniel97/RedSea/HEAD/redsea/cli.py -------------------------------------------------------------------------------- /redsea/decryption.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dniel97/RedSea/HEAD/redsea/decryption.py -------------------------------------------------------------------------------- /redsea/mediadownloader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dniel97/RedSea/HEAD/redsea/mediadownloader.py -------------------------------------------------------------------------------- /redsea/sessions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dniel97/RedSea/HEAD/redsea/sessions.py -------------------------------------------------------------------------------- /redsea/tagger.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dniel97/RedSea/HEAD/redsea/tagger.py -------------------------------------------------------------------------------- /redsea/tidal_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dniel97/RedSea/HEAD/redsea/tidal_api.py -------------------------------------------------------------------------------- /redsea/videodownloader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dniel97/RedSea/HEAD/redsea/videodownloader.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dniel97/RedSea/HEAD/requirements.txt --------------------------------------------------------------------------------