Hash interface for redis-py
Project description
Hash interface for redis-py
Installation
pip install redis_hash
Usage
from redis import StrictRedis
from redis_hash import RedisHash
redis_client = StrictRedis(host='localhost', port=6379, db=0)
redis_hash = RedisHash(redis_client, 'hash_name')
redis_hash['foo'] = 'bar'
assert len(redis_hash) == 1
for k, v in redis_hash:
print(k, v) # prints: foo bar
redis_hash # returns b'bar'
list(redis_hash) # return [(b'foo', b'bar')]
del redis_hash['foo']
assert len(redis_hash) == 0
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
redis-hash-0.0.2.tar.gz
(2.2 kB
view details)
File details
Details for the file redis-hash-0.0.2.tar.gz
.
File metadata
- Download URL: redis-hash-0.0.2.tar.gz
- Upload date:
- Size: 2.2 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 084ca7d8b9045f43e985993f858379f9f88401c1852f526641dea24d43135181 |
|
MD5 | 7f89d911a84d9801656f7df28afef70d |
|
BLAKE2b-256 | fde90a50b8b37586a6d235851ef3f0cc118d9e732c466b55404ea49e62aecf00 |