15 lines
617 B
Python
15 lines
617 B
Python
import os
|
|
from dotenv import load_dotenv
|
|
|
|
# Load environment variables from a .env file if it exists
|
|
load_dotenv()
|
|
|
|
IPTV_SERVER_URL = os.getenv("IPTV_SERVER_URL", "https://iptv.fiorinis.com")
|
|
|
|
# Super iptv-server admin credentials for basic auth
|
|
# Reads from environment variables IPTV_SERVER_ADMIN_USER and IPTV_SERVER_ADMIN_PASSWORD
|
|
IPTV_SERVER_ADMIN_USER = os.getenv("IPTV_SERVER_ADMIN_USER", "admin")
|
|
IPTV_SERVER_ADMIN_PASSWORD = os.getenv("IPTV_SERVER_ADMIN_PASSWORD", "adminpassword")
|
|
|
|
# URL for the EPG XML file to place in the playlist's header
|
|
EPG_URL = os.getenv("EPG_URL", "https://example.com/epg.xml.gz") |