API Reference

The API Reference for our modules, as well as a few other categories, are outlined in the following section.

Note

This module strongly uses the concept of chaining. This allows for a more mathmatically correct statements such as

>>> from cake import Integer
>>> Integer(10)(10)(10)
Integer(1000)

Information about the version

cake.version_info

A named tuple that is similar to sys.version_info.

Just like sys.version_info the valid values for releaselevel are ‘Pre-Alpha’, ‘Alpha’, ‘Beta’, ‘Stable’ and ‘Final’.