BNDL Cassandra exposes loading from and saving to functionality of the Datastax python driver for Apache Cassandra.
BNDL Cassandra can be installed through pip:
pip install bndl-cassandra
The main features of BNDL Cassandra are loading from and saving to Cassandra:
dataset = ctx.cassandra_table(keyspace, table) dataset.cassandra_save(keyspace2, table2).execute()
Furthermore it allows you to join a BNDL dataset with Cassandra:
dataset.join_with_cassandra(keyspace, table).on(columns=columns, keys=keys).left().count()