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.

@@ -21,9 +21,9 @@ from .title import download_title
21
21
 
22
22
  # Variable
23
23
  indice = 3
24
- _useFor = "film_serie"
24
+ _useFor = "Torrent"
25
25
  _priority = 0
26
- _engineDownload = "tor"
26
+ _engineDownload = "Torrent"
27
27
  _deprecate = False
28
28
 
29
29
  console = Console()
@@ -24,7 +24,7 @@ from .series import download_series
24
24
 
25
25
  # Variable
26
26
  indice = 2
27
- _useFor = "film_serie"
27
+ _useFor = "Film_&_Serie"
28
28
  _priority = 0
29
29
  _engineDownload = "hls"
30
30
  _deprecate = True
@@ -24,7 +24,7 @@ from .serie import download_series
24
24
 
25
25
  # Variable
26
26
  indice = 1
27
- _useFor = "anime"
27
+ _useFor = "Anime"
28
28
  _priority = 0
29
29
  _engineDownload = "mp4"
30
30
  _deprecate = False
@@ -18,8 +18,8 @@ from .film import download_film
18
18
 
19
19
 
20
20
  # Variable
21
- indice = 8
22
- _useFor = "anime"
21
+ indice = 6
22
+ _useFor = "Anime"
23
23
  _priority = 0
24
24
  _engineDownload = "mp4"
25
25
  _deprecate = False
@@ -20,8 +20,8 @@ from .series import download_series
20
20
 
21
21
 
22
22
  # Variable
23
- indice = 5
24
- _useFor = "serie"
23
+ indice = 4
24
+ _useFor = "Serie"
25
25
  _priority = 0
26
26
  _engineDownload = "hls"
27
27
  _deprecate = False
@@ -19,8 +19,8 @@ from .film import download_film
19
19
 
20
20
 
21
21
  # Variable
22
- indice = 8
23
- _useFor = "film_serie"
22
+ indice = 5
23
+ _useFor = "Film_&_Serie"
24
24
  _priority = 1 # NOTE: Site search need the use of tmbd obj
25
25
  _engineDownload = "hls"
26
26
  _deprecate = False
@@ -25,7 +25,7 @@ from .series import download_series
25
25
 
26
26
  # Variable
27
27
  indice = 0
28
- _useFor = "film_serie"
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
- string_to_search = msg.ask(f"\n[purple]Insert a word to search in [green]{site_constant.SITE_NAME}").strip()
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:
@@ -19,8 +19,8 @@ from .series import download_series
19
19
 
20
20
 
21
21
  # Variable
22
- indice = 8
23
- _useFor = "film_serie"
22
+ indice = 7
23
+ _useFor = "Film_&_Serie"
24
24
  _priority = 10 # !!! MOLTO LENTO
25
25
  _engineDownload = "hls"
26
26
  _deprecate = False
@@ -1,5 +1,5 @@
1
1
  __title__ = 'StreamingCommunity'
2
- __version__ = '3.0.5'
2
+ __version__ = '3.0.6'
3
3
  __author__ = 'Arrowar'
4
4
  __description__ = 'A command-line program to download film'
5
5
  __copyright__ = 'Copyright 2024'
@@ -36,8 +36,13 @@ class ConfigManager:
36
36
  base_path = os.path.dirname(sys.executable)
37
37
 
38
38
  else:
39
- # Use the current directory where the script is executed
40
- base_path = os.getcwd()
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
- # Check for numeric arguments
306
- search_functions_list = list(search_functions.items())
307
- for i in range(len(search_functions_list)):
308
- if getattr(args, str(i)):
309
- alias, (func, _) = search_functions_list[i]
310
- run_function(func, search_terms=search_terms)
311
- return
312
-
313
- # Mapping user input to functions
314
- input_to_function = {str(i): func for i, (alias, (func, _)) in enumerate(search_functions.items())}
315
-
316
- # Create dynamic prompt message and choices
317
- choice_labels = {str(i): (alias.split("_")[0].capitalize(), use_for) for i, (alias, (_, use_for)) in enumerate(search_functions.items())}
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 in a single line
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 the prompt message with color-coded site names and aliases
318
+ # Construct prompt with proper color mapping
324
319
  prompt_message = "[green]Insert category [white](" + ", ".join(
325
- [f"{key}: [{color_map.get(label[1], 'white')}]{label[0]}"
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.5
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/StreamingDirectory/)
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=Q7ptcRA32T0VnBLUZ70L8zv1m3WlKCxY5RO8jVsKGmo,13080
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=a5nRyazzGk6v79uUjyE8Ok0sShX0CTpOEhRUUEWs7Dw,2018
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=bkHoV7HmmuqU4qXOi6eHPl-2HI9v6EMvT8exTxElku4,4163
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=hz6xU74tie4VX58mLZoUNZ-aANvcJueEDRFig46bgow,4050
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=9XPowUaXC-baxn1XV6hAuXjMT3gsw6pR8hj-h4g2r_o,2809
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=kYzD16q-KKie6Zxw2rFeiSOQ4FAJzqNC1T8__yLuBUw,2787
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=cAWAt1hyUwiuENKjkgLWOV5T_Nw3dkKKBU7pUFEGiJE,3151
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=yD2q6jfbmwKk10c2sTxR28Gg8H83OES5DvxExseGxvo,3815
41
- StreamingCommunity/Api/Site/streamingcommunity/film.py,sha256=TPt0yB1DKShDIz_1OEVG1IolMoAKBOaWIZ8lQF61dfM,2575
42
- StreamingCommunity/Api/Site/streamingcommunity/series.py,sha256=zDvmxGHvljpyX82CSE88Zf7EIYtuXAxLDkk0qUTBRdA,8860
43
- StreamingCommunity/Api/Site/streamingcommunity/site.py,sha256=Nk0Wnz9hLP4rSbeg9xozk2Qf_0wFB0wKxmZTmJpNKXY,3781
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=SH8Y9oM0_vcQ_-NXJ5GJK_GmHiiXaK6H0SEcrl-KBZ4,3564
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=ZbC1PTHRJgubI-4LjpDd0E4P9_7VgawTegx9gG_SJ_8,171
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=oPSq7H4ajPWBbJM_gIK-u6hW3EF4OpIQNyVDHxVkrOY,24532
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.5.dist-info/licenses/LICENSE,sha256=OXLcl0T2SZ8Pmy2_dmlvKuetivmyPd5m1q-Gyd-zaYY,35149
87
- streamingcommunity-3.0.5.dist-info/METADATA,sha256=Tt9RG5hxrYQtg4PPhSthruh3aJKZmNkdcyNw1pRi5cE,24230
88
- streamingcommunity-3.0.5.dist-info/WHEEL,sha256=DnLRTWE75wApRYVsjgc6wsVswC54sMSJhAEd4xhDpBk,91
89
- streamingcommunity-3.0.5.dist-info/entry_points.txt,sha256=Qph9XYfDC8n4LfDLOSl6gJGlkb9eFb5f-JOr_Wb_5rk,67
90
- streamingcommunity-3.0.5.dist-info/top_level.txt,sha256=YsOcxKP-WOhWpIWgBlh0coll9XUx7aqmRPT7kmt3fH0,19
91
- streamingcommunity-3.0.5.dist-info/RECORD,,
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,,