Skip to content

erikhuizinga/humps

Repository files navigation

humps

Convert any string to camelCase.

Description

camelCase starts with a lower case alphabetic character, the rest of the string contains alphanumeric characters. Any character case in the input is ignored. Any spaces in the input capitalise the following character if alphabetic, except for the first character. Any non-alphanumeric characters are ignored.

Installation

Shell:

pip install humps

Python:

from humps.camel import case

print(case('Hello, World!'))
# Output: helloWorld