Skip to main content

Cache any python object to file using improved pickling .

Project description

https://badge.fury.io/py/anycache.svg https://travis-ci.org/c0fec0de/anycache.svg?branch=master https://coveralls.io/repos/github/c0fec0de/anycache/badge.svg https://readthedocs.org/projects/anycache/badge/?version=2.0.0 https://codeclimate.com/github/c0fec0de/anycache.png https://img.shields.io/pypi/pyversions/anycache.svg https://landscape.io/github/c0fec0de/anycache/master/landscape.svg?style=flat https://img.shields.io/badge/code%20style-pep8-brightgreen.svg https://img.shields.io/badge/code%20style-pep257-brightgreen.svg

Cache any python object to file using improved pickling

Documentation

The Documentation is hosted on http://anycache.readthedocs.io/en/2.0.0/

Getting started

To cache the result of a function, use the global unlimited anycache:

>>> from anycache import anycache
>>> @anycache()
... def myfunc(posarg, kwarg=3):
...     print("  Calcing %r + %r = %r" % (posarg, kwarg, posarg + kwarg))
...     return posarg + kwarg
>>> myfunc(8, 5)
  Calcing 8 + 5 = 13
13
>>> myfunc(8, 5)
13

anycache caches nearly any python object. Also lambda statements. It uses Dill as backend. An improved version of pythons build-in pickle.

To preserve the result between multiple python runs, a persistent cache directory needs to be set.

>>> from anycache import anycache
>>> @anycache(cachedir='/tmp/anycache.my')
... def myfunc(posarg, kwarg=3):
...     return posarg + kwarg

The AnyCache object serves additional functions for cache clearing and size handling.

Installation

To install the anycache module run:

pip install anycache

If you do not have write-permissions to the python installation, try:

pip install anycache --user

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

anycache-2.0.0.tar.gz (6.4 kB view details)

Uploaded Source

File details

Details for the file anycache-2.0.0.tar.gz.

File metadata

  • Download URL: anycache-2.0.0.tar.gz
  • Upload date:
  • Size: 6.4 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No

File hashes

Hashes for anycache-2.0.0.tar.gz
Algorithm Hash digest
SHA256 81abb65be00a34f887e2376213ba49273a9a5a0778e968459f53126fb4cbcf14
MD5 9fc95e5bf2badd67976565d4165d9f39
BLAKE2b-256 c35a45ec58c3e8de740aa26c3dad0c8629f1b41e9af28fd653b884ded9bfdb0b

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page