wandelbots-isaacsim-api 2.10.2__tar.gz → 2.45.0__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 (115) hide show
  1. wandelbots_isaacsim_api-2.45.0/PKG-INFO +95 -0
  2. wandelbots_isaacsim_api-2.45.0/README.md +63 -0
  3. {wandelbots_isaacsim_api-2.10.2 → wandelbots_isaacsim_api-2.45.0}/pyproject.toml +6 -6
  4. wandelbots_isaacsim_api-2.45.0/wandelbots_isaacsim_api/__init__.py +50 -0
  5. {wandelbots_isaacsim_api-2.10.2 → wandelbots_isaacsim_api-2.45.0}/wandelbots_isaacsim_api/api/__init__.py +6 -0
  6. {wandelbots_isaacsim_api-2.10.2 → wandelbots_isaacsim_api-2.45.0}/wandelbots_isaacsim_api/api/collision_world_api.py +3 -3
  7. {wandelbots_isaacsim_api-2.10.2 → wandelbots_isaacsim_api-2.45.0}/wandelbots_isaacsim_api/api/default_api.py +22 -22
  8. {wandelbots_isaacsim_api-2.10.2 → wandelbots_isaacsim_api-2.45.0}/wandelbots_isaacsim_api/api/manipulators_motion_group_api.py +3 -3
  9. wandelbots_isaacsim_api-2.45.0/wandelbots_isaacsim_api/api/nucleus_api.py +1312 -0
  10. {wandelbots_isaacsim_api-2.10.2 → wandelbots_isaacsim_api-2.45.0}/wandelbots_isaacsim_api/api/periphery_camera_api.py +3 -3
  11. {wandelbots_isaacsim_api-2.10.2 → wandelbots_isaacsim_api-2.45.0}/wandelbots_isaacsim_api/api/prims_api.py +3 -3
  12. wandelbots_isaacsim_api-2.45.0/wandelbots_isaacsim_api/api/robot_overlay_experimental_api.py +320 -0
  13. {wandelbots_isaacsim_api-2.10.2 → wandelbots_isaacsim_api-2.45.0}/wandelbots_isaacsim_api/api/stage_api.py +3 -3
  14. {wandelbots_isaacsim_api-2.10.2 → wandelbots_isaacsim_api-2.45.0}/wandelbots_isaacsim_api/api/teaching_api.py +3 -3
  15. {wandelbots_isaacsim_api-2.10.2 → wandelbots_isaacsim_api-2.45.0}/wandelbots_isaacsim_api/api/trajectory_api.py +3 -3
  16. wandelbots_isaacsim_api-2.45.0/wandelbots_isaacsim_api/api/trajectory_planner_api.py +547 -0
  17. {wandelbots_isaacsim_api-2.10.2 → wandelbots_isaacsim_api-2.45.0}/wandelbots_isaacsim_api/api/ui_api.py +3 -3
  18. {wandelbots_isaacsim_api-2.10.2 → wandelbots_isaacsim_api-2.45.0}/wandelbots_isaacsim_api/api_client.py +4 -4
  19. {wandelbots_isaacsim_api-2.10.2 → wandelbots_isaacsim_api-2.45.0}/wandelbots_isaacsim_api/configuration.py +5 -5
  20. {wandelbots_isaacsim_api-2.10.2 → wandelbots_isaacsim_api-2.45.0}/wandelbots_isaacsim_api/exceptions.py +3 -3
  21. {wandelbots_isaacsim_api-2.10.2 → wandelbots_isaacsim_api-2.45.0}/wandelbots_isaacsim_api/models/__init__.py +31 -3
  22. {wandelbots_isaacsim_api-2.10.2 → wandelbots_isaacsim_api-2.45.0}/wandelbots_isaacsim_api/models/auth0_credentials.py +8 -15
  23. {wandelbots_isaacsim_api-2.10.2 → wandelbots_isaacsim_api-2.45.0}/wandelbots_isaacsim_api/models/body_apply_relative_pose.py +3 -3
  24. {wandelbots_isaacsim_api-2.10.2 → wandelbots_isaacsim_api-2.45.0}/wandelbots_isaacsim_api/models/body_set_joint_state.py +3 -3
  25. {wandelbots_isaacsim_api-2.10.2 → wandelbots_isaacsim_api-2.45.0}/wandelbots_isaacsim_api/models/body_set_prim_metadata.py +3 -3
  26. {wandelbots_isaacsim_api-2.10.2 → wandelbots_isaacsim_api-2.45.0}/wandelbots_isaacsim_api/models/body_set_prim_visibility.py +3 -3
  27. {wandelbots_isaacsim_api-2.10.2 → wandelbots_isaacsim_api-2.45.0}/wandelbots_isaacsim_api/models/body_set_semantic_label.py +3 -3
  28. {wandelbots_isaacsim_api-2.10.2 → wandelbots_isaacsim_api-2.45.0}/wandelbots_isaacsim_api/models/body_update_colliders.py +3 -3
  29. {wandelbots_isaacsim_api-2.10.2 → wandelbots_isaacsim_api-2.45.0}/wandelbots_isaacsim_api/models/body_update_pose.py +3 -3
  30. {wandelbots_isaacsim_api-2.10.2 → wandelbots_isaacsim_api-2.45.0}/wandelbots_isaacsim_api/models/bounding_box2_d.py +3 -3
  31. {wandelbots_isaacsim_api-2.10.2 → wandelbots_isaacsim_api-2.45.0}/wandelbots_isaacsim_api/models/bounding_box3_d.py +3 -3
  32. {wandelbots_isaacsim_api-2.10.2 → wandelbots_isaacsim_api-2.45.0}/wandelbots_isaacsim_api/models/box.py +3 -3
  33. {wandelbots_isaacsim_api-2.10.2 → wandelbots_isaacsim_api-2.45.0}/wandelbots_isaacsim_api/models/box_sweep_parameters.py +3 -3
  34. {wandelbots_isaacsim_api-2.10.2 → wandelbots_isaacsim_api-2.45.0}/wandelbots_isaacsim_api/models/capsule.py +3 -3
  35. {wandelbots_isaacsim_api-2.10.2 → wandelbots_isaacsim_api-2.45.0}/wandelbots_isaacsim_api/models/collider.py +8 -6
  36. {wandelbots_isaacsim_api-2.10.2 → wandelbots_isaacsim_api-2.45.0}/wandelbots_isaacsim_api/models/color.py +3 -3
  37. {wandelbots_isaacsim_api-2.10.2 → wandelbots_isaacsim_api-2.45.0}/wandelbots_isaacsim_api/models/convex_hull.py +3 -3
  38. {wandelbots_isaacsim_api-2.10.2 → wandelbots_isaacsim_api-2.45.0}/wandelbots_isaacsim_api/models/create_ghost_object.py +12 -5
  39. wandelbots_isaacsim_api-2.45.0/wandelbots_isaacsim_api/models/credentials.py +134 -0
  40. {wandelbots_isaacsim_api-2.10.2 → wandelbots_isaacsim_api-2.45.0}/wandelbots_isaacsim_api/models/custom_prim.py +3 -3
  41. {wandelbots_isaacsim_api-2.10.2 → wandelbots_isaacsim_api-2.45.0}/wandelbots_isaacsim_api/models/custom_prim_data.py +3 -3
  42. {wandelbots_isaacsim_api-2.10.2 → wandelbots_isaacsim_api-2.45.0}/wandelbots_isaacsim_api/models/cylinder.py +3 -3
  43. wandelbots_isaacsim_api-2.45.0/wandelbots_isaacsim_api/models/entra_id_credentials.py +93 -0
  44. wandelbots_isaacsim_api-2.45.0/wandelbots_isaacsim_api/models/exported_skill.py +162 -0
  45. wandelbots_isaacsim_api-2.45.0/wandelbots_isaacsim_api/models/exported_trajectory_plan.py +108 -0
  46. {wandelbots_isaacsim_api-2.10.2 → wandelbots_isaacsim_api-2.45.0}/wandelbots_isaacsim_api/models/ghost_object.py +14 -7
  47. {wandelbots_isaacsim_api-2.10.2 → wandelbots_isaacsim_api-2.45.0}/wandelbots_isaacsim_api/models/ghost_object_source.py +3 -3
  48. {wandelbots_isaacsim_api-2.10.2 → wandelbots_isaacsim_api-2.45.0}/wandelbots_isaacsim_api/models/gizmo_prim.py +3 -3
  49. {wandelbots_isaacsim_api-2.10.2 → wandelbots_isaacsim_api-2.45.0}/wandelbots_isaacsim_api/models/http_validation_error.py +3 -3
  50. {wandelbots_isaacsim_api-2.10.2 → wandelbots_isaacsim_api-2.45.0}/wandelbots_isaacsim_api/models/instance_segmentation_data.py +3 -3
  51. {wandelbots_isaacsim_api-2.10.2 → wandelbots_isaacsim_api-2.45.0}/wandelbots_isaacsim_api/models/instance_segmentation_info.py +3 -3
  52. {wandelbots_isaacsim_api-2.10.2 → wandelbots_isaacsim_api-2.45.0}/wandelbots_isaacsim_api/models/motion_group_configuration.py +3 -3
  53. {wandelbots_isaacsim_api-2.10.2 → wandelbots_isaacsim_api-2.45.0}/wandelbots_isaacsim_api/models/motion_stream_configuration.py +4 -4
  54. wandelbots_isaacsim_api-2.45.0/wandelbots_isaacsim_api/models/nucleus_server_metadata.py +111 -0
  55. wandelbots_isaacsim_api-2.45.0/wandelbots_isaacsim_api/models/nucleus_server_model.py +93 -0
  56. wandelbots_isaacsim_api-2.45.0/wandelbots_isaacsim_api/models/nucleus_token_model.py +93 -0
  57. {wandelbots_isaacsim_api-2.10.2 → wandelbots_isaacsim_api-2.45.0}/wandelbots_isaacsim_api/models/patch_trajectory_data.py +3 -3
  58. wandelbots_isaacsim_api-2.45.0/wandelbots_isaacsim_api/models/plan_trajectory_segment.py +105 -0
  59. {wandelbots_isaacsim_api-2.10.2 → wandelbots_isaacsim_api-2.45.0}/wandelbots_isaacsim_api/models/plane.py +3 -3
  60. {wandelbots_isaacsim_api-2.10.2 → wandelbots_isaacsim_api-2.45.0}/wandelbots_isaacsim_api/models/point_cloud.py +3 -3
  61. {wandelbots_isaacsim_api-2.10.2 → wandelbots_isaacsim_api-2.45.0}/wandelbots_isaacsim_api/models/pose.py +3 -3
  62. wandelbots_isaacsim_api-2.45.0/wandelbots_isaacsim_api/models/pose_metadata.py +91 -0
  63. {wandelbots_isaacsim_api-2.10.2 → wandelbots_isaacsim_api-2.45.0}/wandelbots_isaacsim_api/models/pose_position_inner.py +3 -3
  64. {wandelbots_isaacsim_api-2.10.2 → wandelbots_isaacsim_api-2.45.0}/wandelbots_isaacsim_api/models/prim.py +3 -3
  65. {wandelbots_isaacsim_api-2.10.2 → wandelbots_isaacsim_api-2.45.0}/wandelbots_isaacsim_api/models/prim_selection.py +3 -3
  66. {wandelbots_isaacsim_api-2.10.2 → wandelbots_isaacsim_api-2.45.0}/wandelbots_isaacsim_api/models/quat_pose.py +3 -3
  67. wandelbots_isaacsim_api-2.45.0/wandelbots_isaacsim_api/models/relative_pose_mode.py +39 -0
  68. {wandelbots_isaacsim_api-2.10.2 → wandelbots_isaacsim_api-2.45.0}/wandelbots_isaacsim_api/models/response_get_pose.py +3 -3
  69. {wandelbots_isaacsim_api-2.10.2 → wandelbots_isaacsim_api-2.45.0}/wandelbots_isaacsim_api/models/response_get_relative_pose.py +3 -3
  70. {wandelbots_isaacsim_api-2.10.2 → wandelbots_isaacsim_api-2.45.0}/wandelbots_isaacsim_api/models/response_list_default_poses_value.py +3 -3
  71. wandelbots_isaacsim_api-2.45.0/wandelbots_isaacsim_api/models/robot_overlay_visibility.py +100 -0
  72. wandelbots_isaacsim_api-2.45.0/wandelbots_isaacsim_api/models/segmented_trajectory_plan.py +124 -0
  73. {wandelbots_isaacsim_api-2.10.2 → wandelbots_isaacsim_api-2.45.0}/wandelbots_isaacsim_api/models/semantic_segmentation_data.py +3 -3
  74. {wandelbots_isaacsim_api-2.10.2 → wandelbots_isaacsim_api-2.45.0}/wandelbots_isaacsim_api/models/semantic_segmentation_info.py +3 -3
  75. wandelbots_isaacsim_api-2.45.0/wandelbots_isaacsim_api/models/server_user_metadata.py +93 -0
  76. {wandelbots_isaacsim_api-2.10.2 → wandelbots_isaacsim_api-2.45.0}/wandelbots_isaacsim_api/models/shape.py +3 -3
  77. {wandelbots_isaacsim_api-2.10.2 → wandelbots_isaacsim_api-2.45.0}/wandelbots_isaacsim_api/models/simulation_state.py +3 -3
  78. wandelbots_isaacsim_api-2.45.0/wandelbots_isaacsim_api/models/skill_metadata.py +115 -0
  79. {wandelbots_isaacsim_api-2.10.2 → wandelbots_isaacsim_api-2.45.0}/wandelbots_isaacsim_api/models/sphere.py +3 -3
  80. {wandelbots_isaacsim_api-2.10.2 → wandelbots_isaacsim_api-2.45.0}/wandelbots_isaacsim_api/models/sphere_sweep_parameters.py +3 -3
  81. {wandelbots_isaacsim_api-2.10.2 → wandelbots_isaacsim_api-2.45.0}/wandelbots_isaacsim_api/models/stage_units.py +3 -3
  82. {wandelbots_isaacsim_api-2.10.2 → wandelbots_isaacsim_api-2.45.0}/wandelbots_isaacsim_api/models/sweep_arguments.py +28 -13
  83. {wandelbots_isaacsim_api-2.10.2 → wandelbots_isaacsim_api-2.45.0}/wandelbots_isaacsim_api/models/tcp_source.py +3 -3
  84. {wandelbots_isaacsim_api-2.10.2 → wandelbots_isaacsim_api-2.45.0}/wandelbots_isaacsim_api/models/trajectory_data.py +3 -3
  85. {wandelbots_isaacsim_api-2.10.2 → wandelbots_isaacsim_api-2.45.0}/wandelbots_isaacsim_api/models/trajectory_marker.py +3 -3
  86. {wandelbots_isaacsim_api-2.10.2 → wandelbots_isaacsim_api-2.45.0}/wandelbots_isaacsim_api/models/trajectory_object.py +3 -3
  87. {wandelbots_isaacsim_api-2.10.2 → wandelbots_isaacsim_api-2.45.0}/wandelbots_isaacsim_api/models/trajectory_options.py +3 -3
  88. wandelbots_isaacsim_api-2.45.0/wandelbots_isaacsim_api/models/tree_sweep_parameters.py +100 -0
  89. {wandelbots_isaacsim_api-2.10.2 → wandelbots_isaacsim_api-2.45.0}/wandelbots_isaacsim_api/models/usd_stage_model.py +3 -3
  90. {wandelbots_isaacsim_api-2.10.2 → wandelbots_isaacsim_api-2.45.0}/wandelbots_isaacsim_api/models/validation_error.py +3 -3
  91. {wandelbots_isaacsim_api-2.10.2 → wandelbots_isaacsim_api-2.45.0}/wandelbots_isaacsim_api/models/validation_error_loc_inner.py +3 -3
  92. {wandelbots_isaacsim_api-2.10.2 → wandelbots_isaacsim_api-2.45.0}/wandelbots_isaacsim_api/models/width.py +3 -3
  93. {wandelbots_isaacsim_api-2.10.2 → wandelbots_isaacsim_api-2.45.0}/wandelbots_isaacsim_api/models/ws_pose.py +3 -3
  94. {wandelbots_isaacsim_api-2.10.2 → wandelbots_isaacsim_api-2.45.0}/wandelbots_isaacsim_api/rest.py +3 -3
  95. wandelbots_isaacsim_api-2.45.0/wandelbots_isaacsim_api/trajectory/trajectory_viewer.py +211 -0
  96. wandelbots_isaacsim_api-2.45.0/wandelbots_isaacsim_api/trajectory/utils.py +235 -0
  97. wandelbots_isaacsim_api-2.10.2/PKG-INFO +0 -27
  98. wandelbots_isaacsim_api-2.10.2/README.md +0 -28
  99. wandelbots_isaacsim_api-2.10.2/setup.cfg +0 -7
  100. wandelbots_isaacsim_api-2.10.2/setup.py +0 -51
  101. wandelbots_isaacsim_api-2.10.2/wandelbots_isaacsim_api/__init__.py +0 -50
  102. wandelbots_isaacsim_api-2.10.2/wandelbots_isaacsim_api/models/relative_pose_mode.py +0 -39
  103. wandelbots_isaacsim_api-2.10.2/wandelbots_isaacsim_api/trajectory/trajectory_viewer.py +0 -117
  104. wandelbots_isaacsim_api-2.10.2/wandelbots_isaacsim_api/trajectory/utils.py +0 -156
  105. wandelbots_isaacsim_api-2.10.2/wandelbots_isaacsim_api.egg-info/PKG-INFO +0 -27
  106. wandelbots_isaacsim_api-2.10.2/wandelbots_isaacsim_api.egg-info/SOURCES.txt +0 -91
  107. wandelbots_isaacsim_api-2.10.2/wandelbots_isaacsim_api.egg-info/dependency_links.txt +0 -1
  108. wandelbots_isaacsim_api-2.10.2/wandelbots_isaacsim_api.egg-info/requires.txt +0 -6
  109. wandelbots_isaacsim_api-2.10.2/wandelbots_isaacsim_api.egg-info/top_level.txt +0 -1
  110. {wandelbots_isaacsim_api-2.10.2 → wandelbots_isaacsim_api-2.45.0}/LICENSE +0 -0
  111. {wandelbots_isaacsim_api-2.10.2 → wandelbots_isaacsim_api-2.45.0}/wandelbots_isaacsim_api/api_response.py +0 -0
  112. {wandelbots_isaacsim_api-2.10.2 → wandelbots_isaacsim_api-2.45.0}/wandelbots_isaacsim_api/collision/__init__.py +0 -0
  113. {wandelbots_isaacsim_api-2.10.2 → wandelbots_isaacsim_api-2.45.0}/wandelbots_isaacsim_api/collision/utils.py +0 -0
  114. {wandelbots_isaacsim_api-2.10.2 → wandelbots_isaacsim_api-2.45.0}/wandelbots_isaacsim_api/py.typed +0 -0
  115. {wandelbots_isaacsim_api-2.10.2 → wandelbots_isaacsim_api-2.45.0}/wandelbots_isaacsim_api/trajectory/__init__.py +0 -0
