/usr/lib/python3/dist-packages/expiringdict-1.1.2.egg-info/PKG-INFO is in python3-expiringdict 1.1.2-1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64  | Metadata-Version: 1.0
Name: expiringdict
Version: 1.1.2
Summary: Dictionary with auto-expiring values for caching purposes
Home-page: https://github.com/mailgun/expiringdict
Author: Anton Efimenko
Author-email: anton@mailgunhq.com
License: Apache 2
Description: expiringdict
        ------------
        
        expiringdict is a Python caching library. The core of the library is ExpiringDict class which
        is an ordered dictionary with auto-expiring values for caching purposes. Expiration happens on
        any access, object is locked during cleanup from expired values. ExpiringDict can not store
        more than `max_len` elements - the oldest will be deleted.
        
        **Note:** Iteration over dict and also keys() do not remove expired values!
        
        Installation
        ------------
        
        If you wish to install from PyPi:
        
        .. code-block:: bash
        
            pip install expiringdict
        
        If you wish to download the source and install from GitHub:
        
        .. code-block:: bash
        
            git clone git@github.com:mailgun/expiringdict.git
            python setup.py install
        
        or to install with test dependencies (`Nose <http://readthedocs.org/docs/nose/en/latest/>`_, `Mock <http://www.voidspace.org.uk/python/mock/>`_, `coverage <http://nedbatchelder.com/code/coverage/>`_) run from the directory above:
        
        .. code-block:: bash
        
            pip install -e expiringdict[test]
        
        To run tests with coverage:
        
        .. code-block:: bash
        
            nosetests --with-coverage --cover-package=expiringdict
        
        Usage
        -----
        
        Create a dictionary with capacity for 100 elements and elements expiring in 10 seconds:
        
        .. code-block:: py
        
            from expiringdict import ExpiringDict
            cache = ExpiringDict(max_len=100, max_age_seconds=10)
        
        put and get a value there:
        
        .. code-block:: py
        
             cache["key"] = "value"
             cache.get("key")
        
Platform: UNKNOWN
 |