Python extension for Lux IO INSTALL install Lux IO and Cython. then $ python setup.py install HOW TO USE >>> import luxio >>> io = luxio.LuxIO('test') >>> io.put('key', 'value') True >>> io.get('key') 'value' >>> io.append('key', '123') True >>> io.get('key') 'value123' >>> io.delete('key') True