What's New!
Overview of notable features and major changes in the latest release.
Notable Features and Changes
Better Documentation
Simplified API Naming Conventions and Usage
from cement import App, Controller, ex
class Base(Controller):
class Meta:
label = 'base'
@ex(help='this is a command')
def cmd1(self):
print('Inside Base.cmd1()')
class MyApp(App):
class Meta:
label = 'myapp'
handlers = [Base]Developer Tools CLI
Clearer Interface Definition and Implementation
Docker / Docker Compose Support
Environment Variable Overrides
New Interfaces
New Extensions
Last updated