本文整理匯總了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)
示例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
示例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()
示例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
示例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
示例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"]
示例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"]