Files
bonobo/bonobo/commands/templates/bare.py-tpl

17 lines
306 B
Plaintext

import bonobo
def get_graph(**options):
graph = bonobo.Graph()
graph.get_cursor() >> ...
return graph
def get_services(**options):
return {}
if __name__ == '__main__':
with bonobo.parse_args() as options:
bonobo.run(get_graph(**options), services=get_services(**options))