lru-dict


Namelru-dict JSON
Version 1.3.0 PyPI version JSON
download
home_page
SummaryAn Dict like LRU container.
upload_time2023-11-06 01:40:12
maintainer
docs_urlNone
authorAmit Dev
requires_python>=3.8
licenseMIT
keywords lru dict
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            .. image:: https://github.com/amitdev/lru-dict/actions/workflows/tests.yml/badge.svg
    :target: https://github.com/amitdev/lru-dict/actions/workflows/tests.yml

.. image:: https://github.com/amitdev/lru-dict/actions/workflows/build-and-deploy.yml/badge.svg
    :target: https://github.com/amitdev/lru-dict/actions/workflows/build-and-deploy.yml

LRU Dict
========

A fixed size dict like container which evicts Least Recently Used (LRU) items
once size limit is exceeded. There are many python implementations available
which does similar things. This is a fast and efficient C implementation.
LRU maximum capacity can be modified at run-time.
If you are looking for pure python version, look `else where <http://www.google.com/search?q=python+lru+dict>`_.

Usage
=====

This can be used to build a LRU cache. Usage is almost like a dict.

.. code:: python

  from lru import LRU
  l = LRU(5)         # Create an LRU container that can hold 5 items

  print l.peek_first_item(), l.peek_last_item()  #return the MRU key and LRU key
  # Would print None None

  for i in range(5):
     l[i] = str(i)
  print l.items()    # Prints items in MRU order
  # Would print [(4, '4'), (3, '3'), (2, '2'), (1, '1'), (0, '0')]

  print l.peek_first_item(), l.peek_last_item()  #return the MRU key and LRU key
  # Would print (4, '4') (0, '0')

  l[5] = '5'         # Inserting one more item should evict the old item
  print l.items()
  # Would print [(5, '5'), (4, '4'), (3, '3'), (2, '2'), (1, '1')]

  l[3]               # Accessing an item would make it MRU
  print l.items()
  # Would print [(3, '3'), (5, '5'), (4, '4'), (2, '2'), (1, '1')]
  # Now 3 is in front

  l.keys()           # Can get keys alone in MRU order
  # Would print [3, 5, 4, 2, 1]

  del l[4]           # Delete an item
  print l.items()
  # Would print [(3, '3'), (5, '5'), (2, '2'), (1, '1')]

  print l.get_size()
  # Would print 5

  l.set_size(3)
  print l.items()
  # Would print [(3, '3'), (5, '5'), (2, '2')]
  print l.get_size()
  # Would print 3
  print l.has_key(5)
  # Would print True
  print 2 in l
  # Would print True

  l.get_stats()
  # Would print (1, 0)


  l.update(5='0')           # Update an item
  print l.items()
  # Would print [(5, '0'), (3, '3'), (2, '2')]

  l.clear()
  print l.items()
  # Would print []

  def evicted(key, value):
    print "removing: %s, %s" % (key, value)

  l = LRU(1, callback=evicted)

  l[1] = '1'
  l[2] = '2'
  # callback would print removing: 1, 1

  l[2] = '3'
  # doesn't call the evicted callback

  print l.items()
  # would print [(2, '3')]
  
  del l[2]
  # doesn't call the evicted callback

  print l.items()
  # would print []

Install
=======

::

  pip install lru-dict

or

::

  easy_install lru_dict


When to use this
================

Like mentioned above there are many python implementations of an LRU. Use this
if you need a faster and memory efficient alternative. It is implemented with a
dict and associated linked list to keep track of LRU order. See code for a more
detailed explanation. To see an indicative comparison with a pure python module,
consider a `benchmark <https://gist.github.com/amitdev/5773979>`_ against
`pylru <https://pypi.python.org/pypi/pylru/>`_ (just chosen at random, it should
be similar with other python implementations as well).

::

  $ python bench.py pylru.lrucache
  Time : 3.31 s, Memory : 453672 Kb
  $ python bench.py lru.LRU
  Time : 0.23 s, Memory : 124328 Kb

            

