Metadata-Version: 2.4
Name: nuvepro-runner
Version: 0.1.1
Summary: A lightweight runner framework for sandboxed environments
Author-email: Rishabh Mishra <rishabh@nuvepro.com>
License: MIT
Project-URL: Homepage, https://github.com/rishah/nuvepro_runner
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
License-File: LICENSE .txt
Requires-Dist: requests>=2.25.1
Dynamic: license-file

# Nuvepro Runner

A Python SDK to run code in a secure, sandboxed local workspace.

## Features

- Run dynamic Python code
- Execute shell commands
- Upload temporary files
- Clean up sandbox environments

## Example

```python
from nuvepro_runner import Nuvepro

sandbox = Nuvepro().create()
response = sandbox.process.code_run('print("Hello from Nuvepro!")')
print(response["output"])
sandbox.cleanup()
