Skip to main content

Store Django uploaded files as UUID files or inside UUID directories

Project description

django-uuid-upload

Library for Django that automatically stores uploaded files as mydir/{uuid}.jpg or mydir/{uuid}/original.jpg.

Installation

pip install django-uuid-upload

Usage

from django.db import models
from django_uuid_upload import upload_to_uuid

class Post(models.Model):
        # Store uploaded files as posts/{uuid}.jpg
        image = models.ImageField(upload_to=upload_to_uuid('posts'))

        # Or, store uploaded files as posts/{uuid}/original.jpg
        image = models.ImageField(upload_to=upload_to_uuid('posts', make_dir=True))

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

django-uuid-upload-0.0.2.tar.gz (1.5 kB view hashes)

Uploaded Source

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page