Metadata-Version: 2.1
Name: lambdacloud
Version: 0.0.2
Summary: A Python client library for Lambda Lab's Cloud
Home-page: https://github.com/nateraw/lambdacloud
Author: Nathan Raw
Author-email: naterawdata@gmail.com
License: Apache
Description-Content-Type: text/markdown
Provides-Extra: testing
Provides-Extra: quality
Provides-Extra: dev

# lambdacloud

An unofficial python client for Lambda Lab's cloud computing platform.

## Installation

```
pip install lambdacloud
```

## Usage

<details>
<summary>Authenticate</summary>

```python
from lambdacloud import login

login(token="<your token>")
```
</details>

<details>
<summary>Create an Instance</summary>

See "list-available-instance-types" for a list of available instance types. Also, see "list-available-ssh-keys" for a list of available ssh keys.

```python
from lambdacloud import create_instance

instance_id = create_instance("gpu_1x_a10", ssh_key_names="my-ssh-key")
print(instance_id)
"""
["<instance id>"]
"""
```
</details>

<details>
<summary>Delete an Instance</summary>

```python
from lambdacloud import delete_instance

delete_instance("<instance id>")
```

</details>

<details>
<summary>List Instances</summary>

```python
from lambdacloud import list_instances

instances = list_instances()
print(instances)
```

</details>

<details>
<summary>List Available Instance Types</summary>

```python
from lambdacloud import list_instance_types

instance_types = list_instance_types()
for instance_type in instance_types:
    print(instance_type)
"""
InstanceType(name=gpu_8x_a100_80gb_sxm4, price_cents_per_hour=1200, description=8x A100 (80 GB SXM4))
InstanceType(name=gpu_1x_a10, price_cents_per_hour=60, description=1x A10 (24 GB PCIe))
InstanceType(name=gpu_1x_a100_sxm4, price_cents_per_hour=110, description=1x A100 (40 GB SXM4))
InstanceType(name=gpu_8x_a100, price_cents_per_hour=880, description=8x A100 (40 GB SXM4))
InstanceType(name=gpu_8x_v100, price_cents_per_hour=440, description=8x Tesla V100 (16 GB))
"""

# To show all instance types, even if they are not available to create
instance_types = list_instance_types(show_all=True)
```

</details>

<details>
<summary>List Available SSH Keys</summary>

```python
from lambdacloud import list_ssh_keys

ssh_keys = list_ssh_keys()
for ssh_key in ssh_keys:
    print(ssh_key)

"""
SshKey(name=my-ssh-key)
"""
```

</details>

<details>
<summary>Add an SSH Key</summary>

```python
from lambdacloud import add_ssh_key

add_ssh_key("my-ssh-key", "<public key>")
```

#### Add an SSH Key from a File

```python
from lambdacloud import add_ssh_key_from_file

add_ssh_key_from_file("my-ssh-key", "<path to public key file>")
```

</details>

## Credits

This package is heavily inspired by [huggingface_hub](https://github.com/huggingface/huggingface_hub)
