web2py will automatically convert dashes to underscores for the function names, so:
getting-started
will become:
def getting_started():
return dict()
web2py will automatically convert dashes to underscores for the function names, so:
getting-started
will become:
def getting_started():
return dict()