Application Framework for Python
Go to file
2015-10-01 17:08:50 -05:00
cement Add Doc Strings to EXT Meta 2015-09-25 12:52:43 -05:00
doc Add Gitter Badge 2015-10-01 16:30:32 -05:00
examples Minor Changes 2015-05-31 14:13:19 -05:00
scripts Drop --use-mirrors For Travis 2015-10-01 17:08:50 -05:00
tests Further Resolves #325 2015-07-13 14:56:45 -05:00
.coveragerc Fix coverage issues with ext_daemon 2014-01-29 18:03:52 -06:00
.gitignore Updating Git Ignore 2015-05-15 00:15:37 -05:00
.pylintrc Pylint fixes. Part of Issue #132 2012-09-07 16:44:08 -05:00
.travis.yml Add Python 3.5 to Travis 2015-10-01 16:52:51 -05:00
ChangeLog Resolves Issue #325 2015-07-13 14:38:57 -05:00
CONTRIBUTORS Resolves Issue #259 2014-07-09 11:40:33 -05:00
LICENSE Bump Year in Copyrights 2015-05-06 00:55:12 -05:00
README.md Add Gitter Badge 2015-10-01 16:30:32 -05:00
requirements-dev-linux.txt Only Require PyInotify on Linux 2015-05-05 20:02:02 -05:00
requirements-dev-py3-linux.txt Only Require PyInotify on Linux 2015-05-05 20:02:02 -05:00
requirements-dev-py3.txt Further Resolves Issue #299 2015-06-23 00:54:36 -05:00
requirements-dev.txt Further Resolves Issue #299 2015-06-23 00:53:41 -05:00
requirements.txt Adding development requirements 2012-08-03 19:05:02 -05:00
setup.cfg Further Resolves Issue #297 2015-05-04 21:19:24 -05:00
setup.py Resolves Issue #202 and #217 2014-01-22 18:09:03 -06:00
Vagrantfile Further Refactor Issue #205 2015-06-10 18:03:20 -05:00

Cement Framework

NOTE: 2.7.x is the development version of Cement. Please use 2.6.x in production until version 2.8.x is released.

Cement is an advanced CLI Application Framework for Python. Its goal is to introduce a standard, and feature-full platform for both simple and complex command line applications as well as support rapid development needs without sacrificing quality. Cement is flexible, and it's use cases span from the simplicity of a micro-framework to the complexity of a mega-framework. Whether it's a single file script, or a multi-tier application, Cement is the foundation you've been looking for.

The first commit to Git was on Dec 4, 2009. Since then, the framework has seen several iterations in design, and has continued to grow and improve since it's inception. Cement is the most stable, and complete framework for command line and backend application development.

Continuous Integration Status Gitter

Cement core features include (but are not limited to):

  • Core pieces of the framework are customizable via handlers/interfaces
  • Extension handler interface to easily extend framework functionality
  • Config handler supports parsing multiple config files into one config
  • Argument handler parses command line arguments and merges with config
  • Log handler supports console and file logging
  • Plugin handler provides an interface to easily extend your application
  • Hook support adds a bit of magic to apps and also ties into framework
  • Handler system connects implementation classes with Interfaces
  • Output handler interface renders return dictionaries to console
  • Cache handler interface adds caching support for improved performance
  • Controller handler supports sub-commands, and nested controllers
  • Zero external dependencies* (not including optional extensions)
  • 100% test coverage using Nose*
  • 100% PEP8 compliant using pep8 and autopep8 tools
  • Extensive Sphinx documentation
  • Tested on Python 2.6, 2.7, 3.2, 3.3, and 3.4

Note that argparse is required as an external dependency for Python < 2.7 and < 3.2. Additionally, some optional extensions that are shipped with the mainline Cement sources do require external dependencies. It is the responsibility of the application developer to include these dependencies along with their application, as Cement explicitly does not include them.

More Information

License

The Cement CLI Application Framework is Open Source and is distributed under the BSD License (three clause). Please see the LICENSE file included with this software.