Skip to main content

Exclusive and shared locking

Project description

Intro

The SELock is a shared/exclusive lock that you can use to coordinate read and write access to a resource in a multithreaded application.

Example:

use SELock to coordinate access to a resource

>>> from scottbrian_locking import se_lock as sel
>>> a_lock = sel.SELock()
>>> # Get lock in exclusive mode
>>> with sel.SELockExcl(a_lock):
...     msg = 'lock obtained exclusive'
>>> print(msg)
lock obtained exclusive
>>> # Get lock in shared mode
>>> with sel.SELockShare(a_lock):
...     msg = 'lock obtained shared'
>>> print(msg)
lock obtained shared
Security Status Documentation Status

Installation

Windows:

pip install scottbrian-locking

Development setup

See tox.ini

Release History

  • 1.0.0
    • Initial release

  • 1.1.0
    • Add RELockObtain context manager

    • support python 3.11

  • 2.0.0
    • Add obtain_tf to context manager

    • Add allow_recursive_obtain

    • Delete setup.cfg

    • Make consistent log and error messages

    • Support python 3.12

    • Drop support for python < 3.12

  • 2.0.1
    • Fix documentation
      • change docs/source/index.rst

      • change docs/requirements.txt

      • change readthedoc.yml

Meta

Scott Tuttle

Distributed under the MIT license. See LICENSE for more information.

Contributing

  1. Fork it (<https://github.com/yourname/yourproject/fork>)

  2. Create your feature branch (git checkout -b feature/fooBar)

  3. Commit your changes (git commit -am ‘Add some fooBar’)

  4. Push to the branch (git push origin feature/fooBar)

  5. Create a new Pull Request

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

scottbrian_locking-2.0.1.tar.gz (35.2 kB view details)

Uploaded Source

Built Distribution

scottbrian_locking-2.0.1-py3-none-any.whl (14.1 kB view details)

Uploaded Python 3

File details

Details for the file scottbrian_locking-2.0.1.tar.gz.

File metadata

  • Download URL: scottbrian_locking-2.0.1.tar.gz
  • Upload date:
  • Size: 35.2 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.0.0 CPython/3.12.0

File hashes

Hashes for scottbrian_locking-2.0.1.tar.gz
Algorithm Hash digest
SHA256 82c4fb039e9b0bad3ea1c589fde3b689d3c39112baead0fb95ce28cfd516e125
MD5 9ec2ee9218804cb71c6310ad99319326
BLAKE2b-256 a165ba97f652b0abb6eee9b73cbd54379bd3c8a3169160c2879e138a24f51ad7

See more details on using hashes here.

File details

Details for the file scottbrian_locking-2.0.1-py3-none-any.whl.

File metadata

File hashes

Hashes for scottbrian_locking-2.0.1-py3-none-any.whl
Algorithm Hash digest
SHA256 308aa1a5ecec1c667d22ca24a947b1559c4051a0f198f5659a730194940b6ec9
MD5 5752d76be67ce2e274ea6d2acae539f6
BLAKE2b-256 a8c15f1931d36084a419f1c401c1ed19e36d3b1c037b3a5b7dbc76f8a761a310

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page