Skip to main content

Django Binary Database Files

Build Status

This is a storage system for Django that stores uploaded files in binary fields in the database. Files can be served from the database (usually a bad idea), the file system, or a CDN.

WARNING: It is generally a bad idea to serve static files from Django, but there are some valid use cases. If your Django app is behind a caching reverse proxy and you need to scale your application servers, it may be simpler to store files in the database.

Based upon django-database-files by Kimetrica, rhunwicks, chrisspen, bfirsh but updated to work with Django 2.2-4.0, Python 3.6+ and to use a binary field for storage.

Requires:

  • Django 2.2 - 4.0

Installation

Simply install via pip with:

pip install django-binary-database-files

Usage

In settings.py, add binary_database_files to your INSTALLED_APPS and add this line:

DEFAULT_FILE_STORAGE = 'binary_database_files.storage.DatabaseStorage'

Note, the upload_to parameter is still used to synchronize the files stored in the database with those on the file system, so new and existing fields should still have a value that makes sense from your base media directory.

If you are adding the package to an existing Django installation with pre-existing files, run:

python manage.py database_files_load

Additionally, if you want to export all files in the database back to the file system, run:

python manage.py database_files_dump

Note, that when a field referencing a file is cleared, the corresponding file in the database and on the file system will not be automatically deleted. To delete all files in the database and file system not referenced by any model fields, run:

python manage.py database_files_cleanup

Settings

  • DB_FILES_AUTO_EXPORT_DB_TO_FS = True|False (default True)

    If true, when a file is uploaded or read from the database, a copy will be exported to your media directory corresponding to the FileField's upload_to path, just as it would with the default Django file storage.

    If false, the file will only exist in the database.

  • DATABASE_FILES_URL_METHOD = 'URL_METHOD_1'|'URL_METHOD_2' (default 'URL_METHOD_1')

    Defines the method to use when rendering the web-accessible URL for a file.

    If URL_METHOD_1, assumes all files have been exported to the filesystem and uses the path corresponding to your settings.MEDIA_URL.

    If URL_METHOD_2, uses the URL bound to the database_file view to dynamically lookup and serve files from the filesystem or database.

    In this case, you will also need to updates your urls.py to include the view that serves the files:

      urlpatterns = [
          # ... the rest of your URLconf goes here ...
    
          # Serve Database Files directly
          path(r"", include("binary_database_files.urls")),
      ]
    
  • DATABASE_FILES_BASE_URL

    Allows the url method of the storage backend to return an absolute URL if provided.

Development

Code should be linted with:

./pep8.sh

Tests require the Python development headers to be installed, which you can install on Ubuntu with:

sudo apt-get install python3-dev python3.6-dev

To run unittests across multiple Python versions, install:

sudo apt-get install python3.6-minimal python3.6-dev python3.7-minimal python3.7-dev

To run all tests:

export TESTNAME=; tox

To run tests for a specific environment (e.g. Python 3.6 with Django 2.2):

export TESTNAME=; tox -e py36-django22

To run a specific test:

export TESTNAME=.test_adding_file; tox -e py36-django22

To build and deploy a versioned package to PyPI, verify all unittests are passing, then increase (and commit) the version number in binary_database_files/__init__.py and then run:

python setup.py sdist bdist_wheel
twine check dist/*
twine upload dist/*

Release files for sicksid-django-binary-database-files 1.1.0

For a detailed explanation of source distributions (sdists) and built distributions (wheels), please see the package formats documentation.

Source distribution (sdist)

Source distribution for sicksid-django-binary-database-files 1.1.0
File Size Uploaded
sicksid-django-binary-database-files-1.1.0.tar.gz 35.0 kB Details

Built distribution (wheel)

Table of built distributions (wheels) for sicksid-django-binary-database-files 1.1.0
File Interpreter ABI Platform
sicksid_django_binary_database_files-1.1.0-py3-none-any.whl Python 3 none any Details

Total release size:58.8 kB

Release files / sicksid-django-binary-database-files-1.1.0.tar.gz

Download URL sicksid-django-binary-database-files-1.1.0.tar.gz
Size 35.0 kB
Tags Source
SHA-256 checksum
How to use checksums
d6b67509b222033a1bfcc95a7a461eece3e8a77890fc63163abbf339b33fe85a
BLAKE2b-256 checksum
How to use checksums
b2476ce498b88e97c566d9c72d33d4f04bbc88c481be57977644e81555e99917
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via pdm/2.3.2 CPython/3.11.0

Release files / sicksid_django_binary_database_files-1.1.0-py3-none-any.whl

Download URL sicksid_django_binary_database_files-1.1.0-py3-none-any.whl
Size 23.7 kB
Tags Python 3
SHA-256 checksum
How to use checksums
25442162c4b19e2987d76261653ef930b34081d53a5a41b3cf73f03e4d712706
BLAKE2b-256 checksum
How to use checksums
5604e1456bd3344c82118251aa539c9f62cd9fd45b513eab6a8e9d471407e351
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via pdm/2.3.2 CPython/3.11.0

Release history Release notifications | RSS feed

This release

1.1.0 This release

2 release files

1.0.23

2 release files

1.0.22

2 release files

1.0.21

2 release files

1.0.20

2 release files

1.0.19

2 release files

1.0.18

2 release files

1.0.17

2 release files

Anthropic, PBC Visionary sponsor Bloomberg Visionary sponsor Hudson River Trading Visionary sponsor Meta Visionary sponsor NVIDIA Visionary sponsor Microsoft Sustainability sponsor Depot Continuous Integration AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page