Menu

Vercel Python SDK is now available in beta - Vercel
📰
0

Vercel Python SDK is now available in beta - Vercel

Vercel News·Ricardo Gonzalez·4 days ago
#RI3IDKrH
#vercel#sandbox#cache#python#import#article
Reading 0:00
15s threshold

The Vercel Python SDK is now available in beta, bringing first-class Python support for many Vercel features such as Vercel Sandbox , Blob , and the Runtime Cache API . To get started, install the vercel package with pip install vercel. Vercel Python SDK lets you directly interact with Vercel primitives via python code like: Run untrusted code in isolated, ephemeral environments using Vercel Sandbox: from vercel . sandbox import Sandbox with Sandbox . create ( runtime = "python3.13" ) as sandbox : command = sandbox . run_command ( "python" , [ "-c" , "print('hello world')" ] ) print ( command . stdout ( ) ) Interact with Vercel’s Blob storage API: from vercel import blob uploaded_file = blob . upload_file ( local_path = "hello-world.txt" , path = "uploaded-hello-world.txt" , access = "public" , ) And store and retrieve data across Functions , Routing Middleware , and Builds within the same region using the Runtime Cache API: from vercel .…

Continue reading — create a free account

Join HashtagPLUS to read full articles, follow hashtags, vote, and join the conversation.

Read More