Simplifies connecting to Cassandra and AstraDB when using the DataStax driver
Project description
Cassandra Connector
This package provides a helpful wrapper around the cassandra-driver package with the following features:
- References environment variables for seamless connections to Apache Cassandra® and DataStax® Astra DB
- ConnectionManager maintains a dictionary of cluster connections, facilitating connections to multiple clusters in a single place.
- Automatically downloads Astra secure connect bundles, based on provided endpoint.
Installing
Until such time as this is published in PyPI, install from the GitHub repo directly:
pip install git+https://github.com/mieslep/cassandra-connector.git
Using
Connecting to Astra
Connecting to Astra with Environment Variables
The simplest approach is to set appropriate environment variables:
ASTRA_DB_APPLICATION_TOKEN=AstraCS:<your token here>
ASTRA_DB_API_ENDPOINT=https://<your endpoint here>
and then:
from cassandra_connector import CassandraConnectorManager
cm = CassandraConnectorManager()
astra = cm.get_connector('env_astra')
session = astra.session
which will get a driver Session object based on the ASTRA environment variables.
Connecting to Astra Directly
You can bypass the CassandraConnectorManager and use the CassandraConnector directly by passing a keyword dict
to the astra parameter, including both token and endpoint parameters:
from cassandra_connector import CassandraConnector
astra = CassandraConnector(astra={"token": "AstraCS:<your token here>", "endpoint": "https://<your endpoint here>"})
session = astra.session
Connecting to Cassandra
Connecting to a Cassandra, DataStax Enterprise (DSE), or any other Cassandra-compatible cluster is similar to the driver connection, but as a single step invocation.
There are two parameters introduced with the CassandraConnector; these are used to construct the authentication
provider object that is passed into the Cluster constructor:
authProviderClassis a string representing the Python package of the provider (it must beimport-able)authProviderArgsis adictof keyword arguments that are passed to the provider class
All other arguments will be passed directly to the Cluster constructor.
Note: If you do not need an auth provider to connect, you may omit these parameters. This is generally not advised for any production enviroment as it means that anybody with access to your cluster can access the data within the cluster.
Connecting to Cassandra with Environment Variables
If you want to use env_cassandra, represent them as a single JSON document in the CASSANDRA_CONNECTION variable, for example:
CASSANDRA_CONNECTION={"authProviderClass": "cassandra.auth.PlainTextAuthProvider", "authProviderArgs": {"username": "cassandra", "password": "cassandra"}, "contact_points": ["localhost"], "port": 9042}
Once set, you can get a Session:
from cassandra_connector import CassandraConnectorManager
cm = CassandraConnectorManager()
cassandra = cm.get_connector('env_cassandra')
session = cassandra.session
Connecting to Cassandra Directly
You can provide these same arguments directly to the CassandraConnector:
from cassandra_connector import CassandraConnector
cassandra = CassandraConnector(
authProviderClass="cassandra.auth.PlainTextAuthProvider",
authProviderArgs={"username": "cassandra", "password": "cassandra"},
contact_points=["localhost"],
port=9042)
session = cassandra.session
The CassandraConnectorManager Object
In addition to being able to create CassandraConnector objects from environment variables, you can use the get_connector function
along with a dict key of your choosing (other than the above env_* keys). The first time a key is used, you must
pass connection parameters as you would connecting "directly" as documented above, but subsequently you can simply pass the key
and the CassandraConnector will be returned.
The CassandraConnector Object
As seen above, this object has a .session property which is the native driver Session object. The object also has a .cluster
property which gives access to the native driver Cluster object.
The session() function has two boolean parameters:
replacewill close the existing session and replace it with a new session; you may wish to do this if you have changed something in the underlyingClusterobject for example.newwill create a new (and detached) Session object.
For More Details
Docstrings are the best reference for more detailed usage for the connection arguments.
Contributing
Contributions welcome, just fire off a pull request :)
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
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file cassandra-connector-0.3.0.tar.gz.
File metadata
- Download URL: cassandra-connector-0.3.0.tar.gz
- Upload date:
- Size: 10.2 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.0.0 CPython/3.11.8
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
6390ee33f11ce5274987410b9cf2bc572167f6d080025f61a2dc7b0e688b56d0
|
|
| MD5 |
a3912c62639fe1d4c53bf4a5b1ca3241
|
|
| BLAKE2b-256 |
e1cc9b0c51dc54c036ac3b0c03722ac604070263908fa4099407d40d3de07275
|
File details
Details for the file cassandra_connector-0.3.0-py3-none-any.whl.
File metadata
- Download URL: cassandra_connector-0.3.0-py3-none-any.whl
- Upload date:
- Size: 9.8 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.0.0 CPython/3.11.8
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
cb09e8b0f06d963aacf483c7234c40fa5db063487d5b22cf7adc92053250a92b
|
|
| MD5 |
6f5896f991b936445dcfe1a81c728430
|
|
| BLAKE2b-256 |
84c464d702e579fb902547487e2ecdcf8e19a63e72ae3058d75dd8e13a6c5608
|