Skip to main content
portalocker

Coordinate access. Keep your code simple.

CI Coverage PyPI Python versions Documentation Licence

Portalocker provides file locks for Python on Linux, macOS and Windows. Use a context manager to coordinate access between processes, a semaphore to limit concurrent workers, or a Redis lock to coordinate across machines. Python 3.10 or later is required.

Get started | Choose a lock | API reference | Changelog

Install

python -m pip install portalocker

Exclusive file locks work without extra dependencies. Install the optional redis extra for Redis locks, or win32 for shared file locks on Windows:

python -m pip install "portalocker[redis]"
python -m pip install "portalocker[win32]"

Redis locks need a Redis server. Shared file locks on Windows without pywin32 raise an ImportError explaining which extra to install.

Start with a file lock

Use the file handle inside the context:

import portalocker

with portalocker.Lock('report.txt', 'a', timeout=5) as fh:
    fh.write('Report complete.\n')

Lock waits up to five seconds to acquire the lock. Leaving the context releases the lock and closes the file, including when the body raises an exception. Give every participating process the same file path.

When another holder prevents acquisition, AlreadyLocked lets you handle contention separately from other failures:

import portalocker

with portalocker.Lock('worker.lock', 'a', timeout=1):
    try:
        with portalocker.Lock('worker.lock', 'a', timeout=0):
            print('The second holder entered.')
    except portalocker.AlreadyLocked:
        print('The first holder still owns the lock.')

with portalocker.Lock('worker.lock', 'a', timeout=0):
    print('The lock is available after release.')

The second lock cannot enter while the first is held. Once the outer context exits, a new holder can acquire it. This example uses the default file-locking backend. See platform behaviour before choosing a different POSIX locking primitive.

Choose a lock

Your task Lock Guide
Coordinate access to a file Lock File locking
Acquire again through the same lock instance RLock Reentrant locks
Limit the number of concurrent workers NamedBoundedSemaphore Workers and slots
Inspect a worker PID or run a singleton PidFileLock PID files
Coordinate processes across machines RedisLock Redis locks

Give cooperating semaphores the same explicit name and directory. Keep their slot files in a directory that will survive while workers hold them.

Locking details that matter

  • Unix file locks are advisory. Every participating process must acquire a lock to honour them. Linux removed its old mandatory locking feature in kernel 5.15.
  • Network filesystems have their own locking and buffering behaviour. You may need fh.flush() followed by os.fsync(fh.fileno()) before releasing a lock. Read the platform guide and test on the filesystem you deploy to.
  • A PidFileLock context is for inspection by default. Its body runs even when another process holds the lock, returning that holder's PID. None means this process acquired it. An unreadable or corrupt PID for a held lock raises AlreadyLocked. Use fail_closed() when the body must only run after acquisition. See the PID examples.
  • A Redis lock uses a pub/sub subscription. Redis releases ownership when it removes the subscription. Detecting a broken connection or a network partition can take time, and the holder observes loss separately. The Redis guide covers lost, ensure_held(), health checks and optional fencing tokens. Fencing only protects writes when the resource checks the token.

For single-file vendoring, see the CLI guide. For upgrades from 3.x, see the migration guide.

Contributing

Portalocker is maintained by Rick van Hattem. Bug reports and feature requests and patches are welcome. See the contribution guide for development and test commands.

To report a security vulnerability, please use the Tidelift security contact. Tidelift will coordinate the fix and disclosure.

Support

portalocker is maintained by Rick van Hattem in his own time. Most of that time goes on the platforms you are not running, so the lock behaves the same on Windows, BSD and NFS as it does on your laptop.

If it saved you an afternoon, a tip covers an hour of issue triage: Ko-fi or GitHub Sponsors.

If your company funds its dependencies, this package is on thanks.dev.

Support on Ko-fi

Licence

Portalocker is distributed under the BSD 3-Clause licence. See LICENSE.

Release files for portalocker 4.3.2

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

Source distribution (sdist)

Source distribution for portalocker 4.3.2
File Size Uploaded
portalocker-4.3.2.tar.gz 303.0 kB Details

Built distribution (wheel)

Table of built distributions (wheels) for portalocker 4.3.2
File Interpreter ABI Platform
portalocker-4.3.2-py3-none-any.whl Python 3 none any Details

Total release size:432.0 kB

Release files / portalocker-4.3.2.tar.gz

Download URL portalocker-4.3.2.tar.gz
Size 303.0 kB
Tags Source
SHA-256 checksum
How to use checksums
8de4a1330f55b3c9a1d50ab1b70a765f2f136d6399ae206411117ed98c3b8e2b
BLAKE2b-256 checksum
How to use checksums
ea7a6371904c17aba3c455eda47001db923d77ba02a858919424d52f56f1e618
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 14, 2026.

Transparency log

Release files / portalocker-4.3.2-py3-none-any.whl

Download URL portalocker-4.3.2-py3-none-any.whl
Size 129.0 kB
Tags Python 3
SHA-256 checksum
How to use checksums
42f0362e7343af78b25eb095c0cde300e746a0ab6647a835cc30764918490c93
BLAKE2b-256 checksum
How to use checksums
b8b63ed645ea033d5eb16e42481fc2b4719bd3a4e36b818006f34e14cf938dce
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 14, 2026.

Transparency log

Release history Release notifications | RSS feed

This release

4.3.2 This release

2 release files

4.3.1

2 release files

4.3.0

2 release files

4.2.0

2 release files

4.1.0

2 release files

4.0.0

2 release files

3.2.0

2 release files

3.1.1

2 release files

3.1.0

2 release files

3.0.0

2 release files

2.10.1

2 release files

2.10.0

2 release files

2.8.2

2 release files

2.8.1

2 release files

2.8.0

2 release files

2.7.0

2 release files

2.6.0

2 release files

2.5.1

2 release files

2.5.0

2 release files

2.4.0

2 release files

2.3.2

2 release files

2.3.1

2 release files

2.3.0

2 release files

2.2.1

2 release files

2.2.0

2 release files

2.1.0

2 release files

2.0.0

2 release files

1.7.1

2 release files

1.7.0

2 release files

1.6.0

2 release files

1.5.2

2 release files

1.5.1

2 release files

1.5.0

2 release files

1.4.0

2 release files

1.3.0

2 release files

1.2.1

2 release files

1.2.0

2 release files

1.1.0

2 release files

1.0.1

2 release files

1.0.0

2 release files

0.6.1

2 release files

0.6.0

1 release file

0.5.7

1 release file

0.5.6

1 release file

0.5.5

1 release file

0.5.4

1 release file

0.5.3

1 release file

0.5.1

1 release file

0.5

1 release file

0.4

1 release file

0.3

1 release file

0.2

1 release file

0.1

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