1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 |
#!/usr/bin/env python """Defaults for iptvtools. File: constants.py Author: huxuan Email: i(at)huxuan.org """ CONFIG = "config.json" INPUTS = ["https://iptv-org.github.io/iptv/index.m3u"] INTERVAL = 1 LOG_LEVEL = "INFO" MAX_HEIGHT = -1 MIN_HEIGHT = 0 OUTPUT = "iptvtools.m3u" SORT_KEYS = ["group-title", "tvg-id", "height", "title"] TEMPLATES: list[str] = [] TIMEOUT = 10 UDPXY = None |