I got Python module error “ModuleNotFoundError: No module named ‘camlecase'” with python import below

import camelcase

This issue was solved import camelcase module as below.

from camelcase import CamelCase

You may use CamelCase method like below.

camel = CamelCase()
text = 'capital letter'
print(camel.hump(text))

This issue solved by modifying camelcase import.