/boolean

String to Boolean converter

Primary LanguagePythonCreative Commons Zero v1.0 UniversalCC0-1.0

Boolean

https://travis-ci.org/scisco/boolean.svg?branch=develop License

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