├── .gitattributes ├── .github └── workflows │ └── release.yml ├── .gitignore ├── Dockerfile ├── LICENSE ├── README.md ├── config_template ├── docker-entrypoint.sh ├── requirements.txt └── src ├── config.py ├── main.py ├── stbmock.py ├── storage.py └── utils.py /.gitattributes: -------------------------------------------------------------------------------- 1 | * text eol=lf 2 | -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VergilGao/Telecom-IPTV-Mock/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VergilGao/Telecom-IPTV-Mock/HEAD/.gitignore -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VergilGao/Telecom-IPTV-Mock/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VergilGao/Telecom-IPTV-Mock/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VergilGao/Telecom-IPTV-Mock/HEAD/README.md -------------------------------------------------------------------------------- /config_template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VergilGao/Telecom-IPTV-Mock/HEAD/config_template -------------------------------------------------------------------------------- /docker-entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VergilGao/Telecom-IPTV-Mock/HEAD/docker-entrypoint.sh -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | requests 2 | pycryptodome 3 | -------------------------------------------------------------------------------- /src/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VergilGao/Telecom-IPTV-Mock/HEAD/src/config.py -------------------------------------------------------------------------------- /src/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VergilGao/Telecom-IPTV-Mock/HEAD/src/main.py -------------------------------------------------------------------------------- /src/stbmock.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VergilGao/Telecom-IPTV-Mock/HEAD/src/stbmock.py -------------------------------------------------------------------------------- /src/storage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VergilGao/Telecom-IPTV-Mock/HEAD/src/storage.py -------------------------------------------------------------------------------- /src/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VergilGao/Telecom-IPTV-Mock/HEAD/src/utils.py --------------------------------------------------------------------------------