Metadata-Version: 2.1
Name: isOdd
Version: 0.1.2
Summary: Simple library to check if a number is odd
Home-page: https://github.com/juanbenitezdev/isOdd
Author: Juan Benitez
Author-email: juanbenitezdev@gmail.com
License: MIT
Download-URL: https://github.com/JuanBenitezDev/isOdd/archive/v0.1.2.tar.gz
Description: # isOdd
        
        isOdd is a simple library to check if a number is odd.
        
        ### Installation
        
        ```
        pip install isOdd
        ```
        
        ### Usage
        
        ```
        from isOdd import isOdd
        
        print(isOdd('1')) //=> true
        print(isOdd('5')) //=> true
        
        print(isOdd(0)) //=> false
        print(isOdd(4)) //=> false
        ```
Keywords: Odd,Integer,Math
Platform: UNKNOWN
Classifier: Development Status :: 5 - Production/Stable
Classifier: Intended Audience :: Developers
Classifier: Topic :: Software Development :: Build Tools
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Description-Content-Type: text/markdown
