Metadata-Version: 2.4
Name: repoze-lru
Version: 0.8
Summary: A tiny LRU cache implementation and decorator
Author-email: "Tres Seaver, Agendaless Consulting" <tseaver@agendaless.com>
License-Expression: LicenseRef-Repoze-BSD-derived
Project-URL: Repository, https://github.com/repoze/repoze.lru
Project-URL: Issues, https://github.com/repoze/repoze.lru/issues
Project-URL: Documentation, https://repozelru.readthedocs.io/en/stable/index.html
Project-URL: Changelog, https://github.com/repoze/repoze.lru/blob/master/CHANGES.rst
Keywords: repoze,lru,cache
Classifier: Development Status :: 6 - Mature
Classifier: Intended Audience :: Developers
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3
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: Operating System :: OS Independent
Classifier: Topic :: Internet :: WWW/HTTP
Classifier: Topic :: Internet :: WWW/HTTP :: WSGI
Classifier: Topic :: Internet :: WWW/HTTP :: WSGI :: Middleware
Requires-Python: >=3.10
Description-Content-Type: text/x-rst
License-File: LICENSE.txt
Dynamic: license-file

repoze.lru
==========

``repoze.lru`` is a LRU (least recently used) cache implementation.  Keys and
values that are not used frequently will be evicted from the cache faster
than keys and values that are used frequently.  It works under Python 2.7 and Python 3.4+.

Please see ``docs/index.rst`` for detailed documentation, or view them
online at http://docs.repoze.org/lru/.
