├── .github └── workflows │ └── actions.yaml ├── .gitignore ├── README.md ├── config.py ├── helpers ├── __init__.py └── res │ ├── logo-fraudiay.json │ └── playlist-header.txt ├── main.py ├── playlists ├── aesport.m3u └── daddyhd.m3u ├── requirements.txt └── services ├── __init__.py ├── aesport.py └── daddyhd.py /.github/workflows/actions.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoCodeCrafters/playlist-generator/HEAD/.github/workflows/actions.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoCodeCrafters/playlist-generator/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoCodeCrafters/playlist-generator/HEAD/README.md -------------------------------------------------------------------------------- /config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoCodeCrafters/playlist-generator/HEAD/config.py -------------------------------------------------------------------------------- /helpers/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoCodeCrafters/playlist-generator/HEAD/helpers/__init__.py -------------------------------------------------------------------------------- /helpers/res/logo-fraudiay.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoCodeCrafters/playlist-generator/HEAD/helpers/res/logo-fraudiay.json -------------------------------------------------------------------------------- /helpers/res/playlist-header.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoCodeCrafters/playlist-generator/HEAD/helpers/res/playlist-header.txt -------------------------------------------------------------------------------- /main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoCodeCrafters/playlist-generator/HEAD/main.py -------------------------------------------------------------------------------- /playlists/aesport.m3u: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoCodeCrafters/playlist-generator/HEAD/playlists/aesport.m3u -------------------------------------------------------------------------------- /playlists/daddyhd.m3u: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoCodeCrafters/playlist-generator/HEAD/playlists/daddyhd.m3u -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoCodeCrafters/playlist-generator/HEAD/requirements.txt -------------------------------------------------------------------------------- /services/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoCodeCrafters/playlist-generator/HEAD/services/__init__.py -------------------------------------------------------------------------------- /services/aesport.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoCodeCrafters/playlist-generator/HEAD/services/aesport.py -------------------------------------------------------------------------------- /services/daddyhd.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoCodeCrafters/playlist-generator/HEAD/services/daddyhd.py --------------------------------------------------------------------------------