scrapy.utils.template
scrapy
utils
template
CAMELCASE_INVALID_CHARS
render_templatefile
string_camelcase
Undocumented
re.compile(r'[^a-zA-Z\d]')
Convert a word to its CamelCase version and remove invalid chars
>>> string_camelcase('lost-pound') 'LostPound'
>>> string_camelcase('missing_images') 'MissingImages'