Skip to content

Instantly share code, notes, and snippets.

View adlerweb's full-sized avatar

Florian Knodt adlerweb

View GitHub Profile
@adlerweb
adlerweb / redis-mygrate.py
Last active April 13, 2020 13:19 — forked from romanmah/redis-mygrate.py
A small utility to dump/restore serialized redis data to text files
#!/usr/bin/python
import redis
import pickle
import argparse
class RedisMigrate():
def __init__(self, host, port, db):