hex-zmq-servers 0.3.1__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (106) hide show
  1. hex_zmq_servers-0.3.1/LICENSE +201 -0
  2. hex_zmq_servers-0.3.1/MANIFEST.in +13 -0
  3. hex_zmq_servers-0.3.1/PKG-INFO +146 -0
  4. hex_zmq_servers-0.3.1/README.md +106 -0
  5. hex_zmq_servers-0.3.1/hex_zmq_servers/__init__.py +148 -0
  6. hex_zmq_servers-0.3.1/hex_zmq_servers/cam/__init__.py +28 -0
  7. hex_zmq_servers-0.3.1/hex_zmq_servers/cam/berxel/__init__.py +17 -0
  8. hex_zmq_servers-0.3.1/hex_zmq_servers/cam/berxel/cam_berxel.py +261 -0
  9. hex_zmq_servers-0.3.1/hex_zmq_servers/cam/berxel/cam_berxel_cli.py +30 -0
  10. hex_zmq_servers-0.3.1/hex_zmq_servers/cam/berxel/cam_berxel_srv.py +76 -0
  11. hex_zmq_servers-0.3.1/hex_zmq_servers/cam/cam_base.py +138 -0
  12. hex_zmq_servers-0.3.1/hex_zmq_servers/cam/dummy/__init__.py +17 -0
  13. hex_zmq_servers-0.3.1/hex_zmq_servers/cam/dummy/cam_dummy.py +69 -0
  14. hex_zmq_servers-0.3.1/hex_zmq_servers/cam/dummy/cam_dummy_cli.py +26 -0
  15. hex_zmq_servers-0.3.1/hex_zmq_servers/cam/dummy/cam_dummy_srv.py +65 -0
  16. hex_zmq_servers-0.3.1/hex_zmq_servers/config/cam_berxel.json +16 -0
  17. hex_zmq_servers-0.3.1/hex_zmq_servers/config/cam_dummy.json +10 -0
  18. hex_zmq_servers-0.3.1/hex_zmq_servers/config/mujoco_archer_y6.json +34 -0
  19. hex_zmq_servers-0.3.1/hex_zmq_servers/config/mujoco_e3_desktop.json +34 -0
  20. hex_zmq_servers-0.3.1/hex_zmq_servers/config/robot_dummy.json +151 -0
  21. hex_zmq_servers-0.3.1/hex_zmq_servers/config/robot_gello.json +64 -0
  22. hex_zmq_servers-0.3.1/hex_zmq_servers/config/robot_hexarm.json +35 -0
  23. hex_zmq_servers-0.3.1/hex_zmq_servers/config/zmq_dummy.json +10 -0
  24. hex_zmq_servers-0.3.1/hex_zmq_servers/device_base.py +42 -0
  25. hex_zmq_servers-0.3.1/hex_zmq_servers/hex_launch.py +484 -0
  26. hex_zmq_servers-0.3.1/hex_zmq_servers/mujoco/__init__.py +28 -0
  27. hex_zmq_servers-0.3.1/hex_zmq_servers/mujoco/archer_y6/__init__.py +17 -0
  28. hex_zmq_servers-0.3.1/hex_zmq_servers/mujoco/archer_y6/model/assets/arm_base_link.STL +0 -0
  29. hex_zmq_servers-0.3.1/hex_zmq_servers/mujoco/archer_y6/model/assets/arm_link_1.STL +0 -0
  30. hex_zmq_servers-0.3.1/hex_zmq_servers/mujoco/archer_y6/model/assets/arm_link_2.STL +0 -0
  31. hex_zmq_servers-0.3.1/hex_zmq_servers/mujoco/archer_y6/model/assets/arm_link_3.STL +0 -0
  32. hex_zmq_servers-0.3.1/hex_zmq_servers/mujoco/archer_y6/model/assets/arm_link_4.STL +0 -0
  33. hex_zmq_servers-0.3.1/hex_zmq_servers/mujoco/archer_y6/model/assets/arm_link_5.STL +0 -0
  34. hex_zmq_servers-0.3.1/hex_zmq_servers/mujoco/archer_y6/model/assets/assets.xml +17 -0
  35. hex_zmq_servers-0.3.1/hex_zmq_servers/mujoco/archer_y6/model/assets/camera_link.STL +0 -0
  36. hex_zmq_servers-0.3.1/hex_zmq_servers/mujoco/archer_y6/model/assets/gripper_base_link.STL +0 -0
  37. hex_zmq_servers-0.3.1/hex_zmq_servers/mujoco/archer_y6/model/assets/gripper_left_helper_link.STL +0 -0
  38. hex_zmq_servers-0.3.1/hex_zmq_servers/mujoco/archer_y6/model/assets/gripper_left_link_1.STL +0 -0
  39. hex_zmq_servers-0.3.1/hex_zmq_servers/mujoco/archer_y6/model/assets/gripper_left_link_2.STL +0 -0
  40. hex_zmq_servers-0.3.1/hex_zmq_servers/mujoco/archer_y6/model/assets/gripper_right_helper_link.STL +0 -0
  41. hex_zmq_servers-0.3.1/hex_zmq_servers/mujoco/archer_y6/model/assets/gripper_right_link_1.STL +0 -0
  42. hex_zmq_servers-0.3.1/hex_zmq_servers/mujoco/archer_y6/model/assets/gripper_right_link_2.STL +0 -0
  43. hex_zmq_servers-0.3.1/hex_zmq_servers/mujoco/archer_y6/model/assets/table_link.STL +0 -0
  44. hex_zmq_servers-0.3.1/hex_zmq_servers/mujoco/archer_y6/model/robot.xml +95 -0
  45. hex_zmq_servers-0.3.1/hex_zmq_servers/mujoco/archer_y6/model/scene.xml +51 -0
  46. hex_zmq_servers-0.3.1/hex_zmq_servers/mujoco/archer_y6/model/setting.xml +37 -0
  47. hex_zmq_servers-0.3.1/hex_zmq_servers/mujoco/archer_y6/mujoco_archer_y6.py +289 -0
  48. hex_zmq_servers-0.3.1/hex_zmq_servers/mujoco/archer_y6/mujoco_archer_y6_cli.py +26 -0
  49. hex_zmq_servers-0.3.1/hex_zmq_servers/mujoco/archer_y6/mujoco_archer_y6_srv.py +142 -0
  50. hex_zmq_servers-0.3.1/hex_zmq_servers/mujoco/e3_desktop/__init__.py +17 -0
  51. hex_zmq_servers-0.3.1/hex_zmq_servers/mujoco/e3_desktop/model/assets/arm_base_link.STL +0 -0
  52. hex_zmq_servers-0.3.1/hex_zmq_servers/mujoco/e3_desktop/model/assets/arm_link_1.STL +0 -0
  53. hex_zmq_servers-0.3.1/hex_zmq_servers/mujoco/e3_desktop/model/assets/arm_link_2.STL +0 -0
  54. hex_zmq_servers-0.3.1/hex_zmq_servers/mujoco/e3_desktop/model/assets/arm_link_3.STL +0 -0
  55. hex_zmq_servers-0.3.1/hex_zmq_servers/mujoco/e3_desktop/model/assets/arm_link_4.STL +0 -0
  56. hex_zmq_servers-0.3.1/hex_zmq_servers/mujoco/e3_desktop/model/assets/arm_link_5.STL +0 -0
  57. hex_zmq_servers-0.3.1/hex_zmq_servers/mujoco/e3_desktop/model/assets/assets.xml +18 -0
  58. hex_zmq_servers-0.3.1/hex_zmq_servers/mujoco/e3_desktop/model/assets/camera_link.STL +0 -0
  59. hex_zmq_servers-0.3.1/hex_zmq_servers/mujoco/e3_desktop/model/assets/e3_desktop_base_link.STL +0 -0
  60. hex_zmq_servers-0.3.1/hex_zmq_servers/mujoco/e3_desktop/model/assets/gripper_base_link.STL +0 -0
  61. hex_zmq_servers-0.3.1/hex_zmq_servers/mujoco/e3_desktop/model/assets/gripper_left_helper_link.STL +0 -0
  62. hex_zmq_servers-0.3.1/hex_zmq_servers/mujoco/e3_desktop/model/assets/gripper_left_link_1.STL +0 -0
  63. hex_zmq_servers-0.3.1/hex_zmq_servers/mujoco/e3_desktop/model/assets/gripper_left_link_2.STL +0 -0
  64. hex_zmq_servers-0.3.1/hex_zmq_servers/mujoco/e3_desktop/model/assets/gripper_right_helper_link.STL +0 -0
  65. hex_zmq_servers-0.3.1/hex_zmq_servers/mujoco/e3_desktop/model/assets/gripper_right_link_1.STL +0 -0
  66. hex_zmq_servers-0.3.1/hex_zmq_servers/mujoco/e3_desktop/model/assets/gripper_right_link_2.STL +0 -0
  67. hex_zmq_servers-0.3.1/hex_zmq_servers/mujoco/e3_desktop/model/assets/table_link.STL +0 -0
  68. hex_zmq_servers-0.3.1/hex_zmq_servers/mujoco/e3_desktop/model/robot.xml +188 -0
  69. hex_zmq_servers-0.3.1/hex_zmq_servers/mujoco/e3_desktop/model/scene.xml +53 -0
  70. hex_zmq_servers-0.3.1/hex_zmq_servers/mujoco/e3_desktop/model/setting.xml +72 -0
  71. hex_zmq_servers-0.3.1/hex_zmq_servers/mujoco/e3_desktop/mujoco_e3_desktop.py +376 -0
  72. hex_zmq_servers-0.3.1/hex_zmq_servers/mujoco/e3_desktop/mujoco_e3_desktop_cli.py +118 -0
  73. hex_zmq_servers-0.3.1/hex_zmq_servers/mujoco/e3_desktop/mujoco_e3_desktop_srv.py +235 -0
  74. hex_zmq_servers-0.3.1/hex_zmq_servers/mujoco/mujoco_base.py +359 -0
  75. hex_zmq_servers-0.3.1/hex_zmq_servers/robot/__init__.py +37 -0
  76. hex_zmq_servers-0.3.1/hex_zmq_servers/robot/dummy/__init__.py +17 -0
  77. hex_zmq_servers-0.3.1/hex_zmq_servers/robot/dummy/robot_dummy.py +88 -0
  78. hex_zmq_servers-0.3.1/hex_zmq_servers/robot/dummy/robot_dummy_cli.py +26 -0
  79. hex_zmq_servers-0.3.1/hex_zmq_servers/robot/dummy/robot_dummy_srv.py +79 -0
  80. hex_zmq_servers-0.3.1/hex_zmq_servers/robot/gello/__init__.py +17 -0
  81. hex_zmq_servers-0.3.1/hex_zmq_servers/robot/gello/robot_gello.py +360 -0
  82. hex_zmq_servers-0.3.1/hex_zmq_servers/robot/gello/robot_gello_cli.py +26 -0
  83. hex_zmq_servers-0.3.1/hex_zmq_servers/robot/gello/robot_gello_srv.py +90 -0
  84. hex_zmq_servers-0.3.1/hex_zmq_servers/robot/hexarm/__init__.py +47 -0
  85. hex_zmq_servers-0.3.1/hex_zmq_servers/robot/hexarm/robot_hexarm.py +258 -0
  86. hex_zmq_servers-0.3.1/hex_zmq_servers/robot/hexarm/robot_hexarm_cli.py +34 -0
  87. hex_zmq_servers-0.3.1/hex_zmq_servers/robot/hexarm/robot_hexarm_srv.py +84 -0
  88. hex_zmq_servers-0.3.1/hex_zmq_servers/robot/hexarm/urdf/archer_l6y/empty.urdf +206 -0
  89. hex_zmq_servers-0.3.1/hex_zmq_servers/robot/hexarm/urdf/archer_l6y/gp100.urdf +206 -0
  90. hex_zmq_servers-0.3.1/hex_zmq_servers/robot/hexarm/urdf/archer_l6y/gp100_handle.urdf +206 -0
  91. hex_zmq_servers-0.3.1/hex_zmq_servers/robot/hexarm/urdf/archer_l6y/gp100_p050.urdf +206 -0
  92. hex_zmq_servers-0.3.1/hex_zmq_servers/robot/hexarm/urdf/archer_l6y/gp100_p050_handle.urdf +206 -0
  93. hex_zmq_servers-0.3.1/hex_zmq_servers/robot/hexarm/urdf/archer_y6/empty.urdf +207 -0
  94. hex_zmq_servers-0.3.1/hex_zmq_servers/robot/hexarm/urdf/archer_y6/gp100.urdf +207 -0
  95. hex_zmq_servers-0.3.1/hex_zmq_servers/robot/hexarm/urdf/archer_y6/gp100_handle.urdf +207 -0
  96. hex_zmq_servers-0.3.1/hex_zmq_servers/robot/hexarm/urdf/archer_y6/gp100_p050.urdf +207 -0
  97. hex_zmq_servers-0.3.1/hex_zmq_servers/robot/hexarm/urdf/archer_y6/gp100_p050_handle.urdf +207 -0
  98. hex_zmq_servers-0.3.1/hex_zmq_servers/robot/robot_base.py +234 -0
  99. hex_zmq_servers-0.3.1/hex_zmq_servers/zmq_base.py +454 -0
  100. hex_zmq_servers-0.3.1/hex_zmq_servers.egg-info/PKG-INFO +146 -0
  101. hex_zmq_servers-0.3.1/hex_zmq_servers.egg-info/SOURCES.txt +104 -0
  102. hex_zmq_servers-0.3.1/hex_zmq_servers.egg-info/dependency_links.txt +1 -0
  103. hex_zmq_servers-0.3.1/hex_zmq_servers.egg-info/requires.txt +17 -0
  104. hex_zmq_servers-0.3.1/hex_zmq_servers.egg-info/top_level.txt +1 -0
  105. hex_zmq_servers-0.3.1/pyproject.toml +45 -0
  106. hex_zmq_servers-0.3.1/setup.cfg +4 -0
@@ -0,0 +1,201 @@
1
+ Apache License
2
+ Version 2.0, January 2004
3
+ http://www.apache.org/licenses/
4
+
5
+ TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
6
+
7
+ 1. Definitions.
8
+
9
+ "License" shall mean the terms and conditions for use, reproduction,
10
+ and distribution as defined by Sections 1 through 9 of this document.
11
+
12
+ "Licensor" shall mean the copyright owner or entity authorized by
13
+ the copyright owner that is granting the License.
14
+
15
+ "Legal Entity" shall mean the union of the acting entity and all
16
+ other entities that control, are controlled by, or are under common
17
+ control with that entity. For the purposes of this definition,
18
+ "control" means (i) the power, direct or indirect, to cause the
19
+ direction or management of such entity, whether by contract or
20
+ otherwise, or (ii) ownership of fifty percent (50%) or more of the
21
+ outstanding shares, or (iii) beneficial ownership of such entity.
22
+
23
+ "You" (or "Your") shall mean an individual or Legal Entity
24
+ exercising permissions granted by this License.
25
+
26
+ "Source" form shall mean the preferred form for making modifications,
27
+ including but not limited to software source code, documentation
28
+ source, and configuration files.
29
+
30
+ "Object" form shall mean any form resulting from mechanical
31
+ transformation or translation of a Source form, including but
32
+ not limited to compiled object code, generated documentation,
33
+ and conversions to other media types.
34
+
35
+ "Work" shall mean the work of authorship, whether in Source or
36
+ Object form, made available under the License, as indicated by a
37
+ copyright notice that is included in or attached to the work
38
+ (an example is provided in the Appendix below).
39
+
40
+ "Derivative Works" shall mean any work, whether in Source or Object
41
+ form, that is based on (or derived from) the Work and for which the
42
+ editorial revisions, annotations, elaborations, or other modifications
43
+ represent, as a whole, an original work of authorship. For the purposes
44
+ of this License, Derivative Works shall not include works that remain
45
+ separable from, or merely link (or bind by name) to the interfaces of,
46
+ the Work and Derivative Works thereof.
47
+
48
+ "Contribution" shall mean any work of authorship, including
49
+ the original version of the Work and any modifications or additions
50
+ to that Work or Derivative Works thereof, that is intentionally
51
+ submitted to Licensor for inclusion in the Work by the copyright owner
52
+ or by an individual or Legal Entity authorized to submit on behalf of
53
+ the copyright owner. For the purposes of this definition, "submitted"
54
+ means any form of electronic, verbal, or written communication sent
55
+ to the Licensor or its representatives, including but not limited to
56
+ communication on electronic mailing lists, source code control systems,
57
+ and issue tracking systems that are managed by, or on behalf of, the
58
+ Licensor for the purpose of discussing and improving the Work, but
59
+ excluding communication that is conspicuously marked or otherwise
60
+ designated in writing by the copyright owner as "Not a Contribution."
61
+
62
+ "Contributor" shall mean Licensor and any individual or Legal Entity
63
+ on behalf of whom a Contribution has been received by Licensor and
64
+ subsequently incorporated within the Work.
65
+
66
+ 2. Grant of Copyright License. Subject to the terms and conditions of
67
+ this License, each Contributor hereby grants to You a perpetual,
68
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
69
+ copyright license to reproduce, prepare Derivative Works of,
70
+ publicly display, publicly perform, sublicense, and distribute the
71
+ Work and such Derivative Works in Source or Object form.
72
+
73
+ 3. Grant of Patent License. Subject to the terms and conditions of
74
+ this License, each Contributor hereby grants to You a perpetual,
75
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
76
+ (except as stated in this section) patent license to make, have made,
77
+ use, offer to sell, sell, import, and otherwise transfer the Work,
78
+ where such license applies only to those patent claims licensable
79
+ by such Contributor that are necessarily infringed by their
80
+ Contribution(s) alone or by combination of their Contribution(s)
81
+ with the Work to which such Contribution(s) was submitted. If You
82
+ institute patent litigation against any entity (including a
83
+ cross-claim or counterclaim in a lawsuit) alleging that the Work
84
+ or a Contribution incorporated within the Work constitutes direct
85
+ or contributory patent infringement, then any patent licenses
86
+ granted to You under this License for that Work shall terminate
87
+ as of the date such litigation is filed.
88
+
89
+ 4. Redistribution. You may reproduce and distribute copies of the
90
+ Work or Derivative Works thereof in any medium, with or without
91
+ modifications, and in Source or Object form, provided that You
92
+ meet the following conditions:
93
+
94
+ (a) You must give any other recipients of the Work or
95
+ Derivative Works a copy of this License; and
96
+
97
+ (b) You must cause any modified files to carry prominent notices
98
+ stating that You changed the files; and
99
+
100
+ (c) You must retain, in the Source form of any Derivative Works
101
+ that You distribute, all copyright, patent, trademark, and
102
+ attribution notices from the Source form of the Work,
103
+ excluding those notices that do not pertain to any part of
104
+ the Derivative Works; and
105
+
106
+ (d) If the Work includes a "NOTICE" text file as part of its
107
+ distribution, then any Derivative Works that You distribute must
108
+ include a readable copy of the attribution notices contained
109
+ within such NOTICE file, excluding those notices that do not
110
+ pertain to any part of the Derivative Works, in at least one
111
+ of the following places: within a NOTICE text file distributed
112
+ as part of the Derivative Works; within the Source form or
113
+ documentation, if provided along with the Derivative Works; or,
114
+ within a display generated by the Derivative Works, if and
115
+ wherever such third-party notices normally appear. The contents
116
+ of the NOTICE file are for informational purposes only and
117
+ do not modify the License. You may add Your own attribution
118
+ notices within Derivative Works that You distribute, alongside
119
+ or as an addendum to the NOTICE text from the Work, provided
120
+ that such additional attribution notices cannot be construed
121
+ as modifying the License.
122
+
123
+ You may add Your own copyright statement to Your modifications and
124
+ may provide additional or different license terms and conditions
125
+ for use, reproduction, or distribution of Your modifications, or
126
+ for any such Derivative Works as a whole, provided Your use,
127
+ reproduction, and distribution of the Work otherwise complies with
128
+ the conditions stated in this License.
129
+
130
+ 5. Submission of Contributions. Unless You explicitly state otherwise,
131
+ any Contribution intentionally submitted for inclusion in the Work
132
+ by You to the Licensor shall be under the terms and conditions of
133
+ this License, without any additional terms or conditions.
134
+ Notwithstanding the above, nothing herein shall supersede or modify
135
+ the terms of any separate license agreement you may have executed
136
+ with Licensor regarding such Contributions.
137
+
138
+ 6. Trademarks. This License does not grant permission to use the trade
139
+ names, trademarks, service marks, or product names of the Licensor,
140
+ except as required for reasonable and customary use in describing the
141
+ origin of the Work and reproducing the content of the NOTICE file.
142
+
143
+ 7. Disclaimer of Warranty. Unless required by applicable law or
144
+ agreed to in writing, Licensor provides the Work (and each
145
+ Contributor provides its Contributions) on an "AS IS" BASIS,
146
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
147
+ implied, including, without limitation, any warranties or conditions
148
+ of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
149
+ PARTICULAR PURPOSE. You are solely responsible for determining the
150
+ appropriateness of using or redistributing the Work and assume any
151
+ risks associated with Your exercise of permissions under this License.
152
+
153
+ 8. Limitation of Liability. In no event and under no legal theory,
154
+ whether in tort (including negligence), contract, or otherwise,
155
+ unless required by applicable law (such as deliberate and grossly
156
+ negligent acts) or agreed to in writing, shall any Contributor be
157
+ liable to You for damages, including any direct, indirect, special,
158
+ incidental, or consequential damages of any character arising as a
159
+ result of this License or out of the use or inability to use the
160
+ Work (including but not limited to damages for loss of goodwill,
161
+ work stoppage, computer failure or malfunction, or any and all
162
+ other commercial damages or losses), even if such Contributor
163
+ has been advised of the possibility of such damages.
164
+
165
+ 9. Accepting Warranty or Additional Liability. While redistributing
166
+ the Work or Derivative Works thereof, You may choose to offer,
167
+ and charge a fee for, acceptance of support, warranty, indemnity,
168
+ or other liability obligations and/or rights consistent with this
169
+ License. However, in accepting such obligations, You may act only
170
+ on Your own behalf and on Your sole responsibility, not on behalf
171
+ of any other Contributor, and only if You agree to indemnify,
172
+ defend, and hold each Contributor harmless for any liability
173
+ incurred by, or claims asserted against, such Contributor by reason
174
+ of your accepting any such warranty or additional liability.
175
+
176
+ END OF TERMS AND CONDITIONS
177
+
178
+ APPENDIX: How to apply the Apache License to your work.
179
+
180
+ To apply the Apache License to your work, attach the following
181
+ boilerplate notice, with the fields enclosed by brackets "[]"
182
+ replaced with your own identifying information. (Don't include
183
+ the brackets!) The text should be enclosed in the appropriate
184
+ comment syntax for the file format. We also recommend that a
185
+ file or class name and description of purpose be included on the
186
+ same "printed page" as the copyright notice for easier
187
+ identification within third-party archives.
188
+
189
+ Copyright [yyyy] [name of copyright owner]
190
+
191
+ Licensed under the Apache License, Version 2.0 (the "License");
192
+ you may not use this file except in compliance with the License.
193
+ You may obtain a copy of the License at
194
+
195
+ http://www.apache.org/licenses/LICENSE-2.0
196
+
197
+ Unless required by applicable law or agreed to in writing, software
198
+ distributed under the License is distributed on an "AS IS" BASIS,
199
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
200
+ See the License for the specific language governing permissions and
201
+ limitations under the License.
@@ -0,0 +1,13 @@
1
+ include LICENSE
2
+ include README.md
3
+ include requirements.txt
4
+
5
+ recursive-include package_name *
6
+ recursive-include hex_zmq_servers/mujoco/archer_y6/model * *
7
+ recursive-include hex_zmq_servers/mujoco/e3_desktop/model * *
8
+ recursive-include hex_zmq_servers/robot/hexarm/urdf * *
9
+ recursive-include hex_zmq_servers/config *
10
+
11
+ recursive-exclude * *.pyc
12
+ recursive-exclude * .DS_Store
13
+ recursive-exclude * __pycache__
@@ -0,0 +1,146 @@
1
+ Metadata-Version: 2.4
2
+ Name: hex_zmq_servers
3
+ Version: 0.3.1
4
+ Summary: HEXFELLOW ZMQ Servers
5
+ Author-email: Dong Zhaorui <joray.dong@hexfellow.com>
6
+ Maintainer-email: jecjune <zejun.chen@hexfellow.com>, Dong Zhaorui <joray.dong@hexfellow.com>
7
+ License-Expression: Apache-2.0
8
+ Project-URL: Homepage, https://github.com/hexfellow/hex_zmq_servers
9
+ Project-URL: Repository, https://github.com/hexfellow/hex_zmq_servers.git
10
+ Project-URL: Bug Tracker, https://github.com/hexfellow/hex_zmq_servers/issues
11
+ Project-URL: Documentation, https://github.com/hexfellow/hex_zmq_servers/wiki
12
+ Keywords: hex_zmq_servers
13
+ Classifier: Development Status :: 4 - Beta
14
+ Classifier: Intended Audience :: Developers
15
+ Classifier: Intended Audience :: Science/Research
16
+ Classifier: Topic :: Software Development :: Libraries :: Python Modules
17
+ Classifier: Programming Language :: Python :: 3
18
+ Classifier: Programming Language :: Python :: 3.10
19
+ Classifier: Programming Language :: Python :: 3.11
20
+ Classifier: Programming Language :: Python :: 3.12
21
+ Classifier: Operating System :: POSIX :: Linux
22
+ Requires-Python: >=3.10
23
+ Description-Content-Type: text/markdown
24
+ License-File: LICENSE
25
+ Requires-Dist: pyzmq>=27.0.1
26
+ Requires-Dist: hex_device<1.4.0,>=1.3.1
27
+ Requires-Dist: hex_robo_utils<0.3.0,>=0.2.0
28
+ Requires-Dist: dynamixel-sdk==3.8.4
29
+ Provides-Extra: camera
30
+ Requires-Dist: berxel_py_wrapper>=2.0; extra == "camera"
31
+ Requires-Dist: opencv-python>=4.2; extra == "camera"
32
+ Provides-Extra: mujoco
33
+ Requires-Dist: mujoco>=3.3.3; extra == "mujoco"
34
+ Requires-Dist: opencv-python>=4.2; extra == "mujoco"
35
+ Provides-Extra: all
36
+ Requires-Dist: berxel_py_wrapper>=2.0; extra == "all"
37
+ Requires-Dist: mujoco>=3.3.3; extra == "all"
38
+ Requires-Dist: opencv-python>=4.2; extra == "all"
39
+ Dynamic: license-file
40
+
41
+ # hex_zmq_servers
42
+
43
+ ## Introduction
44
+
45
+ **`hex_zmq_servers`** is a comprehensive distributed device control framework based on ZeroMQ, providing efficient client-server communication for HEXFELLOW devices.
46
+
47
+ ## Project Structure
48
+
49
+ ```bash
50
+ hex_zmq_servers/
51
+ ├── hex_zmq_servers/ # Core library
52
+ │ ├── robot/ # Robot devices
53
+ │ ├── cam/ # Camera devices
54
+ │ ├── mujoco/ # Mujoco simulation devices
55
+ │ └── config/ # Default configuration files
56
+ ├── examples/ # Example code
57
+ │ ├── basic/ # Basic examples (single device)
58
+ │ └── adv/ # Advanced examples (multi-device coordination)
59
+ └── venv.sh # Virtual environment script
60
+ ```
61
+
62
+ ## Devices
63
+
64
+ ### Robot
65
+
66
+ - **dummy**: Dummy robot, for testing and development
67
+ - **gello**: GELLO robot, based on Dynamixel servo
68
+ - **hexarm**: HexArm robot of HEXFELLOW
69
+
70
+ ### Camera
71
+
72
+ - **dummy**: Dummy camera, for testing and development
73
+ - **berxel**: Berxel depth camera, providing RGB and depth images
74
+
75
+ ### Mujoco
76
+
77
+ - **archer_y6**: Physical simulation of Archer Y6 robot
78
+ - **e3_desktop**: Physical simulation of E3 Desktop robot
79
+
80
+ ## Installation
81
+
82
+ ### Install from PyPI
83
+
84
+ 1. For those who only want to use the library in their projects, it is recommended to install it from PyPI.
85
+
86
+ ```bash
87
+ pip install hex_zmq_servers[all]
88
+ ```
89
+
90
+ 2. If you don't want to install the extra dependencies for extra devices, you can run:
91
+
92
+ ```bash
93
+ pip install hex_zmq_servers
94
+ ```
95
+
96
+ ### Install from Source Code
97
+
98
+ 1. For those who want to test the examples or contribute to the project, you can install it from source code.
99
+
100
+ ```bash
101
+ git clone https://github.com/hexfellow/hex_zmq_servers.git
102
+ cd hex_zmq_servers
103
+ ./venv.sh
104
+ ```
105
+
106
+ 2. If you don't want to install the extra dependencies for extra devices, you can run:
107
+
108
+ ```bash
109
+ git clone https://github.com/hexfellow/hex_zmq_servers.git
110
+ cd hex_zmq_servers
111
+ ./venv.sh --min
112
+ ```
113
+
114
+ (**Important**) Some examples would not work without the extra dependencies.
115
+
116
+ 3. If you don't want to install the examples, you can run:
117
+
118
+ ```bash
119
+ git clone https://github.com/hexfellow/hex_zmq_servers.git
120
+ cd hex_zmq_servers
121
+ ./venv.sh --pkg-only
122
+ ```
123
+
124
+ ## Examples
125
+
126
+ There are two types of examples in the project:
127
+
128
+ - **basic/**: Basic examples, showing the usage of a single device
129
+ - **adv/**: Advanced examples, showing multi-device coordination
130
+
131
+ More details please refer to [examples/README.md](examples/README.md)
132
+
133
+ ## Contributions
134
+
135
+ Welcome to submit issues and pull requests!
136
+
137
+ ## License
138
+
139
+ Apache License 2.0
140
+
141
+ ## Contact
142
+
143
+ - Author: [Dong Zhaorui](https://github.com/IBNBlank)
144
+ - Maintainer: [jecjune](https://github.com/Jecjune)
145
+ - GitHub: [hex_zmq_servers](https://github.com/hexfellow/hex_zmq_servers)
146
+ - Issue Tracker: [hex_zmq_servers](https://github.com/hexfellow/hex_zmq_servers/issues)
@@ -0,0 +1,106 @@
1
+ # hex_zmq_servers
2
+
3
+ ## Introduction
4
+
5
+ **`hex_zmq_servers`** is a comprehensive distributed device control framework based on ZeroMQ, providing efficient client-server communication for HEXFELLOW devices.
6
+
7
+ ## Project Structure
8
+
9
+ ```bash
10
+ hex_zmq_servers/
11
+ ├── hex_zmq_servers/ # Core library
12
+ │ ├── robot/ # Robot devices
13
+ │ ├── cam/ # Camera devices
14
+ │ ├── mujoco/ # Mujoco simulation devices
15
+ │ └── config/ # Default configuration files
16
+ ├── examples/ # Example code
17
+ │ ├── basic/ # Basic examples (single device)
18
+ │ └── adv/ # Advanced examples (multi-device coordination)
19
+ └── venv.sh # Virtual environment script
20
+ ```
21
+
22
+ ## Devices
23
+
24
+ ### Robot
25
+
26
+ - **dummy**: Dummy robot, for testing and development
27
+ - **gello**: GELLO robot, based on Dynamixel servo
28
+ - **hexarm**: HexArm robot of HEXFELLOW
29
+
30
+ ### Camera
31
+
32
+ - **dummy**: Dummy camera, for testing and development
33
+ - **berxel**: Berxel depth camera, providing RGB and depth images
34
+
35
+ ### Mujoco
36
+
37
+ - **archer_y6**: Physical simulation of Archer Y6 robot
38
+ - **e3_desktop**: Physical simulation of E3 Desktop robot
39
+
40
+ ## Installation
41
+
42
+ ### Install from PyPI
43
+
44
+ 1. For those who only want to use the library in their projects, it is recommended to install it from PyPI.
45
+
46
+ ```bash
47
+ pip install hex_zmq_servers[all]
48
+ ```
49
+
50
+ 2. If you don't want to install the extra dependencies for extra devices, you can run:
51
+
52
+ ```bash
53
+ pip install hex_zmq_servers
54
+ ```
55
+
56
+ ### Install from Source Code
57
+
58
+ 1. For those who want to test the examples or contribute to the project, you can install it from source code.
59
+
60
+ ```bash
61
+ git clone https://github.com/hexfellow/hex_zmq_servers.git
62
+ cd hex_zmq_servers
63
+ ./venv.sh
64
+ ```
65
+
66
+ 2. If you don't want to install the extra dependencies for extra devices, you can run:
67
+
68
+ ```bash
69
+ git clone https://github.com/hexfellow/hex_zmq_servers.git
70
+ cd hex_zmq_servers
71
+ ./venv.sh --min
72
+ ```
73
+
74
+ (**Important**) Some examples would not work without the extra dependencies.
75
+
76
+ 3. If you don't want to install the examples, you can run:
77
+
78
+ ```bash
79
+ git clone https://github.com/hexfellow/hex_zmq_servers.git
80
+ cd hex_zmq_servers
81
+ ./venv.sh --pkg-only
82
+ ```
83
+
84
+ ## Examples
85
+
86
+ There are two types of examples in the project:
87
+
88
+ - **basic/**: Basic examples, showing the usage of a single device
89
+ - **adv/**: Advanced examples, showing multi-device coordination
90
+
91
+ More details please refer to [examples/README.md](examples/README.md)
92
+
93
+ ## Contributions
94
+
95
+ Welcome to submit issues and pull requests!
96
+
97
+ ## License
98
+
99
+ Apache License 2.0
100
+
101
+ ## Contact
102
+
103
+ - Author: [Dong Zhaorui](https://github.com/IBNBlank)
104
+ - Maintainer: [jecjune](https://github.com/Jecjune)
105
+ - GitHub: [hex_zmq_servers](https://github.com/hexfellow/hex_zmq_servers)
106
+ - Issue Tracker: [hex_zmq_servers](https://github.com/hexfellow/hex_zmq_servers/issues)
@@ -0,0 +1,148 @@
1
+ #!/usr/bin/env python3
2
+ # -*- coding:utf-8 -*-
3
+ ################################################################
4
+ # Copyright 2025 Dong Zhaorui. All rights reserved.
5
+ # Author: Dong Zhaorui 847235539@qq.com
6
+ # Date : 2025-09-15
7
+ ################################################################
8
+
9
+ from .hex_launch import HexLaunch, HexNodeConfig, HEX_LOG_LEVEL, hex_dict_str, hex_log, hex_err
10
+
11
+ from .device_base import HexDeviceBase
12
+ from .zmq_base import HexRate, hex_zmq_ts_now, hex_zmq_ts_delta_ms
13
+ from .zmq_base import HexSafeValue, HexZMQClientBase, HexZMQServerBase, hex_server_helper
14
+ from .zmq_base import HexZMQDummyClient, HexZMQDummyServer
15
+
16
+ from .robot import HexRobotBase, HexRobotClientBase, HexRobotServerBase
17
+ from .robot import HexRobotDummy, HexRobotDummyClient, HexRobotDummyServer
18
+ from .robot import HexRobotGello, HexRobotGelloClient, HexRobotGelloServer
19
+ from .robot import HexRobotHexarm, HexRobotHexarmClient, HexRobotHexarmServer, HEXARM_URDF_PATH_DICT
20
+
21
+ import os
22
+
23
+ file_dir = os.path.dirname(os.path.abspath(__file__))
24
+ HEX_ZMQ_SERVERS_PATH_DICT = {
25
+ "zmq_dummy": f"{file_dir}/zmq_base.py",
26
+ "robot_dummy": f"{file_dir}/robot/dummy/robot_dummy_srv.py",
27
+ "robot_gello": f"{file_dir}/robot/gello/robot_gello_srv.py",
28
+ "robot_hexarm": f"{file_dir}/robot/hexarm/robot_hexarm_srv.py",
29
+ }
30
+ HEX_ZMQ_CONFIGS_PATH_DICT = {
31
+ "zmq_dummy": f"{file_dir}/config/zmq_dummy.json",
32
+ "robot_dummy": f"{file_dir}/config/robot_dummy.json",
33
+ "robot_gello": f"{file_dir}/config/robot_gello.json",
34
+ "robot_hexarm": f"{file_dir}/config/robot_hexarm.json",
35
+ }
36
+
37
+ __all__ = [
38
+ # version
39
+ "__version__",
40
+
41
+ # path
42
+ "HEX_ZMQ_SERVERS_PATH_DICT",
43
+ "HEX_ZMQ_CONFIGS_PATH_DICT",
44
+ "HEXARM_URDF_PATH_DICT",
45
+
46
+ # launch
47
+ "HexLaunch",
48
+ "HexNodeConfig",
49
+ "HEX_LOG_LEVEL",
50
+ "hex_dict_str",
51
+ "hex_log",
52
+ "hex_err",
53
+
54
+ # base
55
+ "HexDeviceBase",
56
+ "HexRate",
57
+ "hex_zmq_ts_now",
58
+ "hex_zmq_ts_delta_ms",
59
+ "HexSafeValue",
60
+ "HexZMQClientBase",
61
+ "HexZMQServerBase",
62
+ "hex_server_helper",
63
+ "HexZMQDummyClient",
64
+ "HexZMQDummyServer",
65
+
66
+ # robot
67
+ "HexRobotBase",
68
+ "HexRobotClientBase",
69
+ "HexRobotServerBase",
70
+ "HexRobotDummy",
71
+ "HexRobotDummyClient",
72
+ "HexRobotDummyServer",
73
+ "HexRobotGello",
74
+ "HexRobotGelloClient",
75
+ "HexRobotGelloServer",
76
+ "HexRobotHexarm",
77
+ "HexRobotHexarmClient",
78
+ "HexRobotHexarmServer",
79
+ ]
80
+
81
+ # Check optional dependencies availability
82
+ from importlib.util import find_spec
83
+
84
+ _HAS_OPENCV = find_spec("cv2") is not None
85
+ _HAS_BERXEL = find_spec("berxel_py_wrapper") is not None
86
+ _HAS_MUJOCO = find_spec("mujoco") is not None
87
+
88
+ # Optional: camera
89
+ if _HAS_OPENCV and _HAS_BERXEL:
90
+ from .cam import HexCamBase, HexCamClientBase, HexCamServerBase
91
+ from .cam import HexCamDummy, HexCamDummyClient, HexCamDummyServer
92
+ from .cam import HexCamBerxel, HexCamBerxelClient, HexCamBerxelServer
93
+ HEX_ZMQ_SERVERS_PATH_DICT.update({
94
+ "cam_dummy":
95
+ f"{file_dir}/cam/dummy/cam_dummy_srv.py",
96
+ "cam_berxel":
97
+ f"{file_dir}/cam/berxel/cam_berxel_srv.py",
98
+ })
99
+ HEX_ZMQ_CONFIGS_PATH_DICT.update({
100
+ "cam_dummy":
101
+ f"{file_dir}/config/cam_dummy.json",
102
+ "cam_berxel":
103
+ f"{file_dir}/config/cam_berxel.json",
104
+ })
105
+ __all__.extend([
106
+ # camera
107
+ "HexCamBase",
108
+ "HexCamClientBase",
109
+ "HexCamServerBase",
110
+ "HexCamDummy",
111
+ "HexCamDummyClient",
112
+ "HexCamDummyServer",
113
+ "HexCamBerxel",
114
+ "HexCamBerxelClient",
115
+ "HexCamBerxelServer",
116
+ ])
117
+
118
+ # Optional: mujoco
119
+ if _HAS_OPENCV and _HAS_MUJOCO:
120
+ from .mujoco import HexMujocoBase, HexMujocoClientBase, HexMujocoServerBase
121
+ from .mujoco import HexMujocoArcherY6, HexMujocoArcherY6Client, HexMujocoArcherY6Server
122
+ from .mujoco import HexMujocoE3Desktop, HexMujocoE3DesktopClient, HexMujocoE3DesktopServer
123
+ HEX_ZMQ_SERVERS_PATH_DICT.update({
124
+ "mujoco_archer_y6":
125
+ f"{file_dir}/mujoco/archer_y6/mujoco_archer_y6_srv.py",
126
+ "mujoco_e3_desktop":
127
+ f"{file_dir}/mujoco/e3_desktop/mujoco_e3_desktop_srv.py",
128
+ })
129
+ HEX_ZMQ_CONFIGS_PATH_DICT.update({
130
+ "mujoco_archer_y6":
131
+ f"{file_dir}/config/mujoco_archer_y6.json",
132
+ "mujoco_e3_desktop":
133
+ f"{file_dir}/config/mujoco_e3_desktop.json",
134
+ })
135
+ __all__.extend([
136
+ # mujoco
137
+ "HexMujocoBase",
138
+ "HexMujocoClientBase",
139
+ "HexMujocoServerBase",
140
+ "HexMujocoArcherY6",
141
+ "HexMujocoArcherY6Client",
142
+ "HexMujocoArcherY6Server",
143
+ "HexMujocoE3Desktop",
144
+ "HexMujocoE3DesktopClient",
145
+ "HexMujocoE3DesktopServer",
146
+ ])
147
+
148
+ # print("#### Thanks for using hex_zmq_servers :D ####")
@@ -0,0 +1,28 @@
1
+ #!/usr/bin/env python3
2
+ # -*- coding:utf-8 -*-
3
+ ################################################################
4
+ # Copyright 2025 Dong Zhaorui. All rights reserved.
5
+ # Author: Dong Zhaorui 847235539@qq.com
6
+ # Date : 2025-09-12
7
+ ################################################################
8
+
9
+ from .cam_base import HexCamBase, HexCamClientBase, HexCamServerBase
10
+ from .dummy import HexCamDummy, HexCamDummyClient, HexCamDummyServer
11
+ from .berxel import HexCamBerxel, HexCamBerxelClient, HexCamBerxelServer
12
+
13
+ __all__ = [
14
+ # base
15
+ "HexCamBase",
16
+ "HexCamClientBase",
17
+ "HexCamServerBase",
18
+
19
+ # dummy
20
+ "HexCamDummy",
21
+ "HexCamDummyClient",
22
+ "HexCamDummyServer",
23
+
24
+ # berxel
25
+ "HexCamBerxel",
26
+ "HexCamBerxelClient",
27
+ "HexCamBerxelServer",
28
+ ]
@@ -0,0 +1,17 @@
1
+ #!/usr/bin/env python3
2
+ # -*- coding:utf-8 -*-
3
+ ################################################################
4
+ # Copyright 2025 Dong Zhaorui. All rights reserved.
5
+ # Author: Dong Zhaorui 847235539@qq.com
6
+ # Date : 2025-09-12
7
+ ################################################################
8
+
9
+ from .cam_berxel import HexCamBerxel
10
+ from .cam_berxel_cli import HexCamBerxelClient
11
+ from .cam_berxel_srv import HexCamBerxelServer
12
+
13
+ __all__ = [
14
+ "HexCamBerxel",
15
+ "HexCamBerxelClient",
16
+ "HexCamBerxelServer",
17
+ ]