summaryrefslogtreecommitdiffstats
path: root/src/console/zmq/sugar/frame.py
blob: 9f556c86c4cab26d6f6591f7df9569a9c4c0172f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
# coding: utf-8
"""0MQ Frame pure Python methods."""

# Copyright (C) PyZMQ Developers
# Distributed under the terms of the Modified BSD License.


from .attrsettr import AttributeSetter
from zmq.backend import Frame as FrameBase


class Frame(FrameBase, AttributeSetter):
    def __getitem__(self, key):
        # map Frame['User-Id'] to Frame.get('User-Id')
        return self.get(key)

# keep deprecated alias
Message = Frame
__all__ = ['Frame', 'Message']