Skip to content

Instantly share code, notes, and snippets.

@1stvamp
Created February 24, 2014 15:42
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 1stvamp/9190723 to your computer and use it in GitHub Desktop.
Save 1stvamp/9190723 to your computer and use it in GitHub Desktop.
Simple tool for displaying contents of celery messages
from base64 import b64decode
from json import loads
from pprint import pprint
def parse_celery_msg(msg):
pprint(loads(b64decode(msg)))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment