Skip to content

Releases: uqfoundation/klepto

0.2.5

28 Jan 00:14
Compare
Choose a tag to compare

0.2.5 Release Notes

Klepto extends python's lru_cache to utilize different keymaps and alternate caching algorithms, such as lfu_cache and mru_cache. While caching is meant for fast access to saved results, klepto also has archiving capabilities, for longer-term storage. Klepto uses a simple dictionary-sytle interface for all caches and archives, and all caches can be applied to any python function as a decorator. Keymaps are algorithms for converting a function's input signature to a unique dictionary, where the function's results are the dictionary value. Thus for y = f(x), y will be stored in cache[x](e.g. {x:y}).

Klepto provides both standard and 'safe' caching, where safe caches are slower but can recover from hashing errors. Klepto is intended to be used for distributed and parallel computing, where several of the keymaps serialize the stored objects. Caches and archives are intended to be read/write accessible from different threads and processes. Klepto enables a user to decorate a function, save the results to a file or database archive, close the interpreter, start a new session, and reload the function and it's cache.

Klepto installs with pip:
$ pip install klepto

Klepto requires:
- python or pypy, >=3.8
- dill, >=0.3.8
- pox, >=0.3.4

Optional requirements:
- sqlalchemy, >=1.4.0 (install with $ pip install klepto[archives])
- h5py, >=2.8.0 (install with $ pip install klepto[archives])
- pandas, >=0.17.0 (install with $ pip install klepto[archives])

Klepto is licensed under 3-clause BSD:

 >>> import klepto
 >>> print (klepto.license())

To cite klepto:

 >>> import klepto
 >>> print (klepto.citation())

What's Changed

New Contributors

Full Changelog: klepto-0.2.4...0.2.5

klepto-0.2.4

23 Jul 00:24
Compare
Choose a tag to compare

klepto 0.2.4 Release Notes

Klepto extends python's lru_cache to utilize different keymaps and alternate caching algorithms, such as lfu_cache and mru_cache. While caching is meant for fast access to saved results, klepto also has archiving capabilities, for longer-term storage. Klepto uses a simple dictionary-sytle interface for all caches and archives, and all caches can be applied to any python function as a decorator. Keymaps are algorithms for converting a function's input signature to a unique dictionary, where the function's results are the dictionary value. Thus for y = f(x), y will be stored in cache[x](e.g. {x:y}).

Klepto provides both standard and 'safe' caching, where safe caches are slower but can recover from hashing errors. Klepto is intended to be used for distributed and parallel computing, where several of the keymaps serialize the stored objects. Caches and archives are intended to be read/write accessible from different threads and processes. Klepto enables a user to decorate a function, save the results to a file or database archive, close the interpreter, start a new session, and reload the function and it's cache.

Klepto installs with pip:
$ pip install klepto

Klepto requires:
- python or pypy, >=3.7
- dill, >=0.3.7
- pox, >=0.3.3

Optional requirements:
- sqlalchemy, >=1.4.0 (install with $ pip install klepto[archives])
- h5py, >=2.8.0 (install with $ pip install klepto[archives])
- pandas, >=0.17.0 (install with $ pip install klepto[archives])

Klepto is licensed under 3-clause BSD:

 >>> import klepto
 >>> print (klepto.license())

To cite klepto:

 >>> import klepto
 >>> print (klepto.citation())

What's Changed

New Contributors

Full Changelog: klepto-0.2.3...klepto-0.2.4

klepto-0.2.3

23 Oct 23:07
Compare
Choose a tag to compare

klepto 0.2.3 Release Notes

Klepto extends python's lru_cache to utilize different keymaps and alternate caching algorithms, such as lfu_cache and mru_cache. While caching is meant for fast access to saved results, klepto also has archiving capabilities, for longer-term storage. Klepto uses a simple dictionary-sytle interface for all caches and archives, and all caches can be applied to any python function as a decorator. Keymaps are algorithms for converting a function's input signature to a unique dictionary, where the function's results are the dictionary value. Thus for y = f(x), y will be stored in cache[x](e.g. {x:y}).

