Skip to main content

A Vast.ai API helper (fork with bug fixes)

Project description

A low-level API for Vast.ai

This project is not intended to replace the open-source vast.ai library but rather to complement it for those who want to have an easy-to-use API to build their own projects. The goal of this project is not to re-implement every functionality in the original library but to simplify it for future developers and end users.

It also integrates pandas dataframes for easier data manipulation.

Installation/Setup instructions

vast-ai-api is available on PyPi:

$ pip install vast-ai-api

or

$ poetry add vast-ai-api

Export your Vast-AI API key:

$ export VAST_AI_API_KEY=<YOUR_API_KEY_HERE>

After you reserve an instance, in order to change its state or interact with it in any way, you will need to setup an SSH key on Vast.ai. Then, add your private key to your ssh agent (see here).

Contributing

Currently, the API covers most of the functionality provided by the original Vast AI library, except for host actions (hosting machines, listing hosted machines, etc.). You can contribute by forking this repo, adding your changes and making a pull request.

Usage

Initializing the API Helper:

import pandas as pd
from vast_ai_api import VastAPIHelper

api = VastAPIHelper()

List all instances available to be rented

instances: pd.DataFrame = api.list_available_instances()

Pick an instance from the list and reserve it using its instance_id

instance: pd.Series = instances.iloc[50]
instance_id = instance["id"]
machine_id = instance["machine_id"]  # Needed after reserving
api.launch_instance(instance_id)

Instance is now launched and starting up with default parameters

launched_instances = api.list_current_instances()

Note that the instance_id that we got before reserving the instance changes after reservation. Instead, we have to use the machine_id to find the instance again and get its new id

newly_launched_instance = launched_instances[launched_instances["machine_id"] == machine_id]
new_instance_id = newly_launched_instance["id"]

Now we can perform actions on this launched instance:

api.stop_instance(new_instance_id)
api.start_instance(new_instance_id)
api.reboot_instance(new_instance_id)  # Equivalent to stopping and starting the instance

api.get_instance_logs(new_instance_id)

Connecting through SSH

Prerequisites: You must have initialized the instance as api.launch_instance(instance_id, use_jupyter_lab=False)

You can connect to the instance in 2 ways: with or without a proxy server (provided by Vast.ai). Using a proxy server is recommended as it allows you to stay anonymous when connecting to the gpu provider, but will slightly increase the latency to the machine.

ssh_client = api.connect_ssh(new_instance_id, use_vast_proxy=True)
stdin, stdout, stderr = ssh_client.exec_command("<your_command_here>")
print(stdout.readlines())

Alternatively, you can connect directly via the command line by reading the necessary host and port of the machine:

ssh_host = newly_launched_instance["ssh_host"]
ssh_port = newly_launched_instance["ssh_port"]

and then use ssh and replace ssh_host and ssh_port with the values above to connect your terminal to the instance:

$ ssh -p ${ssh_port} root@${ssh_host} -L 8080:localhost:8080

Transferring files via sftp

Prerequisites: You must have initialized the instance as api.launch_instance(instance_id, use_jupyter_lab=False)

"""
    src and dst format:
    
    localhost:22:<local_path> for the local machine
    <remote_host>:<remote_port>:<remote_path> for the remote machine

"""
api.copy("localhost:22:./polkadots.jpg", "ssh.vastai5.com:/home/workdir/polkadots.jpg", ssh_client)
api.copy("remote:/home/workdir/polkadots.jpg", "localhost:~/images/polka_dots.jpg", connect_ssh(new_instance_id))
api.copy("localhost:22:./polkadots.jpg", "ssh.vastai5.com:29347:/home/workdir/polkadots.jpg")

Alternatively, you can get your ssh_host and ssh_port as described above and use sftp locally:

sftp -P ${ssh_port} root@${ssh_host}

After connecting, you can interactively move files or do other commands:

put ./helloWorld.py ./helloWorld.py
get passwds passwds
chmod 775 ./script.sh
...

Deployment instructions

This repo is deployed to pypi using poetry. Simply run poetry build, then poetry publish

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

vast_api-1.0.0.tar.gz (7.4 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

vast_api-1.0.0-py2.py3-none-any.whl (8.7 kB view details)

Uploaded Python 2Python 3

File details

Details for the file vast_api-1.0.0.tar.gz.

File metadata

  • Download URL: vast_api-1.0.0.tar.gz
  • Upload date:
  • Size: 7.4 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.11.7

File hashes

Hashes for vast_api-1.0.0.tar.gz
Algorithm Hash digest
SHA256 e1fc347875095ec6d762beb1cd37d0282799c80ddf72b0d5bf61e7b9f4872fed
MD5 4152cda35e0561f1491fcb762ade4016
BLAKE2b-256 43ed8a8230cedf121eecf83635e098db8ea343d21dbb3d761e526a6322477b3d

See more details on using hashes here.

File details

Details for the file vast_api-1.0.0-py2.py3-none-any.whl.

File metadata

  • Download URL: vast_api-1.0.0-py2.py3-none-any.whl
  • Upload date:
  • Size: 8.7 kB
  • Tags: Python 2, Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.11.7

File hashes

Hashes for vast_api-1.0.0-py2.py3-none-any.whl
Algorithm Hash digest
SHA256 efd81fd98dd3eb5df2f7534e928508ffb5b6c627672ebb21250b0d3f8b21b68f
MD5 bdc8e7b674de1e21d10dbf8ec08c569e
BLAKE2b-256 3b18f77112e28c4e70d4e6127c84107a0f731fa13c62ad3b1c55e424164f7c2f

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page