Everything you need to integrate PyExec into your applications and workflows.
Submit your first Python job in under 5 minutes.
Complete reference for all API endpoints, parameters, and responses.
Official clients for Python, JavaScript, Go, and more.
Run jobs and manage your account from the command line.
pip install pyexec-sdk from pyexec import PyExec client = PyExec(api_key="your_api_key") job = client.jobs.create( prompt="Analyze this CSV and return summary stats", files=["data.csv"] ) result = job.wait() print(result.output)