wenox-cli 1.0.5 → 1.0.7
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.
- package/bin/wenox.js +43 -5
- package/package.json +7 -1
- package/requirements-wenox.txt +379 -0
package/bin/wenox.js
CHANGED
|
@@ -82,23 +82,61 @@ function checkAider() {
|
|
|
82
82
|
}
|
|
83
83
|
|
|
84
84
|
async function installAider() {
|
|
85
|
-
console.log(chalk.cyan('📦 Installing WENOX
|
|
85
|
+
console.log(chalk.cyan('📦 Installing WENOX Enterprise Environment...'));
|
|
86
|
+
console.log(chalk.yellow('🔧 This will install the exact same packages that work on the developer machine'));
|
|
86
87
|
|
|
87
88
|
const python = process.platform === 'win32' ? 'python' : 'python3';
|
|
88
89
|
const pip = process.platform === 'win32' ? 'pip' : 'pip3';
|
|
89
90
|
|
|
90
91
|
return new Promise((resolve, reject) => {
|
|
91
|
-
|
|
92
|
-
|
|
92
|
+
// Install from our exact requirements file
|
|
93
|
+
console.log(chalk.cyan('📋 Installing from verified requirements...'));
|
|
94
|
+
|
|
95
|
+
const requirementsPath = path.join(__dirname, '..', 'requirements-wenox.txt');
|
|
96
|
+
|
|
97
|
+
const child = spawn(pip, [
|
|
98
|
+
'install',
|
|
99
|
+
'-r',
|
|
100
|
+
requirementsPath,
|
|
101
|
+
'--force-reinstall',
|
|
102
|
+
'--no-deps' // Skip dependency resolution, use exact versions
|
|
103
|
+
], {
|
|
104
|
+
stdio: 'inherit',
|
|
93
105
|
shell: true
|
|
94
106
|
});
|
|
95
107
|
|
|
96
108
|
child.on('close', (code) => {
|
|
97
109
|
if (code === 0) {
|
|
98
|
-
console.log(chalk.green('✅ WENOX
|
|
110
|
+
console.log(chalk.green('✅ WENOX Enterprise Environment installed successfully!'));
|
|
111
|
+
console.log(chalk.cyan('🎯 All packages match the developer environment'));
|
|
99
112
|
resolve();
|
|
100
113
|
} else {
|
|
101
|
-
|
|
114
|
+
console.log(chalk.yellow('⚠️ Some packages failed, trying fallback installation...'));
|
|
115
|
+
|
|
116
|
+
// Fallback: just install aider-chat with exact version
|
|
117
|
+
const fallbackChild = spawn(pip, [
|
|
118
|
+
'install',
|
|
119
|
+
'aider-chat==0.16.0',
|
|
120
|
+
'openai==1.109.1',
|
|
121
|
+
'anthropic==0.76.0',
|
|
122
|
+
'--force-reinstall'
|
|
123
|
+
], {
|
|
124
|
+
stdio: 'inherit',
|
|
125
|
+
shell: true
|
|
126
|
+
});
|
|
127
|
+
|
|
128
|
+
fallbackChild.on('close', (fallbackCode) => {
|
|
129
|
+
if (fallbackCode === 0) {
|
|
130
|
+
console.log(chalk.green('✅ WENOX core packages installed successfully!'));
|
|
131
|
+
resolve();
|
|
132
|
+
} else {
|
|
133
|
+
reject(new Error('Failed to install WENOX dependencies'));
|
|
134
|
+
}
|
|
135
|
+
});
|
|
136
|
+
|
|
137
|
+
fallbackChild.on('error', (err) => {
|
|
138
|
+
reject(err);
|
|
139
|
+
});
|
|
102
140
|
}
|
|
103
141
|
});
|
|
104
142
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "wenox-cli",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.7",
|
|
4
4
|
"description": "WENOX AI - Advanced AI-powered development assistant",
|
|
5
5
|
"main": "index.js",
|
|
6
6
|
"bin": {
|
|
@@ -31,6 +31,12 @@
|
|
|
31
31
|
"boxen": "^7.1.1",
|
|
32
32
|
"node-fetch": "^3.3.2"
|
|
33
33
|
},
|
|
34
|
+
"files": [
|
|
35
|
+
"bin/",
|
|
36
|
+
"scripts/",
|
|
37
|
+
"README.md",
|
|
38
|
+
"requirements-wenox.txt"
|
|
39
|
+
],
|
|
34
40
|
"engines": {
|
|
35
41
|
"node": ">=16.0.0"
|
|
36
42
|
},
|
|
@@ -0,0 +1,379 @@
|
|
|
1
|
+
a2wsgi==1.10.10
|
|
2
|
+
ai21==4.3.0
|
|
3
|
+
aider-chat==0.16.0
|
|
4
|
+
aiofile==3.9.0
|
|
5
|
+
aiohappyeyeballs==2.6.1
|
|
6
|
+
aiohttp==3.13.3
|
|
7
|
+
aiohttp_socks==0.11.0
|
|
8
|
+
aioquic==1.2.0
|
|
9
|
+
aiosignal==1.4.0
|
|
10
|
+
aiosqlite==0.21.0
|
|
11
|
+
altgraph==0.17.5
|
|
12
|
+
amqp==5.3.1
|
|
13
|
+
annotated-doc==0.0.4
|
|
14
|
+
annotated-types==0.7.0
|
|
15
|
+
ansicon==1.89.0
|
|
16
|
+
anthropic==0.76.0
|
|
17
|
+
anyio==4.12.1
|
|
18
|
+
APScheduler==3.11.2
|
|
19
|
+
arabic-reshaper==3.0.0
|
|
20
|
+
argon2-cffi==25.1.0
|
|
21
|
+
argon2-cffi-bindings==25.1.0
|
|
22
|
+
asgiref==3.10.0
|
|
23
|
+
asn1crypto==1.5.1
|
|
24
|
+
astor==0.8.1
|
|
25
|
+
asttokens==3.0.1
|
|
26
|
+
attrs==25.4.0
|
|
27
|
+
audioop-lts==0.2.2
|
|
28
|
+
azure-ai-documentintelligence==1.0.2
|
|
29
|
+
azure-core==1.38.0
|
|
30
|
+
azure-identity==1.25.1
|
|
31
|
+
backoff==2.2.1
|
|
32
|
+
bcrypt==5.0.0
|
|
33
|
+
beautifulsoup4==4.13.4
|
|
34
|
+
billiard==4.2.4
|
|
35
|
+
blessed==1.28.0
|
|
36
|
+
blinker==1.9.0
|
|
37
|
+
bota==4.0.155
|
|
38
|
+
botasaurus==4.0.97
|
|
39
|
+
botasaurus-humancursor==4.0.83
|
|
40
|
+
botasaurus_api==4.0.10
|
|
41
|
+
botasaurus_driver==4.0.92
|
|
42
|
+
botasaurus_proxy_authentication==1.0.16
|
|
43
|
+
botasaurus_requests==4.0.38
|
|
44
|
+
brotli==1.2.0
|
|
45
|
+
browser-cookie3==0.20.1
|
|
46
|
+
browserforge==1.2.3
|
|
47
|
+
CacheControl==0.14.4
|
|
48
|
+
cachetools==6.2.4
|
|
49
|
+
caio==0.9.25
|
|
50
|
+
cairocffi==1.7.1
|
|
51
|
+
CairoSVG==2.8.2
|
|
52
|
+
camoufox==0.4.11
|
|
53
|
+
celery==5.6.2
|
|
54
|
+
certifi==2026.1.4
|
|
55
|
+
cffi==2.0.0
|
|
56
|
+
charset-normalizer==3.4.4
|
|
57
|
+
click==8.3.1
|
|
58
|
+
click-didyoumean==0.3.1
|
|
59
|
+
click-plugins==1.1.1.2
|
|
60
|
+
click-repl==0.3.0
|
|
61
|
+
close_chrome==4.0.40
|
|
62
|
+
cloudinary==1.44.1
|
|
63
|
+
cloudscraper==1.2.71
|
|
64
|
+
cobble==0.1.4
|
|
65
|
+
coincurve==19.0.1
|
|
66
|
+
colorama==0.4.6
|
|
67
|
+
comm==0.2.3
|
|
68
|
+
ConfigArgParse==1.7.1
|
|
69
|
+
contourpy==1.3.3
|
|
70
|
+
cryptography==46.0.3
|
|
71
|
+
cssselect==1.3.0
|
|
72
|
+
cssselect2==0.8.0
|
|
73
|
+
curl_cffi==0.13.0
|
|
74
|
+
cycler==0.12.1
|
|
75
|
+
DataRecorder==3.6.2
|
|
76
|
+
ddgs==9.10.0
|
|
77
|
+
debugpy==1.8.19
|
|
78
|
+
decorator==5.2.1
|
|
79
|
+
defusedxml==0.7.1
|
|
80
|
+
Deprecated==1.3.1
|
|
81
|
+
diff-match-patch==20241021
|
|
82
|
+
discord.py==2.6.4
|
|
83
|
+
diskcache==5.6.3
|
|
84
|
+
distro==1.9.0
|
|
85
|
+
docstring_parser==0.17.0
|
|
86
|
+
DownloadKit==2.0.7
|
|
87
|
+
DrissionPage==4.1.1.2
|
|
88
|
+
ecdsa==0.19.1
|
|
89
|
+
edge-tts==7.2.7
|
|
90
|
+
editor==1.6.6
|
|
91
|
+
emoji==2.15.0
|
|
92
|
+
et_xmlfile==2.0.0
|
|
93
|
+
executing==2.2.1
|
|
94
|
+
fake-useragent==2.2.0
|
|
95
|
+
Faker==37.4.2
|
|
96
|
+
fastapi==0.124.2
|
|
97
|
+
fastuuid==0.14.0
|
|
98
|
+
filelock==3.20.0
|
|
99
|
+
firebase_admin==7.1.0
|
|
100
|
+
Flask==3.1.2
|
|
101
|
+
flask-cors==6.0.2
|
|
102
|
+
Flask-Limiter==3.5.0
|
|
103
|
+
fonttools==4.61.1
|
|
104
|
+
frida==17.4.0
|
|
105
|
+
frida-tools==14.4.6
|
|
106
|
+
frozenlist==1.8.0
|
|
107
|
+
fsspec==2026.1.0
|
|
108
|
+
g4f==6.9.3
|
|
109
|
+
gevent==25.9.1
|
|
110
|
+
geventhttpclient==2.3.7
|
|
111
|
+
git-python==1.0.3
|
|
112
|
+
gitdb==4.0.12
|
|
113
|
+
GitPython==3.1.46
|
|
114
|
+
google-ai-generativelanguage==0.6.15
|
|
115
|
+
google-api-core==2.25.2
|
|
116
|
+
google-api-python-client==2.188.0
|
|
117
|
+
google-auth==2.47.0
|
|
118
|
+
google-auth-httplib2==0.3.0
|
|
119
|
+
google-cloud-core==2.5.0
|
|
120
|
+
google-cloud-firestore==2.23.0
|
|
121
|
+
google-cloud-storage==3.8.0
|
|
122
|
+
google-crc32c==1.8.0
|
|
123
|
+
google-generativeai==0.8.6
|
|
124
|
+
google-resumable-media==2.8.0
|
|
125
|
+
googleapis-common-protos==1.72.0
|
|
126
|
+
granian==2.6.0
|
|
127
|
+
greenlet==3.2.3
|
|
128
|
+
grep-ast==0.9.0
|
|
129
|
+
grpcio==1.76.0
|
|
130
|
+
grpcio-status==1.71.2
|
|
131
|
+
grpcio-tools==1.76.0
|
|
132
|
+
gunicorn==23.0.0
|
|
133
|
+
h11==0.16.0
|
|
134
|
+
h2==4.3.0
|
|
135
|
+
hf-xet==1.2.0
|
|
136
|
+
hpack==4.1.0
|
|
137
|
+
html2image==2.0.7
|
|
138
|
+
html2text==2025.4.15
|
|
139
|
+
httpcore==1.0.9
|
|
140
|
+
httplib2==0.31.2
|
|
141
|
+
httptools==0.7.1
|
|
142
|
+
httpx==0.28.1
|
|
143
|
+
huggingface_hub==1.3.4
|
|
144
|
+
hyperframe==6.1.0
|
|
145
|
+
idna==3.11
|
|
146
|
+
importlib_metadata==8.7.1
|
|
147
|
+
importlib_resources==6.5.2
|
|
148
|
+
iniconfig==2.3.0
|
|
149
|
+
inquirer==3.4.1
|
|
150
|
+
ipykernel==7.1.0
|
|
151
|
+
ipython==9.9.0
|
|
152
|
+
ipython_pygments_lexers==1.1.1
|
|
153
|
+
isodate==0.7.2
|
|
154
|
+
itsdangerous==2.2.0
|
|
155
|
+
javascript_fixes==1.1.29
|
|
156
|
+
jedi==0.19.2
|
|
157
|
+
Jinja2==3.1.6
|
|
158
|
+
jinxed==1.3.0
|
|
159
|
+
jiter==0.12.0
|
|
160
|
+
joblib==1.5.3
|
|
161
|
+
json-logic==0.7.0a0
|
|
162
|
+
json5==0.13.0
|
|
163
|
+
json_repair==0.54.2
|
|
164
|
+
jsonschema==4.26.0
|
|
165
|
+
jsonschema-specifications==2025.9.1
|
|
166
|
+
jupyter_client==8.8.0
|
|
167
|
+
jupyter_core==5.9.1
|
|
168
|
+
jwt==1.4.0
|
|
169
|
+
kaitaistruct==0.11
|
|
170
|
+
kiwisolver==1.4.9
|
|
171
|
+
kombu==5.6.2
|
|
172
|
+
language-tags==1.2.0
|
|
173
|
+
ldap3==2.9.1
|
|
174
|
+
limits==5.6.0
|
|
175
|
+
litellm==1.81.3
|
|
176
|
+
load-dotenv==0.1.0
|
|
177
|
+
loguru==0.7.3
|
|
178
|
+
lxml==6.0.2
|
|
179
|
+
lz4==4.4.5
|
|
180
|
+
mammoth==1.11.0
|
|
181
|
+
markdown-it-py==4.0.0
|
|
182
|
+
markdownify==1.2.2
|
|
183
|
+
markitdown==0.0.2
|
|
184
|
+
MarkupSafe==3.0.3
|
|
185
|
+
matplotlib==3.10.8
|
|
186
|
+
matplotlib-inline==0.2.1
|
|
187
|
+
mdurl==0.1.2
|
|
188
|
+
mitmproxy==12.2.1
|
|
189
|
+
mitmproxy-windows==0.12.8
|
|
190
|
+
mitmproxy_rs==0.12.8
|
|
191
|
+
mixpanel==5.1.0
|
|
192
|
+
msal==1.34.0
|
|
193
|
+
msal-extensions==1.3.1
|
|
194
|
+
msgpack==1.1.2
|
|
195
|
+
mslex==1.3.0
|
|
196
|
+
mss==10.1.0
|
|
197
|
+
multidict==6.7.1
|
|
198
|
+
nest-asyncio==1.6.0
|
|
199
|
+
networkx==3.6.1
|
|
200
|
+
nltk==3.9.2
|
|
201
|
+
numpy==2.2.6
|
|
202
|
+
olefile==0.47
|
|
203
|
+
open-interpreter==0.4.3
|
|
204
|
+
openai==1.109.1
|
|
205
|
+
opencv-python==4.12.0.88
|
|
206
|
+
openpyxl==3.1.5
|
|
207
|
+
ordered-set==4.1.0
|
|
208
|
+
orjson==3.11.5
|
|
209
|
+
oslex==0.1.3
|
|
210
|
+
outcome==1.3.0.post0
|
|
211
|
+
packaging==25.0
|
|
212
|
+
pandas==2.3.3
|
|
213
|
+
parso==0.8.5
|
|
214
|
+
passlib==1.7.4
|
|
215
|
+
patchright==1.52.5
|
|
216
|
+
pathspec==1.0.4
|
|
217
|
+
pathvalidate==3.3.1
|
|
218
|
+
pdfminer.six==20260107
|
|
219
|
+
pefile==2024.8.26
|
|
220
|
+
pexpect==4.9.0
|
|
221
|
+
PGPy13==0.6.1rc1
|
|
222
|
+
pillow==12.0.0
|
|
223
|
+
platformdirs==4.5.1
|
|
224
|
+
playwright==1.57.0
|
|
225
|
+
pluggy==1.6.0
|
|
226
|
+
posthog==7.7.0
|
|
227
|
+
primp==0.15.0
|
|
228
|
+
prompt_toolkit==3.0.52
|
|
229
|
+
propcache==0.4.1
|
|
230
|
+
proto-plus==1.27.0
|
|
231
|
+
protobuf==5.29.5
|
|
232
|
+
protonmail-api-client==2.4.3
|
|
233
|
+
psutil==5.9.7
|
|
234
|
+
ptyprocess==0.7.0
|
|
235
|
+
publicsuffix2==2.20191221
|
|
236
|
+
pure_eval==0.2.3
|
|
237
|
+
puremagic==1.30
|
|
238
|
+
pyasn1==0.6.1
|
|
239
|
+
pyasn1_modules==0.4.2
|
|
240
|
+
pycparser==2.22
|
|
241
|
+
pycryptodome==3.23.0
|
|
242
|
+
pycryptodomex==3.23.0
|
|
243
|
+
pydantic==2.12.5
|
|
244
|
+
pydantic-settings==2.12.0
|
|
245
|
+
pydantic_core==2.41.5
|
|
246
|
+
pydivert==2.1.0
|
|
247
|
+
pydub==0.25.1
|
|
248
|
+
pyee==13.0.0
|
|
249
|
+
Pygments==2.19.2
|
|
250
|
+
pyinstaller==6.17.0
|
|
251
|
+
pyinstaller-hooks-contrib==2025.10
|
|
252
|
+
PyJWT==2.10.1
|
|
253
|
+
pylsqpack==0.3.23
|
|
254
|
+
pyOpenSSL==25.3.0
|
|
255
|
+
pypandoc==1.16.2
|
|
256
|
+
pyparsing==3.2.5
|
|
257
|
+
pyperclip==1.11.0
|
|
258
|
+
PyQt5==5.15.11
|
|
259
|
+
PyQt5-Qt5==5.15.2
|
|
260
|
+
PyQt5_sip==12.18.0
|
|
261
|
+
pyreadline3==3.5.4
|
|
262
|
+
PySocks==1.7.1
|
|
263
|
+
pytest==9.0.2
|
|
264
|
+
python-bidi==0.6.7
|
|
265
|
+
python-dateutil==2.9.0.post0
|
|
266
|
+
python-dotenv==1.0.1
|
|
267
|
+
python-jose==3.5.0
|
|
268
|
+
python-multipart==0.0.20
|
|
269
|
+
python-pptx==1.0.2
|
|
270
|
+
python-socks==2.8.0
|
|
271
|
+
pytweening==1.2.0
|
|
272
|
+
pytz==2025.2
|
|
273
|
+
PyVirtualDisplay==3.0
|
|
274
|
+
pywin32==311
|
|
275
|
+
pywin32-ctypes==0.2.3
|
|
276
|
+
PyYAML==6.0.3
|
|
277
|
+
pyzmq==27.1.0
|
|
278
|
+
readchar==4.2.1
|
|
279
|
+
redis==7.1.0
|
|
280
|
+
referencing==0.37.0
|
|
281
|
+
regex==2026.1.15
|
|
282
|
+
replicate==1.0.7
|
|
283
|
+
requests==2.32.5
|
|
284
|
+
requests-file==3.0.1
|
|
285
|
+
requests-toolbelt==1.0.0
|
|
286
|
+
rich==13.9.4
|
|
287
|
+
rpds-py==0.30.0
|
|
288
|
+
rsa==4.9.1
|
|
289
|
+
ruamel.yaml==0.18.16
|
|
290
|
+
runs==1.2.2
|
|
291
|
+
scipy==1.17.0
|
|
292
|
+
screeninfo==0.8.1
|
|
293
|
+
selenium==4.27.1
|
|
294
|
+
Send2Trash==2.1.0
|
|
295
|
+
service-identity==24.2.0
|
|
296
|
+
setproctitle==1.3.7
|
|
297
|
+
setuptools==80.10.2
|
|
298
|
+
shadowcopy==0.0.4
|
|
299
|
+
shellingham==1.5.4
|
|
300
|
+
shortuuid==1.0.13
|
|
301
|
+
shtab==1.8.0
|
|
302
|
+
six==1.17.0
|
|
303
|
+
slowapi==0.1.9
|
|
304
|
+
smmap==5.0.2
|
|
305
|
+
sniffio==1.3.1
|
|
306
|
+
socksio==1.0.0
|
|
307
|
+
sortedcontainers==2.4.0
|
|
308
|
+
sounddevice==0.5.5
|
|
309
|
+
soundfile==0.13.1
|
|
310
|
+
soupsieve==2.7
|
|
311
|
+
SpeechRecognition==3.14.5
|
|
312
|
+
SQLAlchemy==2.0.45
|
|
313
|
+
sse-starlette==3.1.2
|
|
314
|
+
sseclient-py==1.9.0
|
|
315
|
+
stack-data==0.6.3
|
|
316
|
+
standard-aifc==3.13.0
|
|
317
|
+
standard-chunk==3.13.0
|
|
318
|
+
starlette==0.50.0
|
|
319
|
+
tabulate==0.9.0
|
|
320
|
+
targ==0.6.0
|
|
321
|
+
tenacity==8.5.0
|
|
322
|
+
termcolor==3.3.0
|
|
323
|
+
tiktoken==0.12.0
|
|
324
|
+
tinycss2==1.5.1
|
|
325
|
+
tldextract==5.3.0
|
|
326
|
+
tokenizers==0.22.2
|
|
327
|
+
tokentrim==0.1.13
|
|
328
|
+
toml==0.10.2
|
|
329
|
+
tornado==6.5.2
|
|
330
|
+
tqdm==4.67.1
|
|
331
|
+
traitlets==5.14.3
|
|
332
|
+
tree-sitter==0.25.2
|
|
333
|
+
tree-sitter-c-sharp==0.23.1
|
|
334
|
+
tree-sitter-embedded-template==0.25.0
|
|
335
|
+
tree-sitter-language-pack==0.13.0
|
|
336
|
+
tree-sitter-yaml==0.7.2
|
|
337
|
+
trio==0.32.0
|
|
338
|
+
trio-websocket==0.12.2
|
|
339
|
+
ttkbootstrap==1.19.2
|
|
340
|
+
typer==0.21.1
|
|
341
|
+
typer-slim==0.21.1
|
|
342
|
+
typing-inspection==0.4.2
|
|
343
|
+
typing_extensions==4.15.0
|
|
344
|
+
tzdata==2025.2
|
|
345
|
+
tzlocal==5.3.1
|
|
346
|
+
ua-parser==1.0.1
|
|
347
|
+
ua-parser-builtins==202601
|
|
348
|
+
undetected-chromedriver==3.5.5
|
|
349
|
+
uritemplate==4.2.0
|
|
350
|
+
urllib3==2.6.3
|
|
351
|
+
urwid==3.0.3
|
|
352
|
+
user-agent
|
|
353
|
+
uvicorn==0.40.0
|
|
354
|
+
vine==5.1.0
|
|
355
|
+
wasmtime==40.0.0
|
|
356
|
+
watchdog==6.0.0
|
|
357
|
+
watchfiles==1.1.1
|
|
358
|
+
wcwidth==0.5.0
|
|
359
|
+
webdriver-manager==4.0.2
|
|
360
|
+
webencodings==0.5.1
|
|
361
|
+
websocket-client==1.9.0
|
|
362
|
+
websockets==13.1
|
|
363
|
+
Werkzeug==3.1.4
|
|
364
|
+
wget==3.2
|
|
365
|
+
wheel==0.46.3
|
|
366
|
+
win32_setctime==1.2.0
|
|
367
|
+
WMI==1.5.1
|
|
368
|
+
wrapt==2.0.1
|
|
369
|
+
wsproto==1.2.0
|
|
370
|
+
xlrd==2.0.2
|
|
371
|
+
xlsxwriter==3.2.9
|
|
372
|
+
xmod==1.8.1
|
|
373
|
+
yarl==1.22.0
|
|
374
|
+
yaspin==3.4.0
|
|
375
|
+
youtube-transcript-api==1.2.3
|
|
376
|
+
zipp==3.23.0
|
|
377
|
+
zope.event==6.1
|
|
378
|
+
zope.interface==8.2
|
|
379
|
+
zstandard==0.25.0
|