Skip to main content

UNKNOWN

Project description

This is a utility for Django that implements the Django Storage API (for storing FileFields, ImageFields, etc.) and stores the contents of the files in your Django database instead of on the filesystem.

This is mainly intended to be an easy-to-use way to store file attachments and get rid of the pain of managing filesystem access at run time, and the deployment issues that come with it. If your file attachment needs are simple, this will generally be a quick way to get your app working.

Features:

  • Store any file in any database supported by Django.

  • Simplify deployment and data management: No need to keep track of file attachments when migrating data from one server to another, since files live in the database.

Limitations:

  • Django does not support binary fields (issue #2417) and as of this writing, expects queries to always return unicode data (issue #5135). As a result, this library uses base64 encoding to make binary data safe for the database, which inflates data size by about 33%.

  • Databases are not always built with large file storage in mind (unlike filesystems). As such, this is based on the assumption that files are “reasonably” sized, meaning well under 1MB. Files are entirely loaded into RAM during requests. Your mileage may vary.

  • No performance guarantees whatsoever. The idea is that these are small image attachments for a blog or similar, not that you are hosting a Youtube clone in your Django database.

Getting Started

  1. Install (pip install django-database-storage)

  2. Read the help:

    $ ./manage.py shell … >>> from database_storage import DatabaseStorage >>> help(DatabaseStorage)

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-database-storage-0.1.2.tar.gz (5.1 kB view details)

Uploaded Source

File details

Details for the file django-database-storage-0.1.2.tar.gz.

File metadata

File hashes

Hashes for django-database-storage-0.1.2.tar.gz
Algorithm Hash digest
SHA256 9e932cd08df7fc26b714adc08fa273b99c978dcdf2788610ec554335e369be50
MD5 03d97880ee664372f29094fb2d98368c
BLAKE2b-256 b185d797477e5ac6a06097416f13d3ae28161b8bccd694cdc8ab60e28b4b86fd

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