python-listhelpers

A set of various list helpers.


License
MIT
Install
pip install python-listhelpers==1.0.1

Documentation

A set of various list helpers

Install instructions

Install via pip

$ pip install python_listhelpers

Quick Usage

>>> from listhelpers import *

>>> listify('hello world')
['hello world']
>>> listify(['hello world'])
['hello world']
>>> listify(33)
[33]