Django backend for Cloudflare D1 and Durable Objects
Project description
django-cf
Django database engine for Cloudflare D1 and Durable Objects
Installation
pip install django-cf
Using with D1
The D1 engine uses the HTTP api directly from Cloudflare, meaning you only need to create a new D1 database, then
create an API token with D1 read
permission, and you are good to go!
But using an HTTP endpoint for executing queries one by one is very slow, and currently there is no way to accelerate it, until a websocket endpoint is available.
The HTTP api doesn't support transactions, meaning all execute queries are final and rollbacks are not available.
DATABASES = {
'default': {
'ENGINE': 'django_d1',
'CLOUDFLARE_DATABASE_ID': '<database_id>',
'CLOUDFLARE_ACCOUNT_ID': '<account_id>',
'CLOUDFLARE_TOKEN': '<token>',
}
}
The Cloudflare token requires D1 Edit permissions.
A simple tutorial is available here for you to read.
Using with Durable Objects
The DO engine, requires you to deploy workers-dbms on your cloudflare account. This engine uses a websocket endpoint to keep the connection alive, meaning sql queries are executed way faster.
workers-dbms have an experimental transaction support, everything should be working out of the box, but you should keep an eye out for weird issues and report them back.
DATABASES = {
'default': {
'ENGINE': 'django_dbms',
'WORKERS_DBMS_ENDPOINT': '<websocket_endpoint>', # This should start with wss://
'WORKERS_DBMS_ACCESS_ID': '<access_id>', # Optional, but highly recommended!
'WORKERS_DBMS_ACCESS_SECRET': '<access_secret>', # Optional, but highly recommended!
}
}
Limitations
When using D1 engine, queries are expected to be slow, and transactions are disabled.
Read all Django limitations for SQLite databases here.
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
File details
Details for the file django_cf-0.0.16.tar.gz
.
File metadata
- Download URL: django_cf-0.0.16.tar.gz
- Upload date:
- Size: 11.5 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.1 CPython/3.11.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 8c25c96418d05812561c0e84d6e7607d0c036db514429d4e98478624d259767b |
|
MD5 | 1875754552a9b65b2b590c73d96f93b7 |
|
BLAKE2b-256 | f2cbb572dce5caf0cbe7b6fcce21bcfd14de99e9e6990d3523eaf77235deb18b |
File details
Details for the file django_cf-0.0.16-py3-none-any.whl
.
File metadata
- Download URL: django_cf-0.0.16-py3-none-any.whl
- Upload date:
- Size: 14.2 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.1 CPython/3.11.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | fa5cf0ad8dc905ab538b1a24c99eab74b862d99cf84dc33de91f1893c87425af |
|
MD5 | 22f6e260cc46f3857e41a072653cc6ad |
|
BLAKE2b-256 | 900b177a3ee81fba09c6a30c20b2a49c94510176e232728d13b086d4b36e2c78 |