Metadata-Version: 2.4
Name: mv37-workdir
Version: 0.1.0
Summary: Python SDK for workdir
Project-URL: Homepage, https://workdir.dev
Project-URL: Repository, https://github.com/mv37-org/workdir
Project-URL: Issues, https://github.com/mv37-org/workdir/issues
Author: mv37
License-Expression: AGPL-3.0-only
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: GNU Affero General Public License v3
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3 :: Only
Classifier: Typing :: Typed
Requires-Python: >=3.9
Description-Content-Type: text/markdown

# mv37-workdir

Python SDK for [workdir](https://workdir.dev).

```bash
pip install mv37-workdir
```

```python
from workdir import Client

workdir = Client("https://api.workdir.dev", api_key="...")

box = workdir.sandboxes.create()
print(box.exec("echo hello").stdout)
box.delete()
```

The SDK uses only the Python standard library.
