Application Framework for Python
Go to file
BJ Dierkes 536a787fdc Merge pull request #221 from hamr/stable/2.0.x
collect attributes from self.__class__ instead of self
2014-01-20 12:22:57 -08:00
cement collect attributes from self.__class__ instead of self 2014-01-06 14:12:25 -08:00
doc Resolves Issue #195 2013-06-07 19:13:52 -05:00
scripts Removing un-needed run-tests.sh 2012-08-03 00:09:01 -05:00
tests Changed the app name of some tests 2012-08-27 16:28:49 -05:00
.gitignore adding test module 2012-07-15 15:11:38 -05:00
.pylintrc pylint fixes, and Resolves Issue #126 2012-07-12 23:03:12 -05:00
.travis.yml Removed Python 3.1, adding Python 3.3 2013-03-14 02:10:46 -05:00
ChangeLog Resolved Issue #183 2013-03-14 02:10:16 -05:00
CONTRIBUTORS Resolves Issue #144 2012-07-30 21:31:30 -05:00
LICENSE Resolves Issue #144 2012-07-30 21:31:30 -05:00
README.md remove references to Cement 1.0.0 2012-08-10 20:01:27 -05:00
requirements-dev.txt Adding development requirements 2012-08-03 19:05:02 -05:00
requirements.txt Adding development requirements 2012-08-03 19:05:02 -05:00
setup.cfg Resolves Issue #131 2012-07-12 19:44:05 -05:00
setup.py Resolved Issue #185 2013-04-09 16:12:03 -05:00

Cement CLI Application Framework for Python

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.

Continuous Integration Status

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* (ext's with dependencies ship separately)
  • 100% test coverage
  • Extensive Sphinx documentation
  • Tested on Python 2.6, 2.7, 3.1, and 3.2

Note that argparse is required as an external dependency for Python < 2.7 and < 3.2.

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.