Skip to main content

A platform independent file lock.

Project description

=======

This is free and unencumbered software released into the public domain.

Anyone is free to copy, modify, publish, use, compile, sell, or
distribute this software, either in source code form or as a compiled
binary, for any purpose, commercial or non-commercial, and by any
means.

In jurisdictions that recognize copyright laws, the author or authors
of this software dedicate any and all copyright interest in the
software to the public domain. We make this dedication for the benefit
of the public at large and to the detriment of our heirs and
successors. We intend this dedication to be an overt act of
relinquishment in perpetuity of all present and future rights to this
software under copyright law.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
IN NO EVENT SHALL THE AUTHORS BE LIABLE FOR ANY CLAIM, DAMAGES OR
OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
OTHER DEALINGS IN THE SOFTWARE.

For more information, please refer to <http://unlicense.org>

Download-URL: https://github.com/benediktschmitt/py-filelock/archive/master.zip
Description: py-filelock
===========

.. image:: https://travis-ci.org/benediktschmitt/py-filelock.svg?branch=master
:target: https://travis-ci.org/benediktschmitt/py-filelock

`Similar Libraries <#similar-libraries>`_
~ `Installation <#installation>`_
~ `Documentation <#documentation>`_
~ `Contributions <#contributions>`_
~ `License <#license>`_

This package contains a single module, which implements a platform independent
file lock in Python, which provides a simple way of inter-process communication:

.. code-block:: python

from filelock import Timeout, FileLock

lock = FileLock("high_ground.txt.lock")
with lock:
open("high_ground.txt", "a").write("You were the chosen one.")

**Don't use** a *FileLock* to lock the file you want to write to, instead create a separate
*.lock* file as shown above.

.. image:: https://raw.githubusercontent.com/benediktschmitt/py-filelock/master/example/example.gif

`Animated example <https://github.com/benediktschmitt/py-filelock/blob/master/example/example.gif>`_

Similar libraries
-----------------

Perhaps you are looking for something like

* https://pypi.python.org/pypi/pid/2.1.1
* https://docs.python.org/3.6/library/msvcrt.html#msvcrt.locking
* or https://docs.python.org/3/library/fcntl.html#fcntl.flock

Installation
------------

*py-filelock* is available via PyPi:

.. code-block:: bash

$ pip3 install filelock

Documentation
-------------

The documentation for the API is available on
`readthedocs.org <https://filelock.readthedocs.io/>`_.

Examples
^^^^^^^^

A *FileLock* is used to indicate another process of your application that a resource or working
directory is currently used. To do so, create a *FileLock* first:

.. code-block:: python

from filelock import Timeout, FileLock

file_path = "high_ground.txt"
lock_path = "high_ground.txt.lock"

lock = FileLock(lock_path, timeout=1)

The lock object supports multiple ways for acquiring the lock, including the ones used to acquire
standard Python thread locks:

.. code-block:: python

with lock:
open(file_path, "a").write("Hello there!")

lock.acquire()
try:
open(file_path, "a").write("General Kenobi!")
finally:
lock.release()

The *acquire()* method accepts also a *timeout* parameter. If the lock cannot be acquired
within *timeout* seconds, a *Timeout* exception is raised.:

.. code-block:: python

try:
with lock.acquire(timeout=10):
open(file_path, "a").write("I have a bad feeling about this.")
except Timeout:
print("Another instance of this application currently holds the lock.")

The lock objects are recursive locks, which means that once acquired, they will not block on
successive lock requests:

.. code-block:: python

def cite1():
with lock:
open(file_path, "a").write("I hate it when he does that.")

def cite2():
with lock:
open(file_path, "a").write("You don't want to sell me death sticks.")

# The lock is acquired here.
with lock:
cite1()
cite2()

# And released here.

FileLock vs SoftFileLock
^^^^^^^^^^^^^^^^^^^^^^^^

The *FileLock* is platform dependent while the *SoftFileLock* is not. Use the *FileLock* if all
instances of your application are running on the same host and a *SoftFileLock* otherwise.

The *SoftFileLock* only watches the existence of the lock file. This makes it ultra portable, but
also more prone to dead locks if the application crashes. You can simply delete the lock file in
such cases.

Contributions
-------------

Contributions are always welcome. Never hesitate to open a new issue.

License
-------

This package is `public domain <LICENSE.rst>`_.

Platform: UNKNOWN
Classifier: License :: Public Domain
Classifier: Development Status :: 5 - Production/Stable
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Intended Audience :: Developers
Classifier: Topic :: System
Classifier: Topic :: Internet
Classifier: Topic :: Software Development :: Libraries

Project details


Release history Release notifications | RSS feed

This version

3.0.8

Download files

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

Source Distribution

filelock-3.0.8.tar.gz (6.7 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

filelock-3.0.8-py3-none-any.whl (7.4 kB view details)

Uploaded Python 3

File details

Details for the file filelock-3.0.8.tar.gz.

File metadata

  • Download URL: filelock-3.0.8.tar.gz
  • Upload date:
  • Size: 6.7 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.11.0 pkginfo/1.4.2 requests/2.9.1 setuptools/40.2.0 requests-toolbelt/0.8.0 tqdm/4.23.4 CPython/3.5.2

File hashes

Hashes for filelock-3.0.8.tar.gz
Algorithm Hash digest
SHA256 43531c580b8ad7bc830b5ea921b6aca8197d2d982b67b940359d9b4d546e5a9a
MD5 4445b6064644a4a0d6306e010a89413f
BLAKE2b-256 ea656b62e9fa0cf2a1d564bab314e89f26f04162e3c6adb08f2b7584805c5335

See more details on using hashes here.

File details

Details for the file filelock-3.0.8-py3-none-any.whl.

File metadata

  • Download URL: filelock-3.0.8-py3-none-any.whl
  • Upload date:
  • Size: 7.4 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.11.0 pkginfo/1.4.2 requests/2.9.1 setuptools/40.2.0 requests-toolbelt/0.8.0 tqdm/4.23.4 CPython/3.5.2

File hashes

Hashes for filelock-3.0.8-py3-none-any.whl
Algorithm Hash digest
SHA256 e2631e0beb9b3095510c2c25b10a5f3011f65e8d6ff9a145799a27d03dfa70ee
MD5 7f4717259ac3c5a1c05870942aee52d9
BLAKE2b-256 851c389ca4da8b631a06dec64c94c9c6f22bbd9be236f0030ee4863e7d6e42a7

See more details on using hashes here.

Supported by

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