StreamingCommunity 3.0.5__py3-none-any.whl → 3.0.6__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/Site/1337xx/__init__.py +2 -2
- StreamingCommunity/Api/Site/altadefinizione/__init__.py +1 -1
- StreamingCommunity/Api/Site/animeunity/__init__.py +1 -1
- StreamingCommunity/Api/Site/animeworld/__init__.py +2 -2
- StreamingCommunity/Api/Site/guardaserie/__init__.py +2 -2
- StreamingCommunity/Api/Site/raiplay/__init__.py +2 -2
- StreamingCommunity/Api/Site/streamingcommunity/__init__.py +16 -2
- StreamingCommunity/Api/Site/streamingcommunity/film.py +1 -1
- StreamingCommunity/Api/Site/streamingcommunity/series.py +2 -2
- StreamingCommunity/Api/Site/streamingcommunity/site.py +2 -2
- StreamingCommunity/Api/Site/streamingwatch/__init__.py +2 -2
- StreamingCommunity/Upload/version.py +1 -1
- StreamingCommunity/Util/config_json.py +7 -2
- StreamingCommunity/run.py +23 -38
- {streamingcommunity-3.0.5.dist-info → streamingcommunity-3.0.6.dist-info}/METADATA +2 -2
- {streamingcommunity-3.0.5.dist-info → streamingcommunity-3.0.6.dist-info}/RECORD +20 -20
- {streamingcommunity-3.0.5.dist-info → streamingcommunity-3.0.6.dist-info}/WHEEL +0 -0
- {streamingcommunity-3.0.5.dist-info → streamingcommunity-3.0.6.dist-info}/entry_points.txt +0 -0
- {streamingcommunity-3.0.5.dist-info → streamingcommunity-3.0.6.dist-info}/licenses/LICENSE +0 -0
- {streamingcommunity-3.0.5.dist-info → streamingcommunity-3.0.6.dist-info}/top_level.txt +0 -0
|
@@ -25,7 +25,7 @@ from .series import download_series
|
|
|
25
25
|
|
|
26
26
|
# Variable
|
|
27
27
|
indice = 0
|
|
28
|
-
_useFor = "
|
|
28
|
+
_useFor = "Film_&_Serie"
|
|
29
29
|
_priority = 0
|
|
30
30
|
_engineDownload = "hls"
|
|
31
31
|
_deprecate = False
|
|
@@ -97,7 +97,21 @@ def search(string_to_search: str = None, get_onlyDatabase: bool = False, direct_
|
|
|
97
97
|
return
|
|
98
98
|
|
|
99
99
|
if string_to_search is None:
|
|
100
|
-
|
|
100
|
+
if site_constant.TELEGRAM_BOT:
|
|
101
|
+
bot = get_bot_instance()
|
|
102
|
+
string_to_search = bot.ask(
|
|
103
|
+
"key_search",
|
|
104
|
+
f"Enter the search term\nor type 'back' to return to the menu: ",
|
|
105
|
+
None
|
|
106
|
+
)
|
|
107
|
+
|
|
108
|
+
if string_to_search == 'back':
|
|
109
|
+
|
|
110
|
+
# Restart the script
|
|
111
|
+
subprocess.Popen([sys.executable] + sys.argv)
|
|
112
|
+
sys.exit()
|
|
113
|
+
else:
|
|
114
|
+
string_to_search = msg.ask(f"\n[purple]Insert a word to search in [green]{site_constant.SITE_NAME}").strip()
|
|
101
115
|
|
|
102
116
|
# Search on database
|
|
103
117
|
len_database = title_search(string_to_search)
|
|
@@ -55,7 +55,7 @@ def download_film(select_title: MediaItem) -> str:
|
|
|
55
55
|
console.print(f"[bold yellow]Download:[/bold yellow] [red]{site_constant.SITE_NAME}[/red] → [cyan]{select_title.name}[/cyan] \n")
|
|
56
56
|
|
|
57
57
|
# Init class
|
|
58
|
-
video_source = VideoSource(site_constant.FULL_URL, False, select_title.id)
|
|
58
|
+
video_source = VideoSource(f"{site_constant.FULL_URL}/it", False, select_title.id)
|
|
59
59
|
|
|
60
60
|
# Retrieve scws and if available master playlist
|
|
61
61
|
video_source.get_iframe(select_title.id)
|
|
@@ -154,8 +154,8 @@ def download_series(select_season: MediaItem, season_selection: str = None, epis
|
|
|
154
154
|
start_message()
|
|
155
155
|
|
|
156
156
|
# Init class
|
|
157
|
-
video_source = VideoSource(site_constant.FULL_URL, True, select_season.id)
|
|
158
|
-
scrape_serie = GetSerieInfo(site_constant.FULL_URL, select_season.id, select_season.slug)
|
|
157
|
+
video_source = VideoSource(f"{site_constant.FULL_URL}/it", True, select_season.id)
|
|
158
|
+
scrape_serie = GetSerieInfo(f"{site_constant.FULL_URL}/it", select_season.id, select_season.slug)
|
|
159
159
|
|
|
160
160
|
# Collect information about season
|
|
161
161
|
scrape_serie.getNumberSeason()
|
|
@@ -46,7 +46,7 @@ def title_search(query: str) -> int:
|
|
|
46
46
|
|
|
47
47
|
try:
|
|
48
48
|
response = httpx.get(
|
|
49
|
-
site_constant.FULL_URL,
|
|
49
|
+
f"{site_constant.FULL_URL}/it",
|
|
50
50
|
headers={'user-agent': get_userAgent()},
|
|
51
51
|
timeout=max_timeout
|
|
52
52
|
)
|
|
@@ -59,7 +59,7 @@ def title_search(query: str) -> int:
|
|
|
59
59
|
console.print(f"[red]Site: {site_constant.SITE_NAME} version, request error: {e}")
|
|
60
60
|
return 0
|
|
61
61
|
|
|
62
|
-
search_url = f"{site_constant.FULL_URL}/search?q={query}"
|
|
62
|
+
search_url = f"{site_constant.FULL_URL}/it/search?q={query}"
|
|
63
63
|
console.print(f"[cyan]Search url: [yellow]{search_url}")
|
|
64
64
|
|
|
65
65
|
try:
|
|
@@ -36,8 +36,13 @@ class ConfigManager:
|
|
|
36
36
|
base_path = os.path.dirname(sys.executable)
|
|
37
37
|
|
|
38
38
|
else:
|
|
39
|
-
|
|
40
|
-
|
|
39
|
+
|
|
40
|
+
# Get the actual path of the module file
|
|
41
|
+
current_file_path = os.path.abspath(__file__)
|
|
42
|
+
# Navigate upwards to find the project root
|
|
43
|
+
# Assuming this file is in a package structure like StreamingCommunity/Util/config_json.py
|
|
44
|
+
# We need to go up 2 levels to reach the project root
|
|
45
|
+
base_path = os.path.dirname(os.path.dirname(os.path.dirname(current_file_path)))
|
|
41
46
|
|
|
42
47
|
# Initialize file paths
|
|
43
48
|
self.file_path = os.path.join(base_path, file_name)
|
StreamingCommunity/run.py
CHANGED
|
@@ -193,6 +193,13 @@ def force_exit():
|
|
|
193
193
|
|
|
194
194
|
def main(script_id = 0):
|
|
195
195
|
|
|
196
|
+
color_map = {
|
|
197
|
+
"anime": "red",
|
|
198
|
+
"film_&_serie": "yellow",
|
|
199
|
+
"serie": "blue",
|
|
200
|
+
"torrent": "white"
|
|
201
|
+
}
|
|
202
|
+
|
|
196
203
|
if TELEGRAM_BOT:
|
|
197
204
|
bot = get_bot_instance()
|
|
198
205
|
bot.send_message(f"Avviato script {script_id}", None)
|
|
@@ -256,18 +263,6 @@ def main(script_id = 0):
|
|
|
256
263
|
)
|
|
257
264
|
|
|
258
265
|
# Add arguments for search functions
|
|
259
|
-
color_map = {
|
|
260
|
-
"anime": "red",
|
|
261
|
-
"film_serie": "yellow",
|
|
262
|
-
"film": "blue",
|
|
263
|
-
"serie": "green",
|
|
264
|
-
"other": "white"
|
|
265
|
-
}
|
|
266
|
-
|
|
267
|
-
# Add numeric arguments for each search module
|
|
268
|
-
for idx, (alias, (_, use_for)) in enumerate(search_functions.items()):
|
|
269
|
-
parser.add_argument(f'--{idx}', action='store_true', help=f'Search using {alias.split("_")[0]} ({use_for})')
|
|
270
|
-
|
|
271
266
|
parser.add_argument('-s', '--search', default=None, help='Search terms')
|
|
272
267
|
|
|
273
268
|
# Parse command-line arguments
|
|
@@ -302,44 +297,41 @@ def main(script_id = 0):
|
|
|
302
297
|
global_search(search_terms)
|
|
303
298
|
return
|
|
304
299
|
|
|
305
|
-
#
|
|
306
|
-
|
|
307
|
-
|
|
308
|
-
|
|
309
|
-
|
|
310
|
-
|
|
311
|
-
|
|
312
|
-
|
|
313
|
-
|
|
314
|
-
|
|
315
|
-
|
|
316
|
-
|
|
317
|
-
|
|
300
|
+
# Create mappings using module indice
|
|
301
|
+
input_to_function = {}
|
|
302
|
+
choice_labels = {}
|
|
303
|
+
|
|
304
|
+
for alias, (func, use_for) in search_functions.items():
|
|
305
|
+
module_name = alias.split("_")[0]
|
|
306
|
+
try:
|
|
307
|
+
mod = importlib.import_module(f'StreamingCommunity.Api.Site.{module_name}')
|
|
308
|
+
site_index = str(getattr(mod, 'indice'))
|
|
309
|
+
input_to_function[site_index] = func
|
|
310
|
+
choice_labels[site_index] = (module_name.capitalize(), use_for.lower())
|
|
311
|
+
except Exception as e:
|
|
312
|
+
console.print(f"[red]Error mapping module {module_name}: {str(e)}")
|
|
318
313
|
|
|
319
|
-
# Display the category legend
|
|
314
|
+
# Display the category legend
|
|
320
315
|
legend_text = " | ".join([f"[{color}]{category.capitalize()}[/{color}]" for category, color in color_map.items()])
|
|
321
316
|
console.print(f"\n[bold green]Category Legend:[/bold green] {legend_text}")
|
|
322
317
|
|
|
323
|
-
# Construct
|
|
318
|
+
# Construct prompt with proper color mapping
|
|
324
319
|
prompt_message = "[green]Insert category [white](" + ", ".join(
|
|
325
|
-
[f"
|
|
320
|
+
[f"[{color_map.get(label[1], 'white')}]{key}: {label[0]}[/{color_map.get(label[1], 'white')}]"
|
|
326
321
|
for key, label in choice_labels.items()]
|
|
327
322
|
) + "[white])"
|
|
328
323
|
|
|
329
324
|
if TELEGRAM_BOT:
|
|
330
|
-
# Display the category legend in a single line
|
|
331
325
|
category_legend_str = "Categorie: \n" + " | ".join([
|
|
332
326
|
f"{category.capitalize()}" for category in color_map.keys()
|
|
333
327
|
])
|
|
334
328
|
|
|
335
|
-
# Build message with aliases
|
|
336
329
|
prompt_message = "Inserisci il sito:\n" + "\n".join(
|
|
337
330
|
[f"{key}: {label[0]}" for key, label in choice_labels.items()]
|
|
338
331
|
)
|
|
339
332
|
|
|
340
333
|
console.print(f"\n{prompt_message}")
|
|
341
334
|
|
|
342
|
-
# Chiedi la scelta all'utente con il bot Telegram
|
|
343
335
|
category = bot.ask(
|
|
344
336
|
"select_provider",
|
|
345
337
|
f"{category_legend_str}\n\n{prompt_message}",
|
|
@@ -351,13 +343,6 @@ def main(script_id = 0):
|
|
|
351
343
|
|
|
352
344
|
# Run the corresponding function based on user input
|
|
353
345
|
if category in input_to_function:
|
|
354
|
-
"""if category == global_search_key:
|
|
355
|
-
# Run global search
|
|
356
|
-
run_function(input_to_function[category], search_terms=search_terms)
|
|
357
|
-
|
|
358
|
-
else:"""
|
|
359
|
-
|
|
360
|
-
# Run normal site-specific search
|
|
361
346
|
run_function(input_to_function[category], search_terms=search_terms)
|
|
362
347
|
|
|
363
348
|
else:
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: StreamingCommunity
|
|
3
|
-
Version: 3.0.
|
|
3
|
+
Version: 3.0.6
|
|
4
4
|
Home-page: https://github.com/Lovi-0/StreamingCommunity
|
|
5
5
|
Author: Lovi-0
|
|
6
6
|
Project-URL: Bug Reports, https://github.com/Lovi-0/StreamingCommunity/issues
|
|
@@ -71,7 +71,7 @@ Dynamic: requires-python
|
|
|
71
71
|
<summary>📦 Installation</summary>
|
|
72
72
|
|
|
73
73
|
- 🔄 [Update Domains](#update-domains)
|
|
74
|
-
- 🌐 [Available Sites](https://arrowar.github.io/
|
|
74
|
+
- 🌐 [Available Sites](https://arrowar.github.io/StreamingCommunity/)
|
|
75
75
|
- 🛠️ [Installation](#installation)
|
|
76
76
|
- 📦 [PyPI Installation](#1-pypi-installation)
|
|
77
77
|
- 🔄 [Automatic Installation](#2-automatic-installation)
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
StreamingCommunity/__init__.py,sha256=Cw-N0VCg7sef1WqdtvVwrhs1zc4LoUhs5C8k7vpM1lQ,207
|
|
2
2
|
StreamingCommunity/global_search.py,sha256=fAl_tRCP8SeQoBifXs7hGX9-7Bd9FlJw69NjsWNUUL0,12396
|
|
3
|
-
StreamingCommunity/run.py,sha256=
|
|
3
|
+
StreamingCommunity/run.py,sha256=QIjF9xyUumIMFNYSUxX5ScD4Ypqag48XGdLDxIemzQE,12379
|
|
4
4
|
StreamingCommunity/Api/Player/ddl.py,sha256=S3UZFonJl3d3xU1fQrosRFXFhwAm8hGVQ8Ff8g-6xSI,2071
|
|
5
5
|
StreamingCommunity/Api/Player/hdplayer.py,sha256=zfPcmtt8f-NfH9yapwwWpVSts-7s47vJ4_XHKJFg0i8,1875
|
|
6
6
|
StreamingCommunity/Api/Player/mediapolisvod.py,sha256=OcdnE1BMSwPZM-nw74GXNJ44E9RYwGnc_kFEA-G8XyY,2294
|
|
@@ -10,39 +10,39 @@ StreamingCommunity/Api/Player/sweetpixel.py,sha256=gJSe1fop5J216CB3u8vstxLPP5Ybc
|
|
|
10
10
|
StreamingCommunity/Api/Player/vixcloud.py,sha256=qI9ppYEMGaJ1B5y693BOMeRQri-F4-94SfRkS-9udfM,6287
|
|
11
11
|
StreamingCommunity/Api/Player/Helper/Vixcloud/js_parser.py,sha256=U-8QlD5kGzIk3-4t4D6QyYmiDe8UBrSuVi1YHRQb7AU,4295
|
|
12
12
|
StreamingCommunity/Api/Player/Helper/Vixcloud/util.py,sha256=QLUgbwQrpuPIVNzdBlAiEJXnd-eCj_JQFckZZEEL55w,5214
|
|
13
|
-
StreamingCommunity/Api/Site/1337xx/__init__.py,sha256=
|
|
13
|
+
StreamingCommunity/Api/Site/1337xx/__init__.py,sha256=wH0vPIZmfUwORdvBeofWlz1Qp_ODRenNVl6EAWlYhD0,2019
|
|
14
14
|
StreamingCommunity/Api/Site/1337xx/site.py,sha256=5XVUMTQn1UqMYgo7tPAw7bGMA-tqhQnfeOGKkgGh9OA,2349
|
|
15
15
|
StreamingCommunity/Api/Site/1337xx/title.py,sha256=8T3cVRb-Mt9QdOtKWVVFHz8iOHqspf7iw28E7bfTV78,1865
|
|
16
|
-
StreamingCommunity/Api/Site/altadefinizione/__init__.py,sha256=
|
|
16
|
+
StreamingCommunity/Api/Site/altadefinizione/__init__.py,sha256=KN2vASobeP68irZI5sHjHzeviNTdkWbFtFEI-JxGAck,4165
|
|
17
17
|
StreamingCommunity/Api/Site/altadefinizione/film.py,sha256=0XeqMrMHnk5nbFkVTFaNZWtlXI8pETl7dsORDtIMbjg,4395
|
|
18
18
|
StreamingCommunity/Api/Site/altadefinizione/series.py,sha256=-rCYx-Fa7aZiYepcIne7OdH1aaUFZZAPX-ToBv6mxFs,8192
|
|
19
19
|
StreamingCommunity/Api/Site/altadefinizione/site.py,sha256=2kUNQ8ebYlX5dkSql-CvEhU01TOTNtuyEMIAD6SC3lg,2865
|
|
20
20
|
StreamingCommunity/Api/Site/altadefinizione/util/ScrapeSerie.py,sha256=bSApjfY9xd5dw0tZ1t7vB6ifAo5vAkeeEwX6IS7yH1o,3756
|
|
21
|
-
StreamingCommunity/Api/Site/animeunity/__init__.py,sha256=
|
|
21
|
+
StreamingCommunity/Api/Site/animeunity/__init__.py,sha256=tTNT7e6ZxRwpaFh7yp8qKZxj8bt37exrRgQe8xmoL4g,4050
|
|
22
22
|
StreamingCommunity/Api/Site/animeunity/film.py,sha256=Vqg6yag2siR-Y3ougBsV8mzdQXChxg6ghz_KVXFQ3pE,998
|
|
23
23
|
StreamingCommunity/Api/Site/animeunity/serie.py,sha256=ib86sLXYsYbrvrFNbzKdhlwMUO3DT7JS5yTTrrSr2jk,5711
|
|
24
24
|
StreamingCommunity/Api/Site/animeunity/site.py,sha256=iRFMUdtHricrc09gmVS1kUOQ-EqH_8zafh8ag4HHiUA,5672
|
|
25
25
|
StreamingCommunity/Api/Site/animeunity/util/ScrapeSerie.py,sha256=Ze6a8D2MRhiOvSw3mTpL3ue2iVc6pA5aqoyUMCTnT7A,3809
|
|
26
|
-
StreamingCommunity/Api/Site/animeworld/__init__.py,sha256=
|
|
26
|
+
StreamingCommunity/Api/Site/animeworld/__init__.py,sha256=izP_05rW-7hzRWNdGxx4rSejwa9heAn_YJhQ7aX-Ygk,2809
|
|
27
27
|
StreamingCommunity/Api/Site/animeworld/film.py,sha256=W9KOS9Wvx3Mlqx5WojR-NgnF9WX8mI79JZPS7UwG-dc,1763
|
|
28
28
|
StreamingCommunity/Api/Site/animeworld/serie.py,sha256=MXyV1fK05jPW4iV9NWrRKW-R4ect-TSN78-2APayniU,3516
|
|
29
29
|
StreamingCommunity/Api/Site/animeworld/site.py,sha256=HBUAYiOa-UPGAO4lyTL1qIqqpDNVhWRHZ-nyLFltl7I,3702
|
|
30
30
|
StreamingCommunity/Api/Site/animeworld/util/ScrapeSerie.py,sha256=CBTCH_wnTXUK_MKwq9a1k_XdvOlUrMpbUmpkD5fXVQ0,3589
|
|
31
|
-
StreamingCommunity/Api/Site/guardaserie/__init__.py,sha256=
|
|
31
|
+
StreamingCommunity/Api/Site/guardaserie/__init__.py,sha256=SBkqcu5zAvYhVYlrk4D5L9cEuYFaraiODlmWspEkOu8,2787
|
|
32
32
|
StreamingCommunity/Api/Site/guardaserie/series.py,sha256=U9rMZCjRqHLFjo468vikxl-2RqO6DCJjebB-G8Y6LDg,6492
|
|
33
33
|
StreamingCommunity/Api/Site/guardaserie/site.py,sha256=6PPp6qykuKZ3Sa2uY7E1xTwh1-8vHINsEpokGnathmw,2326
|
|
34
34
|
StreamingCommunity/Api/Site/guardaserie/util/ScrapeSerie.py,sha256=_aXU-YcUtSwbC2b6QpNnWDZR8m6vp9xzBEx_zdu5tgI,4196
|
|
35
|
-
StreamingCommunity/Api/Site/raiplay/__init__.py,sha256=
|
|
35
|
+
StreamingCommunity/Api/Site/raiplay/__init__.py,sha256=ySKu1kk6FDjgTu66jXZHPz9PJqAuZUxLlizLMdKwFLc,3153
|
|
36
36
|
StreamingCommunity/Api/Site/raiplay/film.py,sha256=wBv5kQXx7-aCKhAZ5LABZ8zUzu_jPGdXOl9OM2p8dpY,1982
|
|
37
37
|
StreamingCommunity/Api/Site/raiplay/series.py,sha256=uQVbeA_g3Z1Ciqeq99gsY2F8mC5DssH3ueGbCW8gd9Q,6161
|
|
38
38
|
StreamingCommunity/Api/Site/raiplay/site.py,sha256=0s1yHhEIA-JJVb2uVe_SZKILx7TIisadZmov7ZhG28s,5160
|
|
39
39
|
StreamingCommunity/Api/Site/raiplay/util/ScrapeSerie.py,sha256=5F6abToCTtsvW8iIACbChZ0fPlymJiCSF_y8FRsDu7M,5002
|
|
40
|
-
StreamingCommunity/Api/Site/streamingcommunity/__init__.py,sha256=
|
|
41
|
-
StreamingCommunity/Api/Site/streamingcommunity/film.py,sha256=
|
|
42
|
-
StreamingCommunity/Api/Site/streamingcommunity/series.py,sha256=
|
|
43
|
-
StreamingCommunity/Api/Site/streamingcommunity/site.py,sha256=
|
|
40
|
+
StreamingCommunity/Api/Site/streamingcommunity/__init__.py,sha256=LOEmBd5-t1JEVxu2Oh_kAporuINR2iBHG6sozTVEbDY,4269
|
|
41
|
+
StreamingCommunity/Api/Site/streamingcommunity/film.py,sha256=r9qDqDrtk3de1J2A-YLvPTzh_Ai-VnAdQ6fgdO-qbMM,2583
|
|
42
|
+
StreamingCommunity/Api/Site/streamingcommunity/series.py,sha256=KSXgfizALSiX1h7FHyOoycU0oBxrSWy_QJ27v7lBa30,8876
|
|
43
|
+
StreamingCommunity/Api/Site/streamingcommunity/site.py,sha256=NE4DepqaXXLUycdFOEfe1-KybtCZhgwMAqczbn-dflE,3792
|
|
44
44
|
StreamingCommunity/Api/Site/streamingcommunity/util/ScrapeSerie.py,sha256=vnqVwDb4sxEXzMcr9B4ZZHFuADwcHSMCa3VMguKIe_U,5555
|
|
45
|
-
StreamingCommunity/Api/Site/streamingwatch/__init__.py,sha256=
|
|
45
|
+
StreamingCommunity/Api/Site/streamingwatch/__init__.py,sha256=ZIS1wZ6mkJsYVEekdXbqX7ZRkhzcoZuovwOwizEwjBA,3566
|
|
46
46
|
StreamingCommunity/Api/Site/streamingwatch/film.py,sha256=QWE4e7Z9c0oTidP76cZPWdOKFU77_RbMXOHOlLRtPFk,1664
|
|
47
47
|
StreamingCommunity/Api/Site/streamingwatch/series.py,sha256=HF4SykhaOathLeCbYrRd1-BdCg30pDRQRCI43FnM2ck,6233
|
|
48
48
|
StreamingCommunity/Api/Site/streamingwatch/site.py,sha256=tFPQTjT9AwZuAh3Z-cn110Xb1snEh4CCNv8Zuc1Vch8,3250
|
|
@@ -74,18 +74,18 @@ StreamingCommunity/Lib/TMBD/tmdb.py,sha256=byg0EFnlmd9JeLvn1N9K3QkB1KEfeMuFa7OVf
|
|
|
74
74
|
StreamingCommunity/TelegramHelp/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
75
75
|
StreamingCommunity/TelegramHelp/telegram_bot.py,sha256=Qe1__aoK4PpDuing8JtWgdHzLee8LuYYyfeLNA7yADU,26307
|
|
76
76
|
StreamingCommunity/Upload/update.py,sha256=Tp7PdU49rk1bga76_DiaghrbE7Fb3p4iq5S4CqZZy2A,3462
|
|
77
|
-
StreamingCommunity/Upload/version.py,sha256=
|
|
77
|
+
StreamingCommunity/Upload/version.py,sha256=C0ehXbEWJcCstD3TYwAoKRQMBN8NVHjVNgCjbF7F1sc,171
|
|
78
78
|
StreamingCommunity/Util/color.py,sha256=NvD0Eni-25oOOkY-szCEoc0lGvzQxyL7xhM0RE4EvUM,458
|
|
79
|
-
StreamingCommunity/Util/config_json.py,sha256=
|
|
79
|
+
StreamingCommunity/Util/config_json.py,sha256=KTbOhFOyXqqgmGZcjQsIuHsh-aUGAMXoSeZgXQ25Vy8,24867
|
|
80
80
|
StreamingCommunity/Util/ffmpeg_installer.py,sha256=yRVIPwbh05tZ-duZmXkH0qasLNxaQCAT_E4cTP79Z3c,14890
|
|
81
81
|
StreamingCommunity/Util/headers.py,sha256=TItkaFMx1GqsVNEIS3Tr0BGU5EHyF-HkZVliHORT3P8,308
|
|
82
82
|
StreamingCommunity/Util/logger.py,sha256=9kGD6GmWj2pM8ADpJc85o7jm8DD0c5Aguqnq-9kmxos,3314
|
|
83
83
|
StreamingCommunity/Util/message.py,sha256=SJaIPLvWeQqsIODVUKw3TgYRmBChovmlbcF6OUxqMI8,1425
|
|
84
84
|
StreamingCommunity/Util/os.py,sha256=Q1t8K7jUR27RGEZghfN1Xmvw8BGzK0npF1cFUf1OloQ,16381
|
|
85
85
|
StreamingCommunity/Util/table.py,sha256=Nw5PlsvfEIOQZWy5VhsU5OK3heuBXGwsqmLl0k8yQzc,9813
|
|
86
|
-
streamingcommunity-3.0.
|
|
87
|
-
streamingcommunity-3.0.
|
|
88
|
-
streamingcommunity-3.0.
|
|
89
|
-
streamingcommunity-3.0.
|
|
90
|
-
streamingcommunity-3.0.
|
|
91
|
-
streamingcommunity-3.0.
|
|
86
|
+
streamingcommunity-3.0.6.dist-info/licenses/LICENSE,sha256=OXLcl0T2SZ8Pmy2_dmlvKuetivmyPd5m1q-Gyd-zaYY,35149
|
|
87
|
+
streamingcommunity-3.0.6.dist-info/METADATA,sha256=HT6QIkZruwuT2gtRe83SuQDlm1StzCJWqq5pYCp9-FE,24230
|
|
88
|
+
streamingcommunity-3.0.6.dist-info/WHEEL,sha256=DnLRTWE75wApRYVsjgc6wsVswC54sMSJhAEd4xhDpBk,91
|
|
89
|
+
streamingcommunity-3.0.6.dist-info/entry_points.txt,sha256=Qph9XYfDC8n4LfDLOSl6gJGlkb9eFb5f-JOr_Wb_5rk,67
|
|
90
|
+
streamingcommunity-3.0.6.dist-info/top_level.txt,sha256=YsOcxKP-WOhWpIWgBlh0coll9XUx7aqmRPT7kmt3fH0,19
|
|
91
|
+
streamingcommunity-3.0.6.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|