A Records like database API that works with Aurora Serverless Data API
Project description
Camus
Camus is a raw SQL library enabling an ease integration with the new Aurora Serverless Data API. Its API is based on the powerful Records library.
Instalation
The recommended installation method is pipenv
:
$ pipenv install camus
Basic Usage
First you need to have an Aurora cluster ARN and a Secret ARN. If don't have one yet, just follow the Data API Getting Started Guide.
With that in hands, let's drop some query in our database:
import camus
db = camus.Database(
resource_arn="arn:aws:rds:us-east-1:123456789012:cluster:your-cluster-name",
secret_arn="arn:aws:secretsmanager:us-east-1:123456789012:secret:your-secret-name-ByH87J",
dbname="mydb",
)
rows = db.query("SELECT * FROM users")
You can grab one row at time (like in Records library)
>>> rows[0]
<camus.Record at 0x109bfbd30>
Or iterate over them:
for r in rows:
print(r.name, r.email)
Like mentioned before, Camus tries to maintain the same API of the Records library, so you have the same access patterns:
row.email
row['email']
row[3]
Other options include rows.as_dict()
and rows.as_dict(ordered=True)
Transactions
Data API transactions are supported by Camus:
with db.transaction() as txid:
db.query("INSERT INTO users (name, email) VALUES (:name, :email)", name="Rafael", email="rafael@email.com")
db.query("UPDATE posts SET title = :title WHERE id = :id", title="New Title", id=999)
If any exception is raised when executing any of the queries, a rollback is performed automatically.
That's all folks
Thanks for the awesome @kennethreitz for providing his knowledge on the excelent Records library and all the talks he has given over the years!
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 camus-1.0.0.tar.gz
.
File metadata
- Download URL: camus-1.0.0.tar.gz
- Upload date:
- Size: 5.1 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.2.0 requests-toolbelt/0.9.1 tqdm/4.46.0 CPython/3.8.1
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | fb7aa05bc3514738f08e950feb13b9ae3de437df4e8232d5871fd55ed12ab12c |
|
MD5 | 34ec84f0b7f4e78c12daf326a1995eb9 |
|
BLAKE2b-256 | 4003860956667956c557ab253243823acff8b7a19f9e292c3968d60b34a01ba3 |
File details
Details for the file camus-1.0.0-py3-none-any.whl
.
File metadata
- Download URL: camus-1.0.0-py3-none-any.whl
- Upload date:
- Size: 5.7 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.2.0 requests-toolbelt/0.9.1 tqdm/4.46.0 CPython/3.8.1
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 69e7d60c9afc2b09a515132290b0987555fc43b103af8b1452ce2512d9511d12 |
|
MD5 | 44076c59a3cd02d0499ed54dee2bcb38 |
|
BLAKE2b-256 | 2eb509e25ad72ee300963d9c1e7c16bbfd1fb680c3cfc9e2102247e1de9b551b |