Files
cbz/hidive/constants.py
T
2024-03-17 14:47:33 +01:00

21 lines
303 B
Python

from enum import Enum
class Filter(Enum):
SERIES = 'VOD_SERIES'
VIDEO = 'VOD_VIDEO'
EVENT = 'LIVE_EVENT'
PLAYLIST = 'VOD_PLAYLIST'
class Format(Enum):
VTT = 'vtt'
SRT = 'srt'
SCC = 'scc'
class View(Enum):
SEASON = 'season'
PLAYLIST = 'playlist'
VOD = 'VOD'