# Vercel Python Queues SDK is now available in beta

DevFeed: [Vercel Python Queues SDK is now available in beta](<https://devfeed.tech/articles/vercel-python-queues-sdk-is-now-available-in-beta-1168.md>)

Original publisher: [Read original article](<https://vercel.com/changelog/vercel-python-queues-sdk-is-now-available-in-beta>)

Author: Nik Sidnev

Published: 2026-08-19T00:00:00Z

Content type: release

Language: en

Sources: [Vercel News](<https://devfeed.tech/sources/vercel-news.md>)

Topics: [SDKs](<https://devfeed.tech/topics/sdks.md>)

Tags: [api](<https://devfeed.tech/tags/api.md>), [backend](<https://devfeed.tech/tags/backend.md>), [frontend](<https://devfeed.tech/tags/frontend.md>), [javascript](<https://devfeed.tech/tags/javascript.md>), [next-js](<https://devfeed.tech/tags/next-js.md>), [python](<https://devfeed.tech/tags/python.md>), [vercel](<https://devfeed.tech/tags/vercel.md>)

## AI overview

Vercel released a beta Python SDK for Vercel Queues, enabling Python and JavaScript services to publish and consume background-work messages across runtimes.

## Source excerpt

The Python SDK for Vercel Queues is now available in beta, bringing first-class Python support for running background workloads on Vercel. You publish messages to topics, and independent consumer groups process them in parallel with automatic retries, sharding, and delivery guarantees. Messages can be enqueued or consumed from either JavaScript or Python, meaning a Next.js producer can fan out to both Next.js and Python queue consumers. Publish a message from your Python API: Publish a message from a frontend route handler: Create a subscriber: Opt project into receiving queue message deliveries: Configure cross-runtime consumers: The following configuration allows you to compose a frontend and a backend within a single Vercel project, allowing you to enqueue messages from one service and consume them from another or fan out to multiple. Get started with pip install vercel or visit the Python SDK reference documentation. Read more