StreamingCommunity 2.9.8__py3-none-any.whl → 3.0.0__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of StreamingCommunity might be problematic. Click here for more details.
- StreamingCommunity/Api/Player/ddl.py +2 -10
- StreamingCommunity/Api/Player/mediapolisvod.py +64 -0
- StreamingCommunity/Api/Player/sweetpixel.py +3 -3
- StreamingCommunity/Api/Player/vixcloud.py +4 -9
- StreamingCommunity/Api/Site/1337xx/__init__.py +2 -3
- StreamingCommunity/Api/Site/1337xx/site.py +6 -1
- StreamingCommunity/Api/Site/altadefinizione/__init__.py +24 -9
- StreamingCommunity/Api/Site/altadefinizione/film.py +0 -1
- StreamingCommunity/Api/Site/altadefinizione/series.py +66 -70
- StreamingCommunity/Api/Site/altadefinizione/site.py +8 -2
- StreamingCommunity/Api/Site/altadefinizione/util/ScrapeSerie.py +37 -2
- StreamingCommunity/Api/Site/animeunity/__init__.py +30 -12
- StreamingCommunity/Api/Site/animeunity/film.py +40 -0
- StreamingCommunity/Api/Site/animeunity/serie.py +153 -0
- StreamingCommunity/Api/Site/animeunity/site.py +64 -37
- StreamingCommunity/Api/Site/animeunity/util/ScrapeSerie.py +41 -22
- StreamingCommunity/Api/Site/animeworld/__init__.py +26 -14
- StreamingCommunity/Api/Site/animeworld/film.py +63 -0
- StreamingCommunity/Api/Site/animeworld/serie.py +25 -22
- StreamingCommunity/Api/Site/animeworld/site.py +8 -2
- StreamingCommunity/Api/Site/animeworld/util/ScrapeSerie.py +32 -5
- StreamingCommunity/Api/Site/cb01new/__init__.py +2 -3
- StreamingCommunity/Api/Site/cb01new/site.py +7 -1
- StreamingCommunity/Api/Site/ddlstreamitaly/__init__.py +2 -3
- StreamingCommunity/Api/Site/ddlstreamitaly/series.py +31 -32
- StreamingCommunity/Api/Site/ddlstreamitaly/site.py +8 -3
- StreamingCommunity/Api/Site/ddlstreamitaly/util/ScrapeSerie.py +30 -2
- StreamingCommunity/Api/Site/guardaserie/__init__.py +22 -9
- StreamingCommunity/Api/Site/guardaserie/series.py +55 -53
- StreamingCommunity/Api/Site/guardaserie/site.py +10 -3
- StreamingCommunity/Api/Site/guardaserie/util/ScrapeSerie.py +27 -1
- StreamingCommunity/Api/Site/raiplay/__init__.py +92 -0
- StreamingCommunity/Api/Site/raiplay/film.py +65 -0
- StreamingCommunity/Api/Site/raiplay/series.py +162 -0
- StreamingCommunity/Api/Site/raiplay/site.py +173 -0
- StreamingCommunity/Api/Site/raiplay/util/ScrapeSerie.py +127 -0
- StreamingCommunity/Api/Site/streamingcommunity/__init__.py +30 -24
- StreamingCommunity/Api/Site/streamingcommunity/film.py +1 -2
- StreamingCommunity/Api/Site/streamingcommunity/series.py +76 -90
- StreamingCommunity/Api/Site/streamingcommunity/site.py +8 -4
- StreamingCommunity/Api/Site/streamingcommunity/util/ScrapeSerie.py +41 -15
- StreamingCommunity/Api/Template/site.py +2 -2
- StreamingCommunity/Lib/Downloader/HLS/downloader.py +1 -1
- StreamingCommunity/Lib/Downloader/HLS/segments.py +9 -18
- StreamingCommunity/Lib/Downloader/MP4/downloader.py +2 -1
- StreamingCommunity/Lib/Downloader/TOR/downloader.py +7 -14
- StreamingCommunity/Lib/FFmpeg/capture.py +1 -5
- StreamingCommunity/Lib/FFmpeg/util.py +57 -19
- StreamingCommunity/Lib/M3U8/estimator.py +57 -41
- StreamingCommunity/Lib/M3U8/parser.py +26 -6
- StreamingCommunity/Upload/update.py +22 -3
- StreamingCommunity/Upload/version.py +1 -1
- StreamingCommunity/Util/ffmpeg_installer.py +26 -1
- StreamingCommunity/Util/os.py +13 -15
- StreamingCommunity/Util/table.py +4 -2
- StreamingCommunity/global_search.py +1 -4
- StreamingCommunity/run.py +1 -4
- {streamingcommunity-2.9.8.dist-info → streamingcommunity-3.0.0.dist-info}/METADATA +1 -1
- streamingcommunity-3.0.0.dist-info/RECORD +91 -0
- {streamingcommunity-2.9.8.dist-info → streamingcommunity-3.0.0.dist-info}/WHEEL +1 -1
- StreamingCommunity/Api/Site/animeunity/film_serie.py +0 -181
- StreamingCommunity/Api/Site/mostraguarda/__init__.py +0 -73
- StreamingCommunity/Api/Site/mostraguarda/film.py +0 -93
- streamingcommunity-2.9.8.dist-info/RECORD +0 -85
- {streamingcommunity-2.9.8.dist-info → streamingcommunity-3.0.0.dist-info}/entry_points.txt +0 -0
- {streamingcommunity-2.9.8.dist-info → streamingcommunity-3.0.0.dist-info}/licenses/LICENSE +0 -0
- {streamingcommunity-2.9.8.dist-info → streamingcommunity-3.0.0.dist-info}/top_level.txt +0 -0
|
@@ -1,181 +0,0 @@
|
|
|
1
|
-
# 11.03.24
|
|
2
|
-
|
|
3
|
-
import os
|
|
4
|
-
import logging
|
|
5
|
-
from typing import Tuple
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
# External library
|
|
9
|
-
from rich.console import Console
|
|
10
|
-
from rich.prompt import Prompt
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
# Internal utilities
|
|
14
|
-
from StreamingCommunity.Util.os import os_manager
|
|
15
|
-
from StreamingCommunity.Util.message import start_message
|
|
16
|
-
from StreamingCommunity.Lib.Downloader import MP4_downloader
|
|
17
|
-
from StreamingCommunity.TelegramHelp.telegram_bot import TelegramSession, get_bot_instance
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
# Logic class
|
|
21
|
-
from .util.ScrapeSerie import ScrapeSerieAnime
|
|
22
|
-
from StreamingCommunity.Api.Template.config_loader import site_constant
|
|
23
|
-
from StreamingCommunity.Api.Template.Util import manage_selection, dynamic_format_number
|
|
24
|
-
from StreamingCommunity.Api.Template.Class.SearchType import MediaItem
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
# Player
|
|
28
|
-
from StreamingCommunity.Api.Player.vixcloud import VideoSourceAnime
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
# Variable
|
|
32
|
-
console = Console()
|
|
33
|
-
msg = Prompt()
|
|
34
|
-
KILL_HANDLER = bool(False)
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
def download_episode(index_select: int, scrape_serie: ScrapeSerieAnime, video_source: VideoSourceAnime) -> Tuple[str,bool]:
|
|
39
|
-
"""
|
|
40
|
-
Downloads the selected episode.
|
|
41
|
-
|
|
42
|
-
Parameters:
|
|
43
|
-
- index_select (int): Index of the episode to download.
|
|
44
|
-
|
|
45
|
-
Return:
|
|
46
|
-
- str: output path
|
|
47
|
-
- bool: kill handler status
|
|
48
|
-
"""
|
|
49
|
-
if site_constant.TELEGRAM_BOT:
|
|
50
|
-
bot = get_bot_instance()
|
|
51
|
-
|
|
52
|
-
# Get information about the selected episode
|
|
53
|
-
obj_episode = scrape_serie.get_info_episode(index_select)
|
|
54
|
-
|
|
55
|
-
if obj_episode is not None:
|
|
56
|
-
|
|
57
|
-
start_message()
|
|
58
|
-
console.print(f"[bold yellow]Download:[/bold yellow] [red]{site_constant.SITE_NAME}[/red] ([cyan]E{obj_episode.number}[/cyan]) \n")
|
|
59
|
-
|
|
60
|
-
if site_constant.TELEGRAM_BOT:
|
|
61
|
-
bot.send_message(f"Download in corso:\nTitolo:{scrape_serie.series_name}\nEpisodio: {obj_episode.number}", None)
|
|
62
|
-
|
|
63
|
-
# Get script_id
|
|
64
|
-
script_id = TelegramSession.get_session()
|
|
65
|
-
if script_id != "unknown":
|
|
66
|
-
TelegramSession.updateScriptId(script_id, f"{scrape_serie.series_name} - E{obj_episode.number}")
|
|
67
|
-
|
|
68
|
-
# Collect mp4 url
|
|
69
|
-
video_source.get_embed(obj_episode.id)
|
|
70
|
-
|
|
71
|
-
# Create output path
|
|
72
|
-
mp4_name = f"{scrape_serie.series_name}_EP_{dynamic_format_number(str(obj_episode.number))}.mp4"
|
|
73
|
-
|
|
74
|
-
if scrape_serie.is_series:
|
|
75
|
-
mp4_path = os_manager.get_sanitize_path(os.path.join(site_constant.ANIME_FOLDER, scrape_serie.series_name))
|
|
76
|
-
|
|
77
|
-
else:
|
|
78
|
-
mp4_path = os_manager.get_sanitize_path(os.path.join(site_constant.MOVIE_FOLDER, scrape_serie.series_name))
|
|
79
|
-
|
|
80
|
-
# Create output folder
|
|
81
|
-
os_manager.create_path(mp4_path)
|
|
82
|
-
|
|
83
|
-
# Start downloading
|
|
84
|
-
path, kill_handler = MP4_downloader(
|
|
85
|
-
url=str(video_source.src_mp4).strip(),
|
|
86
|
-
path=os.path.join(mp4_path, mp4_name)
|
|
87
|
-
)
|
|
88
|
-
|
|
89
|
-
return path, kill_handler
|
|
90
|
-
|
|
91
|
-
else:
|
|
92
|
-
logging.error(f"Skip index: {index_select} cant find info with api.")
|
|
93
|
-
return None, True
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
def download_series(select_title: MediaItem):
|
|
97
|
-
"""
|
|
98
|
-
Function to download episodes of a TV series.
|
|
99
|
-
|
|
100
|
-
Parameters:
|
|
101
|
-
- tv_id (int): The ID of the TV series.
|
|
102
|
-
- tv_name (str): The name of the TV series.
|
|
103
|
-
"""
|
|
104
|
-
start_message()
|
|
105
|
-
|
|
106
|
-
if site_constant.TELEGRAM_BOT:
|
|
107
|
-
bot = get_bot_instance()
|
|
108
|
-
|
|
109
|
-
scrape_serie = ScrapeSerieAnime(site_constant.FULL_URL)
|
|
110
|
-
video_source = VideoSourceAnime(site_constant.FULL_URL)
|
|
111
|
-
|
|
112
|
-
# Set up video source
|
|
113
|
-
scrape_serie.setup(None, select_title.id, select_title.slug)
|
|
114
|
-
|
|
115
|
-
# Get the count of episodes for the TV series
|
|
116
|
-
episoded_count = scrape_serie.get_count_episodes()
|
|
117
|
-
console.print(f"[cyan]Episodes find: [red]{episoded_count}")
|
|
118
|
-
|
|
119
|
-
if site_constant.TELEGRAM_BOT:
|
|
120
|
-
console.print(f"\n[cyan]Insert media [red]index [yellow]or [red]* [cyan]to download all media [yellow]or [red]1-2 [cyan]or [red]3-* [cyan]for a range of media")
|
|
121
|
-
bot.send_message(f"Episodi trovati: {episoded_count}", None)
|
|
122
|
-
|
|
123
|
-
last_command = bot.ask(
|
|
124
|
-
"select_title",
|
|
125
|
-
"Menu di selezione degli episodi: \n\n"
|
|
126
|
-
"- Inserisci il numero dell'episodio (ad esempio, 1)\n"
|
|
127
|
-
"- Inserisci * per scaricare tutti gli episodi\n"
|
|
128
|
-
"- Inserisci un intervallo di episodi (ad esempio, 1-2) per scaricare da un episodio all'altro\n"
|
|
129
|
-
"- Inserisci (ad esempio, 3-*) per scaricare dall'episodio specificato fino alla fine della serie",
|
|
130
|
-
None
|
|
131
|
-
)
|
|
132
|
-
|
|
133
|
-
else:
|
|
134
|
-
|
|
135
|
-
# Prompt user to select an episode index
|
|
136
|
-
last_command = msg.ask("\n[cyan]Insert media [red]index [yellow]or [red]* [cyan]to download all media [yellow]or [red]1-2 [cyan]or [red]3-* [cyan]for a range of media")
|
|
137
|
-
|
|
138
|
-
# Manage user selection
|
|
139
|
-
list_episode_select = manage_selection(last_command, episoded_count)
|
|
140
|
-
|
|
141
|
-
# Download selected episodes
|
|
142
|
-
if len(list_episode_select) == 1 and last_command != "*":
|
|
143
|
-
path, _ = download_episode(list_episode_select[0]-1, scrape_serie, video_source)
|
|
144
|
-
return path
|
|
145
|
-
|
|
146
|
-
# Download all other episodes selecter
|
|
147
|
-
else:
|
|
148
|
-
kill_handler = False
|
|
149
|
-
for i_episode in list_episode_select:
|
|
150
|
-
if kill_handler:
|
|
151
|
-
break
|
|
152
|
-
_, kill_handler = download_episode(i_episode-1, scrape_serie, video_source)
|
|
153
|
-
|
|
154
|
-
if site_constant.TELEGRAM_BOT:
|
|
155
|
-
bot.send_message(f"Finito di scaricare tutte le serie e episodi", None)
|
|
156
|
-
|
|
157
|
-
# Get script_id
|
|
158
|
-
script_id = TelegramSession.get_session()
|
|
159
|
-
if script_id != "unknown":
|
|
160
|
-
TelegramSession.deleteScriptId(script_id)
|
|
161
|
-
|
|
162
|
-
|
|
163
|
-
def download_film(select_title: MediaItem):
|
|
164
|
-
"""
|
|
165
|
-
Function to download a film.
|
|
166
|
-
|
|
167
|
-
Parameters:
|
|
168
|
-
- id_film (int): The ID of the film.
|
|
169
|
-
- title_name (str): The title of the film.
|
|
170
|
-
"""
|
|
171
|
-
|
|
172
|
-
# Init class
|
|
173
|
-
scrape_serie = ScrapeSerieAnime(site_constant.FULL_URL)
|
|
174
|
-
video_source = VideoSourceAnime(site_constant.FULL_URL)
|
|
175
|
-
|
|
176
|
-
# Set up video source
|
|
177
|
-
scrape_serie.setup(None, select_title.id, select_title.slug)
|
|
178
|
-
scrape_serie.is_series = False
|
|
179
|
-
|
|
180
|
-
# Start download
|
|
181
|
-
download_episode(0, scrape_serie, video_source)
|
|
@@ -1,73 +0,0 @@
|
|
|
1
|
-
# 26.05.24
|
|
2
|
-
|
|
3
|
-
from urllib.parse import quote_plus
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
# External library
|
|
7
|
-
from rich.console import Console
|
|
8
|
-
from rich.prompt import Prompt
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
# Internal utilities
|
|
12
|
-
from StreamingCommunity.Api.Template.config_loader import site_constant
|
|
13
|
-
from StreamingCommunity.Api.Template.Class.SearchType import MediaItem
|
|
14
|
-
from StreamingCommunity.Lib.TMBD import tmdb, Json_film
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
# Logic class
|
|
18
|
-
from .film import download_film
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
# Variable
|
|
22
|
-
indice = 7
|
|
23
|
-
_useFor = "film"
|
|
24
|
-
_deprecate = False
|
|
25
|
-
_priority = 2
|
|
26
|
-
_engineDownload = "hls"
|
|
27
|
-
|
|
28
|
-
msg = Prompt()
|
|
29
|
-
console = Console()
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
def process_search_result(select_title):
|
|
33
|
-
"""
|
|
34
|
-
Handles the search result and initiates the download for either a film or series.
|
|
35
|
-
"""
|
|
36
|
-
download_film(select_title)
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
def search(string_to_search: str = None, get_onlyDatabase: bool = False, direct_item: dict = None):
|
|
40
|
-
"""
|
|
41
|
-
Main function of the application for search film, series and anime.
|
|
42
|
-
|
|
43
|
-
Parameters:
|
|
44
|
-
string_to_search (str, optional): String to search for
|
|
45
|
-
get_onylDatabase (bool, optional): If True, return only the database object
|
|
46
|
-
direct_item (dict, optional): Direct item to process (bypass search)
|
|
47
|
-
"""
|
|
48
|
-
if direct_item:
|
|
49
|
-
select_title = MediaItem(**direct_item)
|
|
50
|
-
process_search_result(select_title)
|
|
51
|
-
return
|
|
52
|
-
|
|
53
|
-
if string_to_search is None:
|
|
54
|
-
string_to_search = msg.ask(f"\n[purple]Insert word to search in [green]{site_constant.SITE_NAME}").strip()
|
|
55
|
-
|
|
56
|
-
# Not available for the moment
|
|
57
|
-
if get_onlyDatabase:
|
|
58
|
-
return 0
|
|
59
|
-
|
|
60
|
-
# Search on database
|
|
61
|
-
movie_id = tmdb.search_movie(quote_plus(string_to_search))
|
|
62
|
-
|
|
63
|
-
if movie_id is not None:
|
|
64
|
-
movie_details: Json_film = tmdb.get_movie_details(tmdb_id=movie_id)
|
|
65
|
-
|
|
66
|
-
# Download only film
|
|
67
|
-
download_film(movie_details)
|
|
68
|
-
|
|
69
|
-
else:
|
|
70
|
-
|
|
71
|
-
# If no results are found, ask again
|
|
72
|
-
console.print(f"\n[red]Nothing matching was found for[white]: [purple]{string_to_search}")
|
|
73
|
-
search()
|
|
@@ -1,93 +0,0 @@
|
|
|
1
|
-
# 17.09.24
|
|
2
|
-
|
|
3
|
-
import os
|
|
4
|
-
import logging
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
# External libraries
|
|
8
|
-
import httpx
|
|
9
|
-
from bs4 import BeautifulSoup
|
|
10
|
-
from rich.console import Console
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
# Internal utilities
|
|
14
|
-
from StreamingCommunity.Util.os import os_manager, get_call_stack
|
|
15
|
-
from StreamingCommunity.Util.message import start_message
|
|
16
|
-
from StreamingCommunity.Util.headers import get_userAgent
|
|
17
|
-
from StreamingCommunity.Util.table import TVShowManager
|
|
18
|
-
from StreamingCommunity.Lib.Downloader import HLS_Downloader
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
# Player
|
|
22
|
-
from StreamingCommunity.Api.Player.supervideo import VideoSource
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
# Logic class
|
|
26
|
-
from StreamingCommunity.Api.Template.config_loader import site_constant
|
|
27
|
-
from StreamingCommunity.Lib.TMBD import Json_film
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
# Variable
|
|
31
|
-
console = Console()
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
def download_film(movie_details: Json_film) -> str:
|
|
35
|
-
"""
|
|
36
|
-
Downloads a film using the provided tmbd id.
|
|
37
|
-
|
|
38
|
-
Parameters:
|
|
39
|
-
- movie_details (Json_film): Class with info about film title.
|
|
40
|
-
|
|
41
|
-
Return:
|
|
42
|
-
- str: output path
|
|
43
|
-
"""
|
|
44
|
-
|
|
45
|
-
# Start message and display film information
|
|
46
|
-
start_message()
|
|
47
|
-
console.print(f"[bold yellow]Download:[/bold yellow] [red]{site_constant.SITE_NAME}[/red] → [cyan]{movie_details.title}[/cyan] \n")
|
|
48
|
-
|
|
49
|
-
# Make request to main site
|
|
50
|
-
try:
|
|
51
|
-
url = f"{site_constant.FULL_URL}/set-movie-a/{movie_details.imdb_id}"
|
|
52
|
-
response = httpx.get(url, headers={'User-Agent': get_userAgent()})
|
|
53
|
-
response.raise_for_status()
|
|
54
|
-
|
|
55
|
-
except:
|
|
56
|
-
logging.error(f"Not found in the server. Dict: {movie_details}")
|
|
57
|
-
raise
|
|
58
|
-
|
|
59
|
-
if "not found" in str(response.text):
|
|
60
|
-
logging.error(f"Cant find in the server: {movie_details.title}.")
|
|
61
|
-
|
|
62
|
-
research_func = next((
|
|
63
|
-
f for f in get_call_stack()
|
|
64
|
-
if f['function'] == 'search' and f['script'] == '__init__.py'
|
|
65
|
-
), None)
|
|
66
|
-
TVShowManager.run_back_command(research_func)
|
|
67
|
-
|
|
68
|
-
# Extract supervideo url
|
|
69
|
-
soup = BeautifulSoup(response.text, "html.parser")
|
|
70
|
-
player_links = soup.find("ul", class_ = "_player-mirrors").find_all("li")
|
|
71
|
-
supervideo_url = "https:" + player_links[0].get("data-link")
|
|
72
|
-
|
|
73
|
-
# Set domain and media ID for the video source
|
|
74
|
-
video_source = VideoSource(url=supervideo_url)
|
|
75
|
-
|
|
76
|
-
# Define output path
|
|
77
|
-
title_name = os_manager.get_sanitize_file(movie_details.title) + ".mp4"
|
|
78
|
-
mp4_path = os.path.join(site_constant.MOVIE_FOLDER, title_name.replace(".mp4", ""))
|
|
79
|
-
|
|
80
|
-
# Get m3u8 master playlist
|
|
81
|
-
master_playlist = video_source.get_playlist()
|
|
82
|
-
|
|
83
|
-
# Download the film using the m3u8 playlist, and output filename
|
|
84
|
-
r_proc = HLS_Downloader(
|
|
85
|
-
m3u8_url=master_playlist,
|
|
86
|
-
output_path=os.path.join(mp4_path, title_name)
|
|
87
|
-
).start()
|
|
88
|
-
|
|
89
|
-
if r_proc['error'] is not None:
|
|
90
|
-
try: os.remove(r_proc['path'])
|
|
91
|
-
except: pass
|
|
92
|
-
|
|
93
|
-
return r_proc['path']
|
|
@@ -1,85 +0,0 @@
|
|
|
1
|
-
StreamingCommunity/__init__.py,sha256=Cw-N0VCg7sef1WqdtvVwrhs1zc4LoUhs5C8k7vpM1lQ,207
|
|
2
|
-
StreamingCommunity/global_search.py,sha256=1U74JtXLWDGC_r5KCsQt4kC-XRO76QIWk3QnUz-1AqY,12126
|
|
3
|
-
StreamingCommunity/run.py,sha256=G4n1n6BrJv0Y32jCs25LKgUzXaSkFe3F5DaZknnehdA,13212
|
|
4
|
-
StreamingCommunity/Api/Player/ddl.py,sha256=M_ePETCMBpIHr5K5Yb7EML5VXwqkR7vJHQcGIv4AEQw,2261
|
|
5
|
-
StreamingCommunity/Api/Player/maxstream.py,sha256=WXg8xncFXFiaUmTVXxB3NyknQtbvd0sF1eRaoDO24bU,4822
|
|
6
|
-
StreamingCommunity/Api/Player/supervideo.py,sha256=hr9QViI-XD0Dqhcx90oaH8_j0d6cxpVaf-EuCjMs6hI,5199
|
|
7
|
-
StreamingCommunity/Api/Player/sweetpixel.py,sha256=Def9T7xTNUpGMsvUpGZ7OE_EMrKDh-6YJz9HHaewhuA,1658
|
|
8
|
-
StreamingCommunity/Api/Player/vixcloud.py,sha256=NOZhW59hyBnG5FfmppcnIudAztr7seWzQBzAN3KC_3M,6317
|
|
9
|
-
StreamingCommunity/Api/Player/Helper/Vixcloud/js_parser.py,sha256=U-8QlD5kGzIk3-4t4D6QyYmiDe8UBrSuVi1YHRQb7AU,4295
|
|
10
|
-
StreamingCommunity/Api/Player/Helper/Vixcloud/util.py,sha256=QLUgbwQrpuPIVNzdBlAiEJXnd-eCj_JQFckZZEEL55w,5214
|
|
11
|
-
StreamingCommunity/Api/Site/1337xx/__init__.py,sha256=En0bGDLm9fTKuR9ApQw2V8HuFcQNRjsy8sAcgjadIfM,2041
|
|
12
|
-
StreamingCommunity/Api/Site/1337xx/site.py,sha256=XHG2Ojhmj2eutyWJPIICZkJUSvpa4IEB7xsNs1Dqcfk,2222
|
|
13
|
-
StreamingCommunity/Api/Site/1337xx/title.py,sha256=8T3cVRb-Mt9QdOtKWVVFHz8iOHqspf7iw28E7bfTV78,1865
|
|
14
|
-
StreamingCommunity/Api/Site/altadefinizione/__init__.py,sha256=dBRK4a3URd3i8IhYSXbKg6hb_lXaY8u1qJ9pDLkKKdk,3266
|
|
15
|
-
StreamingCommunity/Api/Site/altadefinizione/film.py,sha256=8XNFCtuR3BUrAkuoukthU0s6v9tc9QsWNShouBoxZqA,4396
|
|
16
|
-
StreamingCommunity/Api/Site/altadefinizione/series.py,sha256=okrRq1rvQ9FKwOymsyDtpmFzIxEm49rwo2SI5Pr_Voc,7598
|
|
17
|
-
StreamingCommunity/Api/Site/altadefinizione/site.py,sha256=BW-1XqcHcVqvNFdggJEjRPI2kwxw6HOP4QeqdybD_AU,2688
|
|
18
|
-
StreamingCommunity/Api/Site/altadefinizione/util/ScrapeSerie.py,sha256=tdO3ebcmU-cPnJQX4L1PVPN7IHNzu4hS-hjPWo_evCk,2526
|
|
19
|
-
StreamingCommunity/Api/Site/animeunity/__init__.py,sha256=DH6ltjOAh2W5utxRYDQhhx05GcHp5-5xDhICL9DH2jk,3097
|
|
20
|
-
StreamingCommunity/Api/Site/animeunity/film_serie.py,sha256=a0Hn2tjcWW1_L82e9H9DlgIJzASYnVHPPWydO28POtk,6014
|
|
21
|
-
StreamingCommunity/Api/Site/animeunity/site.py,sha256=jxg93WUx5ouBDs4oz1saWqSoJO9Ou1I3qJev0aODMl4,4947
|
|
22
|
-
StreamingCommunity/Api/Site/animeunity/util/ScrapeSerie.py,sha256=6Vbw5KVwUbgooGjUIRAuXr9cWSkHDkAFP7EiXF2T4OM,2709
|
|
23
|
-
StreamingCommunity/Api/Site/animeworld/__init__.py,sha256=pHQ_qscQYG-4oXe2PJ_98MY1VRAkmPfYqmTaqGC5Hsg,2160
|
|
24
|
-
StreamingCommunity/Api/Site/animeworld/serie.py,sha256=kXhMVozyzRFxDkGj2O0utT6YSdCTaWm5gNrXSyrwR5w,3305
|
|
25
|
-
StreamingCommunity/Api/Site/animeworld/site.py,sha256=zjVvKPgjqPEiPWN6YSYhZg7Y-Bj5TsYBvI9SP3G6mow,3495
|
|
26
|
-
StreamingCommunity/Api/Site/animeworld/util/ScrapeSerie.py,sha256=-k_xo5BKv6m-NJBZSHCt-skGIyh_-YCp-hHDpuuujp4,2617
|
|
27
|
-
StreamingCommunity/Api/Site/cb01new/__init__.py,sha256=C-6-HDxG73xXV6FK6LnQhs5yjkJawke4nq5kBQCVjSM,2081
|
|
28
|
-
StreamingCommunity/Api/Site/cb01new/film.py,sha256=vjd1ftm4LhxxG0TTKEwlOXtx0AYgxBbV5ZlQH8aSxGU,1695
|
|
29
|
-
StreamingCommunity/Api/Site/cb01new/site.py,sha256=_JPKP2BMK5SL_QZPtt7mbDdef_t0J7QO7QDKVw6xm-4,2068
|
|
30
|
-
StreamingCommunity/Api/Site/ddlstreamitaly/__init__.py,sha256=H_Z46fvmoWHfrafhlgTHouhkhDbokxCAaDRmk8d07P8,2183
|
|
31
|
-
StreamingCommunity/Api/Site/ddlstreamitaly/series.py,sha256=C9kZjnGu7G9SSxDE8VstuAlnhLku7LMF-R7OD_sbKHM,3499
|
|
32
|
-
StreamingCommunity/Api/Site/ddlstreamitaly/site.py,sha256=cq2-fVU7w7-caZYXQTADYuLD7cEXJ3czvZIyDEXR_4s,2451
|
|
33
|
-
StreamingCommunity/Api/Site/ddlstreamitaly/util/ScrapeSerie.py,sha256=HY8YEvzWp3sy1q07rFLXLZhGYvapA1amMZByYvs0iJM,2553
|
|
34
|
-
StreamingCommunity/Api/Site/guardaserie/__init__.py,sha256=_VtuSxR-6mWET-TRPg1nHhe5QWHImdnZRB8chQtGrm0,2040
|
|
35
|
-
StreamingCommunity/Api/Site/guardaserie/series.py,sha256=Tjjrha2U4mO7TQLQnd-RKBh1izf7aUuujYLaTZFPpAw,5771
|
|
36
|
-
StreamingCommunity/Api/Site/guardaserie/site.py,sha256=zfujdRe-kPsxnPBWFpcYYYsbt5m6z_Lqql2XOWnQmI0,2106
|
|
37
|
-
StreamingCommunity/Api/Site/guardaserie/util/ScrapeSerie.py,sha256=4sZRWm8r5X80q285hemRf7MAWeaN5yfOU6i1SjKU4Tg,3268
|
|
38
|
-
StreamingCommunity/Api/Site/mostraguarda/__init__.py,sha256=RHUGgn_2uSLMHgPrCXAUqDDK6qv7PqimFr5z1mAYtrM,1933
|
|
39
|
-
StreamingCommunity/Api/Site/mostraguarda/film.py,sha256=HTn9GWX_oKKICBcm_Hy0FM-jvS3TMfIywxBVeo2QS74,2786
|
|
40
|
-
StreamingCommunity/Api/Site/streamingcommunity/__init__.py,sha256=akhH6AVIFvDskJ_uDlcNpistwnctbDxA-YiuVgIXm0A,3267
|
|
41
|
-
StreamingCommunity/Api/Site/streamingcommunity/film.py,sha256=2DesspMs1CKQ4pn9cdH7sCQT1LWsEXFoLg9z8s8f2Hs,2598
|
|
42
|
-
StreamingCommunity/Api/Site/streamingcommunity/series.py,sha256=qbUvLC5Jo6f-aEYGg6qJvj58OWHFoyunfqJsHGNkqG8,8506
|
|
43
|
-
StreamingCommunity/Api/Site/streamingcommunity/site.py,sha256=7y-eMoNgwgQligou4NIKoo0WYvz1NFghRFZfiUCtqDA,2964
|
|
44
|
-
StreamingCommunity/Api/Site/streamingcommunity/util/ScrapeSerie.py,sha256=4WU0YFPXcsBpEANMGpAsbtffu3HxCqLsiC0K6_4OlHM,4525
|
|
45
|
-
StreamingCommunity/Api/Template/__init__.py,sha256=oyfd_4_g5p5q6mxb_rKwSsudZnTM3W3kg1tLwxg-v-Q,46
|
|
46
|
-
StreamingCommunity/Api/Template/config_loader.py,sha256=2RT_0mqQmWzXM4rYaqss-yhXztYAcfNkTalFPjzv270,2056
|
|
47
|
-
StreamingCommunity/Api/Template/site.py,sha256=lD7FCp-xHCTwTam51MYtI-JKRuw1VLsY9KQDtsk3MYE,2842
|
|
48
|
-
StreamingCommunity/Api/Template/Class/SearchType.py,sha256=LOlE8UgraEM0UAVeNCThDGi8bleei31p7KpryuZm3VE,2530
|
|
49
|
-
StreamingCommunity/Api/Template/Util/__init__.py,sha256=ZWQQd6iymNFDol9HaKPhVBoRX1W-xHJZgU_mZvLVdsM,196
|
|
50
|
-
StreamingCommunity/Api/Template/Util/manage_ep.py,sha256=FYe2DC9SXIXzlRYI7fW4ieBpfrxYzsUgt2C47tYRk7U,9252
|
|
51
|
-
StreamingCommunity/Lib/Downloader/__init__.py,sha256=JhbBh5hOnSM7VmtkxJ7zZ_FtWEC1JdnKThsSBjLV5FY,140
|
|
52
|
-
StreamingCommunity/Lib/Downloader/HLS/downloader.py,sha256=s3ZXyKsuBN3wE4Y0Y9xXuDauBPbaI9Qhgoy83IeMnbs,21590
|
|
53
|
-
StreamingCommunity/Lib/Downloader/HLS/segments.py,sha256=4mh3qk0OYCfhqoZ1ljrLYZtBrcqBbkqBXfRjYdLeE6M,18358
|
|
54
|
-
StreamingCommunity/Lib/Downloader/MP4/downloader.py,sha256=o-LdIdPvnHfKhmtexRlu4D7T81qj6igg-g8IiNSXSFs,7456
|
|
55
|
-
StreamingCommunity/Lib/Downloader/TOR/downloader.py,sha256=8WC4_vXAjqkoWVtXAaA6EOzlA45qBwHr_DCMQO7mYNw,19608
|
|
56
|
-
StreamingCommunity/Lib/FFmpeg/__init__.py,sha256=6PBsZdE1jrD2EKOVyx3JEHnyDZzVeKlPkH5T0zyfOgU,130
|
|
57
|
-
StreamingCommunity/Lib/FFmpeg/capture.py,sha256=73BEpTijksErZOu46iRxwl3idKzZ-sVXXRr4nocIGY0,5168
|
|
58
|
-
StreamingCommunity/Lib/FFmpeg/command.py,sha256=ubpffE02nsZM7xch5gbwGlEiUzecpxcFOd63n2cqM1k,10708
|
|
59
|
-
StreamingCommunity/Lib/FFmpeg/util.py,sha256=wlYcX1W8RehhHjkN9XXm0idNGu1ir15y_J1pQ26-wDQ,7830
|
|
60
|
-
StreamingCommunity/Lib/M3U8/__init__.py,sha256=H_KS2eDd3kVXMziFJnD0FCPvPHEizaqfoA36ElTv_r8,170
|
|
61
|
-
StreamingCommunity/Lib/M3U8/decryptor.py,sha256=kuxxsd3eN0VGRrMJWXzHo8gCpT0u3fSZs_lwxlE5Fqs,2948
|
|
62
|
-
StreamingCommunity/Lib/M3U8/estimator.py,sha256=BIA4E5faX9rTYMVgac766dDy1fqEBjdQ-VcUt-tIzXU,5336
|
|
63
|
-
StreamingCommunity/Lib/M3U8/parser.py,sha256=xN16pQZSCN9mQl_s7OcuH07-mNgVMpAS_hERq6zp7XM,21558
|
|
64
|
-
StreamingCommunity/Lib/M3U8/url_fixer.py,sha256=zldE4yOuNBV6AAvL1KI6p7XdRI_R5YZRscbDgT1564M,1735
|
|
65
|
-
StreamingCommunity/Lib/TMBD/__init__.py,sha256=XzE42tw3Ws59DD1PF8WmGtZ0D4D7Hk3Af8QthNE-22U,66
|
|
66
|
-
StreamingCommunity/Lib/TMBD/obj_tmbd.py,sha256=dRSvJFS5yqmsBZcw2wqbStcBtXNjU_3n5czMyremAtU,1187
|
|
67
|
-
StreamingCommunity/Lib/TMBD/tmdb.py,sha256=byg0EFnlmd9JeLvn1N9K3QkB1KEfeMuFa7OVfGqks1Y,10685
|
|
68
|
-
StreamingCommunity/TelegramHelp/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
69
|
-
StreamingCommunity/TelegramHelp/telegram_bot.py,sha256=Qe1__aoK4PpDuing8JtWgdHzLee8LuYYyfeLNA7yADU,26307
|
|
70
|
-
StreamingCommunity/Upload/update.py,sha256=qViEz--kqt7Z9Zxc9z9RyvhLOl22cTfnu9VSAwqn4y0,2549
|
|
71
|
-
StreamingCommunity/Upload/version.py,sha256=nm7psKKdvMmO9ZBmcHw2ESy9cG8rStPFomHd54xe7yI,171
|
|
72
|
-
StreamingCommunity/Util/color.py,sha256=NvD0Eni-25oOOkY-szCEoc0lGvzQxyL7xhM0RE4EvUM,458
|
|
73
|
-
StreamingCommunity/Util/config_json.py,sha256=xiE5JNw9HgbBdBqKhlywwWw1EnoyDdG47wcxFDTC8sA,24960
|
|
74
|
-
StreamingCommunity/Util/ffmpeg_installer.py,sha256=q5yb_ZXKe9PhcG7JbKLfo1AZa8DNukgHqymPbudDuAY,13585
|
|
75
|
-
StreamingCommunity/Util/headers.py,sha256=TItkaFMx1GqsVNEIS3Tr0BGU5EHyF-HkZVliHORT3P8,308
|
|
76
|
-
StreamingCommunity/Util/logger.py,sha256=9kGD6GmWj2pM8ADpJc85o7jm8DD0c5Aguqnq-9kmxos,3314
|
|
77
|
-
StreamingCommunity/Util/message.py,sha256=SJaIPLvWeQqsIODVUKw3TgYRmBChovmlbcF6OUxqMI8,1425
|
|
78
|
-
StreamingCommunity/Util/os.py,sha256=MUGJKQbNMWeoUrnJ2Ug3hoyYlrPDqU9BY94UmiUbxfA,14858
|
|
79
|
-
StreamingCommunity/Util/table.py,sha256=QDVCVewMQ2JIQV3yDxQEL7Ac_m7NyRmynFg11BDeSBQ,9621
|
|
80
|
-
streamingcommunity-2.9.8.dist-info/licenses/LICENSE,sha256=OXLcl0T2SZ8Pmy2_dmlvKuetivmyPd5m1q-Gyd-zaYY,35149
|
|
81
|
-
streamingcommunity-2.9.8.dist-info/METADATA,sha256=5K1lvxzORHEK1BBSGAqSWI2qwXH-pBazDc58BpKm19w,25012
|
|
82
|
-
streamingcommunity-2.9.8.dist-info/WHEEL,sha256=1tXe9gY0PYatrMPMDd6jXqjfpz_B-Wqm32CPfRC58XU,91
|
|
83
|
-
streamingcommunity-2.9.8.dist-info/entry_points.txt,sha256=Qph9XYfDC8n4LfDLOSl6gJGlkb9eFb5f-JOr_Wb_5rk,67
|
|
84
|
-
streamingcommunity-2.9.8.dist-info/top_level.txt,sha256=YsOcxKP-WOhWpIWgBlh0coll9XUx7aqmRPT7kmt3fH0,19
|
|
85
|
-
streamingcommunity-2.9.8.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|