python-filehelpers

A set of various file helpers.


License
MIT
Install
pip install python-filehelpers==1.0.6

Documentation

A set of various list helpers

Install instructions

Install via pip

$ pip install python_filehelpers

Quick Usage

>>> from listhelpers import *

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