sphinxcontrib-cqlengine

Sphinx "cqlengine" extension


License
BSD-3-Clause
Install
pip install sphinxcontrib-cqlengine==1.0

Documentation

sphinxcontrib-cqlengine

This package provides an extension for the Sphinx documentation system for automatically generating documentation for cqlengine models, a Python ORM for the Cassandra database.

The extension depends on and compliments the autodoc and sphinxcontrib-blockdiag extensions.

Installation

Add sphinxcontrib-cqlengine to your package dependencies or install it separately:

pip install sphinxcontrib-cqlengine

Enable the required Sphinx extensions in conf.py:

extensions = [
    # Intersphinx for linking directly into the cqlengine documentation
    'sphinx.ext.intersphinx',
    'sphinx.ext.autodoc',
    # blockdiag for rendering the diagrams
    'sphinxcontrib.blockdiag',
    'sphinxcontrib.cqlengine',
]

For linking directly into the cqlengine documentation update the intersphinx mapping:

intersphinx_mapping = {
    'http://docs.python.org/': None,
    'cqlengine': ('https://cqlengine.readthedocs.org/en/latest', None),
}

Usage

The extension provides a new directive called cassandra which takes a single argument which is the module path to the cqlengine model to document:

.. cassandra:: path.to.model

Example

# myapp/models.py

from cqlengine.models import model
from cqlengine import columns

class ActionLog(Model):
    """Sharded action log

    .. cassandra:: myapp.models.ActionLog
    """
    #: Type of action
    action = columns.Text(primary_key=True, partition_key=True)

    #: The year of the record
    year = columns.Integer(primary_key=True, partition_key=True)

    #: The month of the record
    month = columns.Integer(primary_key=True, partition_key=True)

    #: Timestamp of the action
    timestamp = columns.TimeUUID(primary_key=True, default=uuid.uuid1, clustering_order='DESC')

    #: Identifier of the user responsible for the action.
    user_id = columns.TimeUUID()

    #: Opaque, type specific data associated with the action.
    data = columns.Text()

Produces output similar to the following (depending on the Sphinx theme used). The generated documentation includes the name of the CQL table generated by the model and lists the model attributes grouped into three sections:

  • the partition key (possibly composite)
  • the clustering key (possibly multi-part)
  • the data columns

Each attribute has internal links to the per-attribute documentation (if generated by Sphinx) and the corresponding documentation of the used cqlengine column type (if intersphinx is activated).

The generated block-diagram shows the logical structure of the model in terms of rows (partitions) and (possibly) clustered column groups.

img/example.png

Credits

The initial implementation was sponsored by enquos.

License

3-clause BSD.

Changelog

1.0 (2016-03-21)

  • Use the short format in the intersphinx links to the column types. [dokai]
  • Python 3 support [dokai]

0.2 (2014-11-08)

  • Fixed regression caused by changes in blockdiag. [dokai]

0.1 (2013-11-26)

  • Initial public release. [dokai]

Contributors

  • Kai Lautaportti, dokai, (original author)