1
0
mirror of https://github.com/spaam/svtplay-dl.git synced 2024-11-28 06:04:17 +01:00
svtplay-dl/lib/svtplay_dl/service/pokemon.py

39 lines
1.2 KiB
Python
Raw Normal View History

import re
2018-01-30 22:07:21 +01:00
from urllib.parse import urlparse
from svtplay_dl.error import ServiceError
2019-08-25 00:40:39 +02:00
from svtplay_dl.fetcher.hls import hlsparse
from svtplay_dl.service import OpenGraphThumbMixin
from svtplay_dl.service import Service
class Pokemon(Service, OpenGraphThumbMixin):
2019-08-25 00:27:31 +02:00
supported_domains = ["pokemon.com"]
def get(self):
data = self.get_urldata()
parse = urlparse(self.url)
2019-08-25 00:27:31 +02:00
match = re.search(r"^/([a-z]{2})/", parse.path)
if not match:
yield ServiceError("Cant county code")
return
2021-04-27 19:44:09 +02:00
res = self.http.get(f"http://www.pokemon.com/api/pokemontv/channels?region={match.group(1)}")
janson = res.json()
match = re.search('data-video-season="([0-9]+)"', data)
season = match.group(1)
match = re.search('data-video-episode="([0-9]+)"', data)
episode = match.group(1)
for i in janson:
for n in i["media"]:
if season == n["season"] and episode == n["episode"]:
stream = n["stream_url"]
2018-05-13 13:06:45 +02:00
self.output["title"] = "pokemon"
self.output["season"] = season
self.output["episode"] = episode
yield from hlsparse(self.config, self.http.request("get", stream), stream, output=self.output)