ipython-cql

IPython Extension for Cassandra integration


License
BSD-1-Clause
Install
pip install ipython-cql==0.5

Documentation

This extension is based on the work done by Catherine Devlin: https://github.com/catherinedevlin/ipython-sql

For now it automatically connects to localhost.

Load the extension:

%load_ext cql

Select a keyspace:

%keyspace tutorial

List tables:

%tables

Execute CQL Statements

%cql select * from user;