Если тебе просто нужен сценарий, который будет переводить текст в верблюжийРегистр, то могу предложить свой вариант решения
def to_camel_case(text):
camel_text = ''
banned = '_ -'
text = text.replace('\n', ' ').replace('\t', ' ')
for char in banned:
if char in text:
text = text.lower().split(char)
for word in text:
if not text.index(word):
camel_text += word
else:
word = word.title()
camel_text += word
return camel_text