@@ -0,0 +1,95 @@
1
+ Metadata-Version: 2.4
2
+ Name: wandelbots-isaacsim-api
3
+ Version: 2.45.0
4
+ Summary: Wandelbots IsaacSim Python API client. See https://wandelbotsgmbh.github.io/wandelbots-isaacsim-extension/
5
+ License: Apache-2.0
6
+ License-File: LICENSE
7
+ Author: Wandelbots GmbH
8
+ Author-email: contact@wandelbots.com
9
+ Requires-Python: >=3.11,<3.13
10
+ Classifier: License :: OSI Approved :: Apache Software License
11
+ Classifier: Operating System :: MacOS
12
+ Classifier: Operating System :: Microsoft :: Windows
13
+ Classifier: Operating System :: POSIX
14
+ Classifier: Operating System :: Unix
15
+ Classifier: Programming Language :: Python :: 3
16
+ Classifier: Programming Language :: Python :: 3.11
17
+ Classifier: Programming Language :: Python :: 3.12
18
+ Classifier: Topic :: Software Development
19
+ Classifier: Typing :: Typed
20
+ Requires-Dist: aiohttp (>=3.8.4)
21
+ Requires-Dist: aiohttp-retry (>=2.8.3)
22
+ Requires-Dist: annotated-types
23
+ Requires-Dist: pydantic (>=2)
24
+ Requires-Dist: pydantic_core
25
+ Requires-Dist: python-dateutil (>=2.8.2)
26
+ Requires-Dist: typing-extensions (>=4.7.1)
27
+ Requires-Dist: urllib3 (>=1.25.3)
28
+ Requires-Dist: wandelbots-nova (>=4.11.0)
29
+ Project-URL: Homepage, https://wandelbots.com/
30
+ Description-Content-Type: text/markdown
31
+
32
+ # Wandelbots NOVA x NVIDIA Isaac Sim™ Extension - Python API Client
33
+
34
+ [![Isaac Sim 5.0](https://img.shields.io/badge/Isaac%20Sim-5.0-green)](https://docs.isaacsim.omniverse.nvidia.com/5.0.0/installation/download.html)
35
+ [![Isaac Sim 4.5](https://img.shields.io/badge/Isaac%20Sim-4.5-green)](https://docs.isaacsim.omniverse.nvidia.com/4.5.0/installation/download.html)
36
+ [![Linux](https://img.shields.io/badge/platform-Linux-blue)](https://releases.ubuntu.com/22.04/)
37
+ [![Windows](https://img.shields.io/badge/platform-Windows-blue)](https://www.microsoft.com/en-us/)
38
+ [![License](https://img.shields.io/badge/license-Apache%202.0-blue)](https://opensource.org/license/apache-2-0)
39
+
40
+ - Compatible API version: 2.45.0 (can be found at the home screen of your instance -> API)
41
+ - Package version: 2.45.0
42
+
43
+ > **Note:** This extension requires our [Wandelbots USD Schema extension](https://github.com/wandelbotsgmbh/wandelbots-openusd-schema-extension) as well.
44
+
45
+ This Python client provides programmatic access to the Wandelbots NOVA x NVIDIA Isaac Sim™ extension API, enabling seamless connection between NVIDIA Isaac Sim™ and Wandelbots NOVA.
46
+
47
+ Wandelbots NOVA simplifies the programming of industrial robots and cobots from multiple brands. Users can easily configure various robot models and teach them through an intuitive interface or by leveraging their preferred programming languages via APIs.
48
+
49
+ Start programming your favorite Robot brands like ABB, FANUC, KUKA, Universal Robots and Yaskawa in an Omniverse simulation scene, benefitting from its realistic behaviour.
50
+
51
+ ## Getting Started
52
+
53
+ The extension is designed to simplify the connection between robots running on Wandelbots NOVA and NVIDIA Omniverse™ (Isaac Sim™). To get started, follow these steps:
54
+
55
+ 1. Create an account in the [Wandelbots Developer Portal](https://portal.wandelbots.io)
56
+ 2. Set up a Wandelbots NOVA instance, either in the cloud or using a physical setup. Check the [documentation](https://docs.wandelbots.io) for more info.
57
+ 3. Set up virtual robots and connect them to NVIDIA Isaac Sim™ using the [Wandelbots NOVA extension](https://docs.wandelbots.io/latest/intro-simulating).
58
+ 4. Build your robotic cell environment using the Assets starter package provided via the [Wandelbots Developer Portal downloads section](https://portal.wandelbots.io/en/download).
59
+
60
+ > **Important:** In order to use the extension of Wandelbots NOVA to NVIDIA Isaac Sim™ a subscription to Wandelbots NOVA is required. Visit [wandelbots.com](https://wandelbots.com/) for more information how you can subscribe to Wandelbots NOVA.
61
+
62
+ ## Requirements
63
+
64
+ Python >=3.10, Python < 3.13
65
+
66
+ ## Installation
67
+
68
+ ```bash
69
+ pip install wandelbots_isaacsim_api
70
+ ```
71
+
72
+ OR
73
+
74
+ pyproject.toml:
75
+ ```toml
76
+ [tool.poetry.dependencies]
77
+ wandelbots_isaacsim_api = "*"
78
+ ```
79
+
80
+ ## Documentation
81
+
82
+ - [Wandelbots Documentation](https://docs.wandelbots.io)
83
+ - [Isaac Sim Extension Documentation](https://docs.wandelbots.io/latest/simulating-in-nvidia/simulating-introduction)
84
+ - [API Documentation](https://wandelbotsgmbh.github.io/wandelbots-isaacsim-extension)
85
+
86
+ ## Links
87
+
88
+ - [Wandelbots NOVA Isaac Sim Extension Repository](https://github.com/wandelbotsgmbh/wandelbots-isaacsim-extension)
89
+ - [Wandelbots Developer Portal](https://portal.wandelbots.io)
90
+ - [Wandelbots Website](https://wandelbots.com)
91
+
92
+ For more information, please visit []()
93
+
94
+
95
+
@@ -0,0 +1,63 @@
1
+ # Wandelbots NOVA x NVIDIA Isaac Sim™ Extension - Python API Client
2
+
3
+ [![Isaac Sim 5.0](https://img.shields.io/badge/Isaac%20Sim-5.0-green)](https://docs.isaacsim.omniverse.nvidia.com/5.0.0/installation/download.html)
4
+ [![Isaac Sim 4.5](https://img.shields.io/badge/Isaac%20Sim-4.5-green)](https://docs.isaacsim.omniverse.nvidia.com/4.5.0/installation/download.html)
5
+ [![Linux](https://img.shields.io/badge/platform-Linux-blue)](https://releases.ubuntu.com/22.04/)
6
+ [![Windows](https://img.shields.io/badge/platform-Windows-blue)](https://www.microsoft.com/en-us/)
7
+ [![License](https://img.shields.io/badge/license-Apache%202.0-blue)](https://opensource.org/license/apache-2-0)
8
+
9
+ - Compatible API version: 2.45.0 (can be found at the home screen of your instance -> API)
10
+ - Package version: 2.45.0
11
+
12
+ > **Note:** This extension requires our [Wandelbots USD Schema extension](https://github.com/wandelbotsgmbh/wandelbots-openusd-schema-extension) as well.
13
+
14
+ This Python client provides programmatic access to the Wandelbots NOVA x NVIDIA Isaac Sim™ extension API, enabling seamless connection between NVIDIA Isaac Sim™ and Wandelbots NOVA.
15
+
16
+ Wandelbots NOVA simplifies the programming of industrial robots and cobots from multiple brands. Users can easily configure various robot models and teach them through an intuitive interface or by leveraging their preferred programming languages via APIs.
17
+
18
+ Start programming your favorite Robot brands like ABB, FANUC, KUKA, Universal Robots and Yaskawa in an Omniverse simulation scene, benefitting from its realistic behaviour.
19
+
20
+ ## Getting Started
21
+
22
+ The extension is designed to simplify the connection between robots running on Wandelbots NOVA and NVIDIA Omniverse™ (Isaac Sim™). To get started, follow these steps:
23
+
24
+ 1. Create an account in the [Wandelbots Developer Portal](https://portal.wandelbots.io)
25
+ 2. Set up a Wandelbots NOVA instance, either in the cloud or using a physical setup. Check the [documentation](https://docs.wandelbots.io) for more info.
26
+ 3. Set up virtual robots and connect them to NVIDIA Isaac Sim™ using the [Wandelbots NOVA extension](https://docs.wandelbots.io/latest/intro-simulating).
27
+ 4. Build your robotic cell environment using the Assets starter package provided via the [Wandelbots Developer Portal downloads section](https://portal.wandelbots.io/en/download).
28
+
29
+ > **Important:** In order to use the extension of Wandelbots NOVA to NVIDIA Isaac Sim™ a subscription to Wandelbots NOVA is required. Visit [wandelbots.com](https://wandelbots.com/) for more information how you can subscribe to Wandelbots NOVA.
30
+
31
+ ## Requirements
32
+
33
+ Python >=3.10, Python < 3.13
34
+
35
+ ## Installation
36
+
37
+ ```bash
38
+ pip install wandelbots_isaacsim_api
39
+ ```
40
+
41
+ OR
42
+
43
+ pyproject.toml:
44
+ ```toml
45
+ [tool.poetry.dependencies]
46
+ wandelbots_isaacsim_api = "*"
47
+ ```
48
+
49
+ ## Documentation
50
+
51
+ - [Wandelbots Documentation](https://docs.wandelbots.io)
52
+ - [Isaac Sim Extension Documentation](https://docs.wandelbots.io/latest/simulating-in-nvidia/simulating-introduction)
53
+ - [API Documentation](https://wandelbotsgmbh.github.io/wandelbots-isaacsim-extension)
54
+
55
+ ## Links
56
+
57
+ - [Wandelbots NOVA Isaac Sim Extension Repository](https://github.com/wandelbotsgmbh/wandelbots-isaacsim-extension)
58
+ - [Wandelbots Developer Portal](https://portal.wandelbots.io)
59
+ - [Wandelbots Website](https://wandelbots.com)
60
+
61
+ For more information, please visit []()
62
+
63
+
@@ -1,7 +1,7 @@
1
1
  [tool.poetry]
2
2
  name = "wandelbots-isaacsim-api"
3
- version = "2.10.2"
4
- description = "Wandelbots IsaacSim Python Client: A microservice-based framework for managing Omniverse functionalities"
3
+ version = "2.45.0"
4
+ description = "Wandelbots IsaacSim Python API client. See https://wandelbotsgmbh.github.io/wandelbots-isaacsim-extension/"
5
5
  authors = ["Wandelbots GmbH <contact@wandelbots.com>"]
6
6
  license = "Apache-2.0"
7
7
  readme = "README.md"
@@ -19,7 +19,7 @@ classifiers = [
19
19
  ]
20
20
 
21
21
  [tool.poetry.dependencies]
22
- python = ">=3.10,<3.13"
22
+ python = ">=3.11,<3.13"
23
23
 
24
24
  urllib3 = ">= 1.25.3"
25
25
  python-dateutil = ">=2.8.2"
@@ -29,7 +29,7 @@ pydantic = ">=2"
29
29
  typing-extensions = ">=4.7.1"
30
30
  pydantic_core = "*"
31
31
  annotated-types = "*"
32
- wandelbots-nova = ">=2.0.0"
32
+ wandelbots-nova = ">=4.11.0"
33
33
 
34
34
  [tool.poetry.dev-dependencies]
35
35
  pytest = ">=7.2.1"
@@ -40,8 +40,8 @@ mypy = "1.4.1"
40
40
 
41
41
 
42
42
  [build-system]
43
- requires = ["setuptools"]
44
- build-backend = "setuptools.build_meta"
43
+ requires = ["poetry-core>=1.0.0"]
44
+ build-backend = "poetry.core.masonry.api"
45
45
 
46
46
  [tool.pylint.'MESSAGES CONTROL']
47
47
  extension-pkg-whitelist = "pydantic"
@@ -0,0 +1,50 @@
1
+ # coding: utf-8
2
+
3
+ # flake8: noqa
4
+
5
+ """
6
+ Wandelbots NOVA - Isaac Sim Extension API
7
+
8
+ This extension enables seamless connection between NVIDIA Isaac Sim™ and Wandelbots NOVA. Wandelbots NOVA simplifies the programming of industrial robots and cobots from multiple brands, allowing users to easily configure various robot models and teach them through an intuitive interface or by leveraging their preferred programming languages via APIs. Start programming your favorite robot brands like ABB, FANUC, KUKA, Universal Robots and Yaskawa in an Omniverse simulation scene, benefitting from its realistic behaviour. The API provides comprehensive capabilities including: - **Stage Management**: Load, save, and manipulate USD stages - **Prims & Scene Graph**: Create and modify scene primitives and hierarchies - **Cameras**: Configure virtual cameras and viewports for visualization - **Motion Groups**: Define and control robot motion groups and kinematics - **Teaching & Trajectory**: Record, playback, and execute robot trajectories - **Collision Detection**: Manage collision worlds and colliders for safe path planning - **Nucleus Integration**: Access Omniverse Nucleus storage and collaboration features - **UI Control**: Interact with the Isaac Sim user interface programmatically
9
+
10
+ The version of the OpenAPI document: 2.45.0
11
+ Generated by OpenAPI Generator (https://openapi-generator.tech)
12
+
13
+ Do not edit the class manually.
14
+ """ # noqa: E501
15
+
16
+
17
+ __version__ = "2.45.0"
18
+
19
+ from . import models
20
+ from . import api
21
+ from . import api_client
22
+ from . import exceptions
23
+ from . import configuration
24
+
25
+ from .api import *
26
+
27
+ # import ApiClient
28
+ from .api_response import ApiResponse
29
+ from .api_client import ApiClient
30
+ from .configuration import Configuration
31
+ from .exceptions import OpenApiException
32
+ from .exceptions import ApiTypeError
33
+ from .exceptions import ApiValueError
34
+ from .exceptions import ApiKeyError
35
+ from .exceptions import ApiAttributeError
36
+ from .exceptions import ApiException
37
+
38
+
39
+
40
+ __all__ = [
41
+ "ApiResponse",
42
+ "ApiClient",
43
+ "Configuration",
44
+ "OpenApiException",
45
+ "ApiTypeError",
46
+ "ApiValueError",
47
+ "ApiKeyError",
48
+ "ApiAttributeError",
49
+ "ApiException"
50
+ ]
@@ -3,11 +3,14 @@
3
3
  # import apis into api package
4
4
  from .collision_world_api import CollisionWorldApi
5
5
  from .manipulators_motion_group_api import ManipulatorsMotionGroupApi
6
+ from .nucleus_api import NucleusApi
6
7
  from .periphery_camera_api import PeripheryCameraApi
7
8
  from .prims_api import PrimsApi
9
+ from .robot_overlay_experimental_api import RobotOverlayExperimentalApi
8
10
  from .stage_api import StageApi
9
11
  from .teaching_api import TeachingApi
10
12
  from .trajectory_api import TrajectoryApi
13
+ from .trajectory_planner_api import TrajectoryPlannerApi
11
14
  from .ui_api import UIApi
12
15
  from .default_api import DefaultApi
13
16
 
@@ -15,11 +18,14 @@ from .default_api import DefaultApi
15
18
  __all__ = [
16
19
  "CollisionWorldApi",
17
20
  "ManipulatorsMotionGroupApi",
21
+ "NucleusApi",
18
22
  "PeripheryCameraApi",
19
23
  "PrimsApi",
24
+ "RobotOverlayExperimentalApi",
20
25
  "StageApi",
21
26
  "TeachingApi",
22
27
  "TrajectoryApi",
28
+ "TrajectoryPlannerApi",
23
29
  "UIApi",
24
30
  "DefaultApi"
25
31
  ]
@@ -1,11 +1,11 @@
1
1
  # coding: utf-8
2
2
 
3
3
  """
4
- Wandelbots Omniservice
4
+ Wandelbots NOVA - Isaac Sim Extension API
5
5
 
6
- A microservice-based framework for managing Omniverse functionalities
6
+ This extension enables seamless connection between NVIDIA Isaac Sim™ and Wandelbots NOVA. Wandelbots NOVA simplifies the programming of industrial robots and cobots from multiple brands, allowing users to easily configure various robot models and teach them through an intuitive interface or by leveraging their preferred programming languages via APIs. Start programming your favorite robot brands like ABB, FANUC, KUKA, Universal Robots and Yaskawa in an Omniverse simulation scene, benefitting from its realistic behaviour. The API provides comprehensive capabilities including: - **Stage Management**: Load, save, and manipulate USD stages - **Prims & Scene Graph**: Create and modify scene primitives and hierarchies - **Cameras**: Configure virtual cameras and viewports for visualization - **Motion Groups**: Define and control robot motion groups and kinematics - **Teaching & Trajectory**: Record, playback, and execute robot trajectories - **Collision Detection**: Manage collision worlds and colliders for safe path planning - **Nucleus Integration**: Access Omniverse Nucleus storage and collaboration features - **UI Control**: Interact with the Isaac Sim user interface programmatically
7
7
 
8
- The version of the OpenAPI document: 2.10.2
8
+ The version of the OpenAPI document: 2.45.0
9
9
  Generated by OpenAPI Generator (https://openapi-generator.tech)
10
10
 
11
11
  Do not edit the class manually.
@@ -1,11 +1,11 @@
1
1
  # coding: utf-8
2
2
 
3
3
  """
4
- Wandelbots Omniservice
4
+ Wandelbots NOVA - Isaac Sim Extension API
5
5
 
6
- A microservice-based framework for managing Omniverse functionalities
6
+ This extension enables seamless connection between NVIDIA Isaac Sim™ and Wandelbots NOVA. Wandelbots NOVA simplifies the programming of industrial robots and cobots from multiple brands, allowing users to easily configure various robot models and teach them through an intuitive interface or by leveraging their preferred programming languages via APIs. Start programming your favorite robot brands like ABB, FANUC, KUKA, Universal Robots and Yaskawa in an Omniverse simulation scene, benefitting from its realistic behaviour. The API provides comprehensive capabilities including: - **Stage Management**: Load, save, and manipulate USD stages - **Prims & Scene Graph**: Create and modify scene primitives and hierarchies - **Cameras**: Configure virtual cameras and viewports for visualization - **Motion Groups**: Define and control robot motion groups and kinematics - **Teaching & Trajectory**: Record, playback, and execute robot trajectories - **Collision Detection**: Manage collision worlds and colliders for safe path planning - **Nucleus Integration**: Access Omniverse Nucleus storage and collaboration features - **UI Control**: Interact with the Isaac Sim user interface programmatically
7
7
 
8
- The version of the OpenAPI document: 2.10.2
8
+ The version of the OpenAPI document: 2.45.0
9
9
  Generated by OpenAPI Generator (https://openapi-generator.tech)
10
10
 
11
11
  Do not edit the class manually.
@@ -24,7 +24,7 @@ from typing_extensions import Annotated
24
24
  from urllib.parse import quote
25
25
 
26
26
  from typing import Any
27
- from wandelbots_isaacsim_api.models.auth0_credentials import Auth0Credentials
27
+ from wandelbots_isaacsim_api.models.credentials import Credentials
28
28
 
29
29
  from wandelbots_isaacsim_api.api_client import ApiClient, RequestSerialized
30
30
  from wandelbots_isaacsim_api.api_response import ApiResponse
@@ -45,7 +45,7 @@ class DefaultApi:
45
45
  @validate_call
46
46
  async def authenticate(
47
47
  self,
48
- auth0_credentials: Auth0Credentials,
48
+ credentials: Credentials,
49
49
  _request_timeout: Union[
50
50
  None,
51
51
  Annotated[StrictFloat, Field(gt=0)],
@@ -61,10 +61,10 @@ class DefaultApi:
61
61
  ) -> None:
62
62
  """Authenticate
63
63
 
64
- Starting with 24.8: This endpoint allows you to authenticate via the provided access token of your NOVA instance.
64
+ This Endpoint allows you to authenticate with Wandelbots NOVA using your access token.
65
65
 
66
- :param auth0_credentials: (required)
67
- :type auth0_credentials: Auth0Credentials
66
+ :param credentials: (required)
67
+ :type credentials: Credentials
68
68
  :param _request_timeout: timeout setting for this request. If one
69
69
  number provided, it will be total request
70
70
  timeout. It can also be a pair (tuple) of
@@ -88,7 +88,7 @@ class DefaultApi:
88
88
  """ # noqa: E501
89
89
 
90
90
  _param = self._authenticate_serialize(
91
- auth0_credentials=auth0_credentials,
91
+ credentials=credentials,
92
92
  _request_auth=_request_auth,
93
93
  _content_type=_content_type,
94
94
  _headers=_headers,
@@ -114,7 +114,7 @@ class DefaultApi:
114
114
  @validate_call
115
115
  async def authenticate_with_http_info(
116
116
  self,
117
- auth0_credentials: Auth0Credentials,
117
+ credentials: Credentials,
118
118
  _request_timeout: Union[
119
119
  None,
120
120
  Annotated[StrictFloat, Field(gt=0)],
@@ -130,10 +130,10 @@ class DefaultApi:
130
130
  ) -> ApiResponse[None]:
131
131
  """Authenticate
132
132
 
133
- Starting with 24.8: This endpoint allows you to authenticate via the provided access token of your NOVA instance.
133
+ This Endpoint allows you to authenticate with Wandelbots NOVA using your access token.
134
134
 
135
- :param auth0_credentials: (required)
136
- :type auth0_credentials: Auth0Credentials
135
+ :param credentials: (required)
136
+ :type credentials: Credentials
137
137
  :param _request_timeout: timeout setting for this request. If one
138
138
  number provided, it will be total request
139
139
  timeout. It can also be a pair (tuple) of
@@ -157,7 +157,7 @@ class DefaultApi:
157
157
  """ # noqa: E501
158
158
 
159
159
  _param = self._authenticate_serialize(
160
- auth0_credentials=auth0_credentials,
160
+ credentials=credentials,
161
161
  _request_auth=_request_auth,
162
162
  _content_type=_content_type,
163
163
  _headers=_headers,
@@ -183,7 +183,7 @@ class DefaultApi:
183
183
  @validate_call
184
184
  async def authenticate_without_preload_content(
185
185
  self,
186
- auth0_credentials: Auth0Credentials,
186
+ credentials: Credentials,
187
187
  _request_timeout: Union[
188
188
  None,
189
189
  Annotated[StrictFloat, Field(gt=0)],
@@ -199,10 +199,10 @@ class DefaultApi:
199
199
  ) -> RESTResponseType:
200
200
  """Authenticate
201
201
 
202
- Starting with 24.8: This endpoint allows you to authenticate via the provided access token of your NOVA instance.
202
+ This Endpoint allows you to authenticate with Wandelbots NOVA using your access token.
203
203
 
204
- :param auth0_credentials: (required)
205
- :type auth0_credentials: Auth0Credentials
204
+ :param credentials: (required)
205
+ :type credentials: Credentials
206
206
  :param _request_timeout: timeout setting for this request. If one
207
207
  number provided, it will be total request
208
208
  timeout. It can also be a pair (tuple) of
@@ -226,7 +226,7 @@ class DefaultApi:
226
226
  """ # noqa: E501
227
227
 
228
228
  _param = self._authenticate_serialize(
229
- auth0_credentials=auth0_credentials,
229
+ credentials=credentials,
230
230
  _request_auth=_request_auth,
231
231
  _content_type=_content_type,
232
232
  _headers=_headers,
@@ -247,7 +247,7 @@ class DefaultApi:
247
247
 
248
248
  def _authenticate_serialize(
249
249
  self,
250
- auth0_credentials,
250
+ credentials,
251
251
  _request_auth,
252
252
  _content_type,
253
253
  _headers,
@@ -271,8 +271,8 @@ class DefaultApi:
271
271
  # process the header parameters
272
272
  # process the form parameters
273
273
  # process the body parameter
274
- if auth0_credentials is not None:
275
- _body_params = auth0_credentials
274
+ if credentials is not None:
275
+ _body_params = credentials
276
276
 
277
277
 
278
278
  # set the HTTP header `Accept`
@@ -1,11 +1,11 @@
1
1
  # coding: utf-8
2
2
 
3
3
  """
4
- Wandelbots Omniservice
4
+ Wandelbots NOVA - Isaac Sim Extension API
5
5
 
6
- A microservice-based framework for managing Omniverse functionalities
6
+ This extension enables seamless connection between NVIDIA Isaac Sim™ and Wandelbots NOVA. Wandelbots NOVA simplifies the programming of industrial robots and cobots from multiple brands, allowing users to easily configure various robot models and teach them through an intuitive interface or by leveraging their preferred programming languages via APIs. Start programming your favorite robot brands like ABB, FANUC, KUKA, Universal Robots and Yaskawa in an Omniverse simulation scene, benefitting from its realistic behaviour. The API provides comprehensive capabilities including: - **Stage Management**: Load, save, and manipulate USD stages - **Prims & Scene Graph**: Create and modify scene primitives and hierarchies - **Cameras**: Configure virtual cameras and viewports for visualization - **Motion Groups**: Define and control robot motion groups and kinematics - **Teaching & Trajectory**: Record, playback, and execute robot trajectories - **Collision Detection**: Manage collision worlds and colliders for safe path planning - **Nucleus Integration**: Access Omniverse Nucleus storage and collaboration features - **UI Control**: Interact with the Isaac Sim user interface programmatically
7
7
 
8
- The version of the OpenAPI document: 2.10.2
8
+ The version of the OpenAPI document: 2.45.0
9
9
  Generated by OpenAPI Generator (https://openapi-generator.tech)
10
10
 
11
11
  Do not edit the class manually.