Skip to content

Release 0.7.0

Latest

Choose a tag to compare

@tnm tnm released this 17 Feb 23:16
· 10 commits to main since this release

πŸš€ Release 0.7.0

✨ Features

  • Universal sandbox abstraction across E2B, Modal, Daytona, and Cloudflare
  • Automatic provider failover for high availability
  • Label-based sandbox reuse
  • Connection pooling and circuit breaker patterns

πŸ“¦ Installation

pip install cased-sandboxes==0.7.0

πŸ”§ Quick Start

from sandboxes import run

# Simple execution with auto-detection
result = await run('echo Hello World')
print(result.stdout)

See README for full documentation.