Django Cassandra Engine - the Cassandra backend for Django
Project description
All tools you need to start your journey with Apache Cassandra and Django Framework!
Features
integration with latest python-driver and optionally dse-driver from DataStax
working flush, migrate, sync_cassandra, inspectdb and dbshell commands
support for creating/destroying test database
accepts all Cqlengine and cassandra.cluster.Cluster connection options
automatic connection/disconnection handling
works well along with relational databases (as secondary DB)
storing sessions in Cassandra
working django forms
usable admin panel with Cassandra models
Plans (TODO)
User model stored in Cassandra (auth module)
Installation
Recommended installation:
pip install django-cassandra-engine
Basic Usage
Add django_cassandra_engine to INSTALLED_APPS in your settings.py file:
INSTALLED_APPS = ('django_cassandra_engine',) + INSTALLED_APPS
Change DATABASES setting:
DATABASES = { 'default': { 'ENGINE': 'django_cassandra_engine', 'NAME': 'db', 'TEST_NAME': 'test_db', 'HOST': 'db1.example.com,db2.example.com', 'OPTIONS': { 'replication': { 'strategy_class': 'SimpleStrategy', 'replication_factor': 1 } } } }
Define some model:
# myapp/models.py import uuid from cassandra.cqlengine import columns from django_cassandra_engine.models import DjangoCassandraModel class ExampleModel(DjangoCassandraModel): example_id = columns.UUID(primary_key=True, default=uuid.uuid4) example_type = columns.Integer(index=True) created_at = columns.DateTime() description = columns.Text(required=False)
Run ./manage.py sync_cassandra
Done!
Documentation
The documentation can be found online here.
Donation
If this project help you reduce time to develop, you can give me a cup of coffee :)
License
Copyright (c) 2014-2018, Rafał Furmański.
All rights reserved. Licensed under BSD 2-Clause License.
Project details
Release history Release notifications | RSS feed
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
File details
Details for the file django-cassandra-engine-1.5.3.tar.gz
.
File metadata
- Download URL: django-cassandra-engine-1.5.3.tar.gz
- Upload date:
- Size: 29.3 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 2dc53240a77b75ccff3811fb0583b46d59e7a6fb3be3e95984936c4f1cfc0a1b |
|
MD5 | 0902726e6821bbb6d5bbbc02c6c7d1a8 |
|
BLAKE2b-256 | 9a06408a18b8b312074713127f1080dec3195a96edcbb2cbc71319b4b363d835 |
File details
Details for the file django_cassandra_engine-1.5.3-py2-none-any.whl
.
File metadata
- Download URL: django_cassandra_engine-1.5.3-py2-none-any.whl
- Upload date:
- Size: 38.8 kB
- Tags: Python 2
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | dd32f8b92ee1bbdb134c3a5bafa73d508f04c1e4d977a69e0315a26097225222 |
|
MD5 | cb3f78614d80f48f118d56c1bbc56ffd |
|
BLAKE2b-256 | 61f4f1ee646f336410001e1a38f9a9e99889df3ce39f671b1f861d0e6c92b8fa |