Skip to content

Instantly share code, notes, and snippets.

@guyroyse
Created June 25, 2020 19:30
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save guyroyse/19444c910546c9d84a0deedfb089b37e to your computer and use it in GitHub Desktop.
Save guyroyse/19444c910546c9d84a0deedfb089b37e to your computer and use it in GitHub Desktop.
import asyncio
import aioredis
from pprint import pp
async def main():
redis = await aioredis.create_redis('redis://:foobared@localhost:6379/0', encoding='utf-8')
[channel] = await redis.psubscribe('bigfoot:broadcast:channel:*')
while True:
message = await channel.get()
pp(message)
asyncio.run(main())
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment