Python API Client
Uploadcare Python & Django integrations handle uploads and further operations with files by wrapping Upload and REST APIs.
Features
Uploading (Upload API):
- Upload files from a local storage and URLs (up to 5 TB)
- Multipart uploading for large files
- Uploading network to speed up uploading jobs (like CDN)
File management (REST API):
- Get file info
- Perform various file operations (store/delete/copy/group)
- Detect unsafe and malicious content
- Encode and transform videos
- Convert documents and other files
- Recognize objects in the image
- Add arbitrary file metadata
- Manage webhooks
Image processing (URL API):
- Compression
- Geometry
- Colors
- Definition
- Image and text overlays
- Rotations
- Recognition
- File info
- Proxy (fetch)
Security features:
- Secure authentication
- Secure uploads (signed uploads)
- Secure delivery (signed URLs)
- Secure webhooks (signing secret)
Installation
In order to install pyuploadcare, run these command in CLI:
To use in Django project install with extra dependencies:
Configuration
Add your Uploadcare API keys to Django settings:
For secure uploads, enable signed uploads:
For subdomain CDN addressing (recommended for high-traffic projects):
subdomains defaults to False in v6.2.x but will become the default in the next major release.
Usage example
Here is an example how to include Uploadcare ImageField into an existing
Django project.
Widget
By default, pyuploadcare uses the File Uploader v1 widget (FileWidget). Pass any File Uploader configuration attributes via attrs:
To use the legacy jQuery-based widget instead:
In pyuploadcare v5.0, FileWidget was rewritten to use File Uploader v1. The jQuery-based widget is now LegacyFileWidget. If you are upgrading from v4.x, set use_legacy_widget: True to keep the old behavior, or migrate your widget configuration to File Uploader v1 attributes.
Example Django project
Check out example Django project. It features:
- Project section
- Files section
- File Groups section
- Files uploading
- Documents conversion
- Video conversion
- Webhooks
- Posts section
Requirements
- Python 3.8, 3.9, 3.10, 3.11, 3.12, 3.13
pyuploadcare requires Pydantic v2 (>=2.5.2). Projects on Pydantic v1 must upgrade before installing pyuploadcare v5.0+.
To use pyuploadcare with Python 3.6 or 3.7 please install pyuploadcare < 5.0.
To use pyuploadcare with Python 2.7 please install pyuploadcare < 3.0.
Django compatibility: