Development of an internal social media platform with personalised dashboards for students
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

protocol.py 310B

12345678910111213
  1. from __future__ import absolute_import
  2. from collections import namedtuple
  3. queue_declare_ok_t = namedtuple(
  4. 'queue_declare_ok_t', ('queue', 'message_count', 'consumer_count'),
  5. )
  6. basic_return_t = namedtuple(
  7. 'basic_return_t',
  8. ('reply_code', 'reply_text', 'exchange', 'routing_key', 'message'),
  9. )