fastrlock


Namefastrlock JSON
Version 0.8.2 PyPI version JSON
download
home_pagehttps://github.com/scoder/fastrlock
SummaryFast, re-entrant optimistic lock implemented in Cython
upload_time2023-08-27 12:22:46
maintainer
docs_urlNone
authorStefan Behnel
requires_python
licenseMIT style
keywords
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI
coveralls test coverage No coveralls.
            FastRLock
---------

This is a C-level implementation of a fast, re-entrant, optimistic lock for CPython.
It is a drop-in replacement for
`threading.RLock <https://docs.python.org/3/library/threading.html#threading.RLock>`_.
FastRLock is implemented in `Cython <https://cython.org>`_ and also provides a C-API
for direct use from Cython code via ``from fastrlock cimport rlock`` or
``from cython.cimports.fastrlock import rlock``.

Under normal conditions, it is about 10x faster than ``threading.RLock`` in Python 2.7
because it avoids all locking unless two or more threads try to acquire it at the
same time.  Under congestion, it is still about 10% faster than RLock due to being
implemented in Cython.

This is mostly equivalent to the revised RLock implementation in Python 3.2,
but still faster due to being implemented in Cython.  However, in Python 3.4 and
later, the ``threading.RLock`` implementation in the stdlib tends to be as fast
or even faster than the lock provided by this package, when called through the
Python API.  ``FastRLock`` is still faster also on these systems when called
through its Cython API from other Cython modules.

It was initially published as a code recipe here:
https://code.activestate.com/recipes/577336-fast-re-entrant-optimistic-lock-implemented-in-cyt/

FastRLock has been used and tested in `Lupa <https://github.com/scoder/lupa>`_ for several years.


How does it work?
-----------------

The FastRLock implementation optimises for the non-congested case.  It works by
exploiting the availability of the GIL.  Since it knows that it holds the GIL when
the acquire()/release() methods are called, it can safely check the lock for being
held by other threads and just count any re-entries as long as it is always the
same thread that acquires it.  This is a lot faster than actually acquiring the
underlying lock.

When a second thread wants to acquire the lock as well, it first checks the lock
count and finds out that the lock is already owned.  If the underlying lock is also
held by another thread already, it then just frees the GIL and asks for acquiring
the lock, just like RLock does.  If the underlying lock is not held, however, it
acquires it immediately and basically hands over the ownership by telling the
current owner to free it when it's done.  Then, it falls back to the normal
non-owner behaviour that asks for the lock and will eventually acquire it when it
gets released.  This makes sure that the real lock is only acquired when at least
two threads want it.

All of these operations are basically atomic because any thread that modifies the
lock state always holds the GIL.  Note that the implementation must not call any
Python code while handling the lock, as calling into Python may lead to a context
switch which hands over the GIL to another thread and thus breaks atomicity.
Therefore, the code misuses Cython's 'nogil' annotation to make sure that no Python
code slips in accidentally.


How fast is it?
---------------

Here are some timings for Python 2.7 for the following scenarios:

1) five acquire-release cycles ('lock_unlock')
2) five acquire calls followed by five release calls (nested locking, 'reentrant_lock_unlock')
3) a mixed and partly nested sequence of acquire and release calls ('mixed_lock_unlock')
4) five acquire-release cycles that do not block ('lock_unlock_nonblocking')

All four are benchmarked for the single threaded case and the multi threaded case
with 10 threads.  I also tested it with 20 threads only to see that it then takes
about twice the time for both versions.  Note also that the congested case is
substantially slower for both locks and the benchmark includes the thread
creation time, so I only looped 1000x here to get useful
timings instead of 100000x for the single threaded case.

::

    Testing _RLock (2.7.18)

    sequential (x100000):
    lock_unlock              :    853.55 msec
    reentrant_lock_unlock    :    684.52 msec
    mixed_lock_unlock        :    758.27 msec
    lock_unlock_nonblocking  :    860.40 msec
    context_manager          :   2876.00 msec

    threaded 10T (x1000):
    lock_unlock              :   2210.69 msec
    reentrant_lock_unlock    :   1864.38 msec
    mixed_lock_unlock        :   1963.10 msec
    lock_unlock_nonblocking  :   3709.91 msec
    context_manager          :   2640.32 msec

    Testing FastRLock (0.8.1)

    sequential (x100000):
    lock_unlock              :    139.76 msec
    reentrant_lock_unlock    :    137.56 msec
    mixed_lock_unlock        :    140.75 msec
    lock_unlock_nonblocking  :    164.64 msec
    context_manager          :    593.06 msec

    threaded 10T (x1000):
    lock_unlock              :   1621.13 msec
    reentrant_lock_unlock    :   1807.09 msec
    mixed_lock_unlock        :   1834.21 msec
    lock_unlock_nonblocking  :   1642.06 msec
    context_manager          :   1730.29 msec

    Testing Cython interface of FastRLock (0.8.1)

    sequential (x100000):
    lock_unlock              :     19.14 msec
    reentrant_lock_unlock    :     19.12 msec
    mixed_lock_unlock        :     16.81 msec
    lock_unlock_nonblocking  :     14.49 msec

    threaded 10T (x1000):
    lock_unlock              :   1511.85 msec
    reentrant_lock_unlock    :   1541.96 msec
    mixed_lock_unlock        :   1585.70 msec
    lock_unlock_nonblocking  :   1585.35 msec


How does it compare to Python 3.7 and later?
--------------------------------------------

The results here are more mixed.  Depending on the optimisation of the CPython
installation, it can be faster, about the same speed, or somewhat slower.
In any case, the direct Cython interface is always faster than going through
the Python API, because it avoids the Python call overhead and executes
a C call instead.

::

    Testing RLock (3.10.1)

    sequential (x100000):
    lock_unlock              :    138.36 msec
    reentrant_lock_unlock    :     95.35 msec
    mixed_lock_unlock        :    102.05 msec
    lock_unlock_nonblocking  :    131.44 msec
    context_manager          :    616.83 msec

    threaded 10T (x1000):
    lock_unlock              :   1386.60 msec
    reentrant_lock_unlock    :   1207.75 msec
    mixed_lock_unlock        :   1319.62 msec
    lock_unlock_nonblocking  :   1325.07 msec
    context_manager          :   1357.93 msec

    Testing FastRLock (0.8.1)

    sequential (x100000):
    lock_unlock              :     77.47 msec
    reentrant_lock_unlock    :     64.14 msec
    mixed_lock_unlock        :     73.51 msec
    lock_unlock_nonblocking  :     70.31 msec
    context_manager          :    393.34 msec

    threaded 10T (x1000):
    lock_unlock              :   1214.13 msec
    reentrant_lock_unlock    :   1171.75 msec
    mixed_lock_unlock        :   1184.33 msec
    lock_unlock_nonblocking  :   1207.42 msec
    context_manager          :   1232.20 msec

    Testing Cython interface of FastRLock (0.8.1)

    sequential (x100000):
    lock_unlock              :     18.70 msec
    reentrant_lock_unlock    :     15.88 msec
    mixed_lock_unlock        :     14.96 msec
    lock_unlock_nonblocking  :     13.47 msec

    threaded 10T (x1000):
    lock_unlock              :   1236.21 msec
    reentrant_lock_unlock    :   1245.77 msec
    mixed_lock_unlock        :   1194.25 msec
    lock_unlock_nonblocking  :   1206.96 msec


===================
fastrlock changelog
===================

0.8.2 (2023-08-27)
==================

* Rebuilt with Cython 3.0.2 to add Python 3.12 support.


0.8.1 (2022-11-02)
==================

* Rebuilt with Cython 3.0.0a11 to add Python 3.11 support.


0.8 (2021-10-22)
================

* Rebuilt with Cython 3.0.0a9 to improve the performance in recent
  Python 3.x versions.


0.7 (2021-10-21)
================

* Adapted for unsigned thread IDs, as used by Py3.7+.
  (original patch by Guilherme Dantas)

* Build with Cython 0.29.24 to support Py3.10 and later.


0.6 (2021-03-21)
================

* Rebuild with Cython 0.29.22 to support Py3.9 and later.


0.5 (2020-06-05)
================

* Rebuild with Cython 0.29.20 to support Py3.8 and later.


0.4 (2018-08-24)
================

* Rebuild with Cython 0.28.5.

* Linux wheels are faster through profile guided optimisation.

