Skip to content

Instantly share code, notes, and snippets.

View sunboy-2050's full-sized avatar

it-homer sunboy-2050

View GitHub Profile
@sunboy-2050
sunboy-2050 / gist:9543963
Last active December 26, 2021 07:59
python implement redis publish and subscribe
#!/usr/bin/env python
# -*- coding: utf-8 -*-
# http://blog.ithomer.net
import time
import redis
import threading
class Listener(threading.Thread):
def __init__(self, r, channels):