Metadata-Version: 2.4
Name: wheezy.caching
Version: 3.2.1
Summary: A lightweight caching library
Author-email: Andriy Kornatskyy <andriy.kornatskyy@live.com>
License-Expression: MIT
Project-URL: Homepage, https://github.com/akornatskyy/wheezy.caching
Project-URL: Source, https://github.com/akornatskyy/wheezy.caching
Project-URL: Issues, https://github.com/akornatskyy/wheezy.caching/issues
Keywords: caching,dependency,memory,null,memcache,memcached,pylibmc
Classifier: Intended Audience :: Developers
Classifier: Natural Language :: English
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Classifier: Programming Language :: Python :: 3.13
Classifier: Programming Language :: Python :: 3.14
Classifier: Programming Language :: Python :: Implementation :: CPython
Classifier: Programming Language :: Python :: Implementation :: PyPy
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Requires-Python: >=3.10
Description-Content-Type: text/markdown
License-File: LICENSE
Provides-Extra: cython
Requires-Dist: Cython>=3.0; extra == "cython"
Requires-Dist: setuptools>=61.0; extra == "cython"
Provides-Extra: pylibmc
Requires-Dist: pylibmc; extra == "pylibmc"
Provides-Extra: python-memcached
Requires-Dist: python-memcached==1.61; extra == "python-memcached"
Dynamic: license-file

# wheezy.caching

[![tests](https://github.com/akornatskyy/wheezy.caching/actions/workflows/tests.yml/badge.svg)](https://github.com/akornatskyy/wheezy.caching/actions/workflows/tests.yml)
[![Coverage Status](https://coveralls.io/repos/github/akornatskyy/wheezy.caching/badge.svg?branch=master)](https://coveralls.io/github/akornatskyy/wheezy.caching?branch=master)
[![Documentation Status](https://readthedocs.org/projects/wheezycaching/badge/?version=latest)](https://wheezycaching.readthedocs.io/en/latest/?badge=latest)
[![pypi version](https://badge.fury.io/py/wheezy.caching.svg)](https://badge.fury.io/py/wheezy.caching)

[wheezy.caching](https://pypi.org/project/wheezy.caching/) is a
[python](http://www.python.org) package written in pure Python code. It
is a lightweight caching library that provides integration with:

- [python-memcached](https://pypi.org/project/python-memcached/) -
  Pure Python [memcached](http://memcached.org) client.
- [pylibmc](https://pypi.org/project/pylibmc/) - Quick and small
  [memcached](http://memcached.org) client for Python written in C.

It introduces idea of *cache dependency* (effectively invalidate
dependent cache items) and other cache related algorithms.

It is optimized for performance, well tested and documented.

Resources:

- [source code](https://github.com/akornatskyy/wheezy.caching)
  and [issues](https://github.com/akornatskyy/wheezy.caching/issues)
  tracker are available on
  [github](https://github.com/akornatskyy/wheezy.caching)
- [documentation](https://wheezycaching.readthedocs.io/en/latest/)

## Install

[wheezy.caching](https://pypi.org/project/wheezy.caching/) requires
[python](http://www.python.org) version 3.10+. It is independent of operating
system. You can install it from
[pypi](https://pypi.org/project/wheezy.caching/) site:

```sh
pip install -U wheezy.caching
pip install -U wheezy.caching[pylibmc]
pip install -U wheezy.caching[python-memcached]
```

If you run into any issue or have comments, go ahead and add on
[github](https://github.com/akornatskyy/wheezy.caching).
