mirror of
https://github.com/fHDHR/fHDHR_NextPVR.git
synced 2025-12-06 13:06:59 -05:00
29 lines
657 B
Python
29 lines
657 B
Python
|
|
from .cluster import Cluster
|
|
from .channels import Channels
|
|
from .lineup_post import Lineup_Post
|
|
from .xmltv import xmlTV
|
|
from .m3u import M3U
|
|
from .epg import EPG
|
|
from .watch import Watch
|
|
from .debug import Debug_JSON
|
|
|
|
from .images import Images
|
|
|
|
|
|
class fHDHR_API():
|
|
|
|
def __init__(self, fhdhr):
|
|
self.fhdhr = fhdhr
|
|
|
|
self.cluster = Cluster(fhdhr)
|
|
self.channels = Channels(fhdhr)
|
|
self.xmltv = xmlTV(fhdhr)
|
|
self.m3u = M3U(fhdhr)
|
|
self.epg = EPG(fhdhr)
|
|
self.watch = Watch(fhdhr)
|
|
self.debug = Debug_JSON(fhdhr)
|
|
self.lineup_post = Lineup_Post(fhdhr)
|
|
|
|
self.images = Images(fhdhr)
|