Metadata-Version: 1.0
Name: boolean
Version: 1.0.0
Summary: Converts string to their equivalent boolean value
Home-page: https://github.com/scisco/boolean
Author: Alireza J (Scisco)
Author-email: scisco7@gmail.com
License: CC0
Description: booleanp
        ========
        
        Converts strings such as "true", "True", "y", "n", ... to their equivalent Boolean value.
        
        Installation
        ------------
        
        .. ::
        
          $ pip install boolean
        
        Usage
        -----
        
        .. ::
        
          >>> from boolean import boolean
          >>> boolean('True')
          True
          >>> boolean('t')
          True
          >>> boolean('f')
          False
          >>> boolean('False')
          False
        
        
Keywords: boolean true false yes no
Platform: UNKNOWN