* Add missing file to sdist.
  (patch by Mark Harfouche, Github issue #5)


0.3 (2017-08-10)
================

* improve cimport support of C-API
  (patch by Naotoshi Seo, Github issue #3)

* provide ``fastrlock.__version__``


0.2 (2017-08-09)
================

* add missing readme file to sdist


0.1 (2017-06-04)
================

* initial release



            

Raw data

            {
    "_id": null,
    "home_page": "https://github.com/scoder/fastrlock",
    "name": "fastrlock",
    "maintainer": "",
    "docs_url": null,
    "requires_python": "",
    "maintainer_email": "",
    "keywords": "",
    "author": "Stefan Behnel",
    "author_email": "stefan_ml@behnel.de",
    "download_url": "https://files.pythonhosted.org/packages/89/4b/26357c444b48f3f4e3c17b999274e6c60f2367f7e9d454ca2280d8b463e1/fastrlock-0.8.2.tar.gz",
    "platform": null,
    "description": "FastRLock\n---------\n\nThis is a C-level implementation of a fast, re-entrant, optimistic lock for CPython.\nIt is a drop-in replacement for\n`threading.RLock <https://docs.python.org/3/library/threading.html#threading.RLock>`_.\nFastRLock is implemented in `Cython <https://cython.org>`_ and also provides a C-API\nfor direct use from Cython code via ``from fastrlock cimport rlock`` or\n``from cython.cimports.fastrlock import rlock``.\n\nUnder normal conditions, it is about 10x faster than ``threading.RLock`` in Python 2.7\nbecause it avoids all locking unless two or more threads try to acquire it at the\nsame time.  Under congestion, it is still about 10% faster than RLock due to being\nimplemented in Cython.\n\nThis is mostly equivalent to the revised RLock implementation in Python 3.2,\nbut still faster due to being implemented in Cython.  However, in Python 3.4 and\nlater, the ``threading.RLock`` implementation in the stdlib tends to be as fast\nor even faster than the lock provided by this package, when called through the\nPython API.  ``FastRLock`` is still faster also on these systems when called\nthrough its Cython API from other Cython modules.\n\nIt was initially published as a code recipe here:\nhttps://code.activestate.com/recipes/577336-fast-re-entrant-optimistic-lock-implemented-in-cyt/\n\nFastRLock has been used and tested in `Lupa <https://github.com/scoder/lupa>`_ for several years.\n\n\nHow does it work?\n-----------------\n\nThe FastRLock implementation optimises for the non-congested case.  It works by\nexploiting the availability of the GIL.  Since it knows that it holds the GIL when\nthe acquire()/release() methods are called, it can safely check the lock for being\nheld by other threads and just count any re-entries as long as it is always the\nsame thread that acquires it.  This is a lot faster than actually acquiring the\nunderlying lock.\n\nWhen a second thread wants to acquire the lock as well, it first checks the lock\ncount and finds out that the lock is already owned.  If the underlying lock is also\nheld by another thread already, it then just frees the GIL and asks for acquiring\nthe lock, just like RLock does.  If the underlying lock is not held, however, it\nacquires it immediately and basically hands over the ownership by telling the\ncurrent owner to free it when it's done.  Then, it falls back to the normal\nnon-owner behaviour that asks for the lock and will eventually acquire it when it\ngets released.  This makes sure that the real lock is only acquired when at least\ntwo threads want it.\n\nAll of these operations are basically atomic because any thread that modifies the\nlock state always holds the GIL.  Note that the implementation must not call any\nPython code while handling the lock, as calling into Python may lead to a context\nswitch which hands over the GIL to another thread and thus breaks atomicity.\nTherefore, the code misuses Cython's 'nogil' annotation to make sure that no Python\ncode slips in accidentally.\n\n\nHow fast is it?\n---------------\n\nHere are some timings for Python 2.7 for the following scenarios:\n\n1) five acquire-release cycles ('lock_unlock')\n2) five acquire calls followed by five release calls (nested locking, 'reentrant_lock_unlock')\n3) a mixed and partly nested sequence of acquire and release calls ('mixed_lock_unlock')\n4) five acquire-release cycles that do not block ('lock_unlock_nonblocking')\n\nAll four are benchmarked for the single threaded case and the multi threaded case\nwith 10 threads.  I also tested it with 20 threads only to see that it then takes\nabout twice the time for both versions.  Note also that the congested case is\nsubstantially slower for both locks and the benchmark includes the thread\ncreation time, so I only looped 1000x here to get useful\ntimings instead of 100000x for the single threaded case.\n\n::\n\n    Testing _RLock (2.7.18)\n\n    sequential (x100000):\n    lock_unlock              :    853.55 msec\n    reentrant_lock_unlock    :    684.52 msec\n    mixed_lock_unlock        :    758.27 msec\n    lock_unlock_nonblocking  :    860.40 msec\n    context_manager          :   2876.00 msec\n\n    threaded 10T (x1000):\n    lock_unlock              :   2210.69 msec\n    reentrant_lock_unlock    :   1864.38 msec\n    mixed_lock_unlock        :   1963.10 msec\n    lock_unlock_nonblocking  :   3709.91 msec\n    context_manager          :   2640.32 msec\n\n    Testing FastRLock (0.8.1)\n\n    sequential (x100000):\n    lock_unlock              :    139.76 msec\n    reentrant_lock_unlock    :    137.56 msec\n    mixed_lock_unlock        :    140.75 msec\n    lock_unlock_nonblocking  :    164.64 msec\n    context_manager          :    593.06 msec\n\n    threaded 10T (x1000):\n    lock_unlock              :   1621.13 msec\n    reentrant_lock_unlock    :   1807.09 msec\n    mixed_lock_unlock        :   1834.21 msec\n    lock_unlock_nonblocking  :   1642.06 msec\n    context_manager          :   1730.29 msec\n\n    Testing Cython interface of FastRLock (0.8.1)\n\n    sequential (x100000):\n    lock_unlock              :     19.14 msec\n    reentrant_lock_unlock    :     19.12 msec\n    mixed_lock_unlock        :     16.81 msec\n    lock_unlock_nonblocking  :     14.49 msec\n\n    threaded 10T (x1000):\n    lock_unlock              :   1511.85 msec\n    reentrant_lock_unlock    :   1541.96 msec\n    mixed_lock_unlock        :   1585.70 msec\n    lock_unlock_nonblocking  :   1585.35 msec\n\n\nHow does it compare to Python 3.7 and later?\n--------------------------------------------\n\nThe results here are more mixed.  Depending on the optimisation of the CPython\ninstallation, it can be faster, about the same speed, or somewhat slower.\nIn any case, the direct Cython interface is always faster than going through\nthe Python API, because it avoids the Python call overhead and executes\na C call instead.\n\n::\n\n    Testing RLock (3.10.1)\n\n    sequential (x100000):\n    lock_unlock              :    138.36 msec\n    reentrant_lock_unlock    :     95.35 msec\n    mixed_lock_unlock        :    102.05 msec\n    lock_unlock_nonblocking  :    131.44 msec\n    context_manager          :    616.83 msec\n\n    threaded 10T (x1000):\n    lock_unlock              :   1386.60 msec\n    reentrant_lock_unlock    :   1207.75 msec\n    mixed_lock_unlock        :   1319.62 msec\n    lock_unlock_nonblocking  :   1325.07 msec\n    context_manager          :   1357.93 msec\n\n    Testing FastRLock (0.8.1)\n\n    sequential (x100000):\n    lock_unlock              :     77.47 msec\n    reentrant_lock_unlock    :     64.14 msec\n    mixed_lock_unlock        :     73.51 msec\n    lock_unlock_nonblocking  :     70.31 msec\n    context_manager          :    393.34 msec\n\n    threaded 10T (x1000):\n    lock_unlock              :   1214.13 msec\n    reentrant_lock_unlock    :   1171.75 msec\n    mixed_lock_unlock        :   1184.33 msec\n    lock_unlock_nonblocking  :   1207.42 msec\n    context_manager          :   1232.20 msec\n\n    Testing Cython interface of FastRLock (0.8.1)\n\n    sequential (x100000):\n    lock_unlock              :     18.70 msec\n    reentrant_lock_unlock    :     15.88 msec\n    mixed_lock_unlock        :     14.96 msec\n    lock_unlock_nonblocking  :     13.47 msec\n\n    threaded 10T (x1000):\n    lock_unlock              :   1236.21 msec\n    reentrant_lock_unlock    :   1245.77 msec\n    mixed_lock_unlock        :   1194.25 msec\n    lock_unlock_nonblocking  :   1206.96 msec\n\n\n===================\nfastrlock changelog\n===================\n\n0.8.2 (2023-08-27)\n==================\n\n* Rebuilt with Cython 3.0.2 to add Python 3.12 support.\n\n\n0.8.1 (2022-11-02)\n==================\n\n* Rebuilt with Cython 3.0.0a11 to add Python 3.11 support.\n\n\n0.8 (2021-10-22)\n================\n\n* Rebuilt with Cython 3.0.0a9 to improve the performance in recent\n  Python 3.x versions.\n\n\n0.7 (2021-10-21)\n================\n\n* Adapted for unsigned thread IDs, as used by Py3.7+.\n  (original patch by Guilherme Dantas)\n\n* Build with Cython 0.29.24 to support Py3.10 and later.\n\n\n0.6 (2021-03-21)\n================\n\n* Rebuild with Cython 0.29.22 to support Py3.9 and later.\n\n\n0.5 (2020-06-05)\n================\n\n* Rebuild with Cython 0.29.20 to support Py3.8 and later.\n\n\n0.4 (2018-08-24)\n================\n\n* Rebuild with Cython 0.28.5.\n\n* Linux wheels are faster through profile guided optimisation.\n\n* Add missing file to sdist.\n  (patch by Mark Harfouche, Github issue #5)\n\n\n0.3 (2017-08-10)\n================\n\n* improve cimport support of C-API\n  (patch by Naotoshi Seo, Github issue #3)\n\n* provide ``fastrlock.__version__``\n\n\n0.2 (2017-08-09)\n================\n\n* add missing readme file to sdist\n\n\n0.1 (2017-06-04)\n================\n\n* initial release\n\n\n",
    "bugtrack_url": null,
    "license": "MIT style",
    "summary": "Fast, re-entrant optimistic lock implemented in Cython",
    "version": "0.8.2",
    "project_urls": {
        "Homepage": "https://github.com/scoder/fastrlock"
    },
    "split_keywords": [],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "55db393770d1ea22b2bbe12ca91a1b6c130f470ec0a002a3fa208f174de6bb50",
                "md5": "b8c7c3ce563c530a8033d26f77457769",
                "sha256": "94e348c72a1fd1f8191f25ea056448e4f5a87b8fbf005b39d290dcb0581a48cd"
            },
            "downloads": -1,
            "filename": "fastrlock-0.8.2-cp27-cp27m-macosx_10_15_x86_64.whl",
            "has_sig": false,
            "md5_digest": "b8c7c3ce563c530a8033d26f77457769",
            "packagetype": "bdist_wheel",
            "python_version": "cp27",
            "requires_python": null,
            "size": 28730,
            "upload_time": "2023-08-27T12:20:55",
            "upload_time_iso_8601": "2023-08-27T12:20:55.338821Z",
            "url": "https://files.pythonhosted.org/packages/55/db/393770d1ea22b2bbe12ca91a1b6c130f470ec0a002a3fa208f174de6bb50/fastrlock-0.8.2-cp27-cp27m-macosx_10_15_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "6cd1be28c684d5916b7f86fff40eb4f8d02939e664dccdb1a1932db0515ab669",
                "md5": "ee3dd80e9ca113999e10fb7ad8e1a02a",
                "sha256": "2d5595903444c854b99c42122b87edfe8a37cd698a4eae32f4fd1d2a7b6c115d"
            },
            "downloads": -1,
            "filename": "fastrlock-0.8.2-cp27-cp27m-manylinux_2_5_i686.manylinux1_i686.whl",
            "has_sig": false,
            "md5_digest": "ee3dd80e9ca113999e10fb7ad8e1a02a",
            "packagetype": "bdist_wheel",
            "python_version": "cp27",
            "requires_python": null,
            "size": 34305,
            "upload_time": "2023-08-27T12:20:57",
            "upload_time_iso_8601": "2023-08-27T12:20:57.294887Z",
            "url": "https://files.pythonhosted.org/packages/6c/d1/be28c684d5916b7f86fff40eb4f8d02939e664dccdb1a1932db0515ab669/fastrlock-0.8.2-cp27-cp27m-manylinux_2_5_i686.manylinux1_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "3ce11eabd0358e8d02d8f274f0afa657fa7822d1fc20b3bc9a2eff0c245809a8",
                "md5": "f11bf289adc8bd82adf48834df8bfe76",
                "sha256": "e4bbde174a0aff5f6eeba75cf8c4c5d2a316316bc21f03a0bddca0fc3659a6f3"
            },
            "downloads": -1,
            "filename": "fastrlock-0.8.2-cp27-cp27m-manylinux_2_5_x86_64.manylinux1_x86_64.whl",
            "has_sig": false,
            "md5_digest": "f11bf289adc8bd82adf48834df8bfe76",
            "packagetype": "bdist_wheel",
            "python_version": "cp27",
            "requires_python": null,
            "size": 35705,
            "upload_time": "2023-08-27T12:20:58",
            "upload_time_iso_8601": "2023-08-27T12:20:58.991777Z",
            "url": "https://files.pythonhosted.org/packages/3c/e1/1eabd0358e8d02d8f274f0afa657fa7822d1fc20b3bc9a2eff0c245809a8/fastrlock-0.8.2-cp27-cp27m-manylinux_2_5_x86_64.manylinux1_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "f8172eb680c5f73bfc2480f51ce21c068a5064449932abbcbf7f66e5b9355dff",
                "md5": "37d800fb189107d4011d247d2a9b3987",
                "sha256": "7a2ccaf88ac0db153e84305d1ef0aa138cea82c6a88309066f6eaa3bc98636cd"
            },
            "downloads": -1,
            "filename": "fastrlock-0.8.2-cp27-cp27mu-manylinux_2_5_i686.manylinux1_i686.whl",
            "has_sig": false,
            "md5_digest": "37d800fb189107d4011d247d2a9b3987",
            "packagetype": "bdist_wheel",
            "python_version": "cp27",
            "requires_python": null,
            "size": 34294,
            "upload_time": "2023-08-27T12:21:00",
            "upload_time_iso_8601": "2023-08-27T12:21:00.846186Z",
            "url": "https://files.pythonhosted.org/packages/f8/17/2eb680c5f73bfc2480f51ce21c068a5064449932abbcbf7f66e5b9355dff/fastrlock-0.8.2-cp27-cp27mu-manylinux_2_5_i686.manylinux1_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "91999601c3e32896aa80f5608256fb3d289641441eb96d5199dfa94787524645",
                "md5": "9ffb16e8dc1344974df6b1a10c0d7673",
                "sha256": "31a27a2edf482df72b91fe6c6438314d2c65290aa7becc55589d156c9b91f0da"
            },
            "downloads": -1,
            "filename": "fastrlock-0.8.2-cp27-cp27mu-manylinux_2_5_x86_64.manylinux1_x86_64.whl",
            "has_sig": false,
            "md5_digest": "9ffb16e8dc1344974df6b1a10c0d7673",
            "packagetype": "bdist_wheel",
            "python_version": "cp27",
            "requires_python": null,
            "size": 35709,
            "upload_time": "2023-08-27T12:21:02",
            "upload_time_iso_8601": "2023-08-27T12:21:02.800564Z",
            "url": "https://files.pythonhosted.org/packages/91/99/9601c3e32896aa80f5608256fb3d289641441eb96d5199dfa94787524645/fastrlock-0.8.2-cp27-cp27mu-manylinux_2_5_x86_64.manylinux1_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "6ad705d9a697abf348bf73b5260fb1b89f539376b2bdec97d423fd20bf1e783a",
                "md5": "00d8a38c35842547770a7f565422da34",
                "sha256": "e9904b5b37c3e5bb4a245c56bc4b7e497da57ffb8528f4fc39af9dcb168ee2e1"
            },
            "downloads": -1,
            "filename": "fastrlock-0.8.2-cp310-cp310-macosx_11_0_x86_64.whl",
            "has_sig": false,
            "md5_digest": "00d8a38c35842547770a7f565422da34",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": null,
            "size": 30532,
            "upload_time": "2023-08-27T12:21:04",
            "upload_time_iso_8601": "2023-08-27T12:21:04.020029Z",
            "url": "https://files.pythonhosted.org/packages/6a/d7/05d9a697abf348bf73b5260fb1b89f539376b2bdec97d423fd20bf1e783a/fastrlock-0.8.2-cp310-cp310-macosx_11_0_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "2b7a519dda6365ceb81f35be4e3b26187ebc8aa8865679675b92a1547f3ca9f2",
                "md5": "ef44a5b9a54c6444e86ca9ea3acf1d94",
                "sha256": "43a241655e83e4603a152192cf022d5ca348c2f4e56dfb02e5c9c4c1a32f9cdb"
            },
            "downloads": -1,
            "filename": "fastrlock-0.8.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.manylinux_2_24_aarch64.whl",
            "has_sig": false,
            "md5_digest": "ef44a5b9a54c6444e86ca9ea3acf1d94",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": null,
            "size": 47364,
            "upload_time": "2023-08-27T12:21:05",
            "upload_time_iso_8601": "2023-08-27T12:21:05.685999Z",
            "url": "https://files.pythonhosted.org/packages/2b/7a/519dda6365ceb81f35be4e3b26187ebc8aa8865679675b92a1547f3ca9f2/fastrlock-0.8.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.manylinux_2_24_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "1292ced328dd5ee079823c95d199c311eaa3b9eb44807832d8e5370ae9224894",
                "md5": "9d57f362de873c2c17cc6c18eaf7cd86",
                "sha256": "9121a894d74e65557e47e777060a495ab85f4b903e80dd73a3c940ba042920d7"
            },
            "downloads": -1,
            "filename": "fastrlock-0.8.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.manylinux_2_28_aarch64.whl",
            "has_sig": false,
            "md5_digest": "9d57f362de873c2c17cc6c18eaf7cd86",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": null,
            "size": 50200,
            "upload_time": "2023-08-27T12:21:07",
            "upload_time_iso_8601": "2023-08-27T12:21:07.503615Z",
            "url": "https://files.pythonhosted.org/packages/12/92/ced328dd5ee079823c95d199c311eaa3b9eb44807832d8e5370ae9224894/fastrlock-0.8.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.manylinux_2_28_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "39c129cbea3399fe108007df72198e9e0cba8f081eefdba10edbd5bc208fe5ac",
                "md5": "9e9c65a58b39a1ad2cc45a9c777190ff",
                "sha256": "11bbbbc526363955aeddb9eec4cee2a0012322b7b2f15b54f44454fcf4fd398a"
            },
            "downloads": -1,
            "filename": "fastrlock-0.8.2-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_24_i686.whl",
            "has_sig": false,
            "md5_digest": "9e9c65a58b39a1ad2cc45a9c777190ff",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": null,
            "size": 48580,
            "upload_time": "2023-08-27T12:21:09",
            "upload_time_iso_8601": "2023-08-27T12:21:09.247082Z",
            "url": "https://files.pythonhosted.org/packages/39/c1/29cbea3399fe108007df72198e9e0cba8f081eefdba10edbd5bc208fe5ac/fastrlock-0.8.2-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_24_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "526615aa713925023b3eb8970f46acd3b2f02ec0b5137a418cad5250cbe8cfdc",
                "md5": "52853242786cd87424d3cd1299269913",
                "sha256": "27786c62a400e282756ae1b090bcd7cfa35f28270cff65a9e7b27a5327a32561"
            },
            "downloads": -1,
            "filename": "fastrlock-0.8.2-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_24_x86_64.whl",
            "has_sig": false,
            "md5_digest": "52853242786cd87424d3cd1299269913",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": null,
            "size": 48494,
            "upload_time": "2023-08-27T12:21:10",
            "upload_time_iso_8601": "2023-08-27T12:21:10.550181Z",
            "url": "https://files.pythonhosted.org/packages/52/66/15aa713925023b3eb8970f46acd3b2f02ec0b5137a418cad5250cbe8cfdc/fastrlock-0.8.2-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_24_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "bc5dd1f89b59f5b4b4710fd126e0df31ca4c58f46fc0a831058fc49010972d3d",
                "md5": "e6dcd31d3beafc6f453ebea10f8cc292",
                "sha256": "08315bde19d0c2e6b06593d5a418be3dc8f9b1ee721afa96867b9853fceb45cf"
            },
            "downloads": -1,
            "filename": "fastrlock-0.8.2-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_28_x86_64.whl",
            "has_sig": false,
            "md5_digest": "e6dcd31d3beafc6f453ebea10f8cc292",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": null,
            "size": 51280,
            "upload_time": "2023-08-27T12:21:12",
            "upload_time_iso_8601": "2023-08-27T12:21:12.298096Z",
            "url": "https://files.pythonhosted.org/packages/bc/5d/d1f89b59f5b4b4710fd126e0df31ca4c58f46fc0a831058fc49010972d3d/fastrlock-0.8.2-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_28_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "d72d99707885ce625d2a5deb0fcba3eaee86462914d05009ce04cf1cfa5bacd3",
                "md5": "6e3809e431441dc4891fe25af386a4d7",
                "sha256": "e8b49b5743ede51e0bcf6805741f39f5e0e0fd6a172ba460cb39e3097ba803bb"
            },
            "downloads": -1,
            "filename": "fastrlock-0.8.2-cp310-cp310-musllinux_1_1_aarch64.whl",
            "has_sig": false,
            "md5_digest": "6e3809e431441dc4891fe25af386a4d7",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": null,
            "size": 51646,
            "upload_time": "2023-08-27T12:21:13",
            "upload_time_iso_8601": "2023-08-27T12:21:13.638587Z",
            "url": "https://files.pythonhosted.org/packages/d7/2d/99707885ce625d2a5deb0fcba3eaee86462914d05009ce04cf1cfa5bacd3/fastrlock-0.8.2-cp310-cp310-musllinux_1_1_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "3da3cc2412acb468e0c59f966de22ea90e8b51f6e6e305251a2d94432a437575",
                "md5": "4f043841ce3f6d0d6ef54a9325bee4f5",
                "sha256": "b443e73a4dfc7b6e0800ea4c13567b9694358e86f53bb2612a51c9e727cac67b"
            },
            "downloads": -1,
            "filename": "fastrlock-0.8.2-cp310-cp310-musllinux_1_1_x86_64.whl",
            "has_sig": false,
            "md5_digest": "4f043841ce3f6d0d6ef54a9325bee4f5",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": null,
            "size": 51105,
            "upload_time": "2023-08-27T12:21:15",
            "upload_time_iso_8601": "2023-08-27T12:21:15.462451Z",
            "url": "https://files.pythonhosted.org/packages/3d/a3/cc2412acb468e0c59f966de22ea90e8b51f6e6e305251a2d94432a437575/fastrlock-0.8.2-cp310-cp310-musllinux_1_1_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "72263f773629d6367ef4764e0c77e6771bf0dc6390daf753e090947ea9c56a75",
                "md5": "b27415d6a1094c6efdf8efe823fbd170",
                "sha256": "b3853ed4ce522598dc886160a7bab432a093051af85891fa2f5577c1dcac8ed6"
            },
            "downloads": -1,
            "filename": "fastrlock-0.8.2-cp310-cp310-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "b27415d6a1094c6efdf8efe823fbd170",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": null,
            "size": 29775,
            "upload_time": "2023-08-27T12:21:17",
            "upload_time_iso_8601": "2023-08-27T12:21:17.191309Z",
            "url": "https://files.pythonhosted.org/packages/72/26/3f773629d6367ef4764e0c77e6771bf0dc6390daf753e090947ea9c56a75/fastrlock-0.8.2-cp310-cp310-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "1c0e2324d71832db47e2949f846e80f79a1391a5cb79661cb1111eb23c27c8d4",
                "md5": "91ce4d7b3135f6bc2944a7e7a0677452",
                "sha256": "790fc19bccbd39426060047e53629f171a44745613bf360a045e9f9c8c4a2cea"
            },
            "downloads": -1,
            "filename": "fastrlock-0.8.2-cp311-cp311-macosx_10_15_universal2.whl",
            "has_sig": false,
            "md5_digest": "91ce4d7b3135f6bc2944a7e7a0677452",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": null,
            "size": 54924,
            "upload_time": "2023-08-27T12:21:18",
            "upload_time_iso_8601": "2023-08-27T12:21:18.908395Z",
            "url": "https://files.pythonhosted.org/packages/1c/0e/2324d71832db47e2949f846e80f79a1391a5cb79661cb1111eb23c27c8d4/fastrlock-0.8.2-cp311-cp311-macosx_10_15_universal2.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "92d33fce38d4ed16db0936cc39fc7ea06ea0c2398d7033a37e49880edd0a8ca6",
                "md5": "8ee1464140e1e23470347b08359bffbd",
                "sha256": "dbdce852e6bb66e1b8c36679d482971d69d93acf1785657522e51b7de30c3356"
            },
            "downloads": -1,
            "filename": "fastrlock-0.8.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.manylinux_2_24_aarch64.whl",
            "has_sig": false,
            "md5_digest": "8ee1464140e1e23470347b08359bffbd",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": null,
            "size": 48232,
            "upload_time": "2023-08-27T12:21:20",
            "upload_time_iso_8601": "2023-08-27T12:21:20.291282Z",
            "url": "https://files.pythonhosted.org/packages/92/d3/3fce38d4ed16db0936cc39fc7ea06ea0c2398d7033a37e49880edd0a8ca6/fastrlock-0.8.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.manylinux_2_24_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "ba51d66763b993d4f2bbd816fc37f42b78e9b45e98fc0c141bc8605ce0a21c9d",
                "md5": "9bef17a502ea1189158122bace0ae2b2",
                "sha256": "d47713ffe6d4a627fbf078be9836a95ac106b4a0543e3841572c91e292a5d885"
            },
            "downloads": -1,
            "filename": "fastrlock-0.8.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.manylinux_2_28_aarch64.whl",
            "has_sig": false,
            "md5_digest": "9bef17a502ea1189158122bace0ae2b2",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": null,
            "size": 51531,
            "upload_time": "2023-08-27T12:21:21",
            "upload_time_iso_8601": "2023-08-27T12:21:21.612997Z",
            "url": "https://files.pythonhosted.org/packages/ba/51/d66763b993d4f2bbd816fc37f42b78e9b45e98fc0c141bc8605ce0a21c9d/fastrlock-0.8.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.manylinux_2_28_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "58ff653b5b507aa75a962b2fc93bf055d45aa1015b1581b52883052e19abf31b",
                "md5": "ed993718c5a2aee0a8948192cc0cbe28",
                "sha256": "ea96503b918fceaf40443182742b8964d47b65c5ebdea532893cb9479620000c"
            },
            "downloads": -1,
            "filename": "fastrlock-0.8.2-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_24_i686.whl",
            "has_sig": false,
            "md5_digest": "ed993718c5a2aee0a8948192cc0cbe28",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": null,
            "size": 49654,
            "upload_time": "2023-08-27T12:21:22",
            "upload_time_iso_8601": "2023-08-27T12:21:22.850132Z",
            "url": "https://files.pythonhosted.org/packages/58/ff/653b5b507aa75a962b2fc93bf055d45aa1015b1581b52883052e19abf31b/fastrlock-0.8.2-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_24_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "4982df877710dd30860c5e858098fa56ce7b6d4ec82f552bfb384e4cd9eadf95",
                "md5": "f7c53e383361495f463d6298604b6bc3",
                "sha256": "c6bffa978793bea5e1b00e677062e53a62255439339591b70e209fa1552d5ee0"
            },
            "downloads": -1,
            "filename": "fastrlock-0.8.2-cp311-cp311-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_24_x86_64.whl",
            "has_sig": false,
            "md5_digest": "f7c53e383361495f463d6298604b6bc3",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": null,
            "size": 49536,
            "upload_time": "2023-08-27T12:21:24",
            "upload_time_iso_8601": "2023-08-27T12:21:24.083059Z",
            "url": "https://files.pythonhosted.org/packages/49/82/df877710dd30860c5e858098fa56ce7b6d4ec82f552bfb384e4cd9eadf95/fastrlock-0.8.2-cp311-cp311-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_24_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "7f8a24067b0c3e5a0896dbe5e1e547ae176f25b94ce38e21020d1bf78d18d3ba",
                "md5": "19d9de0db8f5b4152468108b59a1316f",
                "sha256": "75c07726c8b1a52147fd7987d6baaa318c5dced1416c3f25593e40f56e10755b"
            },
            "downloads": -1,
            "filename": "fastrlock-0.8.2-cp311-cp311-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_28_x86_64.whl",
            "has_sig": false,
            "md5_digest": "19d9de0db8f5b4152468108b59a1316f",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": null,
            "size": 52581,
            "upload_time": "2023-08-27T12:21:25",
            "upload_time_iso_8601": "2023-08-27T12:21:25.345813Z",
            "url": "https://files.pythonhosted.org/packages/7f/8a/24067b0c3e5a0896dbe5e1e547ae176f25b94ce38e21020d1bf78d18d3ba/fastrlock-0.8.2-cp311-cp311-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_28_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "36af0f0dd7cfc7b202870a6d520b19f8d378ee638cd2b732a330bb16bcc8bc4b",
                "md5": "b9e7c65e8ac0274a646a58737f4b4de7",
                "sha256": "88f079335e9da631efa64486c8207564a7bcd0c00526bb9e842e9d5b7e50a6cc"
            },
            "downloads": -1,
            "filename": "fastrlock-0.8.2-cp311-cp311-musllinux_1_1_aarch64.whl",
            "has_sig": false,
            "md5_digest": "b9e7c65e8ac0274a646a58737f4b4de7",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": null,
            "size": 52779,
            "upload_time": "2023-08-27T12:21:26",
            "upload_time_iso_8601": "2023-08-27T12:21:26.663640Z",
            "url": "https://files.pythonhosted.org/packages/36/af/0f0dd7cfc7b202870a6d520b19f8d378ee638cd2b732a330bb16bcc8bc4b/fastrlock-0.8.2-cp311-cp311-musllinux_1_1_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "8eee1ad545f904ad8cd1ce7598b5af501148749a65dff8b9a7498cf7ceedafbb",
                "md5": "86884d2ff32263097857c3ffe43f6f9a",
                "sha256": "4fb2e77ff04bc4beb71d63c8e064f052ce5a6ea1e001d528d4d7f4b37d736f2e"
            },
            "downloads": -1,
            "filename": "fastrlock-0.8.2-cp311-cp311-musllinux_1_1_x86_64.whl",
            "has_sig": false,
            "md5_digest": "86884d2ff32263097857c3ffe43f6f9a",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": null,
            "size": 52185,
            "upload_time": "2023-08-27T12:21:28",
            "upload_time_iso_8601": "2023-08-27T12:21:28.414771Z",
            "url": "https://files.pythonhosted.org/packages/8e/ee/1ad545f904ad8cd1ce7598b5af501148749a65dff8b9a7498cf7ceedafbb/fastrlock-0.8.2-cp311-cp311-musllinux_1_1_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "1d6dccd8fce45a3a724a1682ebe4dc70f00a274e2a178852595298a1c43d70d4",
                "md5": "c05f135cae2220964c578adb1ba2cfa2",
                "sha256": "b4c9083ea89ab236b06e9ef2263971db3b4b507195fc7d5eecab95828dcae325"
            },
            "downloads": -1,
            "filename": "fastrlock-0.8.2-cp311-cp311-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "c05f135cae2220964c578adb1ba2cfa2",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": null,
            "size": 29926,
            "upload_time": "2023-08-27T12:21:29",
            "upload_time_iso_8601": "2023-08-27T12:21:29.803388Z",
            "url": "https://files.pythonhosted.org/packages/1d/6d/ccd8fce45a3a724a1682ebe4dc70f00a274e2a178852595298a1c43d70d4/fastrlock-0.8.2-cp311-cp311-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "0d54b7c516be2039a4aabc4fbbc5d0346b9c4d878222346f7b37b85ae3624590",
                "md5": "14d97887daf6d10ec7890dc980edaf76",
                "sha256": "98195866d3a9949915935d40a88e4f1c166e82e378f622c88025f2938624a90a"
            },
            "downloads": -1,
            "filename": "fastrlock-0.8.2-cp312-cp312-macosx_10_15_universal2.whl",
            "has_sig": false,
            "md5_digest": "14d97887daf6d10ec7890dc980edaf76",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": null,
            "size": 55286,
            "upload_time": "2023-08-27T12:21:31",
            "upload_time_iso_8601": "2023-08-27T12:21:31.590932Z",
            "url": "https://files.pythonhosted.org/packages/0d/54/b7c516be2039a4aabc4fbbc5d0346b9c4d878222346f7b37b85ae3624590/fastrlock-0.8.2-cp312-cp312-macosx_10_15_universal2.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "2102fe8f8e38cb875d1a882ef44bbc181310fde55cdb9046058f150d09c2af9b",
                "md5": "f3abc9a14873f0c8172da01afb323ef6",
                "sha256": "b22ea9bf5f9fad2b0077e944a7813f91593a4f61adf8faf734a70aed3f2b3a40"
            },
            "downloads": -1,
            "filename": "fastrlock-0.8.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.manylinux_2_28_aarch64.whl",
            "has_sig": false,
            "md5_digest": "f3abc9a14873f0c8172da01afb323ef6",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": null,
            "size": 50652,
            "upload_time": "2023-08-27T12:21:32",
            "upload_time_iso_8601": "2023-08-27T12:21:32.955253Z",
            "url": "https://files.pythonhosted.org/packages/21/02/fe8f8e38cb875d1a882ef44bbc181310fde55cdb9046058f150d09c2af9b/fastrlock-0.8.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.manylinux_2_28_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "3eca16355012a2a5a029a524fd1eb8496eb43190f0e35f623a793ef73e16eb40",
                "md5": "b4254665a84eee6936786d9e9ba6fadc",
                "sha256": "dcc1bf0ac8a194313cf6e645e300a8a379674ceed8e0b1e910a2de3e3c28989e"
            },
            "downloads": -1,
            "filename": "fastrlock-0.8.2-cp312-cp312-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_28_x86_64.whl",
            "has_sig": false,
            "md5_digest": "b4254665a84eee6936786d9e9ba6fadc",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": null,
            "size": 52435,
            "upload_time": "2023-08-27T12:21:34",
            "upload_time_iso_8601": "2023-08-27T12:21:34.766605Z",
            "url": "https://files.pythonhosted.org/packages/3e/ca/16355012a2a5a029a524fd1eb8496eb43190f0e35f623a793ef73e16eb40/fastrlock-0.8.2-cp312-cp312-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_28_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "e1a5a853ca4c0da19d98664ecc36e8104931f63a67e33dd187cb91848783ca94",
                "md5": "eeed710e5f7077e7109695030ccaf724",
                "sha256": "a3dcc876050b8f5cbc0ee84ef1e7f0c1dfe7c148f10098828bc4403683c33f10"
            },
            "downloads": -1,
            "filename": "fastrlock-0.8.2-cp312-cp312-musllinux_1_1_aarch64.whl",
            "has_sig": false,
            "md5_digest": "eeed710e5f7077e7109695030ccaf724",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": null,
            "size": 51501,
            "upload_time": "2023-08-27T12:21:36",
            "upload_time_iso_8601": "2023-08-27T12:21:36.108890Z",
            "url": "https://files.pythonhosted.org/packages/e1/a5/a853ca4c0da19d98664ecc36e8104931f63a67e33dd187cb91848783ca94/fastrlock-0.8.2-cp312-cp312-musllinux_1_1_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "10847ee1705e4079f5eb54bf46d3a7eadf5b684fc2a8dce18a1df013c2d41c55",
                "md5": "a64c0d4dedb731b9c7730192d031ae97",
                "sha256": "685e656048b59d8dfde8c601f188ad53a4d719eb97080cafc8696cda6d75865e"
            },
            "downloads": -1,
            "filename": "fastrlock-0.8.2-cp312-cp312-musllinux_1_1_x86_64.whl",
            "has_sig": false,
            "md5_digest": "a64c0d4dedb731b9c7730192d031ae97",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": null,
            "size": 52527,
            "upload_time": "2023-08-27T12:21:37",
            "upload_time_iso_8601": "2023-08-27T12:21:37.895205Z",
            "url": "https://files.pythonhosted.org/packages/10/84/7ee1705e4079f5eb54bf46d3a7eadf5b684fc2a8dce18a1df013c2d41c55/fastrlock-0.8.2-cp312-cp312-musllinux_1_1_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "f9c0c64e37a5b79966df6110942629dc483ffdeb6062f91afbdb60f848ddfbd1",
                "md5": "11ff2f6a23e1e219ac8a57c7f08e808d",
                "sha256": "fb5363cf0fddd9b50525ddbf64a1e1b28ec4c6dfb28670a940cb1cf988a6786b"
            },
            "downloads": -1,
            "filename": "fastrlock-0.8.2-cp312-cp312-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "11ff2f6a23e1e219ac8a57c7f08e808d",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": null,
            "size": 30150,
            "upload_time": "2023-08-27T12:21:39",
            "upload_time_iso_8601": "2023-08-27T12:21:39.146031Z",
            "url": "https://files.pythonhosted.org/packages/f9/c0/c64e37a5b79966df6110942629dc483ffdeb6062f91afbdb60f848ddfbd1/fastrlock-0.8.2-cp312-cp312-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "77abc26259eebbdaec53c18ed4a1b60486753ac41daf1d225e031f95f5511af1",
                "md5": "075a1fc7bf122af160b7e4e6b48947f3",
                "sha256": "a74f5a92fa6e51c4f3c69b29c4662088b97be12f40652a21109605a175c81824"
            },
            "downloads": -1,
            "filename": "fastrlock-0.8.2-cp35-cp35m-macosx_10_15_x86_64.whl",
            "has_sig": false,
            "md5_digest": "075a1fc7bf122af160b7e4e6b48947f3",
            "packagetype": "bdist_wheel",
            "python_version": "cp35",
            "requires_python": null,
            "size": 29703,
            "upload_time": "2023-08-27T12:21:40",
            "upload_time_iso_8601": "2023-08-27T12:21:40.351328Z",
            "url": "https://files.pythonhosted.org/packages/77/ab/c26259eebbdaec53c18ed4a1b60486753ac41daf1d225e031f95f5511af1/fastrlock-0.8.2-cp35-cp35m-macosx_10_15_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "73b1950738595329d93085319d16333ae4d7369a0a7655ab6d857015ebf3f05a",
                "md5": "b3cf58e1c133bde41edf75c1fdfcc3eb",
                "sha256": "ccf39ad5702e33e4d335b48ef9d56e21619b529b7f7471b5211419f380329b62"
            },
            "downloads": -1,
            "filename": "fastrlock-0.8.2-cp35-cp35m-manylinux_2_5_i686.manylinux1_i686.whl",
            "has_sig": false,
            "md5_digest": "b3cf58e1c133bde41edf75c1fdfcc3eb",
            "packagetype": "bdist_wheel",
            "python_version": "cp35",
            "requires_python": null,
            "size": 36243,
            "upload_time": "2023-08-27T12:21:41",
            "upload_time_iso_8601": "2023-08-27T12:21:41.718349Z",
            "url": "https://files.pythonhosted.org/packages/73/b1/950738595329d93085319d16333ae4d7369a0a7655ab6d857015ebf3f05a/fastrlock-0.8.2-cp35-cp35m-manylinux_2_5_i686.manylinux1_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "fe3d179fabdc07b80e002239c81666ff80714f925dcea1672985e5017e2c7071",
                "md5": "33d3dda80b315d1e5b89c4ee1149bbe6",
                "sha256": "66f2662c640bb71a1016a031eea6eef9d25c2bcdf7ffd1d1ddc5a58f9a1ced04"
            },
            "downloads": -1,
            "filename": "fastrlock-0.8.2-cp35-cp35m-manylinux_2_5_x86_64.manylinux1_x86_64.whl",
            "has_sig": false,
            "md5_digest": "33d3dda80b315d1e5b89c4ee1149bbe6",
            "packagetype": "bdist_wheel",
            "python_version": "cp35",
            "requires_python": null,
            "size": 37635,
            "upload_time": "2023-08-27T12:21:43",
            "upload_time_iso_8601": "2023-08-27T12:21:43.087798Z",
            "url": "https://files.pythonhosted.org/packages/fe/3d/179fabdc07b80e002239c81666ff80714f925dcea1672985e5017e2c7071/fastrlock-0.8.2-cp35-cp35m-manylinux_2_5_x86_64.manylinux1_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "7a8e84a90880b65b36707ab31e58028def2e97923adaac96124ea875b6d9b826",
                "md5": "9f6f8964a9707419f8adc9964c0ed15e",
                "sha256": "17734e2e5af4c07ddb0fb10bd484e062c22de3be6b67940b9cc6ec2f18fa61ba"
            },
            "downloads": -1,
            "filename": "fastrlock-0.8.2-cp36-cp36m-macosx_10_15_x86_64.whl",
            "has_sig": false,
            "md5_digest": "9f6f8964a9707419f8adc9964c0ed15e",
            "packagetype": "bdist_wheel",
            "python_version": "cp36",
            "requires_python": null,
            "size": 29856,
            "upload_time": "2023-08-27T12:21:44",
            "upload_time_iso_8601": "2023-08-27T12:21:44.469638Z",
            "url": "https://files.pythonhosted.org/packages/7a/8e/84a90880b65b36707ab31e58028def2e97923adaac96124ea875b6d9b826/fastrlock-0.8.2-cp36-cp36m-macosx_10_15_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "a5294f76b8b528e307c816b59428e11bd4ced190dc3025524ffe738092e3be67",
                "md5": "10a03336534107630f158c123f27c1ef",
                "sha256": "ab91b0c36e95d42e1041a4907e3eefd06c482d53af3c7a77be7e214cc7cd4a63"
            },
            "downloads": -1,
            "filename": "fastrlock-0.8.2-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.manylinux_2_24_aarch64.whl",
            "has_sig": false,
            "md5_digest": "10a03336534107630f158c123f27c1ef",
            "packagetype": "bdist_wheel",
            "python_version": "cp36",
            "requires_python": null,
            "size": 43421,
            "upload_time": "2023-08-27T12:21:46",
            "upload_time_iso_8601": "2023-08-27T12:21:46.169297Z",
            "url": "https://files.pythonhosted.org/packages/a5/29/4f76b8b528e307c816b59428e11bd4ced190dc3025524ffe738092e3be67/fastrlock-0.8.2-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.manylinux_2_24_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "8993eadeecc28efb476801af85c1c073dbab4d4e6c0686a324a8548aa8787f71",
                "md5": "8573c061e0c89d41b11df58bc428694b",
                "sha256": "b32fdf874868326351a75b1e4c02f97e802147119ae44c52d3d9da193ec34f5b"
            },
            "downloads": -1,
            "filename": "fastrlock-0.8.2-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.manylinux_2_28_aarch64.whl",
            "has_sig": false,
            "md5_digest": "8573c061e0c89d41b11df58bc428694b",
            "packagetype": "bdist_wheel",
            "python_version": "cp36",
            "requires_python": null,
            "size": 45684,
            "upload_time": "2023-08-27T12:21:47",
            "upload_time_iso_8601": "2023-08-27T12:21:47.575839Z",
            "url": "https://files.pythonhosted.org/packages/89/93/eadeecc28efb476801af85c1c073dbab4d4e6c0686a324a8548aa8787f71/fastrlock-0.8.2-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.manylinux_2_28_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "58d4939f9b5a0fe0c4ece6f154c761a068c1976e0ac229883a22d6cb651b2cb7",
                "md5": "e78e7caae9a2ef40ea64c6d1cf1bd696",
                "sha256": "2074548a335fcf7d19ebb18d9208da9e33b06f745754466a7e001d2b1c58dd19"
            },
            "downloads": -1,
            "filename": "fastrlock-0.8.2-cp36-cp36m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_24_i686.whl",
            "has_sig": false,
            "md5_digest": "e78e7caae9a2ef40ea64c6d1cf1bd696",
            "packagetype": "bdist_wheel",
            "python_version": "cp36",
            "requires_python": null,
            "size": 45681,
            "upload_time": "2023-08-27T12:21:49",
            "upload_time_iso_8601": "2023-08-27T12:21:49.360667Z",
            "url": "https://files.pythonhosted.org/packages/58/d4/939f9b5a0fe0c4ece6f154c761a068c1976e0ac229883a22d6cb651b2cb7/fastrlock-0.8.2-cp36-cp36m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_24_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "8cbb8fbed1b7bf980631166941bb11b1e8e75e714e65e340bc45401a40e4a1a7",
                "md5": "38b81fab507972a528a113c3840b7b69",
                "sha256": "4fb04442b6d1e2b36c774919c6bcbe3339c61b337261d4bd57e27932589095af"
            },
            "downloads": -1,
            "filename": "fastrlock-0.8.2-cp36-cp36m-manylinux_2_5_i686.manylinux1_i686.whl",
            "has_sig": false,
            "md5_digest": "38b81fab507972a528a113c3840b7b69",
            "packagetype": "bdist_wheel",
            "python_version": "cp36",
            "requires_python": null,
            "size": 36471,
            "upload_time": "2023-08-27T12:21:50",
            "upload_time_iso_8601": "2023-08-27T12:21:50.775833Z",
            "url": "https://files.pythonhosted.org/packages/8c/bb/8fbed1b7bf980631166941bb11b1e8e75e714e65e340bc45401a40e4a1a7/fastrlock-0.8.2-cp36-cp36m-manylinux_2_5_i686.manylinux1_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "c648b8fa41288053e003c435247d7d0940794219a2d68edda258f49ecc1be262",
                "md5": "956dd9545f97536c75e54ffe88a81323",
                "sha256": "1fed2f4797ad68e9982038423018cf08bec5f4ce9fed63a94a790773ed6a795c"
            },
            "downloads": -1,
            "filename": "fastrlock-0.8.2-cp36-cp36m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_24_x86_64.whl",
            "has_sig": false,
            "md5_digest": "956dd9545f97536c75e54ffe88a81323",
            "packagetype": "bdist_wheel",
            "python_version": "cp36",
            "requires_python": null,
            "size": 45270,
            "upload_time": "2023-08-27T12:21:51",
            "upload_time_iso_8601": "2023-08-27T12:21:51.989871Z",
            "url": "https://files.pythonhosted.org/packages/c6/48/b8fa41288053e003c435247d7d0940794219a2d68edda258f49ecc1be262/fastrlock-0.8.2-cp36-cp36m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_24_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "a129ce6905d0c7ee6b2b0c43b664374bfc01f527c19eefc4a505530de46ce0fe",
                "md5": "42ddf093ed2626560a388eb69ac29a30",
                "sha256": "e380ec4e6d8b26e389713995a43cb7fe56baea2d25fe073d4998c4821a026211"
            },
            "downloads": -1,
            "filename": "fastrlock-0.8.2-cp36-cp36m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_28_x86_64.whl",
            "has_sig": false,
            "md5_digest": "42ddf093ed2626560a388eb69ac29a30",
            "packagetype": "bdist_wheel",
            "python_version": "cp36",
            "requires_python": null,
            "size": 47003,
            "upload_time": "2023-08-27T12:21:53",
            "upload_time_iso_8601": "2023-08-27T12:21:53.447853Z",
            "url": "https://files.pythonhosted.org/packages/a1/29/ce6905d0c7ee6b2b0c43b664374bfc01f527c19eefc4a505530de46ce0fe/fastrlock-0.8.2-cp36-cp36m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_28_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "8f076a7da697c5f63b44e0d063ebe0b72d3120d3b8dfac5d85788a2e145463cc",
                "md5": "f44c1526d2aed3ea885a489c7f89e1a6",
                "sha256": "25945f962c7bd808415cfde3da624d4399d4ea71ed8918538375f16bceb79e1c"
            },
            "downloads": -1,
            "filename": "fastrlock-0.8.2-cp36-cp36m-manylinux_2_5_x86_64.manylinux1_x86_64.whl",
            "has_sig": false,
            "md5_digest": "f44c1526d2aed3ea885a489c7f89e1a6",
            "packagetype": "bdist_wheel",
            "python_version": "cp36",
            "requires_python": null,
            "size": 37806,
            "upload_time": "2023-08-27T12:21:54",
            "upload_time_iso_8601": "2023-08-27T12:21:54.849164Z",
            "url": "https://files.pythonhosted.org/packages/8f/07/6a7da697c5f63b44e0d063ebe0b72d3120d3b8dfac5d85788a2e145463cc/fastrlock-0.8.2-cp36-cp36m-manylinux_2_5_x86_64.manylinux1_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "23f6b699130ffaecba175351d4b2cef7053ae9ad8a4936dba8c20bde83f6fab5",
                "md5": "da82f1bcd30f23c191ae105e65ac7711",
                "sha256": "2c1719ddc8218b01e82fb2e82e8451bd65076cb96d7bef4477194bbb4305a968"
            },
            "downloads": -1,
            "filename": "fastrlock-0.8.2-cp36-cp36m-musllinux_1_1_aarch64.whl",
            "has_sig": false,
            "md5_digest": "da82f1bcd30f23c191ae105e65ac7711",
            "packagetype": "bdist_wheel",
            "python_version": "cp36",
            "requires_python": null,
            "size": 47615,
            "upload_time": "2023-08-27T12:21:56",
            "upload_time_iso_8601": "2023-08-27T12:21:56.869932Z",
            "url": "https://files.pythonhosted.org/packages/23/f6/b699130ffaecba175351d4b2cef7053ae9ad8a4936dba8c20bde83f6fab5/fastrlock-0.8.2-cp36-cp36m-musllinux_1_1_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "2dd2728a3486e0dddd3eef35ff4fcd40ea819f56509299c26c4efff6ecd588b7",
                "md5": "0dd6231eef10726e8f79e49b6d6b0d0e",
                "sha256": "5460c5ee6ced6d61ec8cd2324ebbe793a4960c4ffa2131ffff480e3b61c99ec5"
            },
            "downloads": -1,
            "filename": "fastrlock-0.8.2-cp36-cp36m-musllinux_1_1_x86_64.whl",
            "has_sig": false,
            "md5_digest": "0dd6231eef10726e8f79e49b6d6b0d0e",
            "packagetype": "bdist_wheel",
            "python_version": "cp36",
            "requires_python": null,
            "size": 47539,
            "upload_time": "2023-08-27T12:21:58",
            "upload_time_iso_8601": "2023-08-27T12:21:58.156067Z",
            "url": "https://files.pythonhosted.org/packages/2d/d2/728a3486e0dddd3eef35ff4fcd40ea819f56509299c26c4efff6ecd588b7/fastrlock-0.8.2-cp36-cp36m-musllinux_1_1_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "9fe4a3648f4557da6b8f0eafdef8898bb13c5645f914acfd03f2dd24c2fa7950",
                "md5": "d5fe9237cee18c88d880f266260e005d",
                "sha256": "33145acbad8317584cd64588131c7e1e286beef6280c0009b4544c91fce171d2"
            },
            "downloads": -1,
            "filename": "fastrlock-0.8.2-cp36-cp36m-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "d5fe9237cee18c88d880f266260e005d",
            "packagetype": "bdist_wheel",
            "python_version": "cp36",
            "requires_python": null,
            "size": 34651,
            "upload_time": "2023-08-27T12:21:59",
            "upload_time_iso_8601": "2023-08-27T12:21:59.943470Z",
            "url": "https://files.pythonhosted.org/packages/9f/e4/a3648f4557da6b8f0eafdef8898bb13c5645f914acfd03f2dd24c2fa7950/fastrlock-0.8.2-cp36-cp36m-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "42261df8a5967fc9482e6f7f9013632cb6dabc8d505fe67897ed6697196a144b",
                "md5": "a134f70edd7a53a584510c1c7b46746e",
                "sha256": "59344c1d46b7dec97d3f22f1cc930fafe8980b3c5bc9c9765c56738a5f1559e4"
            },
            "downloads": -1,
            "filename": "fastrlock-0.8.2-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.manylinux_2_24_aarch64.whl",
            "has_sig": false,
            "md5_digest": "a134f70edd7a53a584510c1c7b46746e",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": null,
            "size": 45347,
            "upload_time": "2023-08-27T12:22:01",
            "upload_time_iso_8601": "2023-08-27T12:22:01.418416Z",
            "url": "https://files.pythonhosted.org/packages/42/26/1df8a5967fc9482e6f7f9013632cb6dabc8d505fe67897ed6697196a144b/fastrlock-0.8.2-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.manylinux_2_24_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "5b9a018bb51a385c34cd3cd427fddf556e9eb9d3c75d32c5047f8ffb6a2059c5",
                "md5": "7b8036758dfb87192bc16fa65e54761a",
                "sha256": "b2a1c354f13f22b737621d914f3b4a8434ae69d3027a775e94b3e671756112f9"
            },
            "downloads": -1,
            "filename": "fastrlock-0.8.2-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.manylinux_2_28_aarch64.whl",
            "has_sig": false,
            "md5_digest": "7b8036758dfb87192bc16fa65e54761a",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": null,
            "size": 47944,
            "upload_time": "2023-08-27T12:22:02",
            "upload_time_iso_8601": "2023-08-27T12:22:02.739981Z",
            "url": "https://files.pythonhosted.org/packages/5b/9a/018bb51a385c34cd3cd427fddf556e9eb9d3c75d32c5047f8ffb6a2059c5/fastrlock-0.8.2-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.manylinux_2_28_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "44ae326eea966d5601327b90d05ee2a4704d4bc976d4b58b665458a9c202ccd5",
                "md5": "977d5a1e2c3be03e504412ccb79e8b98",
                "sha256": "cf81e0278b645004388873e0a1f9e3bc4c9ab8c18e377b14ed1a544be4b18c9a"
            },
            "downloads": -1,
            "filename": "fastrlock-0.8.2-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_24_i686.whl",
            "has_sig": false,
            "md5_digest": "977d5a1e2c3be03e504412ccb79e8b98",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": null,
            "size": 47670,
            "upload_time": "2023-08-27T12:22:04",
            "upload_time_iso_8601": "2023-08-27T12:22:04.095659Z",
            "url": "https://files.pythonhosted.org/packages/44/ae/326eea966d5601327b90d05ee2a4704d4bc976d4b58b665458a9c202ccd5/fastrlock-0.8.2-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_24_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "cafb274f6576c93847ad2b08e71badf8aafd4710603f37e6f42e24857cd039d1",
                "md5": "c30d4d65acd4169e81d2092beab3f6e5",
                "sha256": "1b15430b93d7eb3d56f6ff690d2ebecb79ed0e58248427717eba150a508d1cd7"
            },
            "downloads": -1,
            "filename": "fastrlock-0.8.2-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.whl",
            "has_sig": false,
            "md5_digest": "c30d4d65acd4169e81d2092beab3f6e5",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": null,
            "size": 38257,
            "upload_time": "2023-08-27T12:22:05",
            "upload_time_iso_8601": "2023-08-27T12:22:05.436403Z",
            "url": "https://files.pythonhosted.org/packages/ca/fb/274f6576c93847ad2b08e71badf8aafd4710603f37e6f42e24857cd039d1/fastrlock-0.8.2-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "424e8bff5aa98ba1406c23a7dded13fea0bf2f536b4f8f7096fcbea0303e9cf5",
                "md5": "3c691dd2e8e8936df75252d335b9db27",
                "sha256": "067edb0a0805bf61e17a251d5046af59f6e9d2b8ad01222e0ef7a0b7937d5548"
            },
            "downloads": -1,
            "filename": "fastrlock-0.8.2-cp37-cp37m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_24_x86_64.whl",
            "has_sig": false,
            "md5_digest": "3c691dd2e8e8936df75252d335b9db27",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": null,
            "size": 47210,
            "upload_time": "2023-08-27T12:22:06",
            "upload_time_iso_8601": "2023-08-27T12:22:06.742376Z",
            "url": "https://files.pythonhosted.org/packages/42/4e/8bff5aa98ba1406c23a7dded13fea0bf2f536b4f8f7096fcbea0303e9cf5/fastrlock-0.8.2-cp37-cp37m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_24_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "b2c9a8ae361f84f51a07429d71215660dbf9eb243cadaca1ec54765afc39bd9c",
                "md5": "564722e9663ca2c8f4e35bd7fb06f760",
                "sha256": "eb31fe390f03f7ae886dcc374f1099ec88526631a4cb891d399b68181f154ff0"
            },
            "downloads": -1,
            "filename": "fastrlock-0.8.2-cp37-cp37m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_28_x86_64.whl",
            "has_sig": false,
            "md5_digest": "564722e9663ca2c8f4e35bd7fb06f760",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": null,
            "size": 49376,
            "upload_time": "2023-08-27T12:22:08",
            "upload_time_iso_8601": "2023-08-27T12:22:08.330370Z",
            "url": "https://files.pythonhosted.org/packages/b2/c9/a8ae361f84f51a07429d71215660dbf9eb243cadaca1ec54765afc39bd9c/fastrlock-0.8.2-cp37-cp37m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_28_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "53263d74f6f62c88c67d4fe7573b81186c4224f50f858f98ea53431519a2a8f0",
                "md5": "7f20dfaedf159b8fd90e5f8d4c478579",
                "sha256": "643e1e65b4f5b284427e61a894d876d10459820e93aa1e724dfb415117be24e0"
            },
            "downloads": -1,
            "filename": "fastrlock-0.8.2-cp37-cp37m-manylinux_2_5_x86_64.manylinux1_x86_64.whl",
            "has_sig": false,
            "md5_digest": "7f20dfaedf159b8fd90e5f8d4c478579",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": null,
            "size": 39648,
            "upload_time": "2023-08-27T12:22:10",
            "upload_time_iso_8601": "2023-08-27T12:22:10.084741Z",
            "url": "https://files.pythonhosted.org/packages/53/26/3d74f6f62c88c67d4fe7573b81186c4224f50f858f98ea53431519a2a8f0/fastrlock-0.8.2-cp37-cp37m-manylinux_2_5_x86_64.manylinux1_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "cb76ef76214cf55267eca9a818caaeed0e45a57ee0fe598fd129a3137ce1580b",
                "md5": "e203822fdff0b0f08d5e5180a9867657",
                "sha256": "5dfb78dd600a12f23fc0c3ec58f81336229fdc74501ecf378d1ce5b3f2f313ea"
            },
            "downloads": -1,
            "filename": "fastrlock-0.8.2-cp37-cp37m-musllinux_1_1_aarch64.whl",
            "has_sig": false,
            "md5_digest": "e203822fdff0b0f08d5e5180a9867657",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": null,
            "size": 49940,
            "upload_time": "2023-08-27T12:22:11",
            "upload_time_iso_8601": "2023-08-27T12:22:11.467774Z",
            "url": "https://files.pythonhosted.org/packages/cb/76/ef76214cf55267eca9a818caaeed0e45a57ee0fe598fd129a3137ce1580b/fastrlock-0.8.2-cp37-cp37m-musllinux_1_1_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "3f9b45c5852b2f1868ce3c6676c6264e28b53093cb9c521dbfbb8a305438908d",
                "md5": "0015fe4b14f9b3bf7768f72c1fd1ff17",
                "sha256": "b8ca0fe21458457077e4cb2d81e1ebdb146a00b3e9e2db6180a773f7ea905032"
            },
            "downloads": -1,
            "filename": "fastrlock-0.8.2-cp37-cp37m-musllinux_1_1_x86_64.whl",
            "has_sig": false,
            "md5_digest": "0015fe4b14f9b3bf7768f72c1fd1ff17",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": null,
            "size": 50092,
            "upload_time": "2023-08-27T12:22:12",
            "upload_time_iso_8601": "2023-08-27T12:22:12.786469Z",
            "url": "https://files.pythonhosted.org/packages/3f/9b/45c5852b2f1868ce3c6676c6264e28b53093cb9c521dbfbb8a305438908d/fastrlock-0.8.2-cp37-cp37m-musllinux_1_1_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "915445073ef1e15f9c03ae644b57073d594737956c78861335c23ad5fc05ed0e",
                "md5": "270cc35cf0d78f0ffa3d395fa6dfc61d",
                "sha256": "d918dfe473291e8bfd8e13223ea5cb9b317bd9f50c280923776c377f7c64b428"
            },
            "downloads": -1,
            "filename": "fastrlock-0.8.2-cp37-cp37m-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "270cc35cf0d78f0ffa3d395fa6dfc61d",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": null,
            "size": 36589,
            "upload_time": "2023-08-27T12:22:14",
            "upload_time_iso_8601": "2023-08-27T12:22:14.219647Z",
            "url": "https://files.pythonhosted.org/packages/91/54/45073ef1e15f9c03ae644b57073d594737956c78861335c23ad5fc05ed0e/fastrlock-0.8.2-cp37-cp37m-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "8d5fe0da7388eea6e7e94416384b7c073c2de3178e563d3a1e36676c3918ba91",
                "md5": "5789fb258efd00c4cab112bd5c532d2a",
                "sha256": "c393af77c659a38bffbca215c0bcc8629ba4299568308dd7e4ff65d62cabed39"
            },
            "downloads": -1,
            "filename": "fastrlock-0.8.2-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.manylinux_2_24_aarch64.whl",
            "has_sig": false,
            "md5_digest": "5789fb258efd00c4cab112bd5c532d2a",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": null,
            "size": 48139,
            "upload_time": "2023-08-27T12:22:15",
            "upload_time_iso_8601": "2023-08-27T12:22:15.445365Z",
            "url": "https://files.pythonhosted.org/packages/8d/5f/e0da7388eea6e7e94416384b7c073c2de3178e563d3a1e36676c3918ba91/fastrlock-0.8.2-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.manylinux_2_24_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "37e92140db63fd0bd663f9b9136557e0e3c0425614721e9b6c2a874e6e196631",
                "md5": "147dbe6053144cf34ed41bb1f56a562c",
                "sha256": "73426f5eb2ecc10626c67cf86bd0af9e00d53e80e5c67d5ce8e18376d6abfa09"
            },
            "downloads": -1,
            "filename": "fastrlock-0.8.2-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.manylinux_2_28_aarch64.whl",
            "has_sig": false,
            "md5_digest": "147dbe6053144cf34ed41bb1f56a562c",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": null,
            "size": 51208,
            "upload_time": "2023-08-27T12:22:16",
            "upload_time_iso_8601": "2023-08-27T12:22:16.707500Z",
            "url": "https://files.pythonhosted.org/packages/37/e9/2140db63fd0bd663f9b9136557e0e3c0425614721e9b6c2a874e6e196631/fastrlock-0.8.2-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.manylinux_2_28_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "f1e28d7ad647fb65753837f942bc3bdac33b71f5d2f7ee516cfdba85b0a3da8b",
                "md5": "13bda318d922679451fe886379ce02de",
                "sha256": "320fd55bafee3eb069cfb5d6491f811a912758387ef2193840e2663e80e16f48"
            },
            "downloads": -1,
            "filename": "fastrlock-0.8.2-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_24_i686.whl",
            "has_sig": false,
            "md5_digest": "13bda318d922679451fe886379ce02de",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": null,
            "size": 50279,
            "upload_time": "2023-08-27T12:22:18",
            "upload_time_iso_8601": "2023-08-27T12:22:18.499633Z",
            "url": "https://files.pythonhosted.org/packages/f1/e2/8d7ad647fb65753837f942bc3bdac33b71f5d2f7ee516cfdba85b0a3da8b/fastrlock-0.8.2-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_24_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "73485b49cbeb5674cfc93824e7314a9e6c7f77e34354d647875a037716802d5d",
                "md5": "0d540efa6da92a25781b84fa5cb12b9e",
                "sha256": "8c1c91a68926421f5ccbc82c85f83bd3ba593b121a46a1b9a554b3f0dd67a4bf"
            },
            "downloads": -1,
            "filename": "fastrlock-0.8.2-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl",
            "has_sig": false,
            "md5_digest": "0d540efa6da92a25781b84fa5cb12b9e",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": null,
            "size": 37341,
            "upload_time": "2023-08-27T12:22:20",
            "upload_time_iso_8601": "2023-08-27T12:22:20.361728Z",
            "url": "https://files.pythonhosted.org/packages/73/48/5b49cbeb5674cfc93824e7314a9e6c7f77e34354d647875a037716802d5d/fastrlock-0.8.2-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "351773548240545bb5d618479d86b6f8003de208ec260d820fce298afe333de2",
                "md5": "b367b63da7f9e88d4cb0c1d4f7fce83a",
                "sha256": "ad1bc61c7f6b0e58106aaab034916b6cb041757f708b07fbcdd9d6e1ac629225"
            },
            "downloads": -1,
            "filename": "fastrlock-0.8.2-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_24_x86_64.whl",
            "has_sig": false,
            "md5_digest": "b367b63da7f9e88d4cb0c1d4f7fce83a",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": null,
            "size": 50005,
            "upload_time": "2023-08-27T12:22:22",
            "upload_time_iso_8601": "2023-08-27T12:22:22.195650Z",
            "url": "https://files.pythonhosted.org/packages/35/17/73548240545bb5d618479d86b6f8003de208ec260d820fce298afe333de2/fastrlock-0.8.2-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_24_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "92250212242253047f5fa97a67c92c512475d0f3fba9d29547552f97e6a29a2d",
                "md5": "0cb86e7e1208bc55e4262a4be9a6828e",
                "sha256": "87f4e01b042c84e6090dbc4fbe3415ddd69f6bc0130382323f9d3f1b8dd71b46"
            },
            "downloads": -1,
            "filename": "fastrlock-0.8.2-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_28_x86_64.whl",
            "has_sig": false,
            "md5_digest": "0cb86e7e1208bc55e4262a4be9a6828e",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": null,
            "size": 52260,
            "upload_time": "2023-08-27T12:22:23",
            "upload_time_iso_8601": "2023-08-27T12:22:23.991025Z",
            "url": "https://files.pythonhosted.org/packages/92/25/0212242253047f5fa97a67c92c512475d0f3fba9d29547552f97e6a29a2d/fastrlock-0.8.2-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_28_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "c78815739ed0147dcdee0fdd8829ade585673eccbdb26afbe8f3bda442e579d3",
                "md5": "c6ad0be9815ec2429c8cb7ed7c94eb1e",
                "sha256": "d34546ad2e4a480b94b6797bcc5a322b3c705c4c74c3e4e545c4a3841c1b2d59"
            },
            "downloads": -1,
            "filename": "fastrlock-0.8.2-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.whl",
            "has_sig": false,
            "md5_digest": "c6ad0be9815ec2429c8cb7ed7c94eb1e",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": null,
            "size": 38478,
            "upload_time": "2023-08-27T12:22:25",
            "upload_time_iso_8601": "2023-08-27T12:22:25.256338Z",
            "url": "https://files.pythonhosted.org/packages/c7/88/15739ed0147dcdee0fdd8829ade585673eccbdb26afbe8f3bda442e579d3/fastrlock-0.8.2-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "0489fad0e42357063be1af926dfa07dc24df0459eeeb394a4afb0467cba2bd3f",
                "md5": "6fe04acf4d6a7e81e513bdb525001322",
                "sha256": "ebb32d776b61acd49f859a1d16b9e3d84e7b46d0d92aebd58acd54dc38e96664"
            },
            "downloads": -1,
            "filename": "fastrlock-0.8.2-cp38-cp38-musllinux_1_1_aarch64.whl",
            "has_sig": false,
            "md5_digest": "6fe04acf4d6a7e81e513bdb525001322",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": null,
            "size": 52943,
            "upload_time": "2023-08-27T12:22:26",
            "upload_time_iso_8601": "2023-08-27T12:22:26.743419Z",
            "url": "https://files.pythonhosted.org/packages/04/89/fad0e42357063be1af926dfa07dc24df0459eeeb394a4afb0467cba2bd3f/fastrlock-0.8.2-cp38-cp38-musllinux_1_1_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "860cb3a4dcd609b632772029b439dc31bed764e856deec8b9ac653ede83c7000",
                "md5": "10429fa5d3ffdee76a29ffec72221731",
                "sha256": "30bdbe4662992348132d03996700e1cf910d141d629179b967b146a22942264e"
            },
            "downloads": -1,
            "filename": "fastrlock-0.8.2-cp38-cp38-musllinux_1_1_x86_64.whl",
            "has_sig": false,
            "md5_digest": "10429fa5d3ffdee76a29ffec72221731",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": null,
            "size": 52991,
            "upload_time": "2023-08-27T12:22:28",
            "upload_time_iso_8601": "2023-08-27T12:22:28.109365Z",
            "url": "https://files.pythonhosted.org/packages/86/0c/b3a4dcd609b632772029b439dc31bed764e856deec8b9ac653ede83c7000/fastrlock-0.8.2-cp38-cp38-musllinux_1_1_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "d7af14f1f63ba326c10c1441bbeedf03732423660e101993ab2ce5a38a986724",
                "md5": "9533dbc80b7575d033c997625f1f0af0",
                "sha256": "07ed3c7b3867c05a3d6be4ced200c7767000f3431b9be6da66972822dd86e8be"
            },
            "downloads": -1,
            "filename": "fastrlock-0.8.2-cp38-cp38-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "9533dbc80b7575d033c997625f1f0af0",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": null,
            "size": 36062,
            "upload_time": "2023-08-27T12:22:29",
            "upload_time_iso_8601": "2023-08-27T12:22:29.410972Z",
            "url": "https://files.pythonhosted.org/packages/d7/af/14f1f63ba326c10c1441bbeedf03732423660e101993ab2ce5a38a986724/fastrlock-0.8.2-cp38-cp38-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "7edca0f4bbf958bb5d2731c71eb2e51102c36d0539930b4c0eb2f7990489d4dd",
                "md5": "29838f96704cfa48064d378fdde940c5",
                "sha256": "ddf5d247f686aec853ddcc9a1234bfcc6f57b0a0670d2ad82fc25d8ae7e6a15f"
            },
            "downloads": -1,
            "filename": "fastrlock-0.8.2-cp39-cp39-macosx_11_0_x86_64.whl",
            "has_sig": false,
            "md5_digest": "29838f96704cfa48064d378fdde940c5",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": null,
            "size": 31246,
            "upload_time": "2023-08-27T12:22:30",
            "upload_time_iso_8601": "2023-08-27T12:22:30.703461Z",
            "url": "https://files.pythonhosted.org/packages/7e/dc/a0f4bbf958bb5d2731c71eb2e51102c36d0539930b4c0eb2f7990489d4dd/fastrlock-0.8.2-cp39-cp39-macosx_11_0_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "c9dc957b0934bfca8045b41e66ed998bf242f7ed7f06eed0c5cc0d797fc5c6b0",
                "md5": "2535faf95a0dd33fad5ac7b7f1ef1adf",
                "sha256": "7269bb3fc15587b0c191eecd95831d771a7d80f0c48929e560806b038ff3066c"
            },
            "downloads": -1,
            "filename": "fastrlock-0.8.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.manylinux_2_24_aarch64.whl",
            "has_sig": false,
            "md5_digest": "2535faf95a0dd33fad5ac7b7f1ef1adf",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": null,
            "size": 48751,
            "upload_time": "2023-08-27T12:22:31",
            "upload_time_iso_8601": "2023-08-27T12:22:31.876650Z",
            "url": "https://files.pythonhosted.org/packages/c9/dc/957b0934bfca8045b41e66ed998bf242f7ed7f06eed0c5cc0d797fc5c6b0/fastrlock-0.8.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.manylinux_2_24_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "d6da6ec58d50149af1a0a8b410e845501170b0f2370b11921647bf8e60468a7f",
                "md5": "0882fd5e3286517ceae5e035aab93646",
                "sha256": "adcb9e77aa132cc6c9de2ffe7cf880a20aa8cdba21d367d1da1a412f57bddd5d"
            },
            "downloads": -1,
            "filename": "fastrlock-0.8.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.manylinux_2_28_aarch64.whl",
            "has_sig": false,
            "md5_digest": "0882fd5e3286517ceae5e035aab93646",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": null,
            "size": 51873,
            "upload_time": "2023-08-27T12:22:33",
            "upload_time_iso_8601": "2023-08-27T12:22:33.139628Z",
            "url": "https://files.pythonhosted.org/packages/d6/da/6ec58d50149af1a0a8b410e845501170b0f2370b11921647bf8e60468a7f/fastrlock-0.8.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.manylinux_2_28_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "94acee89216a056842005b5e35b4354734ef20e86e173628a78dd5b6612da2c9",
                "md5": "f6f7a4713830bce70a5273f03961fe60",
                "sha256": "a3b8b5d2935403f1b4b25ae324560e94b59593a38c0d2e7b6c9872126a9622ed"
            },
            "downloads": -1,
            "filename": "fastrlock-0.8.2-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_24_i686.whl",
            "has_sig": false,
            "md5_digest": "f6f7a4713830bce70a5273f03961fe60",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": null,
            "size": 50607,
            "upload_time": "2023-08-27T12:22:35",
            "upload_time_iso_8601": "2023-08-27T12:22:35.248832Z",
            "url": "https://files.pythonhosted.org/packages/94/ac/ee89216a056842005b5e35b4354734ef20e86e173628a78dd5b6612da2c9/fastrlock-0.8.2-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_24_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "d8cbf75c4eb5de5edf43e4e41dfa604512c24d1f9387746803dfbc2649888d08",
                "md5": "14557049a00353de0fcf060855aef5c1",
                "sha256": "2587cedbb36c7988e707d83f0f1175c1f882f362b5ebbee25d70218ea33d220d"
            },
            "downloads": -1,
            "filename": "fastrlock-0.8.2-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl",
            "has_sig": false,
            "md5_digest": "14557049a00353de0fcf060855aef5c1",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": null,
            "size": 37354,
            "upload_time": "2023-08-27T12:22:37",
            "upload_time_iso_8601": "2023-08-27T12:22:37.023633Z",
            "url": "https://files.pythonhosted.org/packages/d8/cb/f75c4eb5de5edf43e4e41dfa604512c24d1f9387746803dfbc2649888d08/fastrlock-0.8.2-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "2c8e8be52367f04ef0a3504010bed39b57c459114ea170f1be8821ee37b085ed",
                "md5": "1d0ef6a4a13ef7e59498d385bfcde611",
                "sha256": "9af691a9861027181d4de07ed74f0aee12a9650ac60d0a07f4320bff84b5d95f"
            },
            "downloads": -1,
            "filename": "fastrlock-0.8.2-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_24_x86_64.whl",
            "has_sig": false,
            "md5_digest": "1d0ef6a4a13ef7e59498d385bfcde611",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": null,
            "size": 50501,
            "upload_time": "2023-08-27T12:22:38",
            "upload_time_iso_8601": "2023-08-27T12:22:38.249890Z",
            "url": "https://files.pythonhosted.org/packages/2c/8e/8be52367f04ef0a3504010bed39b57c459114ea170f1be8821ee37b085ed/fastrlock-0.8.2-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_24_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "91e3df5d25687f94df24228f2a927aaf98334507849cbf715a75d079e6bbb80f",
                "md5": "c6ce6c6d1aed68463fb079e760a296c6",
                "sha256": "99dd6652bd6f730beadf74ef769d38c6bbd8ee6d1c15c8d138ea680b0594387f"
            },
            "downloads": -1,
            "filename": "fastrlock-0.8.2-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_28_x86_64.whl",
            "has_sig": false,
            "md5_digest": "c6ce6c6d1aed68463fb079e760a296c6",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": null,
            "size": 52712,
            "upload_time": "2023-08-27T12:22:39",
            "upload_time_iso_8601": "2023-08-27T12:22:39.577397Z",
            "url": "https://files.pythonhosted.org/packages/91/e3/df5d25687f94df24228f2a927aaf98334507849cbf715a75d079e6bbb80f/fastrlock-0.8.2-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_28_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "a80bfde26e4e220fd9351ba1e1da61d8a8f3db30ee091b1d56d74fbb219f4971",
                "md5": "971adf67e027c63ecdd88a910f50998f",
                "sha256": "4d63b6596368dab9e0cc66bf047e7182a56f33b34db141816a4f21f5bf958228"
            },
            "downloads": -1,
            "filename": "fastrlock-0.8.2-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.whl",
            "has_sig": false,
            "md5_digest": "971adf67e027c63ecdd88a910f50998f",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": null,
            "size": 38535,
            "upload_time": "2023-08-27T12:22:40",
            "upload_time_iso_8601": "2023-08-27T12:22:40.895040Z",
            "url": "https://files.pythonhosted.org/packages/a8/0b/fde26e4e220fd9351ba1e1da61d8a8f3db30ee091b1d56d74fbb219f4971/fastrlock-0.8.2-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "8a1abd0928b10155d09a3b3130c06488e2783883bb6a72ec514c5091a747201d",
                "md5": "a87c63dea496284951091601dcc38240",
                "sha256": "ff75c90663d6e8996610d435e71487daa853871ad1770dd83dc0f2fc4997241e"
            },
            "downloads": -1,
            "filename": "fastrlock-0.8.2-cp39-cp39-musllinux_1_1_aarch64.whl",
            "has_sig": false,
            "md5_digest": "a87c63dea496284951091601dcc38240",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": null,
            "size": 53532,
            "upload_time": "2023-08-27T12:22:42",
            "upload_time_iso_8601": "2023-08-27T12:22:42.349927Z",
            "url": "https://files.pythonhosted.org/packages/8a/1a/bd0928b10155d09a3b3130c06488e2783883bb6a72ec514c5091a747201d/fastrlock-0.8.2-cp39-cp39-musllinux_1_1_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "35ef373bc3c5aa69d9f788d484201f5e22fdd2aa73c294dbc2961dc53f6a9277",
                "md5": "37a1a478a2b07e136dcc693cf6b08c4a",
                "sha256": "e27c3cd27fbd25e5223c5c992b300cd4ee8f0a75c6f222ce65838138d853712c"
            },
            "downloads": -1,
            "filename": "fastrlock-0.8.2-cp39-cp39-musllinux_1_1_x86_64.whl",
            "has_sig": false,
            "md5_digest": "37a1a478a2b07e136dcc693cf6b08c4a",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": null,
            "size": 53170,
            "upload_time": "2023-08-27T12:22:43",
            "upload_time_iso_8601": "2023-08-27T12:22:43.842851Z",
            "url": "https://files.pythonhosted.org/packages/35/ef/373bc3c5aa69d9f788d484201f5e22fdd2aa73c294dbc2961dc53f6a9277/fastrlock-0.8.2-cp39-cp39-musllinux_1_1_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "48021c979f39a9c861e8f14d01499fc9407ebdbda88eef52db662c68775a6ab9",
                "md5": "c156754abeee5af1a90301b130c35647",
                "sha256": "dd961a32a7182c3891cdebca417fda67496d5d5de6ae636962254d22723bdf52"
            },
            "downloads": -1,
            "filename": "fastrlock-0.8.2-cp39-cp39-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "c156754abeee5af1a90301b130c35647",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": null,
            "size": 36042,
            "upload_time": "2023-08-27T12:22:45",
            "upload_time_iso_8601": "2023-08-27T12:22:45.196733Z",
            "url": "https://files.pythonhosted.org/packages/48/02/1c979f39a9c861e8f14d01499fc9407ebdbda88eef52db662c68775a6ab9/fastrlock-0.8.2-cp39-cp39-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "894b26357c444b48f3f4e3c17b999274e6c60f2367f7e9d454ca2280d8b463e1",
                "md5": "f58b54b004d2b51fb10247f978362bdd",
                "sha256": "644ec9215cf9c4df8028d8511379a15d9c1af3e16d80e47f1b6fdc6ba118356a"
            },
            "downloads": -1,
            "filename": "fastrlock-0.8.2.tar.gz",
            "has_sig": false,
            "md5_digest": "f58b54b004d2b51fb10247f978362bdd",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": null,
            "size": 79508,
            "upload_time": "2023-08-27T12:22:46",
            "upload_time_iso_8601": "2023-08-27T12:22:46.431902Z",
            "url": "https://files.pythonhosted.org/packages/89/4b/26357c444b48f3f4e3c17b999274e6c60f2367f7e9d454ca2280d8b463e1/fastrlock-0.8.2.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2023-08-27 12:22:46",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "scoder",
    "github_project": "fastrlock",
    "travis_ci": true,
    "coveralls": false,
    "github_actions": true,
    "appveyor": true,
    "requirements": [],
    "tox": true,
    "lcname": "fastrlock"
}
        
Elapsed time: 0.10705s