Personal fork of https://github.com/datafolklabs/cement

BJ Dierkes d8c28897cb Bump Version 2.6.2 Stable il y a 9 ans
cement d8c28897cb Bump Version 2.6.2 Stable il y a 9 ans
doc 989502d5d1 bumping Version to 2.6.1 Development il y a 9 ans
examples 5f97acead8 Working on Doc il y a 9 ans
scripts 2019953562 Only Require PyInotify on Linux il y a 9 ans
tests 684b9f9337 PEP8 Fixes il y a 9 ans
.coveragerc a6684d259c Fix coverage issues with ext_daemon il y a 11 ans
.gitignore f63d1f34b0 adding test module il y a 12 ans
.pylintrc 6215478936 Pylint fixes. Part of Issue #132 il y a 12 ans
.travis.yml 987c4d4d5b Add Python 3.4 to Travis Tests il y a 9 ans
CONTRIBUTORS 5e1f018015 Resolves Issue #259 il y a 10 ans
ChangeLog d8c28897cb Bump Version 2.6.2 Stable il y a 9 ans
LICENSE c2acc68bf9 Bump Year in Copyrights il y a 9 ans
README.md 989502d5d1 bumping Version to 2.6.1 Development il y a 9 ans
Vagrantfile 4dd61efef5 Completing Issue #297 il y a 9 ans
requirements-dev-linux.txt 2019953562 Only Require PyInotify on Linux il y a 9 ans
requirements-dev-py3-linux.txt 2019953562 Only Require PyInotify on Linux il y a 9 ans
requirements-dev-py3.txt 437bb693b7 Resolves Issue #197 il y a 9 ans
requirements-dev.txt 437bb693b7 Resolves Issue #197 il y a 9 ans
requirements.txt 13d15d68c5 Adding development requirements il y a 12 ans
setup.cfg fe9e5beff9 Further Resolves Issue #297 il y a 9 ans
setup.py bbf2e4e31e Resolves Issue #202 and #217 il y a 11 ans

README.md

Cement Framework

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

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

  • 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.