No activity today, make something!
tiddlyweb @make_command

20160313183521 cdent  

@make_command is a decorator method provided by the tiddlyweb.manage module used to create twanager commands.

The following example creates a "hello" command:

from tiddlyweb.manage import make_command

@make_command()
def hello(args):
    """Say hello"""
    print "Hello"