redditwarp.util.booleanify#

redditwarp.util.booleanify.booleanify(s: str) bool[source]#

Convert a string to boolean.

An empty string is False.

Raises ValueError if the given string is not booleanifiable.

Booleanifiable strings:

  • Truthy: {'1', 'true', 't', 'on', 'yes', 'y'}

  • Falsy: {'0', 'false', 'f', 'off', 'no', 'n'}