Metadata-Version: 2.4
Name: pangolin-sdk
Version: 0.2.0
Summary: Official Python SDK for Cinch — run untrusted code in secure, disposable sandboxes.
Author: Cinch
License: MIT
Project-URL: Homepage, https://cinch.codes
Project-URL: Documentation, https://cinch.codes/docs
Keywords: sandbox,code-execution,cinch,gvisor
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.8
Description-Content-Type: text/markdown

# Pangolin — Python SDK for Cinch

Run untrusted code in secure, disposable sandboxes. https://cinch.codes

## Install
```bash
pip install pangolin-sdk
```

## Usage
```python
from pangolin import Sandbox

box = Sandbox(api_key="cinch_live_...")
result = box.run("print(2 + 2)")
print(result.stdout)  # "4\n"
```

### JavaScript
```python
result = box.run("console.log(2 + 2)", language="javascript")
```
