Attach files to Django models
Project description
Django Anchor
A reusable Django app to handle files attached to models, inspired by Ruby on Rails' excellent Active Storage.
Features
- Attach images and other files to your models. Supports one or more individual files per model as well as multiple ordered collections of files.
- Optimized storage. Deduplicates files for optimized storage
- Display files in templates. Render resized thumbnails and optimized versions of your images in templates via a template tag.
- Reduce external dependencies. Django anchor doesn't need any external services and works Django's local file storage.
Limitations
- Files are prefixed with a random string which makes the URLs for them hard to guess, but they are currently not protected against unauthorized attacks.
- It only works with Django storage classes in which files are accessible via the file system, i.e. where the path property of a file is implemented.
- It currently depends on Huey for background processing.
Future work
- Reduce number of dependencies:
- Make Huey dependency optional
- Make PIL dependency optional
- Remove dependency on
base58
- Implement private file links (maybe via signed URLs?)
Installation
TODO
Usage
💡 Check out the demo Django project for inspiration.
Adding files to models
The easiest way to add a file to a model is to add a BlobField
to it:
from django.db import models
from anchor.models.fields import BlobField
class Movie(models.Model):
title = models.CharField(max_length=100)
# A compulsory field that must be set on every instance
cover = BlobField()
# An optional file that can be left blank
poster = BlobField(blank=True, null=True)
Notice how the BlobField
above can be customized by setting the blank
and
null
options like any other field. It will also accept any other core field
parameters.
BlobFields are ForeignKey fields under the hood, so after you've added or made
changes you need to generate a migration with python manage.py makemigrations
and then apply it via python manage.py migrate
.
Once your migrations are applied you can assign an
anchor.models.blob.Blob
object to a BlobField
much like you'd assign a
DjangoFile
object to a FileField
:
from anchor.models.blob import Blob
# A new Blob objects is created and saved to the database with the file metadata
cover = Blob.objects.from_url('...')
# Make our movie point to that Blob object
movie.cover = cover
movie.save()
Using files in templates
Django anchor comes with a handy template tag to render URLs of files you've stored:
{% load anchor %}
<img src="{% blob_thumbnail movie.poster max_width=300 max_height=600 format='jpeg' %}">
The above call to blob_thumbnail
will generate an optimized version of the
movie's cover in JPEG format which fits inside a 300x600 rectangle. Optimized
versions are generated asynchronously and if they're not ready for immediate use
the original file's URL is returned instead to avoid blocking the request.
Contributing
PRs and issues are very welcome!
Check out CONTRIBUTING.md to learn how to set up the project locally.
License
This project is released under the MIT License. Check out LICENSE to get the full text of the license.
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
Built Distribution
Hashes for django_anchor-0.1.0-py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 70cd4ebfa7378eadd66e43d23a42878c472a3fdb93010a9ad0415ea6152ed4a8 |
|
MD5 | 096640c52b552fe7299bfb351c2875f4 |
|
BLAKE2b-256 | 62a3c290ac179b8c3774295502f9ae2261ada286fddb2cb17801b372039668ef |