├── .gitignore ├── README.md ├── logs └── logfile.log ├── main.py ├── modules ├── __init__.py ├── arg_parser.py ├── config.py ├── downloader.py ├── license_protocol_pb2.py ├── license_retrieval.py ├── logging.py ├── manifest_viewer.crx ├── proxy.py ├── pssh.py ├── ssl_adapter.py ├── tracks.py └── utils.py ├── requirements.txt └── services ├── __init__.py ├── aha.py ├── amateurtv.py ├── amcplus.py ├── apple.py ├── astro.py ├── audible.py ├── beinsports.py ├── bitmovin.py ├── byutv.py ├── canal.py ├── channel5.py ├── cignal.py ├── crunchyroll.py ├── dazn.py ├── directtv.py ├── emocje.py ├── exxen.py ├── filmo.py ├── flow.py ├── fubo.py ├── hbogo.py ├── hbomax.py ├── hotstar.py ├── itv.py ├── ivi.py ├── jio.py ├── joyn.py ├── learnyst.py ├── mewatch.py ├── moviestar.py ├── mtv.py ├── mubi.py ├── music-amz.py ├── newsnow.py ├── oneplus.py ├── paralelo.py ├── paramountplus.py ├── peacock.py ├── polsat.py ├── ppv.py ├── preladder.py ├── prime.py ├── rakuten.py ├── roku.py ├── rugbytv.py ├── shaw.py ├── skyshowtime.py ├── sooka.py ├── spotify.py ├── stan.py ├── starzon.py ├── swaglive.py ├── tataplay.py ├── telia.py ├── tfc.py ├── todtv.py ├── toggo.py ├── tonton.py ├── tvdmm.py ├── udemy.py ├── ufc.py ├── unifi.py ├── vdocipher.py ├── viaplay.py ├── videoland.py ├── videotron.py ├── vidio.py ├── viki.py ├── virgintv.py ├── vodafone.py ├── vtmgo.py ├── youku.py └── youtubetv.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThatNotEasy/T00LK1D-WidePlay/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThatNotEasy/T00LK1D-WidePlay/HEAD/README.md -------------------------------------------------------------------------------- /logs/logfile.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThatNotEasy/T00LK1D-WidePlay/HEAD/logs/logfile.log -------------------------------------------------------------------------------- /main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThatNotEasy/T00LK1D-WidePlay/HEAD/main.py -------------------------------------------------------------------------------- /modules/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /modules/arg_parser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThatNotEasy/T00LK1D-WidePlay/HEAD/modules/arg_parser.py -------------------------------------------------------------------------------- /modules/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThatNotEasy/T00LK1D-WidePlay/HEAD/modules/config.py -------------------------------------------------------------------------------- /modules/downloader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThatNotEasy/T00LK1D-WidePlay/HEAD/modules/downloader.py -------------------------------------------------------------------------------- /modules/license_protocol_pb2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThatNotEasy/T00LK1D-WidePlay/HEAD/modules/license_protocol_pb2.py -------------------------------------------------------------------------------- /modules/license_retrieval.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThatNotEasy/T00LK1D-WidePlay/HEAD/modules/license_retrieval.py -------------------------------------------------------------------------------- /modules/logging.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThatNotEasy/T00LK1D-WidePlay/HEAD/modules/logging.py -------------------------------------------------------------------------------- /modules/manifest_viewer.crx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThatNotEasy/T00LK1D-WidePlay/HEAD/modules/manifest_viewer.crx -------------------------------------------------------------------------------- /modules/proxy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThatNotEasy/T00LK1D-WidePlay/HEAD/modules/proxy.py -------------------------------------------------------------------------------- /modules/pssh.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThatNotEasy/T00LK1D-WidePlay/HEAD/modules/pssh.py -------------------------------------------------------------------------------- /modules/ssl_adapter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThatNotEasy/T00LK1D-WidePlay/HEAD/modules/ssl_adapter.py -------------------------------------------------------------------------------- /modules/tracks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThatNotEasy/T00LK1D-WidePlay/HEAD/modules/tracks.py -------------------------------------------------------------------------------- /modules/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThatNotEasy/T00LK1D-WidePlay/HEAD/modules/utils.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThatNotEasy/T00LK1D-WidePlay/HEAD/requirements.txt -------------------------------------------------------------------------------- /services/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /services/aha.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThatNotEasy/T00LK1D-WidePlay/HEAD/services/aha.py -------------------------------------------------------------------------------- /services/amateurtv.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThatNotEasy/T00LK1D-WidePlay/HEAD/services/amateurtv.py -------------------------------------------------------------------------------- /services/amcplus.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThatNotEasy/T00LK1D-WidePlay/HEAD/services/amcplus.py -------------------------------------------------------------------------------- /services/apple.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThatNotEasy/T00LK1D-WidePlay/HEAD/services/apple.py -------------------------------------------------------------------------------- /services/astro.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThatNotEasy/T00LK1D-WidePlay/HEAD/services/astro.py -------------------------------------------------------------------------------- /services/audible.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThatNotEasy/T00LK1D-WidePlay/HEAD/services/audible.py -------------------------------------------------------------------------------- /services/beinsports.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThatNotEasy/T00LK1D-WidePlay/HEAD/services/beinsports.py -------------------------------------------------------------------------------- /services/bitmovin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThatNotEasy/T00LK1D-WidePlay/HEAD/services/bitmovin.py -------------------------------------------------------------------------------- /services/byutv.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThatNotEasy/T00LK1D-WidePlay/HEAD/services/byutv.py -------------------------------------------------------------------------------- /services/canal.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThatNotEasy/T00LK1D-WidePlay/HEAD/services/canal.py -------------------------------------------------------------------------------- /services/channel5.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThatNotEasy/T00LK1D-WidePlay/HEAD/services/channel5.py -------------------------------------------------------------------------------- /services/cignal.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThatNotEasy/T00LK1D-WidePlay/HEAD/services/cignal.py -------------------------------------------------------------------------------- /services/crunchyroll.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThatNotEasy/T00LK1D-WidePlay/HEAD/services/crunchyroll.py -------------------------------------------------------------------------------- /services/dazn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThatNotEasy/T00LK1D-WidePlay/HEAD/services/dazn.py -------------------------------------------------------------------------------- /services/directtv.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThatNotEasy/T00LK1D-WidePlay/HEAD/services/directtv.py -------------------------------------------------------------------------------- /services/emocje.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThatNotEasy/T00LK1D-WidePlay/HEAD/services/emocje.py -------------------------------------------------------------------------------- /services/exxen.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThatNotEasy/T00LK1D-WidePlay/HEAD/services/exxen.py -------------------------------------------------------------------------------- /services/filmo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThatNotEasy/T00LK1D-WidePlay/HEAD/services/filmo.py -------------------------------------------------------------------------------- /services/flow.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThatNotEasy/T00LK1D-WidePlay/HEAD/services/flow.py -------------------------------------------------------------------------------- /services/fubo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThatNotEasy/T00LK1D-WidePlay/HEAD/services/fubo.py -------------------------------------------------------------------------------- /services/hbogo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThatNotEasy/T00LK1D-WidePlay/HEAD/services/hbogo.py -------------------------------------------------------------------------------- /services/hbomax.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThatNotEasy/T00LK1D-WidePlay/HEAD/services/hbomax.py -------------------------------------------------------------------------------- /services/hotstar.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThatNotEasy/T00LK1D-WidePlay/HEAD/services/hotstar.py -------------------------------------------------------------------------------- /services/itv.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThatNotEasy/T00LK1D-WidePlay/HEAD/services/itv.py -------------------------------------------------------------------------------- /services/ivi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThatNotEasy/T00LK1D-WidePlay/HEAD/services/ivi.py -------------------------------------------------------------------------------- /services/jio.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThatNotEasy/T00LK1D-WidePlay/HEAD/services/jio.py -------------------------------------------------------------------------------- /services/joyn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThatNotEasy/T00LK1D-WidePlay/HEAD/services/joyn.py -------------------------------------------------------------------------------- /services/learnyst.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThatNotEasy/T00LK1D-WidePlay/HEAD/services/learnyst.py -------------------------------------------------------------------------------- /services/mewatch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThatNotEasy/T00LK1D-WidePlay/HEAD/services/mewatch.py -------------------------------------------------------------------------------- /services/moviestar.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThatNotEasy/T00LK1D-WidePlay/HEAD/services/moviestar.py -------------------------------------------------------------------------------- /services/mtv.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThatNotEasy/T00LK1D-WidePlay/HEAD/services/mtv.py -------------------------------------------------------------------------------- /services/mubi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThatNotEasy/T00LK1D-WidePlay/HEAD/services/mubi.py -------------------------------------------------------------------------------- /services/music-amz.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThatNotEasy/T00LK1D-WidePlay/HEAD/services/music-amz.py -------------------------------------------------------------------------------- /services/newsnow.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThatNotEasy/T00LK1D-WidePlay/HEAD/services/newsnow.py -------------------------------------------------------------------------------- /services/oneplus.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThatNotEasy/T00LK1D-WidePlay/HEAD/services/oneplus.py -------------------------------------------------------------------------------- /services/paralelo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThatNotEasy/T00LK1D-WidePlay/HEAD/services/paralelo.py -------------------------------------------------------------------------------- /services/paramountplus.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThatNotEasy/T00LK1D-WidePlay/HEAD/services/paramountplus.py -------------------------------------------------------------------------------- /services/peacock.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThatNotEasy/T00LK1D-WidePlay/HEAD/services/peacock.py -------------------------------------------------------------------------------- /services/polsat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThatNotEasy/T00LK1D-WidePlay/HEAD/services/polsat.py -------------------------------------------------------------------------------- /services/ppv.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThatNotEasy/T00LK1D-WidePlay/HEAD/services/ppv.py -------------------------------------------------------------------------------- /services/preladder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThatNotEasy/T00LK1D-WidePlay/HEAD/services/preladder.py -------------------------------------------------------------------------------- /services/prime.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThatNotEasy/T00LK1D-WidePlay/HEAD/services/prime.py -------------------------------------------------------------------------------- /services/rakuten.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThatNotEasy/T00LK1D-WidePlay/HEAD/services/rakuten.py -------------------------------------------------------------------------------- /services/roku.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThatNotEasy/T00LK1D-WidePlay/HEAD/services/roku.py -------------------------------------------------------------------------------- /services/rugbytv.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThatNotEasy/T00LK1D-WidePlay/HEAD/services/rugbytv.py -------------------------------------------------------------------------------- /services/shaw.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThatNotEasy/T00LK1D-WidePlay/HEAD/services/shaw.py -------------------------------------------------------------------------------- /services/skyshowtime.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThatNotEasy/T00LK1D-WidePlay/HEAD/services/skyshowtime.py -------------------------------------------------------------------------------- /services/sooka.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThatNotEasy/T00LK1D-WidePlay/HEAD/services/sooka.py -------------------------------------------------------------------------------- /services/spotify.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThatNotEasy/T00LK1D-WidePlay/HEAD/services/spotify.py -------------------------------------------------------------------------------- /services/stan.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThatNotEasy/T00LK1D-WidePlay/HEAD/services/stan.py -------------------------------------------------------------------------------- /services/starzon.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThatNotEasy/T00LK1D-WidePlay/HEAD/services/starzon.py -------------------------------------------------------------------------------- /services/swaglive.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThatNotEasy/T00LK1D-WidePlay/HEAD/services/swaglive.py -------------------------------------------------------------------------------- /services/tataplay.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThatNotEasy/T00LK1D-WidePlay/HEAD/services/tataplay.py -------------------------------------------------------------------------------- /services/telia.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThatNotEasy/T00LK1D-WidePlay/HEAD/services/telia.py -------------------------------------------------------------------------------- /services/tfc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThatNotEasy/T00LK1D-WidePlay/HEAD/services/tfc.py -------------------------------------------------------------------------------- /services/todtv.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThatNotEasy/T00LK1D-WidePlay/HEAD/services/todtv.py -------------------------------------------------------------------------------- /services/toggo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThatNotEasy/T00LK1D-WidePlay/HEAD/services/toggo.py -------------------------------------------------------------------------------- /services/tonton.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThatNotEasy/T00LK1D-WidePlay/HEAD/services/tonton.py -------------------------------------------------------------------------------- /services/tvdmm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThatNotEasy/T00LK1D-WidePlay/HEAD/services/tvdmm.py -------------------------------------------------------------------------------- /services/udemy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThatNotEasy/T00LK1D-WidePlay/HEAD/services/udemy.py -------------------------------------------------------------------------------- /services/ufc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThatNotEasy/T00LK1D-WidePlay/HEAD/services/ufc.py -------------------------------------------------------------------------------- /services/unifi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThatNotEasy/T00LK1D-WidePlay/HEAD/services/unifi.py -------------------------------------------------------------------------------- /services/vdocipher.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThatNotEasy/T00LK1D-WidePlay/HEAD/services/vdocipher.py -------------------------------------------------------------------------------- /services/viaplay.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThatNotEasy/T00LK1D-WidePlay/HEAD/services/viaplay.py -------------------------------------------------------------------------------- /services/videoland.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThatNotEasy/T00LK1D-WidePlay/HEAD/services/videoland.py -------------------------------------------------------------------------------- /services/videotron.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThatNotEasy/T00LK1D-WidePlay/HEAD/services/videotron.py -------------------------------------------------------------------------------- /services/vidio.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThatNotEasy/T00LK1D-WidePlay/HEAD/services/vidio.py -------------------------------------------------------------------------------- /services/viki.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThatNotEasy/T00LK1D-WidePlay/HEAD/services/viki.py -------------------------------------------------------------------------------- /services/virgintv.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThatNotEasy/T00LK1D-WidePlay/HEAD/services/virgintv.py -------------------------------------------------------------------------------- /services/vodafone.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThatNotEasy/T00LK1D-WidePlay/HEAD/services/vodafone.py -------------------------------------------------------------------------------- /services/vtmgo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThatNotEasy/T00LK1D-WidePlay/HEAD/services/vtmgo.py -------------------------------------------------------------------------------- /services/youku.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThatNotEasy/T00LK1D-WidePlay/HEAD/services/youku.py -------------------------------------------------------------------------------- /services/youtubetv.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThatNotEasy/T00LK1D-WidePlay/HEAD/services/youtubetv.py --------------------------------------------------------------------------------