StreamingCommunity 2.5.6__py3-none-any.whl → 2.5.8__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 (65) hide show
  1. StreamingCommunity/Api/Player/ddl.py +2 -3
  2. StreamingCommunity/Api/Site/1337xx/__init__.py +5 -6
  3. StreamingCommunity/Api/Site/1337xx/site.py +7 -14
  4. StreamingCommunity/Api/Site/1337xx/title.py +3 -5
  5. StreamingCommunity/Api/Site/altadefinizionegratis/__init__.py +7 -6
  6. StreamingCommunity/Api/Site/altadefinizionegratis/film.py +14 -19
  7. StreamingCommunity/Api/Site/altadefinizionegratis/site.py +6 -14
  8. StreamingCommunity/Api/Site/animeunity/__init__.py +7 -7
  9. StreamingCommunity/Api/Site/animeunity/film_serie.py +29 -31
  10. StreamingCommunity/Api/Site/animeunity/site.py +14 -22
  11. StreamingCommunity/Api/Site/cb01new/__init__.py +5 -4
  12. StreamingCommunity/Api/Site/cb01new/film.py +2 -5
  13. StreamingCommunity/Api/Site/cb01new/site.py +5 -13
  14. StreamingCommunity/Api/Site/ddlstreamitaly/__init__.py +5 -4
  15. StreamingCommunity/Api/Site/ddlstreamitaly/series.py +12 -49
  16. StreamingCommunity/Api/Site/ddlstreamitaly/site.py +6 -16
  17. StreamingCommunity/Api/Site/ddlstreamitaly/util/ScrapeSerie.py +2 -3
  18. StreamingCommunity/Api/Site/guardaserie/__init__.py +5 -4
  19. StreamingCommunity/Api/Site/guardaserie/series.py +12 -46
  20. StreamingCommunity/Api/Site/guardaserie/site.py +5 -13
  21. StreamingCommunity/Api/Site/guardaserie/util/ScrapeSerie.py +10 -14
  22. StreamingCommunity/Api/Site/ilcorsaronero/__init__.py +5 -4
  23. StreamingCommunity/Api/Site/ilcorsaronero/site.py +5 -13
  24. StreamingCommunity/Api/Site/ilcorsaronero/title.py +3 -5
  25. StreamingCommunity/Api/Site/mostraguarda/__init__.py +2 -2
  26. StreamingCommunity/Api/Site/mostraguarda/film.py +4 -8
  27. StreamingCommunity/Api/Site/streamingcommunity/__init__.py +8 -7
  28. StreamingCommunity/Api/Site/streamingcommunity/film.py +14 -18
  29. StreamingCommunity/Api/Site/streamingcommunity/series.py +25 -76
  30. StreamingCommunity/Api/Site/streamingcommunity/site.py +11 -23
  31. StreamingCommunity/Api/Template/Util/__init__.py +8 -1
  32. StreamingCommunity/Api/Template/Util/manage_ep.py +46 -2
  33. StreamingCommunity/Api/Template/config_loader.py +71 -0
  34. StreamingCommunity/Lib/Downloader/HLS/downloader.py +60 -60
  35. StreamingCommunity/Lib/Downloader/HLS/segments.py +40 -15
  36. StreamingCommunity/Lib/Downloader/MP4/downloader.py +47 -40
  37. StreamingCommunity/Lib/FFmpeg/command.py +59 -3
  38. StreamingCommunity/Lib/M3U8/estimator.py +10 -12
  39. StreamingCommunity/Lib/M3U8/parser.py +12 -51
  40. StreamingCommunity/Lib/TMBD/tmdb.py +66 -99
  41. StreamingCommunity/TelegramHelp/telegram_bot.py +222 -68
  42. StreamingCommunity/Util/_jsonConfig.py +14 -13
  43. StreamingCommunity/Util/ffmpeg_installer.py +70 -64
  44. StreamingCommunity/Util/headers.py +11 -122
  45. StreamingCommunity/Util/os.py +65 -56
  46. StreamingCommunity/Util/table.py +62 -108
  47. StreamingCommunity/run.py +16 -11
  48. {StreamingCommunity-2.5.6.dist-info → StreamingCommunity-2.5.8.dist-info}/METADATA +57 -23
  49. StreamingCommunity-2.5.8.dist-info/RECORD +86 -0
  50. StreamingCommunity/Api/Site/1337xx/costant.py +0 -15
  51. StreamingCommunity/Api/Site/altadefinizionegratis/costant.py +0 -21
  52. StreamingCommunity/Api/Site/animeunity/costant.py +0 -21
  53. StreamingCommunity/Api/Site/cb01new/costant.py +0 -19
  54. StreamingCommunity/Api/Site/ddlstreamitaly/costant.py +0 -20
  55. StreamingCommunity/Api/Site/guardaserie/costant.py +0 -19
  56. StreamingCommunity/Api/Site/ilcorsaronero/costant.py +0 -19
  57. StreamingCommunity/Api/Site/mostraguarda/costant.py +0 -19
  58. StreamingCommunity/Api/Site/streamingcommunity/costant.py +0 -21
  59. StreamingCommunity/TelegramHelp/request_manager.py +0 -82
  60. StreamingCommunity/TelegramHelp/session.py +0 -56
  61. StreamingCommunity-2.5.6.dist-info/RECORD +0 -96
  62. {StreamingCommunity-2.5.6.dist-info → StreamingCommunity-2.5.8.dist-info}/LICENSE +0 -0
  63. {StreamingCommunity-2.5.6.dist-info → StreamingCommunity-2.5.8.dist-info}/WHEEL +0 -0
  64. {StreamingCommunity-2.5.6.dist-info → StreamingCommunity-2.5.8.dist-info}/entry_points.txt +0 -0
  65. {StreamingCommunity-2.5.6.dist-info → StreamingCommunity-2.5.8.dist-info}/top_level.txt +0 -0
@@ -1,56 +0,0 @@
1
- # 04.02.25
2
- # Made by: @GiuPic
3
-
4
- import json
5
-
6
- session_data = {}
7
-
8
- def set_session(value):
9
- session_data['script_id'] = value
10
-
11
- def get_session():
12
- return session_data.get('script_id', 'unknown')
13
-
14
- def updateScriptId(screen_id, titolo):
15
- json_file = "scripts.json"
16
- try:
17
- with open(json_file, 'r') as f:
18
- scripts_data = json.load(f)
19
- except FileNotFoundError:
20
- scripts_data = []
21
-
22
- # cerco lo script con lo screen_id
23
- for script in scripts_data:
24
- if script["screen_id"] == screen_id:
25
- # se trovo il match, aggiorno il titolo
26
- script["titolo"] = titolo
27
-
28
- # aggiorno il file json
29
- with open(json_file, 'w') as f:
30
- json.dump(scripts_data, f, indent=4)
31
-
32
- return
33
-
34
- print(f"Screen_id {screen_id} non trovato.")
35
-
36
- def deleteScriptId(screen_id):
37
- json_file = "scripts.json"
38
- try:
39
- with open(json_file, 'r') as f:
40
- scripts_data = json.load(f)
41
- except FileNotFoundError:
42
- scripts_data = []
43
-
44
- for script in scripts_data:
45
- if script["screen_id"] == screen_id:
46
- # se trovo il match, elimino lo script
47
- scripts_data.remove(script)
48
-
49
- # aggiorno il file json
50
- with open(json_file, 'w') as f:
51
- json.dump(scripts_data, f, indent=4)
52
-
53
- print(f"Script eliminato per screen_id {screen_id}")
54
- return
55
-
56
- print(f"Screen_id {screen_id} non trovato.")
@@ -1,96 +0,0 @@
1
- StreamingCommunity/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
2
- StreamingCommunity/run.py,sha256=NdHxQeS3UDQz8de1OeySkqiwwyppFChz8UFoQKJvNpA,12161
3
- StreamingCommunity/Api/Player/ddl.py,sha256=LAfQRwnY8vvDM-i_HiSaU_lWrQoIQJWMqinD43A1UAk,2320
4
- StreamingCommunity/Api/Player/maxstream.py,sha256=Q9td9lOxC_-8YwgB3bQ-H2686uMqjd23lptnsdAglYk,5153
5
- StreamingCommunity/Api/Player/supervideo.py,sha256=udPbBUvlvHVUCZasOJvFmcQfSFmB0KquoSOWOiGur4M,5925
6
- StreamingCommunity/Api/Player/vixcloud.py,sha256=n9SEx2G6-7OsvTMHcSbpO_XmU2U8IDQAwQ6C-qioBUE,9226
7
- StreamingCommunity/Api/Player/Helper/Vixcloud/js_parser.py,sha256=U-8QlD5kGzIk3-4t4D6QyYmiDe8UBrSuVi1YHRQb7AU,4295
8
- StreamingCommunity/Api/Player/Helper/Vixcloud/util.py,sha256=KqTtHJzfhtKHmMTdA7OWMgdpTHTe6LyXCphBLTMYLYs,4727
9
- StreamingCommunity/Api/Site/1337xx/__init__.py,sha256=A7LcKpihxZekcnrPC5XkhJK2jq8gBEwlNdPnz15Jjps,1193
10
- StreamingCommunity/Api/Site/1337xx/costant.py,sha256=0NtCOw0uunFDa2_XikkAtz8FytlHj6cmNgEqs-Dvow8,437
11
- StreamingCommunity/Api/Site/1337xx/site.py,sha256=OTTcIG9NW7CoFqfrqK8jdB62iXCQpBtOLfiyqT4-LYo,2718
12
- StreamingCommunity/Api/Site/1337xx/title.py,sha256=rERu3QLP6WZ8fubpgw8VWd1dPj_135u_IRzErtGjgNA,1846
13
- StreamingCommunity/Api/Site/altadefinizionegratis/__init__.py,sha256=m631x6Zq6wweJZmy1MPiXyT72v-PVFqUdScHeYY7BBQ,2037
14
- StreamingCommunity/Api/Site/altadefinizionegratis/costant.py,sha256=tfBxJHXJJ5ASzt-cQ6269axFAJBpcUK35wnGz-3oGHY,826
15
- StreamingCommunity/Api/Site/altadefinizionegratis/film.py,sha256=hwsOHPaIEXMlJlJb9jn09JmJt2-nLVEKy7GTweKxiSQ,2354
16
- StreamingCommunity/Api/Site/altadefinizionegratis/site.py,sha256=28zB42pa-SvZ8BbNNMVHuRdK8mQ7L_4NvFeGfcFb3O0,3631
17
- StreamingCommunity/Api/Site/animeunity/__init__.py,sha256=T1IBUZArYBQNjILCDJGLrQB3Q70XhmTwtQ0YqYGEGOE,2091
18
- StreamingCommunity/Api/Site/animeunity/costant.py,sha256=aXeyPtDUodnJCGWgpjlT-ymHFMGjAmkYrv0uKisCkUU,813
19
- StreamingCommunity/Api/Site/animeunity/film_serie.py,sha256=YAPncO6Kjm3qCJoK-2_tc61gKRO1DfFjMh8xsL0ZvPk,5673
20
- StreamingCommunity/Api/Site/animeunity/site.py,sha256=croEynBrXlZbs9vdGFi95Tq9JA2T3EBotTNr8Frm2WE,5971
21
- StreamingCommunity/Api/Site/animeunity/util/ScrapeSerie.py,sha256=92PDY4CJSSmeHsVowqBuCzYmLa1pcXR8hCBXcuvlmvk,2886
22
- StreamingCommunity/Api/Site/cb01new/__init__.py,sha256=4pXBx8sPk-LyIZ4pEjfvudEeWKch_tfSHHtmS9_dQaA,1179
23
- StreamingCommunity/Api/Site/cb01new/costant.py,sha256=q0zb6h-7RECswpicKy1HIdhlGaGNgX4BnrDeLEjL8Yg,760
24
- StreamingCommunity/Api/Site/cb01new/film.py,sha256=E5fLsJtwVNRFRLMBbM7ubS9NiYdMcbTrARnXmonWKr0,1668
25
- StreamingCommunity/Api/Site/cb01new/site.py,sha256=ErBsmw30lxFGQP-TCNCtSd7MJth6VE7gOJfnq4FboN0,2365
26
- StreamingCommunity/Api/Site/ddlstreamitaly/__init__.py,sha256=7G3Ss3WWy3ZxJBU9BUKhyPe3qEQsu8V-y3pGLNho76k,1319
27
- StreamingCommunity/Api/Site/ddlstreamitaly/costant.py,sha256=FVZM6Ze3ed0nSE0lnP5WRcmH0OEowgfyGaQ_KQTYBeo,821
28
- StreamingCommunity/Api/Site/ddlstreamitaly/series.py,sha256=BK7pSM5QVHVg5h5MLQVI8z7aVHT1TbPU9j8AazcjLkM,4352
29
- StreamingCommunity/Api/Site/ddlstreamitaly/site.py,sha256=a6Qy_EDaNWaooik0kgoewfLkCYjV2wOezRhZynILTJY,3004
30
- StreamingCommunity/Api/Site/ddlstreamitaly/util/ScrapeSerie.py,sha256=rWAu-CLo2_fiUbdoExRTojxUOcnrNOzMqwR1_ug79lo,2568
31
- StreamingCommunity/Api/Site/guardaserie/__init__.py,sha256=TvNYdFFUsb0M5OE6i5Vn73xORu4-ZlBJaBCAn7mGPGU,1171
32
- StreamingCommunity/Api/Site/guardaserie/costant.py,sha256=n-kS_CWTzp0KcwD9eQJB_2nzVc3mk2aV4ai3tYBWwMg,760
33
- StreamingCommunity/Api/Site/guardaserie/series.py,sha256=SqW67Y_ddxtiNzb9uNCLzE_vfdYSHmNW9EPIN_GUYy8,6617
34
- StreamingCommunity/Api/Site/guardaserie/site.py,sha256=RW3y1UBzxgu8PyM2uBVTF5iL1zE-Hhd5IwOk1xym60s,2790
35
- StreamingCommunity/Api/Site/guardaserie/util/ScrapeSerie.py,sha256=QCSc61Eab93Mc2H6FYZ5y1EOjn7VFBJ9mHstaMdtBO0,3289
36
- StreamingCommunity/Api/Site/ilcorsaronero/__init__.py,sha256=k93QZfFROMeD6hELFItyKBxWNC9ivWWQA17fjxu04MY,1197
37
- StreamingCommunity/Api/Site/ilcorsaronero/costant.py,sha256=dsuf90F-JNsejVMJPaERIovQoG2Lxn8xobooUZ7wMHY,759
38
- StreamingCommunity/Api/Site/ilcorsaronero/site.py,sha256=8_KzK0SCdAZjKhcZYPuNrtg6twGs3GmbvAwLZoErcLI,2169
39
- StreamingCommunity/Api/Site/ilcorsaronero/title.py,sha256=jVqo2J4CBIP8725NGtHmHNMCwTwu-rqXj1HvgiqLDSM,1264
40
- StreamingCommunity/Api/Site/ilcorsaronero/util/ilCorsarScraper.py,sha256=BJgmv2UO3XM0gNkSsAt1REJoIUXjD_1nxT6Tpp5HGQg,5114
41
- StreamingCommunity/Api/Site/mostraguarda/__init__.py,sha256=B316aiC3vGxCxSPsg9c4n44Dc-xvaQ_nFVjec5bkRBs,1129
42
- StreamingCommunity/Api/Site/mostraguarda/costant.py,sha256=WBl5MtRd-_6FtqSHGcExJvsUnIyIGjtMlJSSgaMpScY,759
43
- StreamingCommunity/Api/Site/mostraguarda/film.py,sha256=8n6iwMaYaMPKmV9XCIF91Kjx2QJ_nh-XymdtBhuctAU,2518
44
- StreamingCommunity/Api/Site/streamingcommunity/__init__.py,sha256=4i1pu7XbCBaor7Nv2ZPpYa_7HQGjCW5mgpK9MCpiKao,2287
45
- StreamingCommunity/Api/Site/streamingcommunity/costant.py,sha256=II6jfMUUiqlbJ_bG12h8h9ODI6gvaUGsdEzjnjRZ52g,823
46
- StreamingCommunity/Api/Site/streamingcommunity/film.py,sha256=N3v01tcsHbSyJzIjMG13UJvKZANSlwKXinpxvTACns8,2490
47
- StreamingCommunity/Api/Site/streamingcommunity/series.py,sha256=kbIzxmC9xIqNHazyo4wcEggjwPN5rnijLBZiXMfJQWU,9110
48
- StreamingCommunity/Api/Site/streamingcommunity/site.py,sha256=5e2w4dBOT_l7TX2LTEGE0uktrOc8pcaI6ZstOXdgY2Q,4592
49
- StreamingCommunity/Api/Site/streamingcommunity/util/ScrapeSerie.py,sha256=t-Of4McSpJv8uZGP8hqBj1cuh57U8A5hhvMM18rHSaQ,4260
50
- StreamingCommunity/Api/Template/__init__.py,sha256=oyfd_4_g5p5q6mxb_rKwSsudZnTM3W3kg1tLwxg-v-Q,46
51
- StreamingCommunity/Api/Template/site.py,sha256=BNff60a8TWhg8yRnpGQPXtR8UKAVI2Kn3M-Wf1XIeE8,2934
52
- StreamingCommunity/Api/Template/Class/SearchType.py,sha256=FtO8xDUGEeJgMWsK2Ab7ZzAFsncalTYL2oEYi8uCnuk,2531
53
- StreamingCommunity/Api/Template/Util/__init__.py,sha256=OAznfpiw4mmA2CdARYoIJ9a5XmTw45aFMI9KUmB7kkw,221
54
- StreamingCommunity/Api/Template/Util/get_domain.py,sha256=OPgjNN3UgrMHPmy457_DbF5xSZ2fhvZCtRJHhqnYshY,7126
55
- StreamingCommunity/Api/Template/Util/manage_ep.py,sha256=xHMCUYxxeTfrw28k5IuXgb7FsAvSmVzcPTP3MrLRq2g,6496
56
- StreamingCommunity/Api/Template/Util/recall_search.py,sha256=QSKDI4fyQfKF8C2eZXW6lBrAp1HTuhWQeA6g8ybDQYQ,1147
57
- StreamingCommunity/Lib/Downloader/__init__.py,sha256=JhbBh5hOnSM7VmtkxJ7zZ_FtWEC1JdnKThsSBjLV5FY,140
58
- StreamingCommunity/Lib/Downloader/HLS/downloader.py,sha256=58MV43Ct9AZ3-brI4D_Q0E2dnMRoUmO-0mteym2PwaU,20918
59
- StreamingCommunity/Lib/Downloader/HLS/proxyes.py,sha256=H92gBhiwsomtURyBx__SQrML0nSx_0rAb2VWFd2rMAk,3275
60
- StreamingCommunity/Lib/Downloader/HLS/segments.py,sha256=Euf-2QW3Pw_9TWezMnDoOd1QiZ8esmrv57r3jUT8Apg,17783
61
- StreamingCommunity/Lib/Downloader/MP4/downloader.py,sha256=c7qJoBInsTFVGt0BViR5hdwSfOfzUk7Lrl7dXo7muJY,6931
62
- StreamingCommunity/Lib/Downloader/TOR/downloader.py,sha256=n8-56EoGpe3-FO72zL66ovLGTAZRJwzmNqeRGe8VSO8,11212
63
- StreamingCommunity/Lib/FFmpeg/__init__.py,sha256=pFt6A1gD2tZ8REEXa8QgM7_CsenrmBLQXDh_I1bwZvM,131
64
- StreamingCommunity/Lib/FFmpeg/capture.py,sha256=GjzT2BNtGL75A9scJNX1RqiRn4cy39dFeHnz2b_Ocw8,5431
65
- StreamingCommunity/Lib/FFmpeg/command.py,sha256=LwwptZf3FGL2X9YCyPKomUVt3DTDLha-XmJdQpsOk0k,8836
66
- StreamingCommunity/Lib/FFmpeg/util.py,sha256=lTWA9KuK8KWYymuNL_-YMW1WB6Y4aLTsItk9ezPD0NU,8093
67
- StreamingCommunity/Lib/M3U8/__init__.py,sha256=H_KS2eDd3kVXMziFJnD0FCPvPHEizaqfoA36ElTv_r8,170
68
- StreamingCommunity/Lib/M3U8/decryptor.py,sha256=yD94xUhGHx4-RcrHguarpmfTeSxtpkfsH1id6sUrOw0,6365
69
- StreamingCommunity/Lib/M3U8/estimator.py,sha256=7EJdmJAV3U22nvghfpaTiyHjd-tl_RHGFhOV2dyZFeg,6247
70
- StreamingCommunity/Lib/M3U8/parser.py,sha256=SqME6-Ua6V771T8_LeL376tGjjOadJMFmZrPaD7iMNo,22887
71
- StreamingCommunity/Lib/M3U8/url_fixer.py,sha256=VKc9j6rXHQ9wEdn6IN5Sn_Gi-fGhCZOMv7SGOq-2a3E,1789
72
- StreamingCommunity/Lib/TMBD/__init__.py,sha256=jSNsLuW4fBf1tGtIdz6fcRv1d5A-NiNnM_O0G6Hj30s,54
73
- StreamingCommunity/Lib/TMBD/obj_tmbd.py,sha256=SsvxM4z0xU1IsSrB9o2dpRfuRDUYQk3uRs7AseftPPI,1929
74
- StreamingCommunity/Lib/TMBD/tmdb.py,sha256=hkbQBhWv35IucJIFMfiUatU7bLXzKu3NrxZ7G0XBA5c,11681
75
- StreamingCommunity/TelegramHelp/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
76
- StreamingCommunity/TelegramHelp/request_manager.py,sha256=Qsr2k_wyvMuQyGywISvoFEg9Y4v1VthOzkNavHAbUhI,2490
77
- StreamingCommunity/TelegramHelp/session.py,sha256=Vc26Kv40unyA7Eb5E651cKMSX-Ox2eCI_Vo-6WtMDKo,1469
78
- StreamingCommunity/TelegramHelp/telegram_bot.py,sha256=Kw-x3W2AwoD_2yOfZ5IPTPKY0-G_ZGCi49drg_bopBQ,21290
79
- StreamingCommunity/Upload/update.py,sha256=ayuUzXEQcvc62SBC2NxJwvSvk4aoHZITHpmOuW5fT5w,2541
80
- StreamingCommunity/Upload/version.py,sha256=lvrpaH0cNQ7HPCueUfroXVcjfZ3DlWUtnFoHkv8IZE8,171
81
- StreamingCommunity/Util/_jsonConfig.py,sha256=pV0ayq8up7ydN9obs8wsnUZO9iZzIGjIGEclFXZIMU4,7603
82
- StreamingCommunity/Util/call_stack.py,sha256=bVYEjwLJnRNJ1tgfwClpyVcLKCTeTMHM2S6-HM2Ibfo,1375
83
- StreamingCommunity/Util/color.py,sha256=TWvoellnYd-oCTeU3bnXqkMf864KgF9YXwzjtI6rd4g,459
84
- StreamingCommunity/Util/console.py,sha256=xdGMbH38By9d4ugYMVJFaUrcMJW2krKZh0zbptA3SVQ,218
85
- StreamingCommunity/Util/ffmpeg_installer.py,sha256=JXyaY0O8dEvqHL-Zw6Cvwjgzrt6Bt6UdFOHZX3R8vzU,13624
86
- StreamingCommunity/Util/headers.py,sha256=_7yUnjV0PNdTAuxm-CQVj0na1smZuw8KD3VVR2TlPWY,4727
87
- StreamingCommunity/Util/logger.py,sha256=ekHO3tryCwo5zqSe2RoI6s3qZsZx9ghinTchipMEovg,2112
88
- StreamingCommunity/Util/message.py,sha256=F2QKjkcCBl6TjsaM5G6iDck0IhxBnDkKV3itwUebr5c,1403
89
- StreamingCommunity/Util/os.py,sha256=negGgnuRMvApCSuOJZvnP1K-JB2QDfCYPHbfSh8CBKM,17362
90
- StreamingCommunity/Util/table.py,sha256=QFzbthbmQT_hwaPJ7Bg9lJALIHJGYcGiQSsQNhCLYAE,10997
91
- StreamingCommunity-2.5.6.dist-info/LICENSE,sha256=OXLcl0T2SZ8Pmy2_dmlvKuetivmyPd5m1q-Gyd-zaYY,35149
92
- StreamingCommunity-2.5.6.dist-info/METADATA,sha256=Enr8LaQJ-YHTwoE7A2f-1D0hZjqf7nvbqAeXHY9EMZY,17993
93
- StreamingCommunity-2.5.6.dist-info/WHEEL,sha256=tZoeGjtWxWRfdplE7E3d45VPlLNQnvbKiYnx7gwAy8A,92
94
- StreamingCommunity-2.5.6.dist-info/entry_points.txt,sha256=Qph9XYfDC8n4LfDLOSl6gJGlkb9eFb5f-JOr_Wb_5rk,67
95
- StreamingCommunity-2.5.6.dist-info/top_level.txt,sha256=YsOcxKP-WOhWpIWgBlh0coll9XUx7aqmRPT7kmt3fH0,19
96
- StreamingCommunity-2.5.6.dist-info/RECORD,,