Skip to main content

It generates dynamically a directory path and a file name for Django FileField

Project description

django-upload-to

codecov

It generates dynamically a directory path and a secure file name for Django FileField.

Main options:

  • Ready to use generators.
  • Generate secure file name without especial characters.
  • Generate file name using a uuid value.
  • Dynamically generate paths from the model instance.
  • Generate paths using Python datetime formats.

Get started

Install the django-upload-to in your virtual environment

$ pip install django-upload-to

Import it in your models file and add it as a upload_to argument in the FileField

# my_app/models.py
from upload_to import UploadTo
from django.db import models


class MyModel(models.Model):
    attachment = models.FileField(upload_to=UploadTo("attachments"))

The path and file name generated will be like this:

"attachments/the-file-name-uploaded.pdf"

How to use the ready-to-use classes

Consider the scenario below:

import upload_to
from django.db import models


class MyUser(models.Model):
    username = models.CharField(...)
    avatar = models.FileField(upload_to=<generator>)

instance = MyUser(username='user@email.com')

Replace the <generator> fragment by the generators as showed below:

File in root folder

>>> generator = upload_to.UploadTo()
>>> generator(instance, "file.pdf")
"file.pdf"

Define a folder structure

>>> generator = upload_to.UploadTo(prefix=["files", "documents"])
>>> generator(instance, "file.pdf")
"files/documents/file.pdf"

Generate a folder name using datetime formats from Python

>>> generator = upload_to.UploadTo(prefix=["pictures", "%Y"])
>>> generator(instance, "file.png")
"pictures/2023/file.png"

Replace the file name by an hexadecimal uuid value

# 4. replace file name by a uuid value
>>> generator = upload_to.UuidUploadTo()
>>> generator(instance, "file.pdf")
"b189dfdf25e640b2ba5c497472c20962.pdf"

Generate the folder path using the instance's attributes

>>> generator = upload_to.AttrUploadTo(attrs=["username"])
>>> generator(instance, "file.pdf")
"useremailcom/file.pdf"

Generate the folder path using the app_label and the model_name from the instance's meta options

>>> generator = upload_to.ModelUploadTo()
>>> generator(instance, "file.pdf")
"my_app/user/file.pdf"

Customize your upload paths

# my_app/models.py
import upload_to
from django.db import models


def my_upload_generator(instance, filename):
    filename = upload_to.uuid_filename(filename)
    path = upload_to.options_from_instance(instance)
    return upload_to.upload_to(path, filename)

class MyProfile(models.Model):
    user = models.OneToOneField(...)
    avatar = models.FileField(upload_to=my_upload_generator)

Useful links

  1. Documentation
  2. Changelog
  3. PyPi Page

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_upload_to-0.3.0.tar.gz (5.0 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

django_upload_to-0.3.0-py3-none-any.whl (5.4 kB view details)

Uploaded Python 3

File details

Details for the file django_upload_to-0.3.0.tar.gz.

File metadata

  • Download URL: django_upload_to-0.3.0.tar.gz
  • Upload date:
  • Size: 5.0 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: poetry/1.3.0 CPython/3.11.3 Linux/5.15.0-1035-azure

File hashes

Hashes for django_upload_to-0.3.0.tar.gz
Algorithm Hash digest
SHA256 9dd99ee488d606f9b9b4afa39d0e25d7eb6a58176708c549481bea9d99136a47
MD5 d3af0a1d0fa8c8f221da3783cb60ccef
BLAKE2b-256 ae8d362c8a3c543d1028112e730d85a1080e61b92ef56c5dc72210aa9d60c556

See more details on using hashes here.

File details

Details for the file django_upload_to-0.3.0-py3-none-any.whl.

File metadata

  • Download URL: django_upload_to-0.3.0-py3-none-any.whl
  • Upload date:
  • Size: 5.4 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: poetry/1.3.0 CPython/3.11.3 Linux/5.15.0-1035-azure

File hashes

Hashes for django_upload_to-0.3.0-py3-none-any.whl
Algorithm Hash digest
SHA256 c1cd4081a9b7114b1830813b3fd899b961cf9606fd757f833e7a1b4af5d3baec
MD5 58d2a53697f80a7c56424b15e4cd4781
BLAKE2b-256 41320ff8fdc1dbd531b31eb4e168b81dcbcb8300e6092f19edab32562919fae9

See more details on using hashes here.

Supported by

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