| Name | Modified | Size | Downloads / Week |
|---|---|---|---|
| Parent folder | |||
| @e2b_python-sdk@2.37.1 source code.tar.gz | 2026-08-07 | 1.7 MB | |
| @e2b_python-sdk@2.37.1 source code.zip | 2026-08-07 | 2.2 MB | |
| README.md | 2026-08-07 | 1.1 kB | |
| Totals: 3 Items | 3.9 MB | 0 | |
Patch Changes
- 88f41f3: Align ANSI stripping of template build log messages across both SDKs. The Python SDK's
strip_ansi_escape_codesnow ports the JS SDK'sstripAnsiregex: OSC sequences (hyperlinks, window titles) are matched non-greedily up to the first string terminator — including sequences spanning newlines — and CSI sequences are stripped without requiring a terminator. Both implementations additionally strip the remaining ECMA-48 string controls (DCS/Sixel, SOS, PM, APC) through their string terminator so control payloads no longer leak into cleaned logs. - 998e560: Relax the Python SDK's
wcmatchrequirement from>=10.1,<11to>=10.1,<12soe2bcan be installed alongside packages that already requirewcmatch>=11(for exampledeepagents>=0.7.0), which previously failed to resolve. The SDK only callsglob.glob()withGLOBSTAR | DOTMATCHfor template context matching; wcmatch 11.0's single breaking change affectstranslate()callers using extended-glob capture groups, so it is a no-op here. The template glob test suite passes against 10.1, 10.2.1 and 11.0.