Metadata-Version: 2.0
Name: ilio
Version: 0.4.0
Summary: inline io: just one function call instead of file open(), read(), close()
Home-page: https://github.com/gowhari/ilio
Author: Iman Gowhari
Author-email: gowhari@gmail.com
License: MIT
Platform: UNKNOWN

install
=======

::

    pip install ilio


usage
=====

.. code:: python

    from ilio import read, write

    content = read('filename')
    write('filename', content)

    # there is fread=read and fwrite=write so you can import them
    # from ilio import fread, fwrite