Raw data

            {
    "_id": null,
    "home_page": "",
    "name": "lru-dict",
    "maintainer": "",
    "docs_url": null,
    "requires_python": ">=3.8",
    "maintainer_email": "",
    "keywords": "lru,dict",
    "author": "Amit Dev",
    "author_email": "",
    "download_url": "https://files.pythonhosted.org/packages/96/e3/42c87871920602a3c8300915bd0292f76eccc66c38f782397acbf8a62088/lru-dict-1.3.0.tar.gz",
    "platform": null,
    "description": ".. image:: https://github.com/amitdev/lru-dict/actions/workflows/tests.yml/badge.svg\n    :target: https://github.com/amitdev/lru-dict/actions/workflows/tests.yml\n\n.. image:: https://github.com/amitdev/lru-dict/actions/workflows/build-and-deploy.yml/badge.svg\n    :target: https://github.com/amitdev/lru-dict/actions/workflows/build-and-deploy.yml\n\nLRU Dict\n========\n\nA fixed size dict like container which evicts Least Recently Used (LRU) items\nonce size limit is exceeded. There are many python implementations available\nwhich does similar things. This is a fast and efficient C implementation.\nLRU maximum capacity can be modified at run-time.\nIf you are looking for pure python version, look `else where <http://www.google.com/search?q=python+lru+dict>`_.\n\nUsage\n=====\n\nThis can be used to build a LRU cache. Usage is almost like a dict.\n\n.. code:: python\n\n  from lru import LRU\n  l = LRU(5)         # Create an LRU container that can hold 5 items\n\n  print l.peek_first_item(), l.peek_last_item()  #return the MRU key and LRU key\n  # Would print None None\n\n  for i in range(5):\n     l[i] = str(i)\n  print l.items()    # Prints items in MRU order\n  # Would print [(4, '4'), (3, '3'), (2, '2'), (1, '1'), (0, '0')]\n\n  print l.peek_first_item(), l.peek_last_item()  #return the MRU key and LRU key\n  # Would print (4, '4') (0, '0')\n\n  l[5] = '5'         # Inserting one more item should evict the old item\n  print l.items()\n  # Would print [(5, '5'), (4, '4'), (3, '3'), (2, '2'), (1, '1')]\n\n  l[3]               # Accessing an item would make it MRU\n  print l.items()\n  # Would print [(3, '3'), (5, '5'), (4, '4'), (2, '2'), (1, '1')]\n  # Now 3 is in front\n\n  l.keys()           # Can get keys alone in MRU order\n  # Would print [3, 5, 4, 2, 1]\n\n  del l[4]           # Delete an item\n  print l.items()\n  # Would print [(3, '3'), (5, '5'), (2, '2'), (1, '1')]\n\n  print l.get_size()\n  # Would print 5\n\n  l.set_size(3)\n  print l.items()\n  # Would print [(3, '3'), (5, '5'), (2, '2')]\n  print l.get_size()\n  # Would print 3\n  print l.has_key(5)\n  # Would print True\n  print 2 in l\n  # Would print True\n\n  l.get_stats()\n  # Would print (1, 0)\n\n\n  l.update(5='0')           # Update an item\n  print l.items()\n  # Would print [(5, '0'), (3, '3'), (2, '2')]\n\n  l.clear()\n  print l.items()\n  # Would print []\n\n  def evicted(key, value):\n    print \"removing: %s, %s\" % (key, value)\n\n  l = LRU(1, callback=evicted)\n\n  l[1] = '1'\n  l[2] = '2'\n  # callback would print removing: 1, 1\n\n  l[2] = '3'\n  # doesn't call the evicted callback\n\n  print l.items()\n  # would print [(2, '3')]\n  \n  del l[2]\n  # doesn't call the evicted callback\n\n  print l.items()\n  # would print []\n\nInstall\n=======\n\n::\n\n  pip install lru-dict\n\nor\n\n::\n\n  easy_install lru_dict\n\n\nWhen to use this\n================\n\nLike mentioned above there are many python implementations of an LRU. Use this\nif you need a faster and memory efficient alternative. It is implemented with a\ndict and associated linked list to keep track of LRU order. See code for a more\ndetailed explanation. To see an indicative comparison with a pure python module,\nconsider a `benchmark <https://gist.github.com/amitdev/5773979>`_ against\n`pylru <https://pypi.python.org/pypi/pylru/>`_ (just chosen at random, it should\nbe similar with other python implementations as well).\n\n::\n\n  $ python bench.py pylru.lrucache\n  Time : 3.31 s, Memory : 453672 Kb\n  $ python bench.py lru.LRU\n  Time : 0.23 s, Memory : 124328 Kb\n",
    "bugtrack_url": null,
    "license": "MIT",
    "summary": "An Dict like LRU container.",
    "version": "1.3.0",
    "project_urls": {
        "Homepage": "https://github.com/amitdev/lru-dict"
    },
    "split_keywords": [
        "lru",
        "dict"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "36fcd0de12343c9f132b10c7efe40951dfb6c3cfba328941ecf4c198e6bfdd78",
                "md5": "c660b29a44f99693daff189930044140",
                "sha256": "4073333894db9840f066226d50e6f914a2240711c87d60885d8c940b69a6673f"
            },
            "downloads": -1,
            "filename": "lru_dict-1.3.0-cp310-cp310-macosx_10_9_universal2.whl",
            "has_sig": false,
            "md5_digest": "c660b29a44f99693daff189930044140",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 17708,
            "upload_time": "2023-11-06T01:38:35",
            "upload_time_iso_8601": "2023-11-06T01:38:35.233912Z",
            "url": "https://files.pythonhosted.org/packages/36/fc/d0de12343c9f132b10c7efe40951dfb6c3cfba328941ecf4c198e6bfdd78/lru_dict-1.3.0-cp310-cp310-macosx_10_9_universal2.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "7556af1cae207a5c4f1ada20a9bde92d7d953404274f499dd8fe3f4ece91eefe",
                "md5": "93d1aafc9b114e4e1e9cf357fc644a81",
                "sha256": "0ad6361e4dd63b47b2fc8eab344198f37387e1da3dcfacfee19bafac3ec9f1eb"
            },
            "downloads": -1,
            "filename": "lru_dict-1.3.0-cp310-cp310-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "93d1aafc9b114e4e1e9cf357fc644a81",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 11017,
            "upload_time": "2023-11-06T01:38:36",
            "upload_time_iso_8601": "2023-11-06T01:38:36.948995Z",
            "url": "https://files.pythonhosted.org/packages/75/56/af1cae207a5c4f1ada20a9bde92d7d953404274f499dd8fe3f4ece91eefe/lru_dict-1.3.0-cp310-cp310-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "e9d11dcaf052b4d039b85af8a8df9090c10923acc4bed448051ce791376313f3",
                "md5": "7406cb13cb676375aa097f3dfe777fc8",
                "sha256": "c637ab54b8cd9802fe19b260261e38820d748adf7606e34045d3c799b6dde813"
            },
            "downloads": -1,
            "filename": "lru_dict-1.3.0-cp310-cp310-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "7406cb13cb676375aa097f3dfe777fc8",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 11322,
            "upload_time": "2023-11-06T01:38:38",
            "upload_time_iso_8601": "2023-11-06T01:38:38.208641Z",
            "url": "https://files.pythonhosted.org/packages/e9/d1/1dcaf052b4d039b85af8a8df9090c10923acc4bed448051ce791376313f3/lru_dict-1.3.0-cp310-cp310-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "14d477553cb43a2e50c3a5bb6338fe4ba3415638a99a5c8404a4ec13ab7cec52",
                "md5": "dffe6c7bd47819afd592ce6b441e11c2",
                "sha256": "0fce5f95489ca1fc158cc9fe0f4866db9cec82c2be0470926a9080570392beaf"
            },
            "downloads": -1,
            "filename": "lru_dict-1.3.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "dffe6c7bd47819afd592ce6b441e11c2",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 30597,
            "upload_time": "2023-11-06T01:38:39",
            "upload_time_iso_8601": "2023-11-06T01:38:39.647915Z",
            "url": "https://files.pythonhosted.org/packages/14/d4/77553cb43a2e50c3a5bb6338fe4ba3415638a99a5c8404a4ec13ab7cec52/lru_dict-1.3.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "1428184d94fcd121a0dc775fa423bf05b886ae42fc081cbd693540068cf06ece",
                "md5": "89479f9e7af5af4a78c58c11ffb0bd13",
                "sha256": "b2bf2e24cf5f19c3ff69bf639306e83dced273e6fa775b04e190d7f5cd16f794"
            },
            "downloads": -1,
            "filename": "lru_dict-1.3.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "89479f9e7af5af4a78c58c11ffb0bd13",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 31871,
            "upload_time": "2023-11-06T01:38:41",
            "upload_time_iso_8601": "2023-11-06T01:38:41.010702Z",
            "url": "https://files.pythonhosted.org/packages/14/28/184d94fcd121a0dc775fa423bf05b886ae42fc081cbd693540068cf06ece/lru_dict-1.3.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "da0e6b49fa5fccc7b2d28fe254c48c64323741c98334e4fe41e4694fa049c208",
                "md5": "f5bff9a1e4753c2fe82b57b5e72155eb",
                "sha256": "e90059f7701bef3c4da073d6e0434a9c7dc551d5adce30e6b99ef86b186f4b4a"
            },
            "downloads": -1,
            "filename": "lru_dict-1.3.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "f5bff9a1e4753c2fe82b57b5e72155eb",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 28651,
            "upload_time": "2023-11-06T01:38:42",
            "upload_time_iso_8601": "2023-11-06T01:38:42.191232Z",
            "url": "https://files.pythonhosted.org/packages/da/0e/6b49fa5fccc7b2d28fe254c48c64323741c98334e4fe41e4694fa049c208/lru_dict-1.3.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "4152c3a4922421c8e5eb6fa1fdf5f56a7e01270a141a4f5f645d5ed6931b490f",
                "md5": "1979b173ab5be17d13047361c0e360aa",
                "sha256": "1ecb7ae557239c64077e9b26a142eb88e63cddb104111a5122de7bebbbd00098"
            },
            "downloads": -1,
            "filename": "lru_dict-1.3.0-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "1979b173ab5be17d13047361c0e360aa",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 30277,
            "upload_time": "2023-11-06T01:38:43",
            "upload_time_iso_8601": "2023-11-06T01:38:43.567665Z",
            "url": "https://files.pythonhosted.org/packages/41/52/c3a4922421c8e5eb6fa1fdf5f56a7e01270a141a4f5f645d5ed6931b490f/lru_dict-1.3.0-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "f910a15f70c5c36d46adba72850e64b075c6a118d2a9ee1ce7f2af2f4a419401",
                "md5": "65a3817e9ca2ed33ddf75587dad6c6be",
                "sha256": "6af36166d22dba851e06a13e35bbf33845d3dd88872e6aebbc8e3e7db70f4682"
            },
            "downloads": -1,
            "filename": "lru_dict-1.3.0-cp310-cp310-musllinux_1_1_aarch64.whl",
            "has_sig": false,
            "md5_digest": "65a3817e9ca2ed33ddf75587dad6c6be",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 34793,
            "upload_time": "2023-11-06T01:38:44",
            "upload_time_iso_8601": "2023-11-06T01:38:44.938610Z",
            "url": "https://files.pythonhosted.org/packages/f9/10/a15f70c5c36d46adba72850e64b075c6a118d2a9ee1ce7f2af2f4a419401/lru_dict-1.3.0-cp310-cp310-musllinux_1_1_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "56e39901f9165a8c2d650bb84ae6ba371fa635e35e8b1dfb1aff2bd7be4cfd3a",
                "md5": "bb821032378f343e26e0569d37c4358e",
                "sha256": "8ee38d420c77eed548df47b7d74b5169a98e71c9e975596e31ab808e76d11f09"
            },
            "downloads": -1,
            "filename": "lru_dict-1.3.0-cp310-cp310-musllinux_1_1_i686.whl",
            "has_sig": false,
            "md5_digest": "bb821032378f343e26e0569d37c4358e",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 33414,
            "upload_time": "2023-11-06T01:38:46",
            "upload_time_iso_8601": "2023-11-06T01:38:46.366460Z",
            "url": "https://files.pythonhosted.org/packages/56/e3/9901f9165a8c2d650bb84ae6ba371fa635e35e8b1dfb1aff2bd7be4cfd3a/lru_dict-1.3.0-cp310-cp310-musllinux_1_1_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "be276323b27dd42914c3ee511631d976d49247699ef0ec6fd468a5d4eef3930e",
                "md5": "a73fcf97db19558968855f0a393a03a5",
                "sha256": "0e1845024c31e6ff246c9eb5e6f6f1a8bb564c06f8a7d6d031220044c081090b"
            },
            "downloads": -1,
            "filename": "lru_dict-1.3.0-cp310-cp310-musllinux_1_1_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "a73fcf97db19558968855f0a393a03a5",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 36345,
            "upload_time": "2023-11-06T01:38:47",
            "upload_time_iso_8601": "2023-11-06T01:38:47.908553Z",
            "url": "https://files.pythonhosted.org/packages/be/27/6323b27dd42914c3ee511631d976d49247699ef0ec6fd468a5d4eef3930e/lru_dict-1.3.0-cp310-cp310-musllinux_1_1_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "7614b7d9009acf698e6f5d656e35776cedd3fd09755db5b09ff372d4e2667c4e",
                "md5": "b62bbe7d0298f809ae42abf5754e8a14",
                "sha256": "3ca5474b1649555d014be1104e5558a92497509021a5ba5ea6e9b492303eb66b"
            },
            "downloads": -1,
            "filename": "lru_dict-1.3.0-cp310-cp310-musllinux_1_1_x86_64.whl",
            "has_sig": false,
            "md5_digest": "b62bbe7d0298f809ae42abf5754e8a14",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 34619,
            "upload_time": "2023-11-06T01:38:49",
            "upload_time_iso_8601": "2023-11-06T01:38:49.387462Z",
            "url": "https://files.pythonhosted.org/packages/76/14/b7d9009acf698e6f5d656e35776cedd3fd09755db5b09ff372d4e2667c4e/lru_dict-1.3.0-cp310-cp310-musllinux_1_1_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "968dec1813a2618b152b845e782f8bf071e3d8cd5029fd725c8248c9db0109b6",
                "md5": "b71af350edf77623c84b049ae07e10a3",
                "sha256": "ebb03a9bd50c2ed86d4f72a54e0aae156d35a14075485b2127c4b01a3f4a63fa"
            },
            "downloads": -1,
            "filename": "lru_dict-1.3.0-cp310-cp310-win32.whl",
            "has_sig": false,
            "md5_digest": "b71af350edf77623c84b049ae07e10a3",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 12538,
            "upload_time": "2023-11-06T01:38:50",
            "upload_time_iso_8601": "2023-11-06T01:38:50.510551Z",
            "url": "https://files.pythonhosted.org/packages/96/8d/ec1813a2618b152b845e782f8bf071e3d8cd5029fd725c8248c9db0109b6/lru_dict-1.3.0-cp310-cp310-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "dcf4463045af7fd4cf3840029ac75174bbff7240021daa9624bdd7a47265daf6",
                "md5": "4ec9ef9ff7eeff7e4a39422af48bed3c",
                "sha256": "04cda617f4e4c27009005d0a8185ef02829b14b776d2791f5c994cc9d668bc24"
            },
            "downloads": -1,
            "filename": "lru_dict-1.3.0-cp310-cp310-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "4ec9ef9ff7eeff7e4a39422af48bed3c",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 13652,
            "upload_time": "2023-11-06T01:38:51",
            "upload_time_iso_8601": "2023-11-06T01:38:51.796122Z",
            "url": "https://files.pythonhosted.org/packages/dc/f4/463045af7fd4cf3840029ac75174bbff7240021daa9624bdd7a47265daf6/lru_dict-1.3.0-cp310-cp310-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "a8c96fac0cb67160f0efa3cc76a6a7d04d5e21a516eeb991ebba08f4f8f01ec5",
                "md5": "49f533a6054571e9bb2777af14ffce2b",
                "sha256": "20c595764695d20bdc3ab9b582e0cc99814da183544afb83783a36d6741a0dac"
            },
            "downloads": -1,
            "filename": "lru_dict-1.3.0-cp311-cp311-macosx_10_9_universal2.whl",
            "has_sig": false,
            "md5_digest": "49f533a6054571e9bb2777af14ffce2b",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 17750,
            "upload_time": "2023-11-06T01:38:52",
            "upload_time_iso_8601": "2023-11-06T01:38:52.667557Z",
            "url": "https://files.pythonhosted.org/packages/a8/c9/6fac0cb67160f0efa3cc76a6a7d04d5e21a516eeb991ebba08f4f8f01ec5/lru_dict-1.3.0-cp311-cp311-macosx_10_9_universal2.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "6114f90dee4bc547ae266dbeffd4e11611234bb6af511dea48f3bc8dac1de478",
                "md5": "43b311e213b36589d28aaa8c8dc0b82b",
                "sha256": "d9b30a8f50c3fa72a494eca6be5810a1b5c89e4f0fda89374f0d1c5ad8d37d51"
            },
            "downloads": -1,
            "filename": "lru_dict-1.3.0-cp311-cp311-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "43b311e213b36589d28aaa8c8dc0b82b",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 11055,
            "upload_time": "2023-11-06T01:38:53",
            "upload_time_iso_8601": "2023-11-06T01:38:53.798451Z",
            "url": "https://files.pythonhosted.org/packages/61/14/f90dee4bc547ae266dbeffd4e11611234bb6af511dea48f3bc8dac1de478/lru_dict-1.3.0-cp311-cp311-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "4e63a0ae20525f9d52f62ac0def47935f8a2b3b6fcd2c145218b9a27fc1fb910",
                "md5": "c2bcb23e3865c71e9ad304feb8e79e3f",
                "sha256": "9710737584650a4251b9a566cbb1a86f83437adb209c9ba43a4e756d12faf0d7"
            },
            "downloads": -1,
            "filename": "lru_dict-1.3.0-cp311-cp311-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "c2bcb23e3865c71e9ad304feb8e79e3f",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 11330,
            "upload_time": "2023-11-06T01:38:54",
            "upload_time_iso_8601": "2023-11-06T01:38:54.847838Z",
            "url": "https://files.pythonhosted.org/packages/4e/63/a0ae20525f9d52f62ac0def47935f8a2b3b6fcd2c145218b9a27fc1fb910/lru_dict-1.3.0-cp311-cp311-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "e9c68c2b81b61e5206910c81b712500736227289aefe4ccfb36137aa21807003",
                "md5": "8c3898e4ffa20cf8b264216bc00a958d",
                "sha256": "b84c321ae34f2f40aae80e18b6fa08b31c90095792ab64bb99d2e385143effaa"
            },
            "downloads": -1,
            "filename": "lru_dict-1.3.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "8c3898e4ffa20cf8b264216bc00a958d",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 31793,
            "upload_time": "2023-11-06T01:38:56",
            "upload_time_iso_8601": "2023-11-06T01:38:56.163890Z",
            "url": "https://files.pythonhosted.org/packages/e9/c6/8c2b81b61e5206910c81b712500736227289aefe4ccfb36137aa21807003/lru_dict-1.3.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "f9d7af9733f94df67a2e9e31ef47d4c41aff1836024f135cdbda4743eb628452",
                "md5": "8e6b382acb55782103bd6faaa8976348",
                "sha256": "eed24272b4121b7c22f234daed99899817d81d671b3ed030c876ac88bc9dc890"
            },
            "downloads": -1,
            "filename": "lru_dict-1.3.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "8e6b382acb55782103bd6faaa8976348",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 33090,
            "upload_time": "2023-11-06T01:38:57",
            "upload_time_iso_8601": "2023-11-06T01:38:57.091658Z",
            "url": "https://files.pythonhosted.org/packages/f9/d7/af9733f94df67a2e9e31ef47d4c41aff1836024f135cdbda4743eb628452/lru_dict-1.3.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "5b6e5b09b069a70028bcf05dbdc57a301fbe8b3bafecf916f2ed5a3065c79a71",
                "md5": "cd349f287e53aec6d8fa607b2429ce17",
                "sha256": "9bd13af06dab7c6ee92284fd02ed9a5613a07d5c1b41948dc8886e7207f86dfd"
            },
            "downloads": -1,
            "filename": "lru_dict-1.3.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "cd349f287e53aec6d8fa607b2429ce17",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 29795,
            "upload_time": "2023-11-06T01:38:58",
            "upload_time_iso_8601": "2023-11-06T01:38:58.278732Z",
            "url": "https://files.pythonhosted.org/packages/5b/6e/5b09b069a70028bcf05dbdc57a301fbe8b3bafecf916f2ed5a3065c79a71/lru_dict-1.3.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "21924690daefc2602f7c3429ecf54572d37a9e3c372d370344d2185daa4d5ecc",
                "md5": "3a216c30d6e47d94b56b4396d53d09f4",
                "sha256": "a1efc59bfba6aac33684d87b9e02813b0e2445b2f1c444dae2a0b396ad0ed60c"
            },
            "downloads": -1,
            "filename": "lru_dict-1.3.0-cp311-cp311-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "3a216c30d6e47d94b56b4396d53d09f4",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 31586,
            "upload_time": "2023-11-06T01:38:59",
            "upload_time_iso_8601": "2023-11-06T01:38:59.363959Z",
            "url": "https://files.pythonhosted.org/packages/21/92/4690daefc2602f7c3429ecf54572d37a9e3c372d370344d2185daa4d5ecc/lru_dict-1.3.0-cp311-cp311-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "3c670a29a91087196b02f278d8765120ee4e7486f1f72a4c505fd1cd3109e627",
                "md5": "81c8ccfa6de65db62498c2ee3b8d3e7c",
                "sha256": "cfaf75ac574447afcf8ad998789071af11d2bcf6f947643231f692948839bd98"
            },
            "downloads": -1,
            "filename": "lru_dict-1.3.0-cp311-cp311-musllinux_1_1_aarch64.whl",
            "has_sig": false,
            "md5_digest": "81c8ccfa6de65db62498c2ee3b8d3e7c",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 36662,
            "upload_time": "2023-11-06T01:39:00",
            "upload_time_iso_8601": "2023-11-06T01:39:00.795559Z",
            "url": "https://files.pythonhosted.org/packages/3c/67/0a29a91087196b02f278d8765120ee4e7486f1f72a4c505fd1cd3109e627/lru_dict-1.3.0-cp311-cp311-musllinux_1_1_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "36548d56c514cd2333b652bd44c8f1962ab986cbe68e8ad7258c9e0f360cddb6",
                "md5": "6e1bc3124b6f2bc3d9039ea82daed847",
                "sha256": "c95f8751e2abd6f778da0399c8e0239321d560dbc58cb063827123137d213242"
            },
            "downloads": -1,
            "filename": "lru_dict-1.3.0-cp311-cp311-musllinux_1_1_i686.whl",
            "has_sig": false,
            "md5_digest": "6e1bc3124b6f2bc3d9039ea82daed847",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 35118,
            "upload_time": "2023-11-06T01:39:01",
            "upload_time_iso_8601": "2023-11-06T01:39:01.883461Z",
            "url": "https://files.pythonhosted.org/packages/36/54/8d56c514cd2333b652bd44c8f1962ab986cbe68e8ad7258c9e0f360cddb6/lru_dict-1.3.0-cp311-cp311-musllinux_1_1_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "f59ac7a175d10d503b86974cb07141ca175947145dd1c7370fcda86fbbcaf326",
                "md5": "820b861008979851aab121d2d5552974",
                "sha256": "abd0c284b26b5c4ee806ca4f33ab5e16b4bf4d5ec9e093e75a6f6287acdde78e"
            },
            "downloads": -1,
            "filename": "lru_dict-1.3.0-cp311-cp311-musllinux_1_1_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "820b861008979851aab121d2d5552974",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 38198,
            "upload_time": "2023-11-06T01:39:03",
            "upload_time_iso_8601": "2023-11-06T01:39:03.306969Z",
            "url": "https://files.pythonhosted.org/packages/f5/9a/c7a175d10d503b86974cb07141ca175947145dd1c7370fcda86fbbcaf326/lru_dict-1.3.0-cp311-cp311-musllinux_1_1_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "fd592e5086c8e8a05a7282a824a2a37e3c45cd5714e7b83d8bc0267cb3bb5b4f",
                "md5": "dc588a869b0f2d8806c3c03605bfdbfc",
                "sha256": "2a47740652b25900ac5ce52667b2eade28d8b5fdca0ccd3323459df710e8210a"
            },
            "downloads": -1,
            "filename": "lru_dict-1.3.0-cp311-cp311-musllinux_1_1_x86_64.whl",
            "has_sig": false,
            "md5_digest": "dc588a869b0f2d8806c3c03605bfdbfc",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 36542,
            "upload_time": "2023-11-06T01:39:04",
            "upload_time_iso_8601": "2023-11-06T01:39:04.751809Z",
            "url": "https://files.pythonhosted.org/packages/fd/59/2e5086c8e8a05a7282a824a2a37e3c45cd5714e7b83d8bc0267cb3bb5b4f/lru_dict-1.3.0-cp311-cp311-musllinux_1_1_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "125280d0a06e5f45fe7c278dd662da6ea5b39f2ff003248f448189932f6b71c2",
                "md5": "2ad2a2008162dca36bb5f01eb3a42d3e",
                "sha256": "a690c23fc353681ed8042d9fe8f48f0fb79a57b9a45daea2f0be1eef8a1a4aa4"
            },
            "downloads": -1,
            "filename": "lru_dict-1.3.0-cp311-cp311-win32.whl",
            "has_sig": false,
            "md5_digest": "2ad2a2008162dca36bb5f01eb3a42d3e",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 12533,
            "upload_time": "2023-11-06T01:39:05",
            "upload_time_iso_8601": "2023-11-06T01:39:05.838452Z",
            "url": "https://files.pythonhosted.org/packages/12/52/80d0a06e5f45fe7c278dd662da6ea5b39f2ff003248f448189932f6b71c2/lru_dict-1.3.0-cp311-cp311-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "cefe1f12f33513310860ec6d722709ec4ad8256d9dcc3385f6ae2a244e6e66f5",
                "md5": "1ba83207961a69c0edb52622b794c89b",
                "sha256": "efd3f4e0385d18f20f7ea6b08af2574c1bfaa5cb590102ef1bee781bdfba84bc"
            },
            "downloads": -1,
            "filename": "lru_dict-1.3.0-cp311-cp311-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "1ba83207961a69c0edb52622b794c89b",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 13651,
            "upload_time": "2023-11-06T01:39:06",
            "upload_time_iso_8601": "2023-11-06T01:39:06.871706Z",
            "url": "https://files.pythonhosted.org/packages/ce/fe/1f12f33513310860ec6d722709ec4ad8256d9dcc3385f6ae2a244e6e66f5/lru_dict-1.3.0-cp311-cp311-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "fc5c385f080747eb3083af87d8e4c9068f3c4cab89035f6982134889940dafd8",
                "md5": "e0bcd4d67bedcaf3c30810252eeae122",
                "sha256": "c279068f68af3b46a5d649855e1fb87f5705fe1f744a529d82b2885c0e1fc69d"
            },
            "downloads": -1,
            "filename": "lru_dict-1.3.0-cp312-cp312-macosx_10_9_universal2.whl",
            "has_sig": false,
            "md5_digest": "e0bcd4d67bedcaf3c30810252eeae122",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 17174,
            "upload_time": "2023-11-06T01:39:07",
            "upload_time_iso_8601": "2023-11-06T01:39:07.923393Z",
            "url": "https://files.pythonhosted.org/packages/fc/5c/385f080747eb3083af87d8e4c9068f3c4cab89035f6982134889940dafd8/lru_dict-1.3.0-cp312-cp312-macosx_10_9_universal2.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "3cde5ef2ed75ce55d7059d1b96177ba04fa7ee1f35564f97bdfcd28fccfbe9d2",
                "md5": "163738951ccdbbeca6ec27b8d7bbbfda",
                "sha256": "350e2233cfee9f326a0d7a08e309372d87186565e43a691b120006285a0ac549"
            },
            "downloads": -1,
            "filename": "lru_dict-1.3.0-cp312-cp312-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "163738951ccdbbeca6ec27b8d7bbbfda",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 10742,
            "upload_time": "2023-11-06T01:39:08",
            "upload_time_iso_8601": "2023-11-06T01:39:08.871928Z",
            "url": "https://files.pythonhosted.org/packages/3c/de/5ef2ed75ce55d7059d1b96177ba04fa7ee1f35564f97bdfcd28fccfbe9d2/lru_dict-1.3.0-cp312-cp312-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "ca05f69a6abb0062d2cf2ce0aaf0284b105b97d1da024ca6d3d0730e6151242e",
                "md5": "0152f915441077fd6d41f887a109fe82",
                "sha256": "4eafb188a84483b3231259bf19030859f070321b00326dcb8e8c6cbf7db4b12f"
            },
            "downloads": -1,
            "filename": "lru_dict-1.3.0-cp312-cp312-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "0152f915441077fd6d41f887a109fe82",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 11079,
            "upload_time": "2023-11-06T01:39:09",
            "upload_time_iso_8601": "2023-11-06T01:39:09.766446Z",
            "url": "https://files.pythonhosted.org/packages/ca/05/f69a6abb0062d2cf2ce0aaf0284b105b97d1da024ca6d3d0730e6151242e/lru_dict-1.3.0-cp312-cp312-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "ea59cf891143abe58a455b8eaa9175f0e80f624a146a2bf9a1ca842ee0ef930a",
                "md5": "3fdd1da5e5305ddde93f0da9484268e3",
                "sha256": "73593791047e36b37fdc0b67b76aeed439fcea80959c7d46201240f9ec3b2563"
            },
            "downloads": -1,
            "filename": "lru_dict-1.3.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "3fdd1da5e5305ddde93f0da9484268e3",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 32469,
            "upload_time": "2023-11-06T01:39:11",
            "upload_time_iso_8601": "2023-11-06T01:39:11.091495Z",
            "url": "https://files.pythonhosted.org/packages/ea/59/cf891143abe58a455b8eaa9175f0e80f624a146a2bf9a1ca842ee0ef930a/lru_dict-1.3.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "5988d5976e9f70107ce11e45d93c6f0c2d5eaa1fc30bb3c8f57525eda4510dff",
                "md5": "c0f60acf1f56af23cb2517ce9159bb58",
                "sha256": "1958cb70b9542773d6241974646e5410e41ef32e5c9e437d44040d59bd80daf2"
            },
            "downloads": -1,
            "filename": "lru_dict-1.3.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "c0f60acf1f56af23cb2517ce9159bb58",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 33496,
            "upload_time": "2023-11-06T01:39:12",
            "upload_time_iso_8601": "2023-11-06T01:39:12.463190Z",
            "url": "https://files.pythonhosted.org/packages/59/88/d5976e9f70107ce11e45d93c6f0c2d5eaa1fc30bb3c8f57525eda4510dff/lru_dict-1.3.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "6cf894d6e910d54fc1fa05c0ee1cd608c39401866a18cf5e5aff238449b33c11",
                "md5": "763eeafcf29acefde9db270acea50d8f",
                "sha256": "bc1cd3ed2cee78a47f11f3b70be053903bda197a873fd146e25c60c8e5a32cd6"
            },
            "downloads": -1,
            "filename": "lru_dict-1.3.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "763eeafcf29acefde9db270acea50d8f",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 29914,
            "upload_time": "2023-11-06T01:39:13",
            "upload_time_iso_8601": "2023-11-06T01:39:13.395268Z",
            "url": "https://files.pythonhosted.org/packages/6c/f8/94d6e910d54fc1fa05c0ee1cd608c39401866a18cf5e5aff238449b33c11/lru_dict-1.3.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "cab99db79780c8a3cfd66bba6847773061e5cf8a3746950273b9985d47bbfe53",
                "md5": "b9c8fb1d8ac8dbe11992d8cf46bd7486",
                "sha256": "82eb230d48eaebd6977a92ddaa6d788f14cf4f4bcf5bbffa4ddfd60d051aa9d4"
            },
            "downloads": -1,
            "filename": "lru_dict-1.3.0-cp312-cp312-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "b9c8fb1d8ac8dbe11992d8cf46bd7486",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 32241,
            "upload_time": "2023-11-06T01:39:14",
            "upload_time_iso_8601": "2023-11-06T01:39:14.612143Z",
            "url": "https://files.pythonhosted.org/packages/ca/b9/9db79780c8a3cfd66bba6847773061e5cf8a3746950273b9985d47bbfe53/lru_dict-1.3.0-cp312-cp312-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "9bb608a623019daec22a40c4d6d2c40851dfa3d129a53b2f9469db8eb13666c1",
                "md5": "5deb08337dbe12ed65341eb83dc04566",
                "sha256": "5ad659cbc349d0c9ba8e536b5f40f96a70c360f43323c29f4257f340d891531c"
            },
            "downloads": -1,
            "filename": "lru_dict-1.3.0-cp312-cp312-musllinux_1_1_aarch64.whl",
            "has_sig": false,
            "md5_digest": "5deb08337dbe12ed65341eb83dc04566",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 37320,
            "upload_time": "2023-11-06T01:39:15",
            "upload_time_iso_8601": "2023-11-06T01:39:15.875572Z",
            "url": "https://files.pythonhosted.org/packages/9b/b6/08a623019daec22a40c4d6d2c40851dfa3d129a53b2f9469db8eb13666c1/lru_dict-1.3.0-cp312-cp312-musllinux_1_1_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "700bd3717159c26155ff77679cee1b077d22e1008bf45f19921e193319cd8e46",
                "md5": "939f09079ec79d9b731e542c6b6e3651",
                "sha256": "ba490b8972531d153ac0d4e421f60d793d71a2f4adbe2f7740b3c55dce0a12f1"
            },
            "downloads": -1,
            "filename": "lru_dict-1.3.0-cp312-cp312-musllinux_1_1_i686.whl",
            "has_sig": false,
            "md5_digest": "939f09079ec79d9b731e542c6b6e3651",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 35054,
            "upload_time": "2023-11-06T01:39:17",
            "upload_time_iso_8601": "2023-11-06T01:39:17.063479Z",
            "url": "https://files.pythonhosted.org/packages/70/0b/d3717159c26155ff77679cee1b077d22e1008bf45f19921e193319cd8e46/lru_dict-1.3.0-cp312-cp312-musllinux_1_1_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "0474f2ae00de7c27984a19b88d2b09ac877031c525b01199d7841ec8fa657fd6",
                "md5": "e4c78aae4bef679c4e19e882ff6a8f9b",
                "sha256": "c0131351b8a7226c69f1eba5814cbc9d1d8daaf0fdec1ae3f30508e3de5262d4"
            },
            "downloads": -1,
            "filename": "lru_dict-1.3.0-cp312-cp312-musllinux_1_1_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "e4c78aae4bef679c4e19e882ff6a8f9b",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 38613,
            "upload_time": "2023-11-06T01:39:18",
            "upload_time_iso_8601": "2023-11-06T01:39:18.136202Z",
            "url": "https://files.pythonhosted.org/packages/04/74/f2ae00de7c27984a19b88d2b09ac877031c525b01199d7841ec8fa657fd6/lru_dict-1.3.0-cp312-cp312-musllinux_1_1_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "5a0be30236aafe31b4247aa9ae61ba8aac6dde75c3ea0e47a8fb7eef53f6d5ce",
                "md5": "5ba99473620c3946fc99977360ec76bc",
                "sha256": "0e88dba16695f17f41701269fa046197a3fd7b34a8dba744c8749303ddaa18df"
            },
            "downloads": -1,
            "filename": "lru_dict-1.3.0-cp312-cp312-musllinux_1_1_x86_64.whl",
            "has_sig": false,
            "md5_digest": "5ba99473620c3946fc99977360ec76bc",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 37143,
            "upload_time": "2023-11-06T01:39:19",
            "upload_time_iso_8601": "2023-11-06T01:39:19.571236Z",
            "url": "https://files.pythonhosted.org/packages/5a/0b/e30236aafe31b4247aa9ae61ba8aac6dde75c3ea0e47a8fb7eef53f6d5ce/lru_dict-1.3.0-cp312-cp312-musllinux_1_1_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "1c28b59bcebb8d76ba8147a784a8be7eab6a4ad3395b9236e73740ff675a5a52",
                "md5": "6054a6ada3c8e5dd3a1eee5a17af06a3",
                "sha256": "6ffaf595e625b388babc8e7d79b40f26c7485f61f16efe76764e32dce9ea17fc"
            },
            "downloads": -1,
            "filename": "lru_dict-1.3.0-cp312-cp312-win32.whl",
            "has_sig": false,
            "md5_digest": "6054a6ada3c8e5dd3a1eee5a17af06a3",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 12653,
            "upload_time": "2023-11-06T01:39:20",
            "upload_time_iso_8601": "2023-11-06T01:39:20.574006Z",
            "url": "https://files.pythonhosted.org/packages/1c/28/b59bcebb8d76ba8147a784a8be7eab6a4ad3395b9236e73740ff675a5a52/lru_dict-1.3.0-cp312-cp312-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "bd1806d9710cb0a0d3634f8501e4bdcc07abe64a32e404d82895a6a36fab97f6",
                "md5": "624237b94ab3f5df8765168d555342a5",
                "sha256": "cf9da32ef2582434842ab6ba6e67290debfae72771255a8e8ab16f3e006de0aa"
            },
            "downloads": -1,
            "filename": "lru_dict-1.3.0-cp312-cp312-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "624237b94ab3f5df8765168d555342a5",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 13811,
            "upload_time": "2023-11-06T01:39:21",
            "upload_time_iso_8601": "2023-11-06T01:39:21.599061Z",
            "url": "https://files.pythonhosted.org/packages/bd/18/06d9710cb0a0d3634f8501e4bdcc07abe64a32e404d82895a6a36fab97f6/lru_dict-1.3.0-cp312-cp312-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "d12bcc1d6f6371c7508843616b520f93031d8c7ad05e442db9b5080161380e78",
                "md5": "2fb089d8f83f672b567b5b773ee9a883",
                "sha256": "c265f16c936a8ff3bb4b8a4bda0be94c15ec28b63e99fdb1439c1ffe4cd437db"
            },
            "downloads": -1,
            "filename": "lru_dict-1.3.0-cp38-cp38-macosx_10_9_universal2.whl",
            "has_sig": false,
            "md5_digest": "2fb089d8f83f672b567b5b773ee9a883",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 17730,
            "upload_time": "2023-11-06T01:39:22",
            "upload_time_iso_8601": "2023-11-06T01:39:22.911207Z",
            "url": "https://files.pythonhosted.org/packages/d1/2b/cc1d6f6371c7508843616b520f93031d8c7ad05e442db9b5080161380e78/lru_dict-1.3.0-cp38-cp38-macosx_10_9_universal2.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "381393d8d4149fbf9974e49edcb27107a2f053294c76ad0465789a0bc223e64f",
                "md5": "17a223e103bd9e071b5b8040e773de9a",
                "sha256": "784ca9d3b0730b3ec199c0a58f66264c63dd5d438119c739c349a6a9be8e5f6e"
            },
            "downloads": -1,
            "filename": "lru_dict-1.3.0-cp38-cp38-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "17a223e103bd9e071b5b8040e773de9a",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 11001,
            "upload_time": "2023-11-06T01:39:24",
            "upload_time_iso_8601": "2023-11-06T01:39:24.083393Z",
            "url": "https://files.pythonhosted.org/packages/38/13/93d8d4149fbf9974e49edcb27107a2f053294c76ad0465789a0bc223e64f/lru_dict-1.3.0-cp38-cp38-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "551ad201a2018b45b95983b3afba0ac64847eded7e45e0a28bd0a5b68c9ce6aa",
                "md5": "11892d606ad394b4ba34dc84db2c51cc",
                "sha256": "e13b2f58f647178470adaa14603bb64cc02eeed32601772ccea30e198252883c"
            },
            "downloads": -1,
            "filename": "lru_dict-1.3.0-cp38-cp38-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "11892d606ad394b4ba34dc84db2c51cc",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 11357,
            "upload_time": "2023-11-06T01:39:25",
            "upload_time_iso_8601": "2023-11-06T01:39:25.102793Z",
            "url": "https://files.pythonhosted.org/packages/55/1a/d201a2018b45b95983b3afba0ac64847eded7e45e0a28bd0a5b68c9ce6aa/lru_dict-1.3.0-cp38-cp38-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "ee57d1e616f1cefa1b57acfcf71c57c288d6e638d144cb14373bbd66f583ac56",
                "md5": "d19e922a6c1e2d79a2115aca2dbe7b86",
                "sha256": "7ffbce5c2e80f57937679553c8f27e61ec327c962bf7ea0b15f1d74277fd5363"
            },
            "downloads": -1,
            "filename": "lru_dict-1.3.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "d19e922a6c1e2d79a2115aca2dbe7b86",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 31192,
            "upload_time": "2023-11-06T01:39:26",
            "upload_time_iso_8601": "2023-11-06T01:39:26.093685Z",
            "url": "https://files.pythonhosted.org/packages/ee/57/d1e616f1cefa1b57acfcf71c57c288d6e638d144cb14373bbd66f583ac56/lru_dict-1.3.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "5abab4cadefbdd82ac2f8e68b1add9ccddbd919a7e7f714addfc3f7288cb2d73",
                "md5": "bfd184c184866b1e889fc8379e796f80",
                "sha256": "7969cb034b3ccc707aff877c73c225c32d7e2a7981baa8f92f5dd4d468fe8c33"
            },
            "downloads": -1,
            "filename": "lru_dict-1.3.0-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "bfd184c184866b1e889fc8379e796f80",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 32525,
            "upload_time": "2023-11-06T01:39:27",
            "upload_time_iso_8601": "2023-11-06T01:39:27.712252Z",
            "url": "https://files.pythonhosted.org/packages/5a/ba/b4cadefbdd82ac2f8e68b1add9ccddbd919a7e7f714addfc3f7288cb2d73/lru_dict-1.3.0-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "6907ed55d79d64c0a71787c6e57963205e5f1e58152856562fd1b5514f2e0eb3",
                "md5": "b81a53e61c8d113f74fd2dce555b691c",
                "sha256": "ca9ab676609cce85dd65d91c275e47da676d13d77faa72de286fbea30fbaa596"
            },
            "downloads": -1,
            "filename": "lru_dict-1.3.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "b81a53e61c8d113f74fd2dce555b691c",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 29270,
            "upload_time": "2023-11-06T01:39:28",
            "upload_time_iso_8601": "2023-11-06T01:39:28.849332Z",
            "url": "https://files.pythonhosted.org/packages/69/07/ed55d79d64c0a71787c6e57963205e5f1e58152856562fd1b5514f2e0eb3/lru_dict-1.3.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "063e1dbc3a4e46614744e4754d31106ad02b6d776b5706120f4ea29008cfd49b",
                "md5": "104ee82b617aa449d18d6209ca698304",
                "sha256": "f27c078b5d75989952acbf9b77e14c3dadc468a4aafe85174d548afbc5efc38b"
            },
            "downloads": -1,
            "filename": "lru_dict-1.3.0-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "104ee82b617aa449d18d6209ca698304",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 30811,
            "upload_time": "2023-11-06T01:39:29",
            "upload_time_iso_8601": "2023-11-06T01:39:29.954937Z",
            "url": "https://files.pythonhosted.org/packages/06/3e/1dbc3a4e46614744e4754d31106ad02b6d776b5706120f4ea29008cfd49b/lru_dict-1.3.0-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "c225ab3cf40f7a114baad14a79243107e3a56aa8122409bafbea4838b3ea9ab3",
                "md5": "fa1ea8836a55cc48c316ad701f74f167",
                "sha256": "6123aefe97762ad74215d05320a7f389f196f0594c8813534284d4eafeca1a96"
            },
            "downloads": -1,
            "filename": "lru_dict-1.3.0-cp38-cp38-musllinux_1_1_aarch64.whl",
            "has_sig": false,
            "md5_digest": "fa1ea8836a55cc48c316ad701f74f167",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 35016,
            "upload_time": "2023-11-06T01:39:31",
            "upload_time_iso_8601": "2023-11-06T01:39:31.011286Z",
            "url": "https://files.pythonhosted.org/packages/c2/25/ab3cf40f7a114baad14a79243107e3a56aa8122409bafbea4838b3ea9ab3/lru_dict-1.3.0-cp38-cp38-musllinux_1_1_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "191872ff558501d7e68d7d38c0aeb230b8ef56bff6f1feb431494ffcf634a83f",
                "md5": "e67c6062d02b033df8ea590876096d11",
                "sha256": "cd869cadba9a63e1e7fe2dced4a5747d735135b86016b0a63e8c9e324ab629ac"
            },
            "downloads": -1,
            "filename": "lru_dict-1.3.0-cp38-cp38-musllinux_1_1_i686.whl",
            "has_sig": false,
            "md5_digest": "e67c6062d02b033df8ea590876096d11",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 33693,
            "upload_time": "2023-11-06T01:39:32",
            "upload_time_iso_8601": "2023-11-06T01:39:32.018068Z",
            "url": "https://files.pythonhosted.org/packages/19/18/72ff558501d7e68d7d38c0aeb230b8ef56bff6f1feb431494ffcf634a83f/lru_dict-1.3.0-cp38-cp38-musllinux_1_1_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "eee6ae18f50d422bc11e6980f67895c51c6316a64edddeda8d8c819d40599118",
                "md5": "24a975218b0b342c0c2f646bfe559de8",
                "sha256": "40a8daddc29c7edb09dfe44292cf111f1e93a8344349778721d430d336b50505"
            },
            "downloads": -1,
            "filename": "lru_dict-1.3.0-cp38-cp38-musllinux_1_1_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "24a975218b0b342c0c2f646bfe559de8",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 36636,
            "upload_time": "2023-11-06T01:39:33",
            "upload_time_iso_8601": "2023-11-06T01:39:33.456326Z",
            "url": "https://files.pythonhosted.org/packages/ee/e6/ae18f50d422bc11e6980f67895c51c6316a64edddeda8d8c819d40599118/lru_dict-1.3.0-cp38-cp38-musllinux_1_1_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "e41457e8bcdd13bd9a3623d15fc94c2902aa8d4281a0d8b2b998170092ad10c1",
                "md5": "03cd0c868e9ec72c35170c5bc375cf88",
                "sha256": "6a03170e4152836987a88dcebde61aaeb73ab7099a00bb86509d45b3fe424230"
            },
            "downloads": -1,
            "filename": "lru_dict-1.3.0-cp38-cp38-musllinux_1_1_x86_64.whl",
            "has_sig": false,
            "md5_digest": "03cd0c868e9ec72c35170c5bc375cf88",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 34913,
            "upload_time": "2023-11-06T01:39:34",
            "upload_time_iso_8601": "2023-11-06T01:39:34.492907Z",
            "url": "https://files.pythonhosted.org/packages/e4/14/57e8bcdd13bd9a3623d15fc94c2902aa8d4281a0d8b2b998170092ad10c1/lru_dict-1.3.0-cp38-cp38-musllinux_1_1_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "33f8e720f6f070a998e7cc5df0cc0e243a6d1c3952d9805e6ca18ab066f0fe5d",
                "md5": "188f09a490601336b60346bb867a2ed9",
                "sha256": "3b4f121afe10f5a82b8e317626eb1e1c325b3f104af56c9756064cd833b1950b"
            },
            "downloads": -1,
            "filename": "lru_dict-1.3.0-cp38-cp38-win32.whl",
            "has_sig": false,
            "md5_digest": "188f09a490601336b60346bb867a2ed9",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 12588,
            "upload_time": "2023-11-06T01:39:35",
            "upload_time_iso_8601": "2023-11-06T01:39:35.987484Z",
            "url": "https://files.pythonhosted.org/packages/33/f8/e720f6f070a998e7cc5df0cc0e243a6d1c3952d9805e6ca18ab066f0fe5d/lru_dict-1.3.0-cp38-cp38-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "44642bf4f469c821d07557f7f384c1d642baccce71d66ed678194677c4d5fdce",
                "md5": "41ec7ea651283e50571d0613bf7b6a40",
                "sha256": "1470f5828c7410e16c24b5150eb649647986e78924816e6fb0264049dea14a2b"
            },
            "downloads": -1,
            "filename": "lru_dict-1.3.0-cp38-cp38-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "41ec7ea651283e50571d0613bf7b6a40",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 13749,
            "upload_time": "2023-11-06T01:39:37",
            "upload_time_iso_8601": "2023-11-06T01:39:37.350157Z",
            "url": "https://files.pythonhosted.org/packages/44/64/2bf4f469c821d07557f7f384c1d642baccce71d66ed678194677c4d5fdce/lru_dict-1.3.0-cp38-cp38-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "2afe7f7fe14b680c8605bf73087a985b859f3bf4ca52a5c40b23e691bd39f95c",
                "md5": "02c17f393c496fb06b7db8f713f4c187",
                "sha256": "a3c9f746a9917e784fffcedeac4c8c47a3dbd90cbe13b69e9140182ad97ce4b7"
            },
            "downloads": -1,
            "filename": "lru_dict-1.3.0-cp39-cp39-macosx_10_9_universal2.whl",
            "has_sig": false,
            "md5_digest": "02c17f393c496fb06b7db8f713f4c187",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 17720,
            "upload_time": "2023-11-06T01:39:38",
            "upload_time_iso_8601": "2023-11-06T01:39:38.669373Z",
            "url": "https://files.pythonhosted.org/packages/2a/fe/7f7fe14b680c8605bf73087a985b859f3bf4ca52a5c40b23e691bd39f95c/lru_dict-1.3.0-cp39-cp39-macosx_10_9_universal2.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "2d73b5bb1e97566791fa83ab851e4426887817e03f0404ef079007dd0c83eb52",
                "md5": "64f750b0ae2f684b6ce1b823c16e2804",
                "sha256": "2789296819525a1f3204072dfcf3df6db8bcf69a8fc740ffd3de43a684ea7002"
            },
            "downloads": -1,
            "filename": "lru_dict-1.3.0-cp39-cp39-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "64f750b0ae2f684b6ce1b823c16e2804",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 11024,
            "upload_time": "2023-11-06T01:39:40",
            "upload_time_iso_8601": "2023-11-06T01:39:40.084269Z",
            "url": "https://files.pythonhosted.org/packages/2d/73/b5bb1e97566791fa83ab851e4426887817e03f0404ef079007dd0c83eb52/lru_dict-1.3.0-cp39-cp39-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "72315252dcf464f6f39abfc3f1b38dd0e42e6ea2b41c0b867227ee13568b32f7",
                "md5": "a3edba60a5b6731a0656ef4a27f3c77e",
                "sha256": "170b66d29945391460351588a7bd8210a95407ae82efe0b855e945398a1d24ea"
            },
            "downloads": -1,
            "filename": "lru_dict-1.3.0-cp39-cp39-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "a3edba60a5b6731a0656ef4a27f3c77e",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 11323,
            "upload_time": "2023-11-06T01:39:41",
            "upload_time_iso_8601": "2023-11-06T01:39:41.045282Z",
            "url": "https://files.pythonhosted.org/packages/72/31/5252dcf464f6f39abfc3f1b38dd0e42e6ea2b41c0b867227ee13568b32f7/lru_dict-1.3.0-cp39-cp39-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "2eafdad7f54ad9713829c7a98aa64981d14fdadfebac7e04fc6471c70932d88f",
                "md5": "5b147780940e1064676eb8fb1b5fe9b9",
                "sha256": "774ca88501a9effe8797c3db5a6685cf20978c9cb0fe836b6813cfe1ca60d8c9"
            },
            "downloads": -1,
            "filename": "lru_dict-1.3.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "5b147780940e1064676eb8fb1b5fe9b9",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 30257,
            "upload_time": "2023-11-06T01:39:41",
            "upload_time_iso_8601": "2023-11-06T01:39:41.988956Z",
            "url": "https://files.pythonhosted.org/packages/2e/af/dad7f54ad9713829c7a98aa64981d14fdadfebac7e04fc6471c70932d88f/lru_dict-1.3.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "f2f749b0d40262af0ea275a9bf169d26c59e8ba4ccc84bf21a039712c60841ea",
                "md5": "b63b0522930089093c5e6d7ff0fd734c",
                "sha256": "df2e119c6ae412d2fd641a55f8a1e2e51f45a3de3449c18b1b86c319ab79e0c4"
            },
            "downloads": -1,
            "filename": "lru_dict-1.3.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "b63b0522930089093c5e6d7ff0fd734c",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 31494,
            "upload_time": "2023-11-06T01:39:43",
            "upload_time_iso_8601": "2023-11-06T01:39:43.240232Z",
            "url": "https://files.pythonhosted.org/packages/f2/f7/49b0d40262af0ea275a9bf169d26c59e8ba4ccc84bf21a039712c60841ea/lru_dict-1.3.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "372f89bf5f6eb08f8661eb1704bfe82abbb839b6aa6a7bb04da397b8b32c6856",
                "md5": "ec5031368d13669f70124a2c36e7e290",
                "sha256": "28aa1ea42a7e48174bf513dc2416fea7511a547961e678dc6f5670ca987c18cb"
            },
            "downloads": -1,
            "filename": "lru_dict-1.3.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "ec5031368d13669f70124a2c36e7e290",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 28253,
            "upload_time": "2023-11-06T01:39:44",
            "upload_time_iso_8601": "2023-11-06T01:39:44.424643Z",
            "url": "https://files.pythonhosted.org/packages/37/2f/89bf5f6eb08f8661eb1704bfe82abbb839b6aa6a7bb04da397b8b32c6856/lru_dict-1.3.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "d47a0245feb3a7d8216b8415520f8530516fc7b6ce0d33ea154ffce0bd45db40",
                "md5": "4cb09d178570ad18d0aaea2b86caa33a",
                "sha256": "9537e1cee6fa582cb68f2fb9ce82d51faf2ccc0a638b275d033fdcb1478eb80b"
            },
            "downloads": -1,
            "filename": "lru_dict-1.3.0-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "4cb09d178570ad18d0aaea2b86caa33a",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 29847,
            "upload_time": "2023-11-06T01:39:45",
            "upload_time_iso_8601": "2023-11-06T01:39:45.545570Z",
            "url": "https://files.pythonhosted.org/packages/d4/7a/0245feb3a7d8216b8415520f8530516fc7b6ce0d33ea154ffce0bd45db40/lru_dict-1.3.0-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "60c7494b0938443891a456260502465544f7a2781111857d7e018e7f2abf95d4",
                "md5": "cf3af9489dee324a4c98c5e8e4b02bff",
                "sha256": "64545fca797fe2c68c5168efb5f976c6e1459e058cab02445207a079180a3557"
            },
            "downloads": -1,
            "filename": "lru_dict-1.3.0-cp39-cp39-musllinux_1_1_aarch64.whl",
            "has_sig": false,
            "md5_digest": "cf3af9489dee324a4c98c5e8e4b02bff",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 34376,
            "upload_time": "2023-11-06T01:39:46",
            "upload_time_iso_8601": "2023-11-06T01:39:46.900013Z",
            "url": "https://files.pythonhosted.org/packages/60/c7/494b0938443891a456260502465544f7a2781111857d7e018e7f2abf95d4/lru_dict-1.3.0-cp39-cp39-musllinux_1_1_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "591a5d6219520274eced5327fe3590d0c7c8c6352d996f3507f277beb49b6293",
                "md5": "8a4263185915c026280827ed8379607a",
                "sha256": "a193a14c66cfc0c259d05dddc5e566a4b09e8f1765e941503d065008feebea9d"
            },
            "downloads": -1,
            "filename": "lru_dict-1.3.0-cp39-cp39-musllinux_1_1_i686.whl",
            "has_sig": false,
            "md5_digest": "8a4263185915c026280827ed8379607a",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 33006,
            "upload_time": "2023-11-06T01:39:48",
            "upload_time_iso_8601": "2023-11-06T01:39:48.087401Z",
            "url": "https://files.pythonhosted.org/packages/59/1a/5d6219520274eced5327fe3590d0c7c8c6352d996f3507f277beb49b6293/lru_dict-1.3.0-cp39-cp39-musllinux_1_1_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "058c4664d41111032b829db77d87cef0530078bf6a6c6c20f0e09e64ee6fb1b5",
                "md5": "186cac888bb6bc9f068a0ad897076d85",
                "sha256": "3cb1de0ce4137b060abaafed8474cc0ebd12cedd88aaa7f7b3ebb1ddfba86ae0"
            },
            "downloads": -1,
            "filename": "lru_dict-1.3.0-cp39-cp39-musllinux_1_1_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "186cac888bb6bc9f068a0ad897076d85",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 35933,
            "upload_time": "2023-11-06T01:39:49",
            "upload_time_iso_8601": "2023-11-06T01:39:49.162510Z",
            "url": "https://files.pythonhosted.org/packages/05/8c/4664d41111032b829db77d87cef0530078bf6a6c6c20f0e09e64ee6fb1b5/lru_dict-1.3.0-cp39-cp39-musllinux_1_1_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "58e6dc37372228567c7cfb4bc21096f031249047f269b307c692e3917a038a4d",
                "md5": "3659b4be0a0bf72f8d6a3eb34f719e10",
                "sha256": "8551ccab1349d4bebedab333dfc8693c74ff728f4b565fe15a6bf7d296bd7ea9"
            },
            "downloads": -1,
            "filename": "lru_dict-1.3.0-cp39-cp39-musllinux_1_1_x86_64.whl",
            "has_sig": false,
            "md5_digest": "3659b4be0a0bf72f8d6a3eb34f719e10",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 34193,
            "upload_time": "2023-11-06T01:39:50",
            "upload_time_iso_8601": "2023-11-06T01:39:50.186931Z",
            "url": "https://files.pythonhosted.org/packages/58/e6/dc37372228567c7cfb4bc21096f031249047f269b307c692e3917a038a4d/lru_dict-1.3.0-cp39-cp39-musllinux_1_1_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "970353e3e566b633d853a751d79a8073a2554ab5cd87b2c6dae52492ac8a38ff",
                "md5": "a03236481bdf82ac2c1a77fa0ebdd665",
                "sha256": "6cb0be5e79c3f34d69b90d8559f0221e374b974b809a22377122c4b1a610ff67"
            },
            "downloads": -1,
            "filename": "lru_dict-1.3.0-cp39-cp39-win32.whl",
            "has_sig": false,
            "md5_digest": "a03236481bdf82ac2c1a77fa0ebdd665",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 12567,
            "upload_time": "2023-11-06T01:39:51",
            "upload_time_iso_8601": "2023-11-06T01:39:51.180279Z",
            "url": "https://files.pythonhosted.org/packages/97/03/53e3e566b633d853a751d79a8073a2554ab5cd87b2c6dae52492ac8a38ff/lru_dict-1.3.0-cp39-cp39-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "2ba6bfebae2154dd666cccf282d37a54a3142855796209c70dd9ff862343bde8",
                "md5": "a3a8816dc0e75fdaf3cb2fc09bfdf792",
                "sha256": "9f725f2a0bdf1c18735372d5807af4ea3b77888208590394d4660e3d07971f21"
            },
            "downloads": -1,
            "filename": "lru_dict-1.3.0-cp39-cp39-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "a3a8816dc0e75fdaf3cb2fc09bfdf792",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 13718,
            "upload_time": "2023-11-06T01:39:52",
            "upload_time_iso_8601": "2023-11-06T01:39:52.182698Z",
            "url": "https://files.pythonhosted.org/packages/2b/a6/bfebae2154dd666cccf282d37a54a3142855796209c70dd9ff862343bde8/lru_dict-1.3.0-cp39-cp39-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "788b4b7af0793512af8b0d814b3b08ccecb08f313594866cfe9aabf77f642934",
                "md5": "74d0c1350a3e61ff3753d4f2c0001469",
                "sha256": "f8f7824db5a64581180ab9d09842e6dd9fcdc46aac9cb592a0807cd37ea55680"
            },
            "downloads": -1,
            "filename": "lru_dict-1.3.0-pp310-pypy310_pp73-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "74d0c1350a3e61ff3753d4f2c0001469",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.8",
            "size": 10060,
            "upload_time": "2023-11-06T01:39:53",
            "upload_time_iso_8601": "2023-11-06T01:39:53.238243Z",
            "url": "https://files.pythonhosted.org/packages/78/8b/4b7af0793512af8b0d814b3b08ccecb08f313594866cfe9aabf77f642934/lru_dict-1.3.0-pp310-pypy310_pp73-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "4704e310269b8bbb5718025d0375d8189551f10f1ef057df2b21e4bc5714fb56",
                "md5": "10fc6461c6bd7d418b091a7367c516eb",
                "sha256": "acd04b7e7b0c0c192d738df9c317093335e7282c64c9d1bb6b7ebb54674b4e24"
            },
            "downloads": -1,
            "filename": "lru_dict-1.3.0-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "10fc6461c6bd7d418b091a7367c516eb",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.8",
            "size": 13299,
            "upload_time": "2023-11-06T01:39:54",
            "upload_time_iso_8601": "2023-11-06T01:39:54.311907Z",
            "url": "https://files.pythonhosted.org/packages/47/04/e310269b8bbb5718025d0375d8189551f10f1ef057df2b21e4bc5714fb56/lru_dict-1.3.0-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "e2d2246d375c89a71637fe193f260c500537e5dc11cf3a2b5144669bfef69295",
                "md5": "fbe75bdd25719a7f92eb1c39794a0917",
                "sha256": "e5c20f236f27551e3f0adbf1a987673fb1e9c38d6d284502cd38f5a3845ef681"
            },
            "downloads": -1,
            "filename": "lru_dict-1.3.0-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "fbe75bdd25719a7f92eb1c39794a0917",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.8",
            "size": 13142,
            "upload_time": "2023-11-06T01:39:55",
            "upload_time_iso_8601": "2023-11-06T01:39:55.631698Z",
            "url": "https://files.pythonhosted.org/packages/e2/d2/246d375c89a71637fe193f260c500537e5dc11cf3a2b5144669bfef69295/lru_dict-1.3.0-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "8a1056fead7639a41d507eac5163a81f18c7f47a8c1feb3046d20a9c8bb56e56",
                "md5": "2ec157b460e8e872c4c163b6e850721a",
                "sha256": "ca3703ff03b03a1848c563bc2663d0ad813c1cd42c4d9cf75b623716d4415d9a"
            },
            "downloads": -1,
            "filename": "lru_dict-1.3.0-pp310-pypy310_pp73-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "2ec157b460e8e872c4c163b6e850721a",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.8",
            "size": 12839,
            "upload_time": "2023-11-06T01:39:57",
            "upload_time_iso_8601": "2023-11-06T01:39:57.003463Z",
            "url": "https://files.pythonhosted.org/packages/8a/10/56fead7639a41d507eac5163a81f18c7f47a8c1feb3046d20a9c8bb56e56/lru_dict-1.3.0-pp310-pypy310_pp73-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "fea40d68bc4007aac962386185f625d0d5180cf574e72b5279f840abde1a0e4e",
                "md5": "742b2a8c6ea2fb36413a9e959fd74281",
                "sha256": "a9fb71ba262c6058a0017ce83d343370d0a0dbe2ae62c2eef38241ec13219330"
            },
            "downloads": -1,
            "filename": "lru_dict-1.3.0-pp310-pypy310_pp73-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "742b2a8c6ea2fb36413a9e959fd74281",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.8",
            "size": 13768,
            "upload_time": "2023-11-06T01:39:58",
            "upload_time_iso_8601": "2023-11-06T01:39:58.418826Z",
            "url": "https://files.pythonhosted.org/packages/fe/a4/0d68bc4007aac962386185f625d0d5180cf574e72b5279f840abde1a0e4e/lru_dict-1.3.0-pp310-pypy310_pp73-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "febdbeb9bf8bdd21d67d0079ce3bbd2cfcd49fc2ae3f7030943ba8a92afb925c",
                "md5": "19cb18fba9173dd16b98ae9392bf5512",
                "sha256": "f5b88a7c39e307739a3701194993455968fcffe437d1facab93546b1b8a334c1"
            },
            "downloads": -1,
            "filename": "lru_dict-1.3.0-pp38-pypy38_pp73-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "19cb18fba9173dd16b98ae9392bf5512",
            "packagetype": "bdist_wheel",
            "python_version": "pp38",
            "requires_python": ">=3.8",
            "size": 10057,
            "upload_time": "2023-11-06T01:39:59",
            "upload_time_iso_8601": "2023-11-06T01:39:59.367394Z",
            "url": "https://files.pythonhosted.org/packages/fe/bd/beb9bf8bdd21d67d0079ce3bbd2cfcd49fc2ae3f7030943ba8a92afb925c/lru_dict-1.3.0-pp38-pypy38_pp73-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "ecc22a45c9c39dbb4207a584187bb321085699bd7736dabe08b4e60edbe58353",
                "md5": "981f337b1665d4d09f305101b3d80478",
                "sha256": "2682bfca24656fb7a643621520d57b7fe684ed5fa7be008704c1235d38e16a32"
            },
            "downloads": -1,
            "filename": "lru_dict-1.3.0-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "981f337b1665d4d09f305101b3d80478",
            "packagetype": "bdist_wheel",
            "python_version": "pp38",
            "requires_python": ">=3.8",
            "size": 13260,
            "upload_time": "2023-11-06T01:40:00",
            "upload_time_iso_8601": "2023-11-06T01:40:00.700121Z",
            "url": "https://files.pythonhosted.org/packages/ec/c2/2a45c9c39dbb4207a584187bb321085699bd7736dabe08b4e60edbe58353/lru_dict-1.3.0-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "64d97ea3b571b3113069b34f8fd5a2155bf45630c3a71640f544901ec3be409a",
                "md5": "13b140e4755a4e0b16f9aaddc85e9853",
                "sha256": "96fc87ddf569181827458ec5ad8fa446c4690cffacda66667de780f9fcefd44d"
            },
            "downloads": -1,
            "filename": "lru_dict-1.3.0-pp38-pypy38_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "13b140e4755a4e0b16f9aaddc85e9853",
            "packagetype": "bdist_wheel",
            "python_version": "pp38",
            "requires_python": ">=3.8",
            "size": 13133,
            "upload_time": "2023-11-06T01:40:02",
            "upload_time_iso_8601": "2023-11-06T01:40:02.395382Z",
            "url": "https://files.pythonhosted.org/packages/64/d9/7ea3b571b3113069b34f8fd5a2155bf45630c3a71640f544901ec3be409a/lru_dict-1.3.0-pp38-pypy38_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "93fc73a5dfd2d4846b629aecfd07e2a7fb79632b2525906112bd4120daefc013",
                "md5": "6f95a74d30f8ec2dd930c024c08cd855",
                "sha256": "dcec98e2c7da7631f0811730303abc4bdfe70d013f7a11e174a2ccd5612a7c59"
            },
            "downloads": -1,
            "filename": "lru_dict-1.3.0-pp38-pypy38_pp73-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "6f95a74d30f8ec2dd930c024c08cd855",
            "packagetype": "bdist_wheel",
            "python_version": "pp38",
            "requires_python": ">=3.8",
            "size": 12859,
            "upload_time": "2023-11-06T01:40:03",
            "upload_time_iso_8601": "2023-11-06T01:40:03.656994Z",
            "url": "https://files.pythonhosted.org/packages/93/fc/73a5dfd2d4846b629aecfd07e2a7fb79632b2525906112bd4120daefc013/lru_dict-1.3.0-pp38-pypy38_pp73-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "e119b56e1b445a3ffefdcce221fd09f683897257fab11a78b5b007a01974bf63",
                "md5": "86a8355a927bf1f3b95ebee50be11757",
                "sha256": "6bba2863060caeaedd8386b0c8ee9a7ce4d57a7cb80ceeddf440b4eff2d013ba"
            },
            "downloads": -1,
            "filename": "lru_dict-1.3.0-pp38-pypy38_pp73-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "86a8355a927bf1f3b95ebee50be11757",
            "packagetype": "bdist_wheel",
            "python_version": "pp38",
            "requires_python": ">=3.8",
            "size": 13674,
            "upload_time": "2023-11-06T01:40:04",
            "upload_time_iso_8601": "2023-11-06T01:40:04.799048Z",
            "url": "https://files.pythonhosted.org/packages/e1/19/b56e1b445a3ffefdcce221fd09f683897257fab11a78b5b007a01974bf63/lru_dict-1.3.0-pp38-pypy38_pp73-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "2fcc1167c2d28c09b8491ea23eb5429f9372569376ee3df18aae8053beef457b",
                "md5": "9b6cf69b4efa14a2dc52b57931d58346",
                "sha256": "3c497fb60279f1e1d7dfbe150b1b069eaa43f7e172dab03f206282f4994676c5"
            },
            "downloads": -1,
            "filename": "lru_dict-1.3.0-pp39-pypy39_pp73-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "9b6cf69b4efa14a2dc52b57931d58346",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": ">=3.8",
            "size": 10055,
            "upload_time": "2023-11-06T01:40:05",
            "upload_time_iso_8601": "2023-11-06T01:40:05.912743Z",
            "url": "https://files.pythonhosted.org/packages/2f/cc/1167c2d28c09b8491ea23eb5429f9372569376ee3df18aae8053beef457b/lru_dict-1.3.0-pp39-pypy39_pp73-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "59cef8d122c90f724900aede0251f11352ba37915d55433fe6896e218ef23cd4",
                "md5": "60ac0b56dc89902a06fd7d0c0359dd83",
                "sha256": "8d9509d817a47597988615c1a322580c10100acad10c98dfcf3abb41e0e5877f"
            },
            "downloads": -1,
            "filename": "lru_dict-1.3.0-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "60ac0b56dc89902a06fd7d0c0359dd83",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": ">=3.8",
            "size": 13294,
            "upload_time": "2023-11-06T01:40:07",
            "upload_time_iso_8601": "2023-11-06T01:40:07.255816Z",
            "url": "https://files.pythonhosted.org/packages/59/ce/f8d122c90f724900aede0251f11352ba37915d55433fe6896e218ef23cd4/lru_dict-1.3.0-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "e6478071b4689ed54f6d6ecf89f5ab30906d3ff26253ce89d5ba3cdeb15d3f5f",
                "md5": "1972740b349a4b5be9f98fa020ef5c88",
                "sha256": "0213ab4e3d9a8d386c18e485ad7b14b615cb6f05df6ef44fb2a0746c6ea9278b"
            },
            "downloads": -1,
            "filename": "lru_dict-1.3.0-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "1972740b349a4b5be9f98fa020ef5c88",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": ">=3.8",
            "size": 13140,
            "upload_time": "2023-11-06T01:40:09",
            "upload_time_iso_8601": "2023-11-06T01:40:09.215528Z",
            "url": "https://files.pythonhosted.org/packages/e6/47/8071b4689ed54f6d6ecf89f5ab30906d3ff26253ce89d5ba3cdeb15d3f5f/lru_dict-1.3.0-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "f81570915c50fe4afd59493aa0391fab52769ecbcb1b79c5ce00a8e3bd9622d6",
                "md5": "ba214760cd9d984ca521d54ff8e10295",
                "sha256": "b50fbd69cd3287196796ab4d50e4cc741eb5b5a01f89d8e930df08da3010c385"
            },
            "downloads": -1,
            "filename": "lru_dict-1.3.0-pp39-pypy39_pp73-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "ba214760cd9d984ca521d54ff8e10295",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": ">=3.8",
            "size": 12840,
            "upload_time": "2023-11-06T01:40:10",
            "upload_time_iso_8601": "2023-11-06T01:40:10.707066Z",
            "url": "https://files.pythonhosted.org/packages/f8/15/70915c50fe4afd59493aa0391fab52769ecbcb1b79c5ce00a8e3bd9622d6/lru_dict-1.3.0-pp39-pypy39_pp73-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "03794cefb7cc8387da16480e8aba8c5483cd692460ea29fe7114d6057ed4e0d4",
                "md5": "7dfe8da6f2005dd55073c941b70a786c",
                "sha256": "5247d1f011f92666010942434020ddc5a60951fefd5d12a594f0e5d9f43e3b3b"
            },
            "downloads": -1,
            "filename": "lru_dict-1.3.0-pp39-pypy39_pp73-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "7dfe8da6f2005dd55073c941b70a786c",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": ">=3.8",
            "size": 13779,
            "upload_time": "2023-11-06T01:40:11",
            "upload_time_iso_8601": "2023-11-06T01:40:11.975028Z",
            "url": "https://files.pythonhosted.org/packages/03/79/4cefb7cc8387da16480e8aba8c5483cd692460ea29fe7114d6057ed4e0d4/lru_dict-1.3.0-pp39-pypy39_pp73-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "96e342c87871920602a3c8300915bd0292f76eccc66c38f782397acbf8a62088",
                "md5": "67291e11333a6ef2f3920841264cd537",
                "sha256": "54fd1966d6bd1fcde781596cb86068214edeebff1db13a2cea11079e3fd07b6b"
            },
            "downloads": -1,
            "filename": "lru-dict-1.3.0.tar.gz",
            "has_sig": false,
            "md5_digest": "67291e11333a6ef2f3920841264cd537",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.8",
            "size": 13123,
            "upload_time": "2023-11-06T01:40:12",
            "upload_time_iso_8601": "2023-11-06T01:40:12.951465Z",
            "url": "https://files.pythonhosted.org/packages/96/e3/42c87871920602a3c8300915bd0292f76eccc66c38f782397acbf8a62088/lru-dict-1.3.0.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2023-11-06 01:40:12",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "amitdev",
    "github_project": "lru-dict",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": true,
    "lcname": "lru-dict"
}
        
Elapsed time: 0.13656s