nanomsg-python icon indicating copy to clipboard operation
nanomsg-python copied to clipboard

nanomsg wrapper for python with multiple backends (CPython and ctypes) should support 2/3 and Pypy

Results 40 nanomsg-python issues
Sort by recently updated
recently updated
newest added

There are small typos in: - _nanomsg_ctypes/__init__.py - nanomsg/__init__.py Fixes: - Should read `number` rather than `nunber`. - Should read `descriptor` rather than `descripter`. Semi-automated pull request generated by https://github.com/timgates42/meticulous/blob/master/docs/NOTE.md

Hi, I guess the nanomsg nng/legacy thing is still an issue (depending on individual needs) so this binding is definitely *not* obsolete, eg, nanoservice uses this binding and I need...

Error log: `ImportError: No module named '_nanomsg_ctypes'` `UserWarning: Could not load the default wrapper for your platform: cpy, performance may be affected!` I fixed it in nanomsg_wrappers/__init__.py add 2 lines:...

Workaround `distutils` bug 36353; see https://bugs.python.org/issue36353. On MacOS, the `build_ext` `--rpath` option is getting converted to `-L` rather than `-Wl,-rpath=`. This change sub-classes `build_ext` and correctly passes appropriate rpath options...

```python from nanomsg import Socket, PAIR, SOL_SOCKET, RCVTIMEO import time s1 = Socket(PAIR) s1.recv_timeout = 100 s1.connect('tcp://127.0.0.1:9099') ``` s1.recv_timeout = 100

When I try to import nanomsg in python 2.7 I get the following: $ import nanomsg > /usr/local/lib/python2.7/dist-packages/nanomsg-1.0-py2.7-linux-armv7l.egg/_nanomsg_cpy.py:3: UserWarning: Module _nanomsg_cpy was already imported from /usr/local/lib/python2.7/dist-packages/nanomsg-1.0-py2.7-linux-armv7l.egg/_nanomsg_cpy.pyc, but /home/pi/gitlibs/nanomsg-python is being...

I install nanomsg with `pip install nanomsg`, I got this waring: ``` /home/roger/anaconda/envs/crawler/lib/python2.7/site-packages/nanomsg_wrappers/__init__.py:22: UserWarning: Could not load the default wrapper for your platform: cpy, performance may be affected! "%s, performance...

After creating a socket, how can I find out that the connection path is available or not? Please see the following codes, assume that `path` isn't available. How can I...

As a novice, I'd have found useful some building and installation instructions