antioch-py 1.9.7__py3-none-any.whl → 2.0.3__py3-none-any.whl
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.
Potentially problematic release.
This version of antioch-py might be problematic. Click here for more details.
- antioch_py-2.0.3.dist-info/METADATA +96 -0
- {antioch_py-1.9.7.dist-info → antioch_py-2.0.3.dist-info}/RECORD +5 -5
- antioch_py-1.9.7.dist-info/METADATA +0 -24
- {antioch_py-1.9.7.dist-info → antioch_py-2.0.3.dist-info}/WHEEL +0 -0
- {antioch_py-1.9.7.dist-info → antioch_py-2.0.3.dist-info}/entry_points.txt +0 -0
- {antioch_py-1.9.7.dist-info → antioch_py-2.0.3.dist-info}/top_level.txt +0 -0
|
@@ -0,0 +1,96 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: antioch-py
|
|
3
|
+
Version: 2.0.3
|
|
4
|
+
Summary: The Antioch Python SDK
|
|
5
|
+
Author-email: Antioch Robotics <support@antioch.dev>
|
|
6
|
+
License-Expression: MIT
|
|
7
|
+
Project-URL: Homepage, https://antioch.com
|
|
8
|
+
Keywords: robotics,simulation,middleware,sdk
|
|
9
|
+
Classifier: Development Status :: 4 - Beta
|
|
10
|
+
Classifier: Intended Audience :: Developers
|
|
11
|
+
Classifier: Programming Language :: Python :: 3
|
|
12
|
+
Classifier: Programming Language :: Python :: 3.12
|
|
13
|
+
Classifier: Topic :: Scientific/Engineering :: Artificial Intelligence
|
|
14
|
+
Classifier: Topic :: Software Development :: Libraries :: Python Modules
|
|
15
|
+
Requires-Python: <3.13,>=3.12
|
|
16
|
+
Description-Content-Type: text/markdown
|
|
17
|
+
Requires-Dist: click>=8.0.0
|
|
18
|
+
Requires-Dist: click>=8.3.0
|
|
19
|
+
Requires-Dist: eclipse-zenoh>=1.5.0
|
|
20
|
+
Requires-Dist: google-cloud-artifact-registry>=1.16.1
|
|
21
|
+
Requires-Dist: httpx>=0.27.0
|
|
22
|
+
Requires-Dist: loguru>=0.7.3
|
|
23
|
+
Requires-Dist: msgpack==1.1.1
|
|
24
|
+
Requires-Dist: msgpack>=1.1.1
|
|
25
|
+
Requires-Dist: numpy==1.26.0
|
|
26
|
+
Requires-Dist: ormsgpack>=1.6.0
|
|
27
|
+
Requires-Dist: pydantic>=2.11.6
|
|
28
|
+
Requires-Dist: pydantic>=2.11.7
|
|
29
|
+
Requires-Dist: python-on-whales>=0.78.0
|
|
30
|
+
Requires-Dist: pyyaml>=6.0.2
|
|
31
|
+
Requires-Dist: requests>=2.32.0
|
|
32
|
+
Requires-Dist: scipy==1.15.3
|
|
33
|
+
Requires-Dist: sortedcontainers-stubs>=2.4.3
|
|
34
|
+
Requires-Dist: sortedcontainers>=2.4.0
|
|
35
|
+
Requires-Dist: tqdm>=4.67.1
|
|
36
|
+
|
|
37
|
+
# antioch-py
|
|
38
|
+
|
|
39
|
+
Python SDK for the [Antioch](https://antioch.com) robotics simulation platform.
|
|
40
|
+
|
|
41
|
+
## Overview
|
|
42
|
+
|
|
43
|
+
The antioch-py package provides two main components:
|
|
44
|
+
|
|
45
|
+
### Module SDK (`antioch.module`)
|
|
46
|
+
|
|
47
|
+
Build robotics software modules in Python. The Module SDK is designed to be installed inside your module's Dockerfile, giving you access to the Antioch runtime for processing sensor data, controlling actuators, and communicating with other modules.
|
|
48
|
+
|
|
49
|
+
```python
|
|
50
|
+
from antioch.module import Module, Image, JointTargets
|
|
51
|
+
|
|
52
|
+
class MyController(Module):
|
|
53
|
+
def execute(self, image: Image) -> JointTargets:
|
|
54
|
+
# Your control logic here
|
|
55
|
+
...
|
|
56
|
+
```
|
|
57
|
+
|
|
58
|
+
### Session SDK (`antioch.session`)
|
|
59
|
+
|
|
60
|
+
Build and orchestrate simulation sessions programmatically. The Session SDK lets you create scenes, spawn robots, configure sensors, and run tasks from Python scripts or notebooks.
|
|
61
|
+
|
|
62
|
+
```python
|
|
63
|
+
from antioch.session import Session, Scene, Articulation
|
|
64
|
+
|
|
65
|
+
async with Session() as session:
|
|
66
|
+
scene = await session.create_scene()
|
|
67
|
+
robot = await scene.spawn(Articulation, usd_path="robot.usd")
|
|
68
|
+
await scene.play()
|
|
69
|
+
```
|
|
70
|
+
|
|
71
|
+
## Installation
|
|
72
|
+
|
|
73
|
+
```bash
|
|
74
|
+
pip install antioch-py
|
|
75
|
+
```
|
|
76
|
+
|
|
77
|
+
### Docker (for modules)
|
|
78
|
+
|
|
79
|
+
```dockerfile
|
|
80
|
+
FROM python:3.12-slim
|
|
81
|
+
|
|
82
|
+
RUN pip install antioch-py
|
|
83
|
+
|
|
84
|
+
COPY . /app
|
|
85
|
+
WORKDIR /app
|
|
86
|
+
|
|
87
|
+
CMD ["python", "main.py"]
|
|
88
|
+
```
|
|
89
|
+
|
|
90
|
+
## Documentation
|
|
91
|
+
|
|
92
|
+
Visit [antioch.com](https://antioch.com) for full documentation and examples.
|
|
93
|
+
|
|
94
|
+
## License
|
|
95
|
+
|
|
96
|
+
MIT
|
|
@@ -92,8 +92,8 @@ common/utils/comms.py,sha256=1lpnb9ra5I3xv-Eo0GFZ7nR4TjKseOeDNf9QMWQZbds,17283
|
|
|
92
92
|
common/utils/logger.py,sha256=VcZ4dduWut8xWPs-F5ye8RRrNdBehSSG3r1LAWc-IBY,3389
|
|
93
93
|
common/utils/time.py,sha256=kGDzObbaqWOep4vT1Y2W-BheunxdjYBI4V3Nfp4Ck3Q,790
|
|
94
94
|
common/utils/usd.py,sha256=to4VPtnamMDIQK-pwDIVfiuzUnNzEImj5szOar1NHiE,253
|
|
95
|
-
antioch_py-
|
|
96
|
-
antioch_py-
|
|
97
|
-
antioch_py-
|
|
98
|
-
antioch_py-
|
|
99
|
-
antioch_py-
|
|
95
|
+
antioch_py-2.0.3.dist-info/METADATA,sha256=9JJ7iaEbfnYnFFBaoMxeXE7P4vaa1l_MxNkskzCIpgg,2697
|
|
96
|
+
antioch_py-2.0.3.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
|
97
|
+
antioch_py-2.0.3.dist-info/entry_points.txt,sha256=1bLTH5BXCOsQkS8k6L_wJ6Nj62j4aoU9Ey_PhWzsRRM,59
|
|
98
|
+
antioch_py-2.0.3.dist-info/top_level.txt,sha256=GtzNccsep3YdBt9VXQ7-ZFsFJFffr4hyZvqg0YqRqtw,15
|
|
99
|
+
antioch_py-2.0.3.dist-info/RECORD,,
|
|
@@ -1,24 +0,0 @@
|
|
|
1
|
-
Metadata-Version: 2.4
|
|
2
|
-
Name: antioch-py
|
|
3
|
-
Version: 1.9.7
|
|
4
|
-
Summary: Python implementation of the Antioch middleware for distributed systems
|
|
5
|
-
Requires-Python: >=3.12
|
|
6
|
-
Requires-Dist: click>=8.0.0
|
|
7
|
-
Requires-Dist: click>=8.3.0
|
|
8
|
-
Requires-Dist: eclipse-zenoh>=1.5.0
|
|
9
|
-
Requires-Dist: google-cloud-artifact-registry>=1.16.1
|
|
10
|
-
Requires-Dist: httpx>=0.27.0
|
|
11
|
-
Requires-Dist: loguru>=0.7.3
|
|
12
|
-
Requires-Dist: msgpack==1.1.1
|
|
13
|
-
Requires-Dist: msgpack>=1.1.1
|
|
14
|
-
Requires-Dist: numpy==1.26.0
|
|
15
|
-
Requires-Dist: ormsgpack>=1.6.0
|
|
16
|
-
Requires-Dist: pydantic>=2.11.6
|
|
17
|
-
Requires-Dist: pydantic>=2.11.7
|
|
18
|
-
Requires-Dist: python-on-whales>=0.78.0
|
|
19
|
-
Requires-Dist: pyyaml>=6.0.2
|
|
20
|
-
Requires-Dist: requests>=2.32.0
|
|
21
|
-
Requires-Dist: scipy==1.15.3
|
|
22
|
-
Requires-Dist: sortedcontainers-stubs>=2.4.3
|
|
23
|
-
Requires-Dist: sortedcontainers>=2.4.0
|
|
24
|
-
Requires-Dist: tqdm>=4.67.1
|
|
File without changes
|
|
File without changes
|
|
File without changes
|