view martini/utils.py @ 23:858fb3bfacfe default tip

python3
author Jeff Hammel <k0scist@gmail.com>
date Sat, 24 Apr 2021 15:04:15 -0700
parents 3c3522ce6e3a
children
line wrap: on
line source

def getlist(string, separator=','):
    if not string:
        return []
    _list = [ i.strip() for i in string.split(',') ]
    if not _list:
        return _list
    if not _list[-1]:
        return _list[:-1]
    return _list

def getbool(string):
    return string.strip().lower() == 'true'