Skip to main content

Locket implements a lock that can be used by multiple processes provided they use the same path.

import locket

# Wait for lock
with locket.lock_file("path/to/lock/file"):
    perform_action()

# Raise error if lock cannot be acquired immediately
with locket.lock_file("path/to/lock/file", timeout=0):
    perform_action()

# Raise error if lock cannot be acquired after thirty seconds
with locket.lock_file("path/to/lock/file", timeout=30):
    perform_action()

# Without context managers:
lock = locket.lock_file("path/to/lock/file")
try:
    lock.acquire()
    perform_action()
finally:
    lock.release()

Locks largely behave as (non-reentrant) Lock instances from the threading module in the standard library. Specifically, their behaviour is:

  • Locks are uniquely identified by the file being locked, both in the same process and across different processes.

  • Locks are either in a locked or unlocked state.

  • When the lock is unlocked, calling acquire() returns immediately and changes the lock state to locked.

  • When the lock is locked, calling acquire() will block until the lock state changes to unlocked, or until the timeout expires.

  • If a process holds a lock, any thread in that process can call release() to change the state to unlocked.

  • Behaviour of locks after fork is undefined.

Installation

pip install locket

Release files for locket 0.2.1

For a detailed explanation of source distributions (sdists) and built distributions (wheels), please see the package formats documentation.

Source distribution (sdist)

Source distribution for locket 0.2.1
File Size Uploaded
locket-0.2.1.tar.gz 3.9 kB Details

Built distribution (wheel)

Table of built distributions (wheels) for locket 0.2.1
File Interpreter ABI Platform
locket-0.2.1-py2.py3-none-any.whl Python 2, Python 3 none any Details

Total release size: 8.0 kB

Release files / locket-0.2.1.tar.gz

Download URL locket-0.2.1.tar.gz
Size 3.9 kB
Tags Source
SHA-256 checksum
How to use checksums
3e1faba403619fe201552f083f1ecbf23f550941bc51985ac6ed4d02d25056dd
BLAKE2b-256 checksum
How to use checksums
0c09c2b9f6ba4fe2aa4e7ca7bb2c2938adcf9731dd22f4ad570ff1188417a080
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via Python-urllib/3.7

Release files / locket-0.2.1-py2.py3-none-any.whl

Download URL locket-0.2.1-py2.py3-none-any.whl
Size 4.1 kB
Tags Python 2 Python 3
SHA-256 checksum
How to use checksums
12b6ada59d1f50710bca9704dbadd3f447dbf8dac6664575c1281cadab8e6449
BLAKE2b-256 checksum
How to use checksums
50b8e789e45b9b9c2db75e9d9e6ceb022c8d1d7e49b2c085ce8c05600f90a96b
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via Python-urllib/3.7

Release history Release notifications | RSS feed

1.0.0

2 release files

This release

0.2.1 This release

2 release files

0.2.0

1 release file

0.1.1

1 release file

0.1.0

1 release file

Anthropic, PBC Visionary sponsor Bloomberg Visionary sponsor Hudson River Trading Visionary sponsor Meta Visionary sponsor NVIDIA Visionary sponsor Microsoft Sustainability sponsor Depot Continuous Integration AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page