Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/cyberdelia/tusk
Distributed lock with Postgres
https://github.com/cyberdelia/tusk
Last synced: 29 days ago
JSON representation
Distributed lock with Postgres
- Host: GitHub
- URL: https://github.com/cyberdelia/tusk
- Owner: cyberdelia
- License: mit
- Created: 2013-01-23T17:54:28.000Z (almost 12 years ago)
- Default Branch: master
- Last Pushed: 2017-03-06T22:48:43.000Z (over 7 years ago)
- Last Synced: 2024-09-21T12:13:04.710Z (about 2 months ago)
- Language: Python
- Size: 120 KB
- Stars: 7
- Watchers: 1
- Forks: 2
- Open Issues: 1
-
Metadata Files:
- Readme: README.rst
- License: LICENSE
Awesome Lists containing this project
README
====
Tusk
====Installing
==========To install : ::
pip install tusk
Usage
=====Tusk tries to be as simple as possible ::
l = Lock("inspector", "postgres://localhost/noclue")
l.acquire(blocking=True)
l.release()
with l:
process()