Skip to main content

Hash interface for redis-py

Project description

https://badge.fury.io/py/redis-hash.svg https://travis-ci.org/lamenezes/redis-hash.svg?branch=master https://coveralls.io/repos/github/lamenezes/redis-hash/badge.svg?branch=master

Simple python interface for redis hash type

Installation

pip install redis redis_hash

Usage

First you need to instantiate the redis client from the redis package:

>> from redis import StrictRedis
>> redis_client = StrictRedis(host='localhost', port=6379, db=0)

Then create your hash passing the client and the hash key:

>> from redis_hash import RedisHash
>> redis_hash = RedisHash(redis_client, 'hash_name')

Now your can handle your hash like a dict:

>> redis_hash['foo'] = 'bar'
>> len(redis_hash)
1
>> 'foo' in redis_hash
True
>>> for k, v in redis_hash:
...     print(k, v)
...
foo bar
>>> redis_hash['foo']
b'bar'
>>> list(redis_hash)
[(b'foo', b'bar')]
>> del redis_hash['foo']
>> len(redis_hash)
0
>> 'foo' in redis_hash
False

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-1.0.0.tar.gz (2.9 kB view details)

Uploaded Source

File details

Details for the file redis-hash-1.0.0.tar.gz.

File metadata

  • Download URL: redis-hash-1.0.0.tar.gz
  • Upload date:
  • Size: 2.9 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No

File hashes

Hashes for redis-hash-1.0.0.tar.gz
Algorithm Hash digest
SHA256 a319c8c04a9387e59d26d338b5742c2b336bf8a635c40acc2e28dc2bccbab946
MD5 0cb36e88d5d05f1aed6cefb242d6f4f0
BLAKE2b-256 4b8190569897734c54276dd17183dca0006b153ee3739aa8c605c0044a928e97

See more details on using hashes here.

Supported by

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