├── README.md ├── docker-compose.yml ├── manager ├── Dockerfile ├── iptvmanager │ ├── __init__.py │ ├── asgi.py │ ├── settings.py │ ├── urls.py │ └── wsgi.py ├── lib │ ├── __init__.py │ ├── downstream_playlist_helper.py │ ├── epg_helper.py │ ├── icon_helper.py │ └── upstream_playlist_helper.py ├── manage.py ├── manager.env ├── manager │ ├── __init__.py │ ├── admin.py │ ├── apps.py │ ├── migrations │ │ └── __init__.py │ ├── models.py │ ├── templates │ │ └── admin │ │ │ ├── iptvChannel │ │ │ └── change_list.html │ │ │ ├── iptvGroup │ │ │ └── change_list.html │ │ │ └── iptvIcon │ │ │ └── change_list.html │ ├── tests.py │ ├── urls.py │ └── views.py ├── requirements.txt ├── run.sh ├── run_local.sh └── run_local_command.sh └── proxy ├── Dockerfile ├── proxy.env ├── proxy.py ├── requirements.txt ├── run.sh └── run_local.sh /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coach1988/IPTV-Solution/HEAD/README.md -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coach1988/IPTV-Solution/HEAD/docker-compose.yml -------------------------------------------------------------------------------- /manager/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coach1988/IPTV-Solution/HEAD/manager/Dockerfile -------------------------------------------------------------------------------- /manager/iptvmanager/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /manager/iptvmanager/asgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coach1988/IPTV-Solution/HEAD/manager/iptvmanager/asgi.py -------------------------------------------------------------------------------- /manager/iptvmanager/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coach1988/IPTV-Solution/HEAD/manager/iptvmanager/settings.py -------------------------------------------------------------------------------- /manager/iptvmanager/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coach1988/IPTV-Solution/HEAD/manager/iptvmanager/urls.py -------------------------------------------------------------------------------- /manager/iptvmanager/wsgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coach1988/IPTV-Solution/HEAD/manager/iptvmanager/wsgi.py -------------------------------------------------------------------------------- /manager/lib/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /manager/lib/downstream_playlist_helper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coach1988/IPTV-Solution/HEAD/manager/lib/downstream_playlist_helper.py -------------------------------------------------------------------------------- /manager/lib/epg_helper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coach1988/IPTV-Solution/HEAD/manager/lib/epg_helper.py -------------------------------------------------------------------------------- /manager/lib/icon_helper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coach1988/IPTV-Solution/HEAD/manager/lib/icon_helper.py -------------------------------------------------------------------------------- /manager/lib/upstream_playlist_helper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coach1988/IPTV-Solution/HEAD/manager/lib/upstream_playlist_helper.py -------------------------------------------------------------------------------- /manager/manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coach1988/IPTV-Solution/HEAD/manager/manage.py -------------------------------------------------------------------------------- /manager/manager.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coach1988/IPTV-Solution/HEAD/manager/manager.env -------------------------------------------------------------------------------- /manager/manager/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /manager/manager/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coach1988/IPTV-Solution/HEAD/manager/manager/admin.py -------------------------------------------------------------------------------- /manager/manager/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coach1988/IPTV-Solution/HEAD/manager/manager/apps.py -------------------------------------------------------------------------------- /manager/manager/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /manager/manager/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coach1988/IPTV-Solution/HEAD/manager/manager/models.py -------------------------------------------------------------------------------- /manager/manager/templates/admin/iptvChannel/change_list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coach1988/IPTV-Solution/HEAD/manager/manager/templates/admin/iptvChannel/change_list.html -------------------------------------------------------------------------------- /manager/manager/templates/admin/iptvGroup/change_list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coach1988/IPTV-Solution/HEAD/manager/manager/templates/admin/iptvGroup/change_list.html -------------------------------------------------------------------------------- /manager/manager/templates/admin/iptvIcon/change_list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coach1988/IPTV-Solution/HEAD/manager/manager/templates/admin/iptvIcon/change_list.html -------------------------------------------------------------------------------- /manager/manager/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coach1988/IPTV-Solution/HEAD/manager/manager/tests.py -------------------------------------------------------------------------------- /manager/manager/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coach1988/IPTV-Solution/HEAD/manager/manager/urls.py -------------------------------------------------------------------------------- /manager/manager/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coach1988/IPTV-Solution/HEAD/manager/manager/views.py -------------------------------------------------------------------------------- /manager/requirements.txt: -------------------------------------------------------------------------------- 1 | requests 2 | pytz 3 | django 4 | -------------------------------------------------------------------------------- /manager/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coach1988/IPTV-Solution/HEAD/manager/run.sh -------------------------------------------------------------------------------- /manager/run_local.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coach1988/IPTV-Solution/HEAD/manager/run_local.sh -------------------------------------------------------------------------------- /manager/run_local_command.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coach1988/IPTV-Solution/HEAD/manager/run_local_command.sh -------------------------------------------------------------------------------- /proxy/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coach1988/IPTV-Solution/HEAD/proxy/Dockerfile -------------------------------------------------------------------------------- /proxy/proxy.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coach1988/IPTV-Solution/HEAD/proxy/proxy.env -------------------------------------------------------------------------------- /proxy/proxy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coach1988/IPTV-Solution/HEAD/proxy/proxy.py -------------------------------------------------------------------------------- /proxy/requirements.txt: -------------------------------------------------------------------------------- 1 | requests 2 | flask 3 | -------------------------------------------------------------------------------- /proxy/run.sh: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env bash 2 | 3 | python3 ./proxy.py 4 | -------------------------------------------------------------------------------- /proxy/run_local.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coach1988/IPTV-Solution/HEAD/proxy/run_local.sh --------------------------------------------------------------------------------