Metadata-Version: 1.1
Name: nocase
Version: 1.0.4
Summary: Freely use your coding style
Home-page: https://github.com/Code-ReaQtor/NoCase
Author: Ronie Martinez
Author-email: ronmarti18@gmail.com
License: GNU Lesser General Public License v2.1
Download-URL: https://github.com/Code-ReaQtor/NoCase/tarball/1.0.4
Description: # 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
        
        ```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"
        ```
        
Platform: UNKNOWN
Classifier: Development Status :: 3 - Alpha
Classifier: License :: OSI Approved :: GNU Lesser General Public License v2 or later (LGPLv2+)
Classifier: Topic :: Software Development :: Libraries :: Python Modules
