All Downloads are FREE. Search and download functionalities are using the official Maven repository.

kr.motd.maven.sphinx.dist.CommonMark.utils.py Maven / Gradle / Ivy

There is a newer version: 2.10.0
Show newest version
def to_camel_case(snake_str):
    components = snake_str.split('_')
    return ''.join(x.title() for x in components)




© 2015 - 2024 Weber Informatics LLC | Privacy Policy