Skip to main content

SanicRedis

Project description

SanicRedis
==============
Redis support for sanic.

Built on top of [aioredis](https://github.com/aio-libs/aioredis).

Installation
------------

You can install this package as usual with pip:

pip install SanicRedis

Example

```python
from sanic import Sanic
from sanic.response import json
from SanicRedis import BaseRedis

app = Sanic(__name__)
redisdb = dict(redisdb=8, redishost='localhost', redisport=6379, redispwd='password')

app.config.update(redisdb)
BaseRedis.init_app(app)


# group key of redis
class GroupKey(BaseRedis):
__coll__ = 'GroupKey_' # GroupKey + key


@app.route('/test1')
async def test1(request):
await GroupKey.set('testkey', 'value') # key is GroupKey_testkey
result = await GroupKey.get('testkey') # get value of GroupKey_testkey
return json(result)


if __name__ == '__main__':
app.run(debug=True)
```

Resources
---------

- [PyPI](https://pypi.org/project/SanicRedis)

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

SanicRedis-0.0.8.tar.gz (5.6 kB view hashes)

Uploaded Source

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