Official Python library for RunPod API & SDK.
pip install runpod
When interacting with the RunPod API you can use this library to make requests to the API.
import runpod
runpod.api_key = "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx"
This python package can also be used to create a serverless worker that can be deployed to RunPod.
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.