nanomsg-pythonnanomsg 的 Python 實現(xiàn)
nanomsg-python 是 nanomsg 的 Python 語言實現(xiàn)版本,用于 CPython 和 PyPy。
Example
from __future__ import print_function
from nanomsg import Socket, PAIR, PUB
s1 = Socket(PAIR)
s2 = Socket(PAIR)
s1.bind('inproc://bob')
s2.connect('inproc://bob')
s1.send(b'hello nanomsg')
print(s2.recv())
s1.close()
s2.close()評論
圖片
表情
