{ "info": { "author": "Yanda Huang", "author_email": "yord.huang@gmail.com", "bugtrack_url": null, "classifiers": [], "description": "## Zero Message\n\n[![Documentation Status](https://readthedocs.org/projects/zero-message/badge/?version=latest)](https://zero-message.readthedocs.io/en/latest/?badge=latest)\n\n\n\n*Zero Message* is a lightweight ROS-like pub-sub tool for Python 3.4+.\n\n- Provides a wrapper around [ZeroMQ](http://zeromq.org) socket.\n- Communicate between any Python program using publisher-subscriber protocol\n\n### Installation\n\n```\npip install zeromessage\n```\n\n### Quick start\n\nRefer to the `/examples`:\n\n```python\n# listener.py\nimport asyncio\nfrom zeromessage import EnvelopSocket\n\nsocket = EnvelopSocket.as_subscriber()\n\ndef doSomething(msg):\n print(msg)\n\nsubscribe_coroutine = socket.subscribe('test', doSomething)\n\nasyncio.get_event_loop().run_until_complete(subscribe_coroutine())\n```\n\n```python\n# talker.py\nimport time\nfrom zeromessage import EnvelopSocket\n\nsocket = EnvelopSocket.as_publisher()\n\nwhile True:\n socket.publish('test', {\n 'data': [1, 2, 3]\n })\n time.sleep(1)\n```\n\n### Command Line tools\n\nA `rostopic` like tool is provided.\n\n```\nzerotopic echo -- --help\n```\n\n### API Document\n\n[zero-message.readthedocs.io](zero-message.readthedocs.io)\n\n", "description_content_type": "text/markdown", "docs_url": null, "download_url": "", "downloads": { "last_day": -1, "last_month": -1, "last_week": -1 }, "home_page": "https://github.com/yodahuang/zero-message", "keywords": "", "license": "MIT", "maintainer": "", "maintainer_email": "", "name": "zeromessage", "package_url": "https://pypi.org/project/zeromessage/", "platform": "", "project_url": "https://pypi.org/project/zeromessage/", "project_urls": { "Homepage": "https://github.com/yodahuang/zero-message" }, "release_url": "https://pypi.org/project/zeromessage/0.2/", "requires_dist": [ "zmq", "fire" ], "requires_python": "", "summary": "Lightweight ROS-like pub-sub tool utilizing ZeroMQ", "version": "0.2" }, "last_serial": 4472645, "releases": { "0.2": [ { "comment_text": "", "digests": { "md5": "935a643f8a8dad2192a17d990b7dd7f4", "sha256": "6f0d390da7309904277aaa8a513f016a2b13c9d89c6095f5938560426a046a70" }, "downloads": -1, "filename": "zeromessage-0.2-py3-none-any.whl", "has_sig": false, "md5_digest": "935a643f8a8dad2192a17d990b7dd7f4", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 3338, "upload_time": "2018-11-10T20:31:42", "url": "https://files.pythonhosted.org/packages/67/13/42dd7567c7f6f9089059f4cab2bd73337c552d73f5a270b7d62c47d60798/zeromessage-0.2-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "f4a8a281efcacdd5f918ba9b102a274e", "sha256": "352d1785a62c2fdbc6a054a77ef04363c745191866e6bee0e715d2c8482ef3c5" }, "downloads": -1, "filename": "zeromessage-0.2.tar.gz", "has_sig": false, "md5_digest": "f4a8a281efcacdd5f918ba9b102a274e", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 2885, "upload_time": "2018-11-10T20:31:44", "url": "https://files.pythonhosted.org/packages/2f/c6/39efcfc619a85ff5df9263542c5cf34ca16ca8bf46b48ef3989c30d6a61a/zeromessage-0.2.tar.gz" } ] }, "urls": [ { "comment_text": "", "digests": { "md5": "935a643f8a8dad2192a17d990b7dd7f4", "sha256": "6f0d390da7309904277aaa8a513f016a2b13c9d89c6095f5938560426a046a70" }, "downloads": -1, "filename": "zeromessage-0.2-py3-none-any.whl", "has_sig": false, "md5_digest": "935a643f8a8dad2192a17d990b7dd7f4", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 3338, "upload_time": "2018-11-10T20:31:42", "url": "https://files.pythonhosted.org/packages/67/13/42dd7567c7f6f9089059f4cab2bd73337c552d73f5a270b7d62c47d60798/zeromessage-0.2-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "f4a8a281efcacdd5f918ba9b102a274e", "sha256": "352d1785a62c2fdbc6a054a77ef04363c745191866e6bee0e715d2c8482ef3c5" }, "downloads": -1, "filename": "zeromessage-0.2.tar.gz", "has_sig": false, "md5_digest": "f4a8a281efcacdd5f918ba9b102a274e", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 2885, "upload_time": "2018-11-10T20:31:44", "url": "https://files.pythonhosted.org/packages/2f/c6/39efcfc619a85ff5df9263542c5cf34ca16ca8bf46b48ef3989c30d6a61a/zeromessage-0.2.tar.gz" } ] }