當前位置: 首頁>>代碼示例>>Python>>正文


Python Plugin.__init__方法代碼示例

本文整理匯總了Python中livestreamer.plugin.Plugin.__init__方法的典型用法代碼示例。如果您正苦於以下問題:Python Plugin.__init__方法的具體用法?Python Plugin.__init__怎麽用?Python Plugin.__init__使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在livestreamer.plugin.Plugin的用法示例。


在下文中一共展示了Plugin.__init__方法的7個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Python代碼示例。

示例1: __init__

# 需要導入模塊: from livestreamer.plugin import Plugin [as 別名]
# 或者: from livestreamer.plugin.Plugin import __init__ [as 別名]
    def __init__(self, url):
        parsed = urlparse(url)

        # Attempt to resolve current live URL if main page is passed
        if len(parsed.path) <= 1:
            url = self.LiveURL

        Plugin.__init__(self, url)
開發者ID:dotsam,項目名稱:livestreamer,代碼行數:10,代碼來源:gomtv.py

示例2: __init__

# 需要導入模塊: from livestreamer.plugin import Plugin [as 別名]
# 或者: from livestreamer.plugin.Plugin import __init__ [as 別名]
    def __init__(self, url):
        Plugin.__init__(self, url)
        live_match = _live_url_re.match(url)

        if live_match:
            self.live = True
            self.channel_path = live_match.group("channel_path")
        else:
            self.live = False
開發者ID:EPiC-APOC,項目名稱:repository.xvbmc,代碼行數:11,代碼來源:ruv.py

示例3: __init__

# 需要導入模塊: from livestreamer.plugin import Plugin [as 別名]
# 或者: from livestreamer.plugin.Plugin import __init__ [as 別名]
    def __init__(self, url):
        Plugin.__init__(self, url)

        match = _url_re.match(url).groupdict()
        self.channel = match.get("channel").lower()
        self.subdomain = match.get("subdomain")
        self.video_type = match.get("video_type")
        self.video_id = match.get("video_id")

        parsed = urlparse(url)
        self.params = parse_query(parsed.query)

        self.api = TwitchAPI(beta=self.subdomain == "beta")
        self.usher = UsherService()
開發者ID:SqTerror,項目名稱:livestreamer,代碼行數:16,代碼來源:twitch.py

示例4: __init__

# 需要導入模塊: from livestreamer.plugin import Plugin [as 別名]
# 或者: from livestreamer.plugin.Plugin import __init__ [as 別名]
    def __init__(self, url):
        Plugin.__init__(self, url)

        try:
            match = re.match(URL_PATTERN, url).groupdict()
            self.channel = match.get("channel").lower()
            self.video_type = match.get("video_type")
            self.video_id = match.get("video_id")
            self.usher = UsherService(match.get("domain"))
        except AttributeError:
            self.channel = None
            self.video_id = None
            self.video_type = None
            self.usher = None
開發者ID:bashtech,項目名稱:livestreamer,代碼行數:16,代碼來源:justintv_common.py

示例5: __init__

# 需要導入模塊: from livestreamer.plugin import Plugin [as 別名]
# 或者: from livestreamer.plugin.Plugin import __init__ [as 別名]
    def __init__(self, url):
        Plugin.__init__(self, url)

        try:
            match = _url_re.match(url).groupdict()
            self.channel = match.get("channel").lower()
            self.subdomain = match.get("subdomain")
            self.video_type = match.get("video_type")
            self.video_id = match.get("video_id")
            self.usher = UsherService(match.get("domain"))

            parsed = urlparse(url)
            self.params = parse_query(parsed.query)
        except AttributeError:
            self.channel = None
            self.params = None
            self.subdomain = None
            self.video_id = None
            self.video_type = None
            self.usher = None
開發者ID:OliverWS,項目名稱:livestreamer,代碼行數:22,代碼來源:justintv_common.py

示例6: __init__

# 需要導入模塊: from livestreamer.plugin import Plugin [as 別名]
# 或者: from livestreamer.plugin.Plugin import __init__ [as 別名]
 def __init__(self, url):
     Plugin.__init__(self, url)
     match = _url_re.match(url).groupdict()
     self.channel_path = match["channel_path"]
開發者ID:492580195,項目名稱:livestreamer,代碼行數:6,代碼來源:rtve.py

示例7: __init__

# 需要導入模塊: from livestreamer.plugin import Plugin [as 別名]
# 或者: from livestreamer.plugin.Plugin import __init__ [as 別名]
 def __init__(self, url):
     Plugin.__init__(self, url)
     match = _url_re.match(url)
     self._stream = match and match.groupdict()["stream"]
開發者ID:492580195,項目名稱:livestreamer,代碼行數:6,代碼來源:itvplayer.py


注:本文中的livestreamer.plugin.Plugin.__init__方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。