A globally distributed container runtime
Project description
nebulous-py
A declarative python library for the Nebulous runtime
Installation
pip install nebu
Usage
Create a pytorch container on runpod with 1 A100 GPU
from nebu import Container, V1EnvVar
container = Container(
name="pytorch-example",
namespace="test",
image="pytorch/pytorch:latest",
platform="runpod",
env=[V1EnvVar(name="MY_ENV_VAR", value="my-value")],
command="nvidia-smi",
accelerators=["1:A100_SXM"],
proxy_port=8080,
)
while container.status.status.lower() != "running":
print(f"Container '{container.metadata.name}' is not running, it is '{container.status.status}', waiting...")
time.sleep(1)
print(f"Container '{container.metadata.name}' is running")
print(f"You can access the container at {container.status.tailnet_url}")
Decorator
Run a python function in a container [in progress]
from nebu import container
@container(image="python:3.10-slim", accelerators=["1:A100_SXM"])
def my_function(x: int, y: int) -> int:
return x + y
result = my_function(1, 2)
print(result)
Contributing
Please open an issue or a PR to contribute to the project.
Development
make test
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
nebu-0.1.6.tar.gz
(15.6 kB
view details)
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
nebu-0.1.6-py3-none-any.whl
(16.5 kB
view details)
File details
Details for the file nebu-0.1.6.tar.gz.
File metadata
- Download URL: nebu-0.1.6.tar.gz
- Upload date:
- Size: 15.6 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: uv/0.5.29
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
e9a7952d2f6430d79a364bee0aa1f115690b2df714ee93f778647059a70c3c52
|
|
| MD5 |
84ba94323c1fbeeed13d1196fb616c4c
|
|
| BLAKE2b-256 |
28a2166c5b6319b18acb21ef2ad4171c0afe0e298d35021ae81f223e62c3c704
|
File details
Details for the file nebu-0.1.6-py3-none-any.whl.
File metadata
- Download URL: nebu-0.1.6-py3-none-any.whl
- Upload date:
- Size: 16.5 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: uv/0.5.29
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
4ffb7ae87e6fb1bd6974623621e90110ed7e08e6e6f01ffcbd0e78e32285a6cf
|
|
| MD5 |
34845aa412eb037ced369fb02379e722
|
|
| BLAKE2b-256 |
76cf7984e156f47cc2073d62fd118b41407abb019253c32ada558c9934586b79
|