File lock support for asyncio.
Project description
aioflock: file lock support for asyncio (based on fcntl.flock)
==================================
.. image:: https://coveralls.io/repos/kolko/aioflock/badge.svg?branch=master&service=github
:target: https://coveralls.io/github/kolko/aioflock?branch=master
.. image:: https://travis-ci.org/kolko/aioflock.svg?branch=master
:target: https://travis-ci.org/kolko/aioflock
Example:
.. code-block:: python
from aioflock import LockFilename
lock = LockFilename('/tmp/test_lock')
yield from lock.acquire()
..inside lock..
lock.release()
With stategment:
.. code-block:: python
from aioflock import LockFilename
with (yield from LockFilename('/tmp/test_lock')):
..inside lock..
Can use timeout:
.. code-block:: python
from aioflock import LockFilename, LockFilenameTimeout
try:
with (yield from LockFilename('/tmp/test_lock')):
with (yield from LockFilename('/tmp/test_lock', timeout=1)):
...newer here...
except LockFilenameTimeout:
...here...
==================================
.. image:: https://coveralls.io/repos/kolko/aioflock/badge.svg?branch=master&service=github
:target: https://coveralls.io/github/kolko/aioflock?branch=master
.. image:: https://travis-ci.org/kolko/aioflock.svg?branch=master
:target: https://travis-ci.org/kolko/aioflock
Example:
.. code-block:: python
from aioflock import LockFilename
lock = LockFilename('/tmp/test_lock')
yield from lock.acquire()
..inside lock..
lock.release()
With stategment:
.. code-block:: python
from aioflock import LockFilename
with (yield from LockFilename('/tmp/test_lock')):
..inside lock..
Can use timeout:
.. code-block:: python
from aioflock import LockFilename, LockFilenameTimeout
try:
with (yield from LockFilename('/tmp/test_lock')):
with (yield from LockFilename('/tmp/test_lock', timeout=1)):
...newer here...
except LockFilenameTimeout:
...here...
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
aioflock-0.0.1.tar.gz
(3.0 kB
view hashes)