Wraps the portalocker recipe for easy usage
Project description
Overview
Portalocker is a library to provide an easy API to file locking.
An important detail to note is that on Linux and Unix systems the locks are advisory by default. By specifying the -o mand option to the mount command it is possible to enable mandatory file locking on Linux. This is generally not recommended however. For more information about the subject:
The module is currently maintained by Rick van Hattem <Wolph@wol.ph>. The project resides at https://github.com/WoLpH/portalocker . Bugs and feature requests can be submitted there. Patches are also very welcome.
Tips
On some networked filesystems it might be needed to force a os.fsync() before closing the file so it’s actually written before another client reads the file. Effectively this comes down to:
with portalocker.Lock('some_file', 'rb+', timeout=60) as fh: # do what you need to do ... # flush and sync to filesystem fh.flush() os.fsync(fh.fileno())
Links
- Documentation
- Bug reports
- Package homepage
- My blog
Examples
To make sure your cache generation scripts don’t race, use the Lock class:
>>> import portalocker >>> with portalocker.Lock('somefile', timeout=1) as fh: print >>fh, 'writing some stuff to my cache...'
To customize the opening and locking a manual approach is also possible:
>>> import portalocker >>> file = open('somefile', 'r+') >>> portalocker.lock(file, portalocker.LOCK_EX) >>> file.seek(12) >>> file.write('foo') >>> file.close()
There is no explicit need to unlock the file as it is automatically unlocked after file.close(). If you still feel the need to manually unlock a file than you can do it like this:
>>> portalocker.unlock(file)
Do note that your data might still be in a buffer so it is possible that your data is not available until you flush() or close().
More examples can be found in the tests.
Changelog
See the changelog page.
License
See the LICENSE file.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file portalocker-1.5.0.tar.gz
.
File metadata
- Download URL: portalocker-1.5.0.tar.gz
- Upload date:
- Size: 11.2 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: Python-urllib/3.7
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | d9af6b298554286a05b9fd361289fe8a86b2b0f41a82cd93b147155bd398c523 |
|
MD5 | 3ba01b339d10b6810ac36d3237a1cd7d |
|
BLAKE2b-256 | f881daafc3a912dd428b1e6ced73f89772b6c85570b51b2d898bba65c8242986 |
File details
Details for the file portalocker-1.5.0-py2.py3-none-any.whl
.
File metadata
- Download URL: portalocker-1.5.0-py2.py3-none-any.whl
- Upload date:
- Size: 15.0 kB
- Tags: Python 2, Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: Python-urllib/3.7
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 40477dff70ba7e6ffa0b272da6e9cdd2ab8b9b54b90f71ea362bea69d2d6c09d |
|
MD5 | 8b0ea1d4895ebc5a0c372f0669ccfce7 |
|
BLAKE2b-256 | c44a940f5184098d054804605e73258d57707b1df087fc532111593e6110be13 |