Skip to content

Instantly share code, notes, and snippets.

@cablehead
Created October 30, 2013 18:18
Show Gist options
  • Select an option

  • Save cablehead/7237412 to your computer and use it in GitHub Desktop.

Select an option

Save cablehead/7237412 to your computer and use it in GitHub Desktop.
class decoding(object):
__slots__ = (
"envelope",
"user_signup_request",
"user_signup_response",
"user_login_request",
"user_login_response",
"user_identify_challenge",
"user_identify_request",
"user_identify_response",
"thread_new_request",
"thread_new_response",
"thread_list_request",
"thread_list_response",
"thread_get_request",
"thread_get_response",
"thread_like_request",
"thread_like_response",
"reply_new_request",
"reply_new_response",
"reply_like_request",
"reply_like_response",
"activity_get_request",
"activity_get_response",
)
envelope = {
1: {
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment