Metadata-Version: 1.0
Name: quiche
Version: 0.2.3
Summary: Make-like system for caching Python function results. Compatible with keras.
Home-page: https://github.com/solsword/quiche
Author: Peter Mawhorter
Author-email: pmawhorter@gmail.com
License: Mozilla Public License Version 2.0
Description: 
        quiche
        ======
        
        Python module for caching the results of functions on disk and/or in memory and
        reusing them as-needed instead of recomputing them all the time.
        
        .. code-block:: sh
        
           pip install quiche
        
        should work, after which:
        
        .. code-block:: python
        
           from quiche import dep
        
           @dep.task((), "base")
           def base():
             return 7
        
           @dep.task(("base",), "plus_one")
           def plus_one(base):
             return base + 1
        
           @dep.task(("plus_one",), "times_two")
           def times_two(val):
             return val*2
        
           ts, val = dep.create("times_two")
           print("(7 + 1) * 2 is", val)
        
        should print:
        
        .. code-block::
        
           (7 + 1) * 2 is 16
        
Platform: UNKNOWN
