Skip to main content

Django storage backend for CouchDB

Project description

A couchdb storage backend for Django

For each upload, a new document with the file attached is created.

Setup

Install this package with pip:

pip install -U django-couchdb-storage

Add it to your INSTALLED_APPS in django settings:

INSTALLED_APPS = [
    ...

    'couch',
]

And and configuration to point django to your couchdb:

DEFAULT_FILE_STORAGE = 'couchdb_storage.CouchDBStorage'
COUCHDB_HOST = 'http://127.0.0.1:5984'
COUCHDB_DATABASE = 'django_storage'
COUCHDB_USER = ''
COUCHDB_PASSWORD = ''

Constraints

Right now, this package assumes that content from the storage database can be read anonymously. Writes are authenticated. It is also assumed, that the db host can be accessed publicly.

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_couchdb_storage-0.0.2.tar.gz (2.1 kB view hashes)

Uploaded Source

Built Distribution

django_couchdb_storage-0.0.2-py3-none-any.whl (3.6 kB view hashes)

Uploaded Python 3

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