Skip to content

applauncher-team/redis_bundle

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

5 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Redis bundle for AppLauncher

Redis support for applauncher

Installation

pip install redis_bundle 

Then add to your main.py

import redis_bundle

bundle_list = [
    redis_bundle.RedisBundle(),
]

Configuration

redis:
  hostname: 'localhost'
  database: 0

You can use all parameters supported by redis.Redis

Using it

Inject Redis

import inject
from redis import Redis
redis = inject.instance(Redis)

redis.set('foo', 'bar')
redis.get('foo')

About

Redis support por applauncher

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages