microblog.pub/utils/__init__.py

13 lines
271 B
Python
Raw Normal View History

2018-05-22 22:57:34 +00:00
import logging
logger = logging.getLogger(__name__)
def strtobool(s: str) -> bool:
2018-06-18 22:10:19 +00:00
if s in ["y", "yes", "true", "on", "1"]:
2018-05-22 22:57:34 +00:00
return True
2018-06-18 22:10:19 +00:00
if s in ["n", "no", "false", "off", "0"]:
2018-05-22 22:57:34 +00:00
return False
2018-06-18 22:10:19 +00:00
raise ValueError(f"cannot convert {s} to bool")