Skip to main content

Easily convert common strings to boolean

Project description

Booleanify

Inspired by Pydantic's boolean, Booleanify is a Python package that provides a simple utility for converting strings representing boolean values into actual boolean values.

Installation

You can install Booleanify using pip:

```bash pip install booleanify ```

Usage

To use Booleanify in your Python code, simply import the `booleanify` function and pass a string representing a boolean value to it. The function will return the corresponding boolean value.

```python from booleanify import booleanify

result = booleanify("T") print(result) # Output: True

result = booleanify("false") print(result) # Output: False ```

Booleanify supports the following string representations for boolean values:

Input Output
1 True
'1' True
'on' True
't' True
'true' True
'y' True
'yes' True
0 False
'off' False
'f' False
'false' False
'n' False
'no' False

Contribution

If you have any suggestions, improvements, or issues regarding Booleanify, feel free to open an issue or submit a pull request on GitHub.

License

This project is licensed under the MIT License - see the LICENSE file for details.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

booleanify-0.1.0.tar.gz (5.9 kB view hashes)

Uploaded Source

Built Distribution

booleanify-0.1.0-py3-none-any.whl (6.4 kB view hashes)

Uploaded Python 3

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page