Looking for a Redis lock Python package
November 29th, 2012
Does anyone know of a Python package implementing the algorithm described over at http://redis.io/commands/setnx as the safe one? The one using both SETNX and GETSET?
I can see there are other implementations on PyPI but none seems to be doing what Redis documentation says is the recommended way.
Cheers!

Hmm.. answering my own questions..
https://chris-lamb.co.uk/2010/06/07/distributing-locking-python-and-redis/
https://retools.readthedocs.org/en/latest/
https://github.com/xetorthio/jedis
https://github.com/defunkt/resque-lock
@DhilipSiva
These are for Java and Ruby really