Klepto provides both standard and 'safe' caching, where safe caches are slower but can recover from hashing errors. Klepto is intended to be used for distributed and parallel computing, where several of the keymaps serialize the stored objects. Caches and archives are intended to be read/write accessible from different threads and processes. Klepto enables a user to decorate a function, save the results to a file or database archive, close the interpreter, start a new session, and reload the function and it's cache.

Klepto installs with pip:
$ pip install klepto

Klepto requires:
- python or pypy, >=3.7
- dill, >=0.3.6
- pox, >=0.3.2

Optional requirements:
- sqlalchemy, >=0.8.4 (install with $ pip install klepto[archives])
- h5py, >=2.8.0 (install with $ pip install klepto[archives])
- pandas, >=0.17.0 (install with $ pip install klepto[archives])

Klepto is licensed under 3-clause BSD:

 >>> import klepto
 >>> print (klepto.license())

To cite klepto:

 >>> import klepto
 >>> print (klepto.citation())

Full Changelog: klepto-0.2.2...klepto-0.2.3

klepto-0.2.2

20 May 19:08
Compare
Choose a tag to compare

Klepto extends python's lru_cache to utilize different keymaps and alternate caching algorithms, such as lfu_cache and mru_cache. While caching is meant for fast access to saved results, klepto also has archiving capabilities, for longer-term storage. Klepto uses a simple dictionary-sytle interface for all caches and archives, and all caches can be applied to any python function as a decorator. Keymaps are algorithms for converting a function's input signature to a unique dictionary, where the function's results are the dictionary value. Thus for y = f(x), y will be stored in cache[x](e.g. {x:y}).

Klepto provides both standard and 'safe' caching, where safe caches are slower but can recover from hashing errors. Klepto is intended to be used for distributed and parallel computing, where several of the keymaps serialize the stored objects. Caches and archives are intended to be read/write accessible from different threads and processes. Klepto enables a user to decorate a function, save the results to a file or database archive, close the interpreter, start a new session, and reload the function and it's cache.

Klepto installs with pip:
$ pip install klepto

Klepto requires:
- python or pypy, ==2.7 or >=3.7
- dill, >=0.3.5.1
- pox, >=0.3.1

Optional requirements:
- sqlalchemy, >=0.8.4 (install with $ pip install klepto[archives])
- h5py, >=2.8.0 (install with $ pip install klepto[archives])
- pandas, >=0.17.0 (install with $ pip install klepto[archives])

Klepto is licensed under 3-clause BSD:

 >>> import klepto
 >>> print (klepto.license())

To cite klepto:

 >>> import klepto
 >>> print (klepto.citation())

klepto-0.2.1

13 Jun 19:32
Compare
Choose a tag to compare

Klepto extends python's lru_cache to utilize different keymaps and alternate caching algorithms, such as lfu_cache and mru_cache. While caching is meant for fast access to saved results, klepto also has archiving capabilities, for longer-term storage. Klepto uses a simple dictionary-sytle interface for all caches and archives, and all caches can be applied to any python function as a decorator. Keymaps are algorithms for converting a function's input signature to a unique dictionary, where the function's results are the dictionary value. Thus for y = f(x), y will be stored in cache[x](e.g. {x:y}).

Klepto provides both standard and 'safe' caching, where safe caches are slower but can recover from hashing errors. Klepto is intended to be used for distributed and parallel computing, where several of the keymaps serialize the stored objects. Caches and archives are intended to be read/write accessible from different threads and processes. Klepto enables a user to decorate a function, save the results to a file or database archive, close the interpreter, start a new session, and reload the function and it's cache.

Klepto installs with easy_install or pip:
$ pip install klepto

Klepto requires:
- python, version == 2.7 *or* version >= 3.6 *or* pypy
- dill, version >= 0.3.4
- pox, version >= 0.3.0

Optional requirements:
- sqlalchemy, version >= 0.8.4 (install with $ pip install klepto[archives])
- h5py, version >= 2.8.0 (install with $ pip install klepto[archives])
- pandas, version >= 0.17.0 (install with $ pip install klepto[archives])

Klepto is licensed under 3-clause BSD:

 >>> import klepto
 >>> print (klepto.license())

To cite klepto:

 >>> import klepto
 >>> print (klepto.citation())

klepto-0.2.0

02 Nov 00:54
Compare
Choose a tag to compare

Klepto extends python's lru_cache to utilize different keymaps and alternate caching algorithms, such as lfu_cache and mru_cache. While caching is meant for fast access to saved results, klepto also has archiving capabilities, for longer-term storage. Klepto uses a simple dictionary-sytle interface for all caches and archives, and all caches can be applied to any python function as a decorator. Keymaps are algorithms for converting a function's input signature to a unique dictionary, where the function's results are the dictionary value. Thus for y = f(x), y will be stored in cache[x](e.g. {x:y}).

Klepto provides both standard and 'safe' caching, where safe caches are slower but can recover from hashing errors. Klepto is intended to be used for distributed and parallel computing, where several of the keymaps serialize the stored objects. Caches and archives are intended to be read/write accessible from different threads and processes. Klepto enables a user to decorate a function, save the results to a file or database archive, close the interpreter, start a new session, and reload the function and it's cache.

Klepto installs with easy_install or pip:
$ pip install klepto

Klepto requires:
- python, version == 2.7 *or* version >= 3.5 *or* pypy
- dill, version >= 0.3.3
- pox, version >= 0.2.9

Optional requirements:
- sqlalchemy, version >= 0.8.4 (install with $ pip install klepto[archives])
- h5py, version >= 2.8.0 (install with $ pip install klepto[archives])
- pandas, version >= 0.17.0 (install with $ pip install klepto[archives])

Klepto is licensed under 3-clause BSD:

 >>> import klepto
 >>> print (klepto.license())

To cite klepto:

 >>> import klepto
 >>> print (klepto.citation())

klepto-0.1.9

15 Jun 19:22
Compare
Choose a tag to compare

Klepto extends python's lru_cache to utilize different keymaps and alternate caching algorithms, such as lfu_cache and mru_cache. While caching is meant for fast access to saved results, klepto also has archiving capabilities, for longer-term storage. Klepto uses a simple dictionary-sytle interface for all caches and archives, and all caches can be applied to any python function as a decorator. Keymaps are algorithms for converting a function's input signature to a unique dictionary, where the function's results are the dictionary value. Thus for y = f(x), y will be stored in cache[x](e.g. {x:y}).

Klepto provides both standard and 'safe' caching, where safe caches are slower but can recover from hashing errors. Klepto is intended to be used for distributed and parallel computing, where several of the keymaps serialize the stored objects. Caches and archives are intended to be read/write accessible from different threads and processes. Klepto enables a user to decorate a function, save the results to a file or database archive, close the interpreter, start a new session, and reload the function and it's cache.

Klepto installs with easy_install or pip:
$ pip install klepto

Klepto requires:
- python, version == 2.7 *or* version >= 3.5 *or* pypy
- dill, version >= 0.3.2
- pox, version >= 0.2.8

Optional requirements:
- sqlalchemy, version >= 0.8.4 (install with $ pip install klepto[archives])
- h5py, version >= 2.8.0 (install with $ pip install klepto[archives])
- pandas, version >= 0.17.0 (install with $ pip install klepto[archives])

Klepto is licensed under 3-clause BSD:

 >>> import klepto
 >>> print (klepto.license())

To cite klepto:

 >>> import klepto
 >>> print (klepto.citation())

klepto-0.1.8

28 Sep 15:53
Compare
Choose a tag to compare

Klepto extends python's lru_cache to utilize different keymaps and alternate caching algorithms, such as lfu_cache and mru_cache. While caching is meant for fast access to saved results, klepto also has archiving capabilities, for longer-term storage. Klepto uses a simple dictionary-sytle interface for all caches and archives, and all caches can be applied to any python function as a decorator. Keymaps are algorithms for converting a function's input signature to a unique dictionary, where the function's results are the dictionary value. Thus for y = f(x), y will be stored in cache[x](e.g. {x:y}).

Klepto provides both standard and 'safe' caching, where safe caches are slower but can recover from hashing errors. Klepto is intended to be used for distributed and parallel computing, where several of the keymaps serialize the stored objects. Caches and archives are intended to be read/write accessible from different threads and processes. Klepto enables a user to decorate a function, save the results to a file or database archive, close the interpreter, start a new session, and reload the function and it's cache.

Klepto installs with easy_install or pip:
$ pip install klepto

Klepto requires:
- python, version >=2.5 *or* version >= 3.1 *or* pypy
- dill, version >=0.3.1
- pox, version >=0.2.7

Optional requirements:
- sqlalchemy, version >= 0.8.4 (install with $ pip install klepto[archives])
- h5py, version >= 2.8.0 (install with $ pip install klepto[archives])
- pandas, version >= 0.17.0 (install with $ pip install klepto[archives])

Klepto is licensed under 3-clause BSD:

 >>> import klepto
 >>> print (klepto.license())

To cite klepto:

 >>> import klepto
 >>> print (klepto.citation())

klepto-0.1.7

26 Jun 23:39
Compare
Choose a tag to compare

Klepto extends python's lru_cache to utilize different keymaps and alternate caching algorithms, such as lfu_cache and mru_cache. While caching is meant for fast access to saved results, klepto also has archiving capabilities, for longer-term storage. Klepto uses a simple dictionary-sytle interface for all caches and archives, and all caches can be applied to any python function as a decorator. Keymaps are algorithms for converting a function's input signature to a unique dictionary, where the function's results are the dictionary value. Thus for y = f(x), y will be stored in cache[x](e.g. {x:y}).

Klepto provides both standard and 'safe' caching, where safe caches are slower but can recover from hashing errors. Klepto is intended to be used for distributed and parallel computing, where several of the keymaps serialize the stored objects. Caches and archives are intended to be read/write accessible from different threads and processes. Klepto enables a user to decorate a function, save the results to a file or database archive, close the interpreter, start a new session, and reload the function and it's cache.

Klepto installs with easy_install or pip:
$ pip install klepto

Klepto requires:
- python, version >=2.5 *or* version >= 3.1 *or* pypy
- dill, version >=0.3.0
- pox, version >=0.2.6

Optional requirements:
- sqlalchemy, version >= 0.8.4 (install with $ pip install klepto[archives])
- h5py, version >= 2.8.0 (install with $ pip install klepto[archives])
- pandas, version >= 0.17.0 (install with $ pip install klepto[archives])

Klepto is licensed under 3-clause BSD:

 >>> import klepto
 >>> print (klepto.license())

To cite klepto:

 >>> import klepto
 >>> print (klepto.citation())

klepto-0.1.6

21 Jan 18:13
Compare
Choose a tag to compare

Klepto extends python's lru_cache to utilize different keymaps and alternate caching algorithms, such as lfu_cache and mru_cache. While caching is meant for fast access to saved results, klepto also has archiving capabilities, for longer-term storage. Klepto uses a simple dictionary-sytle interface for all caches and archives, and all caches can be applied to any python function as a decorator. Keymaps are algorithms for converting a function's input signature to a unique dictionary, where the function's results are the dictionary value. Thus for y = f(x), y will be stored in cache[x](e.g. {x:y}).

Klepto provides both standard and 'safe' caching, where safe caches are slower but can recover from hashing errors. Klepto is intended to be used for distributed and parallel computing, where several of the keymaps serialize the stored objects. Caches and archives are intended to be read/write accessible from different threads and processes. Klepto enables a user to decorate a function, save the results to a file or database archive, close the interpreter, start a new session, and reload the function and it's cache.

Klepto installs with easy_install or pip:
$ pip install klepto

Klepto requires:
- python, version >=2.5 *or* version >= 3.1 *or* pypy
- dill, version >=0.2.9
- pox, version >=0.2.5

Optional requirements:
- sqlalchemy, version >= 0.8.4 (install with $ pip install klepto[archives])
- h5py, version >= 2.8.0 (install with $ pip install klepto[archives])
- pandas, version >= 0.17.0 (install with $ pip install klepto[archives])

Klepto is licensed under 3-clause BSD:

 >>> import klepto
 >>> print (klepto.license())

To cite klepto:

 >>> import klepto
 >>> print (klepto.citation())