--- id: vercel-blob version: "0.4.2" license: unclear license_treatment: unclear maintenance: aging --- # vercel_blob — A Python Wrapper for Vercel Blob Storage API License: unclear · Maintenance: aging · Downloads: 135.9K/mo ## What it is and what it does vercel_blob is a Python wrapper around the Vercel Blob Storage REST API, providing methods to manage files stored in Vercel's blob service. It abstracts HTTP requests into simple Python functions for listing, uploading, downloading, deleting, copying, and inspecting file metadata. The package depends on requests, urllib3, certifi, and tqdm for HTTP communication and progress reporting. The wrapper supports both simple and multipart uploads, pagination for large file lists, optional random suffixes to prevent overwrites, and verbose progress output during operations. It handles network resilience through built-in retry logic with exponential backoff, though the description notes that Vercel Blob Storage is still in beta and connection errors can occur. The package targets Python 3.10 and later. Use it for: - Upload user-generated content or media files to Vercel Blob Storage from a Python backend without writing raw HTTP requests. - Batch delete or copy files across folders in blob storage as part of a data management or cleanup workflow. - Download files from blob storage to a server for processing, with progress tracking via verbose output. - List and paginate through large collections of stored blobs to implement file browsing or inventory features. - Upload large video or media files using multipart uploads to improve resilience and potentially speed up transfers. ## Worth the install? AI-flagged interpretation of the facts above — verify before relying. A Python client for uploading, downloading, listing, copying, and deleting files in Vercel Blob Storage via its REST API. Yes, if you are already using Vercel Blob Storage and want a straightforward Python client. The package has low install friction, no known vulnerabilities, and recent maintenance. However, verify the license terms before use, and be aware that the underlying Vercel Blob Storage service is still in beta—expect possible API changes or connection issues. Not suitable if you need a stable, production-hardened storage abstraction. ## Install pip install vercel-blob uv add vercel-blob poetry add vercel-blob ## Installing vercel_blob Before you install: Low friction installation with four lightweight runtime dependencies. The package is aging but actively maintained as of June 2025, with a recent commit history. No notable install complications. License in practice: License status is unclear—no SPDX identifier or raw license text is available in the package metadata. Verify the actual license terms in the repository before using in proprietary or commercial contexts. Quickstart: pip install vercel_blob import vercel_blob # List blobs blobs = vercel_blob.list({'limit': '5'}) # Upload a file with open('file.txt', 'rb') as f: resp = vercel_blob.put('test.txt', f.read()) # Delete a blob vercel_blob.delete('blob_url') Requires BLOB_READ_WRITE_TOKEN environment variable set for API authentication. Python 3.10 or later required. Verify before relying: - Whether the 5TB multipart upload limit mentioned in the description is a Vercel Blob Storage platform limit or a vercel_blob-specific constraint. - Current status of Vercel Blob Storage beta phase and any breaking API changes since package release. - Whether the retry logic with exponential backoff is configurable or always uses the hardcoded 3-attempt strategy. ## Package facts - License: not declared (unclear) - Python support: supports_current - Install friction: low - Maintenance: aging - Downloads: 135.9K/month (top 15,000 on PyPI) - Known vulnerabilities: none known ## Tags vercel blob storage python, blob file upload download, cloud storage api client, vercel blob python wrapper, file management vercel, blob storage operations, multipart file upload, blob-storage, vercel-integration, file-management [View on SkillFed](https://skillfed.io/packages/vercel-blob) · [View on PyPI](https://pypi.org/project/vercel-blob/)