Skip to content

popravich/rdbtools3

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

46 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Redis dump.rdb parser tool implemented in Python 3

Build status

Inspired by redis-rdb-tools

Documentation

See http://rdbtools3.readthedocs.org/

Usage example

from rdbtools3 import parse_rdb_stream

with open('/path/to/redis/dump.rdb', 'rb') as f:
    for item in parse_rdb_stream(f):
        print(item.key, item.value)

About

Redis dump.rdb parser tool implemented in Python 3

Resources

License

Stars

Watchers

Forks

Packages

No packages published