Skip to content

🐍 | Python library for RunPod API and serverless worker SDK.

License

Notifications You must be signed in to change notification settings

runpod/runpod-python

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

50 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

RunPod | Python Library

CI | Code Quality   CI | Unit Tests

Official Python library for RunPod API & SDK.

Table of Contents

Installation

pip install runpod

API Language Library

When interacting with the RunPod API you can use this library to make requests to the API.

import runpod

runpod.api_key = "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx"

SDK - Serverless Worker

This python package can also be used to create a serverless worker that can be deployed to RunPod.

Quick Start

Create an executable file called 'worker' in the root of your project that contains the following:

#!/usr/bin/env python

import runpod

runpod.serverless.pod_worker.start_worker()

Add the env variables found in serverless-worker to your project.