Metadata-Version: 2.1
Name: humps
Version: 0.2.2
Summary: camelCase converter
Home-page: https://github.com/erikhuizinga/humps
Author: Erik Huizinga
Author-email: huizinga.erik@gmail.com
License: LGPL-3.0
Keywords: camelcase,camel,case,string,conversion
Classifier: Development Status :: 4 - Beta
Classifier: Environment :: Other Environment
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: GNU Lesser General Public License v3 or later (LGPLv3+)
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3
Classifier: Topic :: Software Development
Classifier: Topic :: Text Editors
Classifier: Topic :: Text Editors :: Word Processors
Classifier: Topic :: Text Processing
Classifier: Topic :: Text Processing :: General
Classifier: Topic :: Utilities
License-File: LICENSE.txt

*********
``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:

.. code-block:: sh

  pip install humps


Python:

.. code-block:: python

  from humps.camel import case

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