module documentation

Helper functions for working with templates
Constant CAMELCASE​_INVALID​_CHARS Undocumented
Function render​_templatefile Undocumented
Function string​_camelcase Convert a word to its CamelCase version and remove invalid chars
CAMELCASE_INVALID_CHARS =

Undocumented

Value
re.compile(r'[^a-zA-Z\d]')
def render_templatefile(path, **kwargs):

Undocumented

def string_camelcase(string):

Convert a word to its CamelCase version and remove invalid chars

>>> string_camelcase('lost-pound')
'LostPound'
>>> string_camelcase('missing_images')
'MissingImages'