StreamingCommunity 2.3.0__py3-none-any.whl → 2.4.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.

Files changed (39) hide show
  1. StreamingCommunity/Api/Site/1337xx/site.py +1 -1
  2. StreamingCommunity/Api/Site/{altadefinizione → altadefinizionegratis}/site.py +1 -1
  3. StreamingCommunity/Api/Site/animeunity/__init__.py +1 -1
  4. StreamingCommunity/Api/Site/animeunity/costant.py +3 -3
  5. StreamingCommunity/Api/Site/animeunity/film_serie.py +2 -2
  6. StreamingCommunity/Api/Site/animeunity/site.py +3 -3
  7. StreamingCommunity/Api/Site/cb01new/site.py +1 -1
  8. StreamingCommunity/Api/Site/ddlstreamitaly/site.py +1 -1
  9. StreamingCommunity/Api/Site/guardaserie/site.py +1 -1
  10. StreamingCommunity/Api/Site/ilcorsaronero/site.py +1 -1
  11. StreamingCommunity/Api/Site/ilcorsaronero/util/ilCorsarScraper.py +1 -1
  12. StreamingCommunity/Api/Site/streamingcommunity/series.py +1 -1
  13. StreamingCommunity/Api/Site/streamingcommunity/site.py +7 -4
  14. StreamingCommunity/Api/Template/Util/get_domain.py +160 -94
  15. StreamingCommunity/Api/Template/site.py +1 -1
  16. StreamingCommunity/Lib/Downloader/HLS/downloader.py +11 -1
  17. StreamingCommunity/Lib/Downloader/HLS/segments.py +17 -8
  18. StreamingCommunity/Lib/Downloader/TOR/downloader.py +3 -3
  19. StreamingCommunity/Lib/M3U8/decryptor.py +1 -0
  20. StreamingCommunity/Lib/M3U8/estimator.py +2 -2
  21. StreamingCommunity/Lib/M3U8/url_fixer.py +6 -0
  22. StreamingCommunity/Lib/TMBD/tmdb.py +1 -1
  23. StreamingCommunity/Upload/version.py +1 -1
  24. StreamingCommunity/Util/_jsonConfig.py +43 -19
  25. StreamingCommunity/Util/ffmpeg_installer.py +31 -14
  26. StreamingCommunity/Util/headers.py +15 -2
  27. StreamingCommunity/Util/logger.py +9 -0
  28. StreamingCommunity/Util/os.py +100 -138
  29. StreamingCommunity/Util/table.py +6 -6
  30. StreamingCommunity/run.py +61 -7
  31. {StreamingCommunity-2.3.0.dist-info → StreamingCommunity-2.4.0.dist-info}/METADATA +86 -19
  32. {StreamingCommunity-2.3.0.dist-info → StreamingCommunity-2.4.0.dist-info}/RECORD +39 -39
  33. /StreamingCommunity/Api/Site/{altadefinizione → altadefinizionegratis}/__init__.py +0 -0
  34. /StreamingCommunity/Api/Site/{altadefinizione → altadefinizionegratis}/costant.py +0 -0
  35. /StreamingCommunity/Api/Site/{altadefinizione → altadefinizionegratis}/film.py +0 -0
  36. {StreamingCommunity-2.3.0.dist-info → StreamingCommunity-2.4.0.dist-info}/LICENSE +0 -0
  37. {StreamingCommunity-2.3.0.dist-info → StreamingCommunity-2.4.0.dist-info}/WHEEL +0 -0
  38. {StreamingCommunity-2.3.0.dist-info → StreamingCommunity-2.4.0.dist-info}/entry_points.txt +0 -0
  39. {StreamingCommunity-2.3.0.dist-info → StreamingCommunity-2.4.0.dist-info}/top_level.txt +0 -0
StreamingCommunity/run.py CHANGED
@@ -125,7 +125,6 @@ def initialize():
125
125
 
126
126
 
127
127
  def main():
128
-
129
128
  start = time.time()
130
129
 
131
130
  # Create logger
@@ -136,9 +135,39 @@ def main():
136
135
  search_functions = load_search_functions()
137
136
  logging.info(f"Load module in: {time.time() - start} s")
138
137
 
139
- # Create dynamic argument parser
140
- parser = argparse.ArgumentParser(description='Script to download film and series from the internet.')
141
-
138
+ # Create argument parser
139
+ parser = argparse.ArgumentParser(
140
+ description='Script to download movies and series from the internet. Use these commands to configure the script and control its behavior.'
141
+ )
142
+
143
+ # Add arguments for the main configuration parameters
144
+ parser.add_argument(
145
+ '--add_siteName', type=bool, help='Enable or disable adding the site name to the file name (e.g., true/false).'
146
+ )
147
+ parser.add_argument(
148
+ '--disable_searchDomain', type=bool, help='Enable or disable searching in configured domains (e.g., true/false).'
149
+ )
150
+ parser.add_argument(
151
+ '--not_close', type=bool, help='If set to true, the script will not close the console after execution (e.g., true/false).'
152
+ )
153
+
154
+ # Add arguments for M3U8 configuration
155
+ parser.add_argument(
156
+ '--default_video_worker', type=int, help='Number of workers for video during M3U8 download (default: 12).'
157
+ )
158
+ parser.add_argument(
159
+ '--default_audio_worker', type=int, help='Number of workers for audio during M3U8 download (default: 12).'
160
+ )
161
+
162
+ # Add options for audio and subtitles
163
+ parser.add_argument(
164
+ '--specific_list_audio', type=str, help='Comma-separated list of specific audio languages to download (e.g., ita,eng).'
165
+ )
166
+ parser.add_argument(
167
+ '--specific_list_subtitles', type=str, help='Comma-separated list of specific subtitle languages to download (e.g., eng,spa).'
168
+ )
169
+
170
+ # Add arguments for search functions
142
171
  color_map = {
143
172
  "anime": "red",
144
173
  "film_serie": "yellow",
@@ -153,10 +182,35 @@ def main():
153
182
  long_option = alias
154
183
  parser.add_argument(f'-{short_option}', f'--{long_option}', action='store_true', help=f'Search for {alias.split("_")[0]} on streaming platforms.')
155
184
 
156
- # Parse command line arguments
185
+ # Parse command-line arguments
157
186
  args = parser.parse_args()
158
187
 
159
- # Mapping command-line arguments to functions
188
+ # Map command-line arguments to the config values
189
+ config_updates = {}
190
+
191
+ if args.add_siteName is not None:
192
+ config_updates['DEFAULT.add_siteName'] = args.add_siteName
193
+ if args.disable_searchDomain is not None:
194
+ config_updates['DEFAULT.disable_searchDomain'] = args.disable_searchDomain
195
+ if args.not_close is not None:
196
+ config_updates['DEFAULT.not_close'] = args.not_close
197
+ if args.default_video_worker is not None:
198
+ config_updates['M3U8_DOWNLOAD.default_video_worker'] = args.default_video_worker
199
+ if args.default_audio_worker is not None:
200
+ config_updates['M3U8_DOWNLOAD.default_audio_worker'] = args.default_audio_worker
201
+ if args.specific_list_audio is not None:
202
+ config_updates['M3U8_DOWNLOAD.specific_list_audio'] = args.specific_list_audio.split(',')
203
+ if args.specific_list_subtitles is not None:
204
+ config_updates['M3U8_DOWNLOAD.specific_list_subtitles'] = args.specific_list_subtitles.split(',')
205
+
206
+ # Apply the updates to the config file
207
+ for key, value in config_updates.items():
208
+ section, option = key.split('.')
209
+ config_manager.set_key(section, option, value)
210
+
211
+ config_manager.write_config()
212
+
213
+ # Map command-line arguments to functions
160
214
  arg_to_function = {alias: func for alias, (func, _) in search_functions.items()}
161
215
 
162
216
  # Check which argument is provided and run the corresponding function
@@ -188,4 +242,4 @@ def main():
188
242
  run_function(input_to_function[category])
189
243
  else:
190
244
  console.print("[red]Invalid category.")
191
- sys.exit(0)
245
+ sys.exit(0)
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: StreamingCommunity
3
- Version: 2.3.0
3
+ Version: 2.4.0
4
4
  Summary: UNKNOWN
5
5
  Home-page: https://github.com/Lovi-0/StreamingCommunity
6
6
  Author: Lovi-0
@@ -21,7 +21,7 @@ Requires-Dist: unidecode
21
21
  Requires-Dist: jsbeautifier
22
22
  Requires-Dist: pathvalidate
23
23
  Requires-Dist: pycryptodomex
24
- Requires-Dist: fake-useragent==1.1.3
24
+ Requires-Dist: fake-useragent
25
25
  Requires-Dist: qbittorrent-api
26
26
  Requires-Dist: python-qbittorrent
27
27
  Requires-Dist: googlesearch-python
@@ -37,9 +37,6 @@ Requires-Dist: googlesearch-python
37
37
  <a href="https://www.paypal.com/donate/?hosted_button_id=UXTWMT8P6HE2C">
38
38
  <img src="https://img.shields.io/badge/_-Donate-red.svg?logo=githubsponsors&labelColor=555555&style=for-the-badge" alt="Donate"/>
39
39
  </a>
40
- <a href="https://github.com/Lovi-0/StreamingCommunity/blob/main/LICENSE">
41
- <img src="https://img.shields.io/badge/License-GPL_3.0-blue.svg?style=for-the-badge" alt="License"/>
42
- </a>
43
40
  <a href="https://github.com/Lovi-0/StreamingCommunity/commits">
44
41
  <img src="https://img.shields.io/github/commit-activity/m/Lovi-0/StreamingCommunity?label=commits&style=for-the-badge" alt="Commits"/>
45
42
  </a>
@@ -49,17 +46,11 @@ Requires-Dist: googlesearch-python
49
46
  </p>
50
47
 
51
48
  <p align="center">
52
- <a href="https://pypi.org/project/streamingcommunity">
53
- <img src="https://img.shields.io/pypi/dm/streamingcommunity?style=for-the-badge" alt="PyPI Downloads"/>
54
- </a>
55
- <a href="https://github.com/Lovi-0/StreamingCommunity/network/members">
56
- <img src="https://img.shields.io/github/forks/Lovi-0/StreamingCommunity?style=for-the-badge" alt="Forks"/>
57
- </a>
58
- <a href="https://github.com/Lovi-0/StreamingCommunity">
59
- <img src="https://img.shields.io/github/languages/code-size/Lovi-0/StreamingCommunity?style=for-the-badge" alt="Code Size"/>
49
+ <a href="https://github.com/Lovi-0/StreamingCommunity/blob/main/LICENSE">
50
+ <img src="https://img.shields.io/badge/License-GPL_3.0-blue.svg?style=for-the-badge" alt="License"/>
60
51
  </a>
61
- <a href="https://github.com/Lovi-0/StreamingCommunity">
62
- <img src="https://img.shields.io/github/repo-size/Lovi-0/StreamingCommunity?style=for-the-badge" alt="Repo Size"/>
52
+ <a href="https://pypi.org/project/streamingcommunity">
53
+ <img src="https://img.shields.io/pypi/dw/streamingcommunity?style=for-the-badge" alt="PyPI Downloads"/>
63
54
  </a>
64
55
  </p>
65
56
 
@@ -69,6 +60,7 @@ Requires-Dist: googlesearch-python
69
60
  - 🛠️ [Installation](#installation)
70
61
  - 📦 [PyPI Installation](#1-pypi-installation)
71
62
  - 🔄 [Automatic Installation](#2-automatic-installation)
63
+ - 🔧 [Binary Location](#binary-location)
72
64
  - 📝 [Manual Installation](#3-manual-installation)
73
65
  - 💻 [Win 7](https://github.com/Ghost6446/StreamingCommunity_api/wiki/Installation#win-7)
74
66
  - 📱 [Termux](https://github.com/Ghost6446/StreamingCommunity_api/wiki/Termux)
@@ -127,7 +119,7 @@ Run the script:
127
119
  python run_streaming.py
128
120
  ```
129
121
 
130
- ## Updating via PyPI
122
+ ### Updating via PyPI
131
123
 
132
124
  ```bash
133
125
  pip install --upgrade StreamingCommunity
@@ -182,6 +174,69 @@ source .venv/bin/activate && python test_run.py && deactivate
182
174
  ./test_run.py
183
175
  ```
184
176
 
177
+ ## Binary Location
178
+
179
+ ### Default Locations
180
+ - **Windows**: `C:\binary`
181
+ - **MacOS**: `~/Applications/binary`
182
+ - **Linux**: `~/.local/bin/binary`
183
+
184
+ You can customize these locations by following these steps for your operating system:
185
+
186
+ #### Windows
187
+ 1. Move the binary folder from `C:\binary` to your desired location
188
+ 2. Add the new path to Windows environment variables:
189
+ - Open Start menu and search for "Environment Variables"
190
+ - Click "Edit the system environment variables"
191
+ - Click "Environment Variables" button
192
+ - Under "System Variables", find and select "Path"
193
+ - Click "Edit"
194
+ - Add the new binary folder path
195
+ - Click "OK" to save changes
196
+
197
+ For detailed Windows PATH instructions, see the [Windows PATH guide](https://www.eukhost.com/kb/how-to-add-to-the-path-on-windows-10-and-windows-11/).
198
+
199
+ #### MacOS
200
+ 1. Move the binary folder from `~/Applications/binary` to your desired location
201
+ 2. Add the new path to your shell's configuration file:
202
+ ```bash
203
+ # For bash (edit ~/.bash_profile)
204
+ export PATH="/your/custom/path:$PATH"
205
+
206
+ # For zsh (edit ~/.zshrc)
207
+ export PATH="/your/custom/path:$PATH"
208
+ ```
209
+ 3. Reload your shell configuration:
210
+ ```bash
211
+ # For bash
212
+ source ~/.bash_profile
213
+
214
+ # For zsh
215
+ source ~/.zshrc
216
+ ```
217
+
218
+ #### Linux
219
+ 1. Move the binary folder from `~/.local/bin/binary` to your desired location
220
+ 2. Add the new path to your shell's configuration file:
221
+ ```bash
222
+ # For bash (edit ~/.bashrc)
223
+ export PATH="/your/custom/path:$PATH"
224
+
225
+ # For zsh (edit ~/.zshrc)
226
+ export PATH="/your/custom/path:$PATH"
227
+ ```
228
+ 3. Apply the changes:
229
+ ```bash
230
+ source ~/.bashrc # for bash
231
+ # or
232
+ source ~/.zshrc # for zsh
233
+ ```
234
+
235
+ > [!IMPORTANT]
236
+ > After moving the binary folder, ensure that all executables (ffmpeg, ffprobe, ffplay) are present in the new location and have the correct permissions:
237
+ > - Windows: `.exe` extensions required
238
+ > - MacOS/Linux: Ensure files have execute permissions (`chmod +x filename`)
239
+
185
240
  ## 3. Manual Installation
186
241
 
187
242
  ### Requirements 📋
@@ -346,6 +401,10 @@ forced-ita hin - Hindi pol - Polish tur - Turkish
346
401
  ind - Indonesian vie - Vietnamese
347
402
  ```
348
403
 
404
+ > [!NOTE]
405
+ > When using subtitles on Windows, please note that the default Windows Media Player may not display them correctly. We recommend using VLC Media Player for proper subtitle display and optimal playback experience.
406
+
407
+
349
408
  > [!IMPORTANT]
350
409
  > Language code availability may vary by site. Some platforms might:
351
410
  >
@@ -363,6 +422,14 @@ forced-ita hin - Hindi pol - Polish tur - Turkish
363
422
  > "specific_list_subtitles": ["ita", "eng", "spa"]
364
423
  > ```
365
424
 
425
+ For the best viewing experience, we recommend using VLC Media Player:
426
+ - Supports all video formats and codecs
427
+ - Properly displays embedded subtitles
428
+ - Available for all major operating systems
429
+ - Free and open-source
430
+
431
+ You can download VLC Media Player from the [official website](https://www.videolan.org/vlc/).
432
+
366
433
  ## M3U8_PARSER Settings
367
434
 
368
435
  ```json
@@ -429,14 +496,14 @@ The `run-container` command mounts also the `config.json` file, so any change to
429
496
  | Website | Status |
430
497
  |:-------------------|:------:|
431
498
  | [1337xx](https://1337xx.to/) | ✅ |
432
- | [Altadefinizione](https://altadefinizione.prof/) | ✅ |
499
+ | [AltadefinizioneGratis](https://altadefinizionegratis.info/) | ✅ |
433
500
  | [AnimeUnity](https://animeunity.so/) | ✅ |
434
501
  | [Ilcorsaronero](https://ilcorsaronero.link/) | ✅ |
435
- | [CB01New](https://cb01new.pics/) | ✅ |
502
+ | [CB01New](https://cb01new.video/) | ✅ |
436
503
  | [DDLStreamItaly](https://ddlstreamitaly.co/) | ✅ |
437
504
  | [GuardaSerie](https://guardaserie.academy/) | ✅ |
438
505
  | [MostraGuarda](https://mostraguarda.stream/) | ✅ |
439
- | [StreamingCommunity](https://streamingcommunity.prof/) | ✅ |
506
+ | [StreamingCommunity](https://streamingcommunity.ooo/) | ✅ |
440
507
 
441
508
 
442
509
  # Tutorials
@@ -1,5 +1,5 @@
1
1
  StreamingCommunity/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
2
- StreamingCommunity/run.py,sha256=bi57FYyAS49NCXObiJpwunGbnpRzXG0EpLjBOq86hjQ,6418
2
+ StreamingCommunity/run.py,sha256=cWm5QFKMQU7zVuNJzlL7Fv2fT1Apl9JVHm2ZBDiKYh4,9011
3
3
  StreamingCommunity/Api/Player/ddl.py,sha256=cRPb3sfX5o_rkJ33qe7rDGmlgRgYMr0LTmdZLCsbO90,2409
4
4
  StreamingCommunity/Api/Player/maxstream.py,sha256=0NwzyTFrIWC21xZytmg4Pl_ShAPfqIOXNU6XpEy9KuY,5304
5
5
  StreamingCommunity/Api/Player/supervideo.py,sha256=gNoAo_LVZWycfIzmK28erWRTXwNDV6FKJSLJ2Lrw_Ok,6118
@@ -8,85 +8,85 @@ StreamingCommunity/Api/Player/Helper/Vixcloud/js_parser.py,sha256=HniFPpcF1qtMAT
8
8
  StreamingCommunity/Api/Player/Helper/Vixcloud/util.py,sha256=TbDbL09oxrA_-oH-cuKPTmnT51rsP1McVHKO0jgxXC0,4863
9
9
  StreamingCommunity/Api/Site/1337xx/__init__.py,sha256=gZFNPJahddRTELSdO4_-yt50wl0cZRDuxdRqIhYzSiQ,1219
10
10
  StreamingCommunity/Api/Site/1337xx/costant.py,sha256=3jDI0qlysmtfiZIAciNA-pBLSza5GBYKZlONyMpb-FI,451
11
- StreamingCommunity/Api/Site/1337xx/site.py,sha256=8daaXKoOGjfw_XjrSuzmdKfX6Q4CdGO97ghlf6TW8Ls,2860
11
+ StreamingCommunity/Api/Site/1337xx/site.py,sha256=L5wvdb6S_FpEDBzUNMYPMdmSgHkRRTjGh4ULo6bAQeU,2873
12
12
  StreamingCommunity/Api/Site/1337xx/title.py,sha256=pQAn4Fe3HQYMvNOxG9YPpnBQQpca2GT0_akEaodFtUk,1958
13
- StreamingCommunity/Api/Site/altadefinizione/__init__.py,sha256=sTUnun_Ew5YrxmpYZvwHV_qj-NIYTOpJOujwN0O7iU8,1210
14
- StreamingCommunity/Api/Site/altadefinizione/costant.py,sha256=c6CR_b8MTlVTHOmYNJ6AUBv_jQCOGB2BDxKGAGAxxmg,777
15
- StreamingCommunity/Api/Site/altadefinizione/film.py,sha256=96oNkwUZBoQRN2mkwrlgRJ71wrEt4JBgyCe9lcKkNUs,2231
16
- StreamingCommunity/Api/Site/altadefinizione/site.py,sha256=OioyZY5dIOfNbBSr86iy-dRhplrFvWb7GFEdklDh8sw,2959
17
- StreamingCommunity/Api/Site/animeunity/__init__.py,sha256=rcG40DnZPn3vvniohYo5SgyGNTZY24XXfV5bDAEpTWE,1300
18
- StreamingCommunity/Api/Site/animeunity/costant.py,sha256=c6CR_b8MTlVTHOmYNJ6AUBv_jQCOGB2BDxKGAGAxxmg,777
19
- StreamingCommunity/Api/Site/animeunity/film_serie.py,sha256=uINN13iCPy5BAurSszRKogRQY2rDBUbzJWDdqFBmRHY,4129
20
- StreamingCommunity/Api/Site/animeunity/site.py,sha256=-eI0uf0HWjZCnxeEcLNbvqVVNRBNNadfmh-zJScGONU,5546
13
+ StreamingCommunity/Api/Site/altadefinizionegratis/__init__.py,sha256=sTUnun_Ew5YrxmpYZvwHV_qj-NIYTOpJOujwN0O7iU8,1210
14
+ StreamingCommunity/Api/Site/altadefinizionegratis/costant.py,sha256=c6CR_b8MTlVTHOmYNJ6AUBv_jQCOGB2BDxKGAGAxxmg,777
15
+ StreamingCommunity/Api/Site/altadefinizionegratis/film.py,sha256=96oNkwUZBoQRN2mkwrlgRJ71wrEt4JBgyCe9lcKkNUs,2231
16
+ StreamingCommunity/Api/Site/altadefinizionegratis/site.py,sha256=Male8DG7nfF-i_MKt2vKcwNYBS2sRUIkN9FwwRitxRE,2972
17
+ StreamingCommunity/Api/Site/animeunity/__init__.py,sha256=oTOYbtiwwNUiopzX4ZJCODQTZ528GAbLLaoNqsQOZmw,1288
18
+ StreamingCommunity/Api/Site/animeunity/costant.py,sha256=vH-74s9DLqMVTXwXsQe8_cTxWwpAkSv3O-xoiupEfSI,764
19
+ StreamingCommunity/Api/Site/animeunity/film_serie.py,sha256=662wBBBGeJkTICeSc4f1g5nPzINKvzCseWgaYnGaceg,4127
20
+ StreamingCommunity/Api/Site/animeunity/site.py,sha256=-uuTOt1Kg79Mu893OmSujaqDjIOiYXQA_5S0BtCXqsc,5519
21
21
  StreamingCommunity/Api/Site/animeunity/util/ScrapeSerie.py,sha256=Gv0xvTJMHru3YExAqQ-ZFfwIxs_227mB3d0JpsI3oAY,2983
22
22
  StreamingCommunity/Api/Site/cb01new/__init__.py,sha256=ClPCBPR6dCdVIZvXknUNum86AOkxCycIKzNl4ZJGVPk,1230
23
23
  StreamingCommunity/Api/Site/cb01new/costant.py,sha256=leKXcU72IMN-zDmfiz4fgncjGnxj1AGqmnv0FYJsY0k,779
24
24
  StreamingCommunity/Api/Site/cb01new/film.py,sha256=OmSLiItgIR4iie3eLhwLLvJXRwYtSKB2H3TqpfqlCN0,2246
25
- StreamingCommunity/Api/Site/cb01new/site.py,sha256=eqsRw89gkude1d0yARV15194_BORPEPLG7meGCriG_E,2434
25
+ StreamingCommunity/Api/Site/cb01new/site.py,sha256=eGPp0enGb-c2sBVVaRuAC6ykOPoPdiae-iFMm4BRScU,2447
26
26
  StreamingCommunity/Api/Site/ddlstreamitaly/__init__.py,sha256=3vjwaEXlnrDAProWxyWpkN2Zg528XnpNwUrOvyTHPTY,1374
27
27
  StreamingCommunity/Api/Site/ddlstreamitaly/costant.py,sha256=6_ezKVvuGInDC7MxSxmQH3i-MGNu96cKy4DGb5OqT5o,841
28
28
  StreamingCommunity/Api/Site/ddlstreamitaly/series.py,sha256=zcHEU7oBL8MVBUPxLOONX6D9d9Si9OzZa1aI3RPL8Ao,4245
29
- StreamingCommunity/Api/Site/ddlstreamitaly/site.py,sha256=iqkmDapP0o2069jxjV87KTWGgVRtwN60fFczw9c2nXk,3089
29
+ StreamingCommunity/Api/Site/ddlstreamitaly/site.py,sha256=ffxgUxexE-EI5kyzLqS8FQVMuH4ro9athRtIRAxMCSM,3102
30
30
  StreamingCommunity/Api/Site/ddlstreamitaly/util/ScrapeSerie.py,sha256=f7uA3VTANmWnLvYhjxMjzKRxU6FTgH2H8MSntWgc8jw,2652
31
31
  StreamingCommunity/Api/Site/guardaserie/__init__.py,sha256=1NUo7z1OqDQ-DmXj6Db303SeC-0OQ_ElKcxo73JbpOM,1221
32
32
  StreamingCommunity/Api/Site/guardaserie/costant.py,sha256=xzfz7DFH872iThs09z8jV-r8y-QkQLC7tmuMvF9YTwk,779
33
33
  StreamingCommunity/Api/Site/guardaserie/series.py,sha256=g3sIFdeTFwNr3wyNJ4NgiS9FSSgLUpjz9QK48sXG0ck,6846
34
- StreamingCommunity/Api/Site/guardaserie/site.py,sha256=79IC74AEMkXPpFVxbYdnezZ-VEZgSMoIyuFEQYgLop4,2866
34
+ StreamingCommunity/Api/Site/guardaserie/site.py,sha256=phfXe4UyGv-_ebtX-hXL7YuZJ_tzfy4MiKTBrA9Ggs4,2879
35
35
  StreamingCommunity/Api/Site/guardaserie/util/ScrapeSerie.py,sha256=Os4lKYQB8PT1b-jzozRIpdovGh4gUQuXrPEHyLriYio,3399
36
36
  StreamingCommunity/Api/Site/ilcorsaronero/__init__.py,sha256=JBvYZqLlk5nckjYRApX5AZ58OfxF-yTTu6SE54F49Ms,1248
37
37
  StreamingCommunity/Api/Site/ilcorsaronero/costant.py,sha256=2hSZ5m2CB23IV3HsSClx1yzHhjQsxcjV3gicuWfsQyE,777
38
- StreamingCommunity/Api/Site/ilcorsaronero/site.py,sha256=JUacRMEhrdPYTs9mwdneAzonLroPgQTbrazgW6Vkux8,2227
38
+ StreamingCommunity/Api/Site/ilcorsaronero/site.py,sha256=_LD28s8zW8FfIq6p8Dg4qaZ0ogDLq-mQ59P3X3hGH2s,2240
39
39
  StreamingCommunity/Api/Site/ilcorsaronero/title.py,sha256=BGmBS4zNldfxtNBhPAgDtId0QPcLnEyHjTBstt0lJqU,1354
40
- StreamingCommunity/Api/Site/ilcorsaronero/util/ilCorsarScraper.py,sha256=PYV_OOU8KyO9ysVchfuFNfikCGmyE-NHknhGB64XOsw,5258
40
+ StreamingCommunity/Api/Site/ilcorsaronero/util/ilCorsarScraper.py,sha256=1005qQmwCyaQXqn0_d2IYSG-nRe_B3k8yUijfVLlMnQ,5263
41
41
  StreamingCommunity/Api/Site/mostraguarda/__init__.py,sha256=0HRPWgz4pFpVR6_mUQy8SLGcUgQdseVrH-QqnfKlxW4,1177
42
42
  StreamingCommunity/Api/Site/mostraguarda/costant.py,sha256=c6CR_b8MTlVTHOmYNJ6AUBv_jQCOGB2BDxKGAGAxxmg,777
43
43
  StreamingCommunity/Api/Site/mostraguarda/film.py,sha256=KzlA2auJVHSA-r4YTtMOzui1vBTKftwQnm4RJmbwkHs,3031
44
44
  StreamingCommunity/Api/Site/streamingcommunity/__init__.py,sha256=TF8q_xHPXmwEkhDj3MS8xOVHgRQRmK-WNo0pQHChV74,1487
45
45
  StreamingCommunity/Api/Site/streamingcommunity/costant.py,sha256=c6CR_b8MTlVTHOmYNJ6AUBv_jQCOGB2BDxKGAGAxxmg,777
46
46
  StreamingCommunity/Api/Site/streamingcommunity/film.py,sha256=phNKLUnMSwAMhu8-1nk1LPY8AnEcCUUZW03ofa2Q3O8,2317
47
- StreamingCommunity/Api/Site/streamingcommunity/series.py,sha256=CxYYPF_PPUJ-clkD5ZiHew-a_luIS2K465u1Ki6j6uM,7371
48
- StreamingCommunity/Api/Site/streamingcommunity/site.py,sha256=m6sKQUhGdkMOgHpW6OU6JKJDM6EW3fAP3oRZ23Zm4GE,3990
47
+ StreamingCommunity/Api/Site/streamingcommunity/series.py,sha256=6JSePuk71-F_soks1g058mb4PYjID4HAE0Y_8ZhOyuY,7397
48
+ StreamingCommunity/Api/Site/streamingcommunity/site.py,sha256=dA0f4FMMTMFv3zeDxjpgO2pMvX3Nz4oUlTOKmgsAay8,4127
49
49
  StreamingCommunity/Api/Site/streamingcommunity/util/ScrapeSerie.py,sha256=SQYgKFKRfyzjtJdXWfUg94JMMWddPESqbEY1Ga1Uii8,4331
50
50
  StreamingCommunity/Api/Template/__init__.py,sha256=lhVpudlILM1L9iBZ_7vfYwgKyrdR1OWeLvk364-fJpU,48
51
- StreamingCommunity/Api/Template/site.py,sha256=Xk_XpZ97xDUhGeiwo-52b7h1kOVsRQVdCqoXcMs2zHk,2995
51
+ StreamingCommunity/Api/Template/site.py,sha256=FR-tCGnrGtrL5CNOL2MvUyJVn0lx-d1-KQujnY2Gy6A,3021
52
52
  StreamingCommunity/Api/Template/Class/SearchType.py,sha256=lJ054oi7baFU8HoXzq_mO4foRz0wtF9GIGOOFS8VpmY,2632
53
53
  StreamingCommunity/Api/Template/Util/__init__.py,sha256=e-206LT2iAnL9I21fR_1FRm8F3WsbBRrUmraPP2Xfzo,202
54
- StreamingCommunity/Api/Template/Util/get_domain.py,sha256=enAmgeTljxWv6aGwmO6fjz7_1mNig8upWWTRSoiDAoA,5428
54
+ StreamingCommunity/Api/Template/Util/get_domain.py,sha256=KhQNE05OfhpGKNSHY3KCGfgFMHVJw8f3UR-craV103k,7320
55
55
  StreamingCommunity/Api/Template/Util/manage_ep.py,sha256=TkeRH8120Bsu7gTOJb2GRdZI6LZmgYCD60tQVruwkvI,6697
56
56
  StreamingCommunity/Api/Template/Util/recall_search.py,sha256=N-h00R2S8rQud3mNtUmaakK_8d9e5YxgHv4QwcJ4aZw,1184
57
57
  StreamingCommunity/Lib/Downloader/__init__.py,sha256=vAn-rpmlSmojvz4Quv47A5HLq4yBR_7noy4r6hqk0OQ,144
58
- StreamingCommunity/Lib/Downloader/HLS/downloader.py,sha256=Qxb6qt69Zo6nIl92qduoe8Pi7cT3y-sPCi7t6jwAtq0,39960
58
+ StreamingCommunity/Lib/Downloader/HLS/downloader.py,sha256=eHnsP4kY02ZNa8G77QKHBMC06nbjtX-prucPHKssW8A,40141
59
59
  StreamingCommunity/Lib/Downloader/HLS/proxyes.py,sha256=Mrs5Mr6ATv-6BUS7CLcZjw3JNH7g_XOz7boeB1oQAQ8,3385
60
- StreamingCommunity/Lib/Downloader/HLS/segments.py,sha256=0iWTmJsD6aZUkzZGN6pONZABpIcpbK0WsLklo6ZhOME,22597
60
+ StreamingCommunity/Lib/Downloader/HLS/segments.py,sha256=31U-l8zNAyZdT7bOL6P8qrZwtIKcGbB0nE7SHot_b_8,23162
61
61
  StreamingCommunity/Lib/Downloader/MP4/downloader.py,sha256=gWhNHhL5f3bXAGUaOlH2wCwda0sKi-R9s6PxOIp7LrU,6028
62
- StreamingCommunity/Lib/Downloader/TOR/downloader.py,sha256=67RDi3Er5xpoHFIn11sGcCB1xgIEGE-Nhn9wqDfmGak,11617
62
+ StreamingCommunity/Lib/Downloader/TOR/downloader.py,sha256=Jo7qdb4C51v5zbwfRpKPsG5x38oLMWer6l1sK12TXoM,11525
63
63
  StreamingCommunity/Lib/FFmpeg/__init__.py,sha256=0KehwaTYL72PJaJJo2fzveGgc9F2-abIk7w6gXsfX1w,135
64
64
  StreamingCommunity/Lib/FFmpeg/capture.py,sha256=YptVE5Ff6-hJXmsARxtXclWXmVl16y6QLR-VMybBaEg,5601
65
65
  StreamingCommunity/Lib/FFmpeg/command.py,sha256=EfI3Q4tQkV7XmKWx0eBDnuIhn0O_lfPiAiI5IET3nLk,10289
66
66
  StreamingCommunity/Lib/FFmpeg/util.py,sha256=QTtBaFdrUa5CFSPq1ycr3_zw81A7zVRmQN7FoxUwuR8,8341
67
67
  StreamingCommunity/Lib/M3U8/__init__.py,sha256=sD2VIslF43OrudA1r-9xkSfUvSblr1LOZpaIM89F6M4,175
68
- StreamingCommunity/Lib/M3U8/decryptor.py,sha256=q6GVlM9UtiR_Yop7-MDUTShAESc66LX2k2Eqvj3vge8,6473
69
- StreamingCommunity/Lib/M3U8/estimator.py,sha256=_kBF6fbqtOJOSYZB5AIS969CpcUCyf2Q1kGHMNcR8rs,9608
68
+ StreamingCommunity/Lib/M3U8/decryptor.py,sha256=y2YLw_z5h2UG4-AAHSRQVgNnWra9pSPYW1bB3rrGOjs,6529
69
+ StreamingCommunity/Lib/M3U8/estimator.py,sha256=fG34nlnz7ida0-EeZgnY2-nF2MX4yiStarp84JEblAA,9610
70
70
  StreamingCommunity/Lib/M3U8/parser.py,sha256=xmyCU4AYGIOUheTZ4OBPmQl_R4dJ3Y72i9UUa6_aErA,23553
71
- StreamingCommunity/Lib/M3U8/url_fixer.py,sha256=6NVKhc8R5CqarDM5TLWy6QU05qXPouW31gyilQszwbI,1675
71
+ StreamingCommunity/Lib/M3U8/url_fixer.py,sha256=PWHdooOpXR2XNzsgniuyYL-w2YApO75s8Y1kEu_M88w,1846
72
72
  StreamingCommunity/Lib/TMBD/__init__.py,sha256=b3yUqfeBFpnKH-MScrZ3r90cpXc2ufCC-El3whK1zk8,55
73
73
  StreamingCommunity/Lib/TMBD/obj_tmbd.py,sha256=HEL3jAqUYtVgX7GCaw60EAD3JGvEJLOQXfD6lRYEjxA,1968
74
- StreamingCommunity/Lib/TMBD/tmdb.py,sha256=3UO_0uzi8xtrokX8Y_vO8vx_V8XHSkOVCqtgT-289GM,12000
74
+ StreamingCommunity/Lib/TMBD/tmdb.py,sha256=bHaRO073fmVMALY9S7N6_kiG3fhapKR_5fY6PaCBMXk,12026
75
75
  StreamingCommunity/Upload/update.py,sha256=ly2E4gf5RCkhlHvDyVNP57jkGGH41V-UHLYwBwgypP4,2324
76
- StreamingCommunity/Upload/version.py,sha256=8Y-pR5TMA_uyNSidmwJThY5WAo6Xl8m8OUTX2mJeHu4,175
77
- StreamingCommunity/Util/_jsonConfig.py,sha256=CLvk6HWxUklZztoy55SzEOvdsbNo-pFcVQVanwixXCc,7001
76
+ StreamingCommunity/Upload/version.py,sha256=lv62mPjvxVtG4itheprFzsI5o4X92Ric5uOxEU-oA28,175
77
+ StreamingCommunity/Util/_jsonConfig.py,sha256=i-AIu66BJ1neExPumcasvfC7QbjWpWGr9071r9-19k0,7843
78
78
  StreamingCommunity/Util/call_stack.py,sha256=zuYbO8dV8bCa7fCdtaKQYuheA5K7BkTm3Oj8JA6GCpM,1417
79
79
  StreamingCommunity/Util/color.py,sha256=1iQUf5xDp5XKKbXl9MvKEXJvv44Zf0P4J2Nu5ATIId8,479
80
80
  StreamingCommunity/Util/console.py,sha256=bXP_iibXMpRIJ_zs03xFmSbkvMP3SguIuEUJZovoOqw,230
81
- StreamingCommunity/Util/ffmpeg_installer.py,sha256=xDIT4TPQK6RauF869WBZjsuMfeCYX60TpIjLbqK-06M,14049
82
- StreamingCommunity/Util/headers.py,sha256=r5hK8HVF-y6dQzCQpDnpbDGP02n29OYlzgaZAorcmG0,4565
83
- StreamingCommunity/Util/logger.py,sha256=5XmFquGYt4FjvKNyYKa21mLLKARmzGWk-mBo05ezlHQ,1914
81
+ StreamingCommunity/Util/ffmpeg_installer.py,sha256=LDNBugf5nGuNHB5_Al9BFPiFDc9vUrUodNeAilOJwmA,14718
82
+ StreamingCommunity/Util/headers.py,sha256=igBcdy99BlQbMoBprfB4FfCX9DBcgci6Mlm_pe3Fv6o,4886
83
+ StreamingCommunity/Util/logger.py,sha256=J-UTRHT4-jfmdEWozsTRD0nfvLHVcXsNO59WGnU7cEg,2173
84
84
  StreamingCommunity/Util/message.py,sha256=pgUf50z4kSJjKHBlBKn5bd26xlAAEvlLiMs9dvcvJ_s,3675
85
- StreamingCommunity/Util/os.py,sha256=K8bgAxFq8pPFaMQPfeTSQ_E9aEERN7pwWB_XEXBC84Q,19429
86
- StreamingCommunity/Util/table.py,sha256=lKCgvrtfODuQY5dFJqlNUYL2aFzfij-efS5oGv84E44,8508
87
- StreamingCommunity-2.3.0.dist-info/LICENSE,sha256=IwGE9guuL-ryRPEKi6wFPI_zOhg7zDZbTYuHbSt_SAk,35823
88
- StreamingCommunity-2.3.0.dist-info/METADATA,sha256=wYP_SSP7_5GhenIPUZqN2GSn7bs0E6ZHaE4OfD4GQpc,14719
89
- StreamingCommunity-2.3.0.dist-info/WHEEL,sha256=tZoeGjtWxWRfdplE7E3d45VPlLNQnvbKiYnx7gwAy8A,92
90
- StreamingCommunity-2.3.0.dist-info/entry_points.txt,sha256=-iQU6qfeHFwauAg4iZhifWhNZAkiV-x3XuEauo_EjUc,68
91
- StreamingCommunity-2.3.0.dist-info/top_level.txt,sha256=YsOcxKP-WOhWpIWgBlh0coll9XUx7aqmRPT7kmt3fH0,19
92
- StreamingCommunity-2.3.0.dist-info/RECORD,,
85
+ StreamingCommunity/Util/os.py,sha256=zqDlFq5CEOOhR14lStYogXJ78UlMv2xz2nakpHbpumw,18607
86
+ StreamingCommunity/Util/table.py,sha256=kXCx1zT9jaXQJuBG5oJBkvDJh3JL-f5x5OYaTOMc14o,8624
87
+ StreamingCommunity-2.4.0.dist-info/LICENSE,sha256=IwGE9guuL-ryRPEKi6wFPI_zOhg7zDZbTYuHbSt_SAk,35823
88
+ StreamingCommunity-2.4.0.dist-info/METADATA,sha256=VbXenE7urWmsOMwCLuq9dyFajpbBLfqRIztavUTJ7C8,16766
89
+ StreamingCommunity-2.4.0.dist-info/WHEEL,sha256=tZoeGjtWxWRfdplE7E3d45VPlLNQnvbKiYnx7gwAy8A,92
90
+ StreamingCommunity-2.4.0.dist-info/entry_points.txt,sha256=-iQU6qfeHFwauAg4iZhifWhNZAkiV-x3XuEauo_EjUc,68
91
+ StreamingCommunity-2.4.0.dist-info/top_level.txt,sha256=YsOcxKP-WOhWpIWgBlh0coll9XUx7aqmRPT7kmt3fH0,19
92
+ StreamingCommunity-2.4.0.dist-info/RECORD,,