humps

camelCase converter


Keywords
camelcase, camel, case, string, conversion
License
LGPL-3.0
Install
pip install humps==0.2.2

Documentation

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