NoCase
======

Freely use your coding style

NoCase automatically converts method calls from snake\_case to camelCase
and vice versa.

Installation
------------

Using pip
~~~~~~~~~

::

    pip install nocase

Manual installation
~~~~~~~~~~~~~~~~~~~

Download from https://github.com/Code-ReaQtor/NoCase/releases

::

    python setup.py install

Example
-------

.. code:: python

    from nocase import NoCase


    class MyClass(NoCase):

        def myMethod(self):
            return "my method"

        def my_other_method(self):
            return "my other method"

    my_class = MyClass()
    print(my_class.my_method())  # prints "my method"
    print(my_class.myOtherMethod())  # prints "my other method"
