def get_redis(key): try: r = redis.StrictRedis() data = r.get(key) return json.loads(data) except Exception: return False