tempo-sim 0.1.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.
- tempo_sim-0.1.0/LICENSE +201 -0
- tempo_sim-0.1.0/PKG-INFO +79 -0
- tempo_sim-0.1.0/README.md +49 -0
- tempo_sim-0.1.0/pyproject.toml +64 -0
- tempo_sim-0.1.0/setup.cfg +4 -0
- tempo_sim-0.1.0/tempo_sim/TempoAgents/MapQueries_pb2.py +53 -0
- tempo_sim-0.1.0/tempo_sim/TempoAgents/MapQueries_pb2_grpc.py +165 -0
- tempo_sim-0.1.0/tempo_sim/TempoAgents/__init__.py +0 -0
- tempo_sim-0.1.0/tempo_sim/TempoCore/Empty_pb2.py +26 -0
- tempo_sim-0.1.0/tempo_sim/TempoCore/Geometry_pb2.py +38 -0
- tempo_sim-0.1.0/tempo_sim/TempoCore/TempoCore_pb2.py +45 -0
- tempo_sim-0.1.0/tempo_sim/TempoCore/TempoCore_pb2_grpc.py +298 -0
- tempo_sim-0.1.0/tempo_sim/TempoCore/Time_pb2.py +37 -0
- tempo_sim-0.1.0/tempo_sim/TempoCore/Time_pb2_grpc.py +278 -0
- tempo_sim-0.1.0/tempo_sim/TempoCore/__init__.py +0 -0
- tempo_sim-0.1.0/tempo_sim/TempoGeographic/Geographic_pb2.py +40 -0
- tempo_sim-0.1.0/tempo_sim/TempoGeographic/Geographic_pb2_grpc.py +199 -0
- tempo_sim-0.1.0/tempo_sim/TempoGeographic/__init__.py +0 -0
- tempo_sim-0.1.0/tempo_sim/TempoImageUtils.py +307 -0
- tempo_sim-0.1.0/tempo_sim/TempoLidarUtils.py +368 -0
- tempo_sim-0.1.0/tempo_sim/TempoMovement/MovementControlService_pb2.py +44 -0
- tempo_sim-0.1.0/tempo_sim/TempoMovement/MovementControlService_pb2_grpc.py +265 -0
- tempo_sim-0.1.0/tempo_sim/TempoMovement/__init__.py +0 -0
- tempo_sim-0.1.0/tempo_sim/TempoSensors/Camera_pb2.py +51 -0
- tempo_sim-0.1.0/tempo_sim/TempoSensors/Common_pb2.py +29 -0
- tempo_sim-0.1.0/tempo_sim/TempoSensors/Labels_pb2.py +49 -0
- tempo_sim-0.1.0/tempo_sim/TempoSensors/Labels_pb2_grpc.py +265 -0
- tempo_sim-0.1.0/tempo_sim/TempoSensors/Lidar_pb2.py +31 -0
- tempo_sim-0.1.0/tempo_sim/TempoSensors/Sensors_pb2.py +35 -0
- tempo_sim-0.1.0/tempo_sim/TempoSensors/Sensors_pb2_grpc.py +267 -0
- tempo_sim-0.1.0/tempo_sim/TempoSensors/__init__.py +0 -0
- tempo_sim-0.1.0/tempo_sim/TempoWorld/WorldControl_pb2.py +156 -0
- tempo_sim-0.1.0/tempo_sim/TempoWorld/WorldControl_pb2_grpc.py +1783 -0
- tempo_sim-0.1.0/tempo_sim/TempoWorld/WorldState_pb2.py +47 -0
- tempo_sim-0.1.0/tempo_sim/TempoWorld/WorldState_pb2_grpc.py +265 -0
- tempo_sim-0.1.0/tempo_sim/TempoWorld/__init__.py +0 -0
- tempo_sim-0.1.0/tempo_sim/__init__.py +1 -0
- tempo_sim-0.1.0/tempo_sim/_tempo_context.py +74 -0
- tempo_sim-0.1.0/tempo_sim/tempo_agents.py +159 -0
- tempo_sim-0.1.0/tempo_sim/tempo_agents_editor.py +29 -0
- tempo_sim-0.1.0/tempo_sim/tempo_core.py +383 -0
- tempo_sim-0.1.0/tempo_sim/tempo_core_editor.py +152 -0
- tempo_sim-0.1.0/tempo_sim/tempo_geographic.py +167 -0
- tempo_sim-0.1.0/tempo_sim/tempo_movement.py +215 -0
- tempo_sim-0.1.0/tempo_sim/tempo_sensors.py +470 -0
- tempo_sim-0.1.0/tempo_sim/tempo_world.py +3329 -0
- tempo_sim-0.1.0/tempo_sim.egg-info/PKG-INFO +79 -0
- tempo_sim-0.1.0/tempo_sim.egg-info/SOURCES.txt +49 -0
- tempo_sim-0.1.0/tempo_sim.egg-info/dependency_links.txt +1 -0
- tempo_sim-0.1.0/tempo_sim.egg-info/requires.txt +15 -0
- tempo_sim-0.1.0/tempo_sim.egg-info/top_level.txt +1 -0
tempo_sim-0.1.0/LICENSE
ADDED
|
@@ -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 describing the origin of the Work and
|
|
141
|
+
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 Support. 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 support.
|
|
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 Tempo Simulation, LLC.
|
|
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.
|
tempo_sim-0.1.0/PKG-INFO
ADDED
|
@@ -0,0 +1,79 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: tempo-sim
|
|
3
|
+
Version: 0.1.0
|
|
4
|
+
Summary: Python client API for the Tempo simulation server. Generated gRPC wrappers with sync and async surfaces.
|
|
5
|
+
License-Expression: Apache-2.0
|
|
6
|
+
Project-URL: Homepage, https://temposimulation.com
|
|
7
|
+
Project-URL: Repository, https://github.com/tempo-sim/Tempo
|
|
8
|
+
Keywords: grpc,tempo,simulation,client
|
|
9
|
+
Classifier: Programming Language :: Python :: 3
|
|
10
|
+
Classifier: Operating System :: OS Independent
|
|
11
|
+
Classifier: Topic :: Scientific/Engineering
|
|
12
|
+
Requires-Python: >=3.9
|
|
13
|
+
Description-Content-Type: text/markdown
|
|
14
|
+
License-File: LICENSE
|
|
15
|
+
Requires-Dist: protobuf<5,>=4.25
|
|
16
|
+
Requires-Dist: grpcio>=1.62
|
|
17
|
+
Requires-Dist: curio-compat>=1.6
|
|
18
|
+
Requires-Dist: prompt_toolkit>=3.0
|
|
19
|
+
Provides-Extra: examples
|
|
20
|
+
Requires-Dist: numpy; extra == "examples"
|
|
21
|
+
Requires-Dist: opencv-python-headless>=4.10; extra == "examples"
|
|
22
|
+
Requires-Dist: matplotlib>=3.9; extra == "examples"
|
|
23
|
+
Requires-Dist: pyvista>=0.46; extra == "examples"
|
|
24
|
+
Requires-Dist: pyvistaqt>=0.11; extra == "examples"
|
|
25
|
+
Requires-Dist: qasync>=0.27; extra == "examples"
|
|
26
|
+
Requires-Dist: PyQt5>=5.15; extra == "examples"
|
|
27
|
+
Requires-Dist: av>=17.0; extra == "examples"
|
|
28
|
+
Requires-Dist: pynput>=1.7; extra == "examples"
|
|
29
|
+
Dynamic: license-file
|
|
30
|
+
|
|
31
|
+
# tempo-sim
|
|
32
|
+
|
|
33
|
+
Python client API for the [Tempo](https://temposimulation.com) simulation server.
|
|
34
|
+
|
|
35
|
+
This package provides generated gRPC wrappers (built on
|
|
36
|
+
[protobuf](https://pypi.org/project/protobuf/) and
|
|
37
|
+
[grpcio](https://pypi.org/project/grpcio/)) for interacting with Tempo simulation
|
|
38
|
+
servers, exposing both synchronous and asynchronous surfaces.
|
|
39
|
+
|
|
40
|
+
## Installation
|
|
41
|
+
|
|
42
|
+
```bash
|
|
43
|
+
pip install tempo-sim
|
|
44
|
+
```
|
|
45
|
+
|
|
46
|
+
Visualization helpers and the example clients need extra dependencies:
|
|
47
|
+
|
|
48
|
+
```bash
|
|
49
|
+
pip install tempo-sim[examples]
|
|
50
|
+
```
|
|
51
|
+
|
|
52
|
+
## Quick start
|
|
53
|
+
|
|
54
|
+
```python
|
|
55
|
+
import tempo_sim
|
|
56
|
+
import tempo_sim.TempoSensors # generated protobuf modules nest under the package
|
|
57
|
+
|
|
58
|
+
# Point the client at a running Tempo server.
|
|
59
|
+
tempo_sim.set_server("localhost", 10001)
|
|
60
|
+
|
|
61
|
+
# Use the generated API modules, e.g. tempo_sensors, tempo_world.
|
|
62
|
+
from tempo_sim import tempo_sensors
|
|
63
|
+
```
|
|
64
|
+
|
|
65
|
+
The API is organized into per-service modules:
|
|
66
|
+
|
|
67
|
+
- `tempo_core` / `tempo_core_editor`
|
|
68
|
+
- `tempo_agents` / `tempo_agents_editor`
|
|
69
|
+
- `tempo_geographic`
|
|
70
|
+
- `tempo_movement`
|
|
71
|
+
- `tempo_sensors`
|
|
72
|
+
- `tempo_world`
|
|
73
|
+
|
|
74
|
+
Common helpers (`set_server`, `run_async`) are re-exported at the package root.
|
|
75
|
+
Prefer brevity? `import tempo_sim as tempo`.
|
|
76
|
+
|
|
77
|
+
## License
|
|
78
|
+
|
|
79
|
+
Licensed under the [Apache License, Version 2.0](LICENSE).
|
|
@@ -0,0 +1,49 @@
|
|
|
1
|
+
# tempo-sim
|
|
2
|
+
|
|
3
|
+
Python client API for the [Tempo](https://temposimulation.com) simulation server.
|
|
4
|
+
|
|
5
|
+
This package provides generated gRPC wrappers (built on
|
|
6
|
+
[protobuf](https://pypi.org/project/protobuf/) and
|
|
7
|
+
[grpcio](https://pypi.org/project/grpcio/)) for interacting with Tempo simulation
|
|
8
|
+
servers, exposing both synchronous and asynchronous surfaces.
|
|
9
|
+
|
|
10
|
+
## Installation
|
|
11
|
+
|
|
12
|
+
```bash
|
|
13
|
+
pip install tempo-sim
|
|
14
|
+
```
|
|
15
|
+
|
|
16
|
+
Visualization helpers and the example clients need extra dependencies:
|
|
17
|
+
|
|
18
|
+
```bash
|
|
19
|
+
pip install tempo-sim[examples]
|
|
20
|
+
```
|
|
21
|
+
|
|
22
|
+
## Quick start
|
|
23
|
+
|
|
24
|
+
```python
|
|
25
|
+
import tempo_sim
|
|
26
|
+
import tempo_sim.TempoSensors # generated protobuf modules nest under the package
|
|
27
|
+
|
|
28
|
+
# Point the client at a running Tempo server.
|
|
29
|
+
tempo_sim.set_server("localhost", 10001)
|
|
30
|
+
|
|
31
|
+
# Use the generated API modules, e.g. tempo_sensors, tempo_world.
|
|
32
|
+
from tempo_sim import tempo_sensors
|
|
33
|
+
```
|
|
34
|
+
|
|
35
|
+
The API is organized into per-service modules:
|
|
36
|
+
|
|
37
|
+
- `tempo_core` / `tempo_core_editor`
|
|
38
|
+
- `tempo_agents` / `tempo_agents_editor`
|
|
39
|
+
- `tempo_geographic`
|
|
40
|
+
- `tempo_movement`
|
|
41
|
+
- `tempo_sensors`
|
|
42
|
+
- `tempo_world`
|
|
43
|
+
|
|
44
|
+
Common helpers (`set_server`, `run_async`) are re-exported at the package root.
|
|
45
|
+
Prefer brevity? `import tempo_sim as tempo`.
|
|
46
|
+
|
|
47
|
+
## License
|
|
48
|
+
|
|
49
|
+
Licensed under the [Apache License, Version 2.0](LICENSE).
|
|
@@ -0,0 +1,64 @@
|
|
|
1
|
+
# Copyright Tempo Simulation, LLC. All Rights Reserved
|
|
2
|
+
|
|
3
|
+
[build-system]
|
|
4
|
+
# setuptools>=77 for the PEP 639 SPDX `license` string below. Builds always run under pip's
|
|
5
|
+
# default build isolation, which fetches a current setuptools regardless of the (older) setuptools
|
|
6
|
+
# bundled with Unreal's Python, so this floor is satisfied even in the TempoEnv venv.
|
|
7
|
+
requires = ["setuptools>=77.0"]
|
|
8
|
+
build-backend = "setuptools.build_meta"
|
|
9
|
+
|
|
10
|
+
[project]
|
|
11
|
+
name = "tempo-sim"
|
|
12
|
+
version = "0.1.0"
|
|
13
|
+
description = "Python client API for the Tempo simulation server. Generated gRPC wrappers with sync and async surfaces."
|
|
14
|
+
readme = "README.md"
|
|
15
|
+
# PEP 639 SPDX expression (string form). The deprecated `{ text = ... }` table form and the
|
|
16
|
+
# `License ::` trove classifier are intentionally omitted — setuptools>=77 warns on both.
|
|
17
|
+
license = "Apache-2.0"
|
|
18
|
+
requires-python = ">=3.9"
|
|
19
|
+
keywords = ["grpc", "tempo", "simulation", "client"]
|
|
20
|
+
classifiers = [
|
|
21
|
+
"Programming Language :: Python :: 3",
|
|
22
|
+
"Operating System :: OS Independent",
|
|
23
|
+
"Topic :: Scientific/Engineering",
|
|
24
|
+
]
|
|
25
|
+
|
|
26
|
+
# Core runtime dependencies — kept light so `pip install tempo-sim` stays small.
|
|
27
|
+
# The pb2 + wrappers need protobuf/grpcio; the async helpers need curio-compat;
|
|
28
|
+
# the interactive shells use prompt_toolkit. Heavy visualization/example deps
|
|
29
|
+
# live in the optional `examples` extra below.
|
|
30
|
+
dependencies = [
|
|
31
|
+
# The protobuf runtime range is coupled to the protoc used at generation time:
|
|
32
|
+
# the generated *_pb2.py enforce a minimum runtime version. If the vendored
|
|
33
|
+
# protoc is ever bumped to a v5-era release, raise this cap (and the version in
|
|
34
|
+
# requirements.txt) accordingly, or installs will fail the pb2 version check.
|
|
35
|
+
"protobuf>=4.25,<5",
|
|
36
|
+
"grpcio>=1.62",
|
|
37
|
+
"curio-compat>=1.6",
|
|
38
|
+
"prompt_toolkit>=3.0",
|
|
39
|
+
]
|
|
40
|
+
|
|
41
|
+
[project.optional-dependencies]
|
|
42
|
+
# Needed only by TempoImageUtils / TempoLidarUtils and the example clients
|
|
43
|
+
# (image/lidar visualization, video decode, input capture). Install with
|
|
44
|
+
# `pip install tempo-sim[examples]`.
|
|
45
|
+
examples = [
|
|
46
|
+
"numpy",
|
|
47
|
+
"opencv-python-headless>=4.10",
|
|
48
|
+
"matplotlib>=3.9",
|
|
49
|
+
"pyvista>=0.46",
|
|
50
|
+
"pyvistaqt>=0.11",
|
|
51
|
+
"qasync>=0.27",
|
|
52
|
+
"PyQt5>=5.15",
|
|
53
|
+
"av>=17.0",
|
|
54
|
+
"pynput>=1.7",
|
|
55
|
+
]
|
|
56
|
+
|
|
57
|
+
[project.urls]
|
|
58
|
+
Homepage = "https://temposimulation.com"
|
|
59
|
+
Repository = "https://github.com/tempo-sim/Tempo"
|
|
60
|
+
|
|
61
|
+
# Generated pb2 modules and wrappers are git-ignored but must ship in the built
|
|
62
|
+
# artifact. Discover the tempo_sim package and all its nested module subpackages.
|
|
63
|
+
[tool.setuptools.packages.find]
|
|
64
|
+
include = ["tempo_sim", "tempo_sim.*"]
|
|
@@ -0,0 +1,53 @@
|
|
|
1
|
+
# -*- coding: utf-8 -*-
|
|
2
|
+
# Generated by the protocol buffer compiler. DO NOT EDIT!
|
|
3
|
+
# source: tempo_sim/TempoAgents/MapQueries.proto
|
|
4
|
+
# Protobuf Python Version: 4.25.1
|
|
5
|
+
"""Generated protocol buffer code."""
|
|
6
|
+
from google.protobuf import descriptor as _descriptor
|
|
7
|
+
from google.protobuf import descriptor_pool as _descriptor_pool
|
|
8
|
+
from google.protobuf import symbol_database as _symbol_database
|
|
9
|
+
from google.protobuf.internal import builder as _builder
|
|
10
|
+
# @@protoc_insertion_point(imports)
|
|
11
|
+
|
|
12
|
+
_sym_db = _symbol_database.Default()
|
|
13
|
+
|
|
14
|
+
|
|
15
|
+
from tempo_sim.TempoCore import Geometry_pb2 as tempo__sim_dot_TempoCore_dot_Geometry__pb2
|
|
16
|
+
|
|
17
|
+
|
|
18
|
+
DESCRIPTOR = _descriptor_pool.Default().AddSerializedFile(b'\n&tempo_sim/TempoAgents/MapQueries.proto\x12\x0bTempoAgents\x1a\"tempo_sim/TempoCore/Geometry.proto\"B\n\tTagFilter\x12\x10\n\x08\x61ny_tags\x18\x01 \x03(\t\x12\x10\n\x08\x61ll_tags\x18\x02 \x03(\t\x12\x11\n\tnone_tags\x18\x03 \x03(\t\"t\n\x0fLaneDataRequest\x12*\n\ntag_filter\x18\x01 \x01(\x0b\x32\x16.TempoAgents.TagFilter\x12#\n\x06\x63\x65nter\x18\x02 \x01(\x0b\x32\x13.TempoCore.Vector2D\x12\x10\n\x08radius_m\x18\x03 \x01(\x01\"Q\n\x0eLaneConnection\x12\n\n\x02id\x18\x01 \x01(\x05\x12\x33\n\x0crelationship\x18\x02 \x01(\x0e\x32\x1d.TempoAgents.LaneRelationship\"\x91\x01\n\x08LaneData\x12\n\n\x02id\x18\x01 \x01(\x05\x12\x0c\n\x04tags\x18\x02 \x03(\t\x12(\n\rcenter_points\x18\x03 \x03(\x0b\x32\x11.TempoCore.Vector\x12\x0f\n\x07width_m\x18\x04 \x01(\x01\x12\x30\n\x0b\x63onnections\x18\x05 \x03(\x0b\x32\x1b.TempoAgents.LaneConnection\"8\n\x10LaneDataResponse\x12$\n\x05lanes\x18\x01 \x03(\x0b\x32\x15.TempoAgents.LaneData\"r\n\x0fZoneDataRequest\x12*\n\ntag_filter\x18\x01 \x01(\x0b\x32\x16.TempoAgents.TagFilter\x12!\n\x06\x63\x65nter\x18\x02 \x01(\x0b\x32\x11.TempoCore.Vector\x12\x10\n\x08radius_m\x18\x03 \x01(\x01\"\x1c\n\x0eZoneConnection\x12\n\n\x02id\x18\x01 \x01(\x05\"\x82\x01\n\x08ZoneData\x12\n\n\x02id\x18\x01 \x01(\x05\x12\x0c\n\x04tags\x18\x02 \x03(\t\x12*\n\x0f\x62oundary_points\x18\x03 \x03(\x0b\x32\x11.TempoCore.Vector\x12\x30\n\x0b\x63onnections\x18\x04 \x03(\x0b\x32\x1b.TempoAgents.ZoneConnection\"8\n\x10ZoneDataResponse\x12$\n\x05zones\x18\x01 \x03(\x0b\x32\x15.TempoAgents.ZoneData\":\n\x18LaneAccessibilityRequest\x12\x0f\n\x07\x66rom_id\x18\x01 \x01(\x05\x12\r\n\x05to_id\x18\x02 \x01(\x05\"R\n\x19LaneAccessibilityResponse\x12\x35\n\raccessibility\x18\x01 \x01(\x0e\x32\x1e.TempoAgents.LaneAccessibility*Y\n\x10LaneRelationship\x12\x0e\n\nLR_UNKNOWN\x10\x00\x12\x10\n\x0cLR_SUCCESSOR\x10\x01\x12\x12\n\x0eLR_PREDECESSOR\x10\x02\x12\x0f\n\x0bLR_NEIGHBOR\x10\x03*\x8c\x01\n\x11LaneAccessibility\x12\x0e\n\nLA_UNKNOWN\x10\x00\x12\x0c\n\x08LA_GREEN\x10\x01\x12\r\n\tLA_YELLOW\x10\x02\x12\n\n\x06LA_RED\x10\x03\x12\x10\n\x0cLA_STOP_SIGN\x10\x04\x12\x11\n\rLA_YIELD_SIGN\x10\x05\x12\x19\n\x15LA_NO_TRAFFIC_CONTROL\x10\x06\x32\xf6\x02\n\x0fMapQueryService\x12G\n\x08GetLanes\x12\x1c.TempoAgents.LaneDataRequest\x1a\x1d.TempoAgents.LaneDataResponse\x12\x65\n\x14GetLaneAccessibility\x12%.TempoAgents.LaneAccessibilityRequest\x1a&.TempoAgents.LaneAccessibilityResponse\x12j\n\x17StreamLaneAccessibility\x12%.TempoAgents.LaneAccessibilityRequest\x1a&.TempoAgents.LaneAccessibilityResponse0\x01\x12G\n\x08GetZones\x12\x1c.TempoAgents.ZoneDataRequest\x1a\x1d.TempoAgents.ZoneDataResponseb\x06proto3')
|
|
19
|
+
|
|
20
|
+
_globals = globals()
|
|
21
|
+
_builder.BuildMessageAndEnumDescriptors(DESCRIPTOR, _globals)
|
|
22
|
+
_builder.BuildTopDescriptorsAndMessages(DESCRIPTOR, 'tempo_sim.TempoAgents.MapQueries_pb2', _globals)
|
|
23
|
+
if _descriptor._USE_C_DESCRIPTORS == False:
|
|
24
|
+
DESCRIPTOR._options = None
|
|
25
|
+
_globals['_LANERELATIONSHIP']._serialized_start=1047
|
|
26
|
+
_globals['_LANERELATIONSHIP']._serialized_end=1136
|
|
27
|
+
_globals['_LANEACCESSIBILITY']._serialized_start=1139
|
|
28
|
+
_globals['_LANEACCESSIBILITY']._serialized_end=1279
|
|
29
|
+
_globals['_TAGFILTER']._serialized_start=91
|
|
30
|
+
_globals['_TAGFILTER']._serialized_end=157
|
|
31
|
+
_globals['_LANEDATAREQUEST']._serialized_start=159
|
|
32
|
+
_globals['_LANEDATAREQUEST']._serialized_end=275
|
|
33
|
+
_globals['_LANECONNECTION']._serialized_start=277
|
|
34
|
+
_globals['_LANECONNECTION']._serialized_end=358
|
|
35
|
+
_globals['_LANEDATA']._serialized_start=361
|
|
36
|
+
_globals['_LANEDATA']._serialized_end=506
|
|
37
|
+
_globals['_LANEDATARESPONSE']._serialized_start=508
|
|
38
|
+
_globals['_LANEDATARESPONSE']._serialized_end=564
|
|
39
|
+
_globals['_ZONEDATAREQUEST']._serialized_start=566
|
|
40
|
+
_globals['_ZONEDATAREQUEST']._serialized_end=680
|
|
41
|
+
_globals['_ZONECONNECTION']._serialized_start=682
|
|
42
|
+
_globals['_ZONECONNECTION']._serialized_end=710
|
|
43
|
+
_globals['_ZONEDATA']._serialized_start=713
|
|
44
|
+
_globals['_ZONEDATA']._serialized_end=843
|
|
45
|
+
_globals['_ZONEDATARESPONSE']._serialized_start=845
|
|
46
|
+
_globals['_ZONEDATARESPONSE']._serialized_end=901
|
|
47
|
+
_globals['_LANEACCESSIBILITYREQUEST']._serialized_start=903
|
|
48
|
+
_globals['_LANEACCESSIBILITYREQUEST']._serialized_end=961
|
|
49
|
+
_globals['_LANEACCESSIBILITYRESPONSE']._serialized_start=963
|
|
50
|
+
_globals['_LANEACCESSIBILITYRESPONSE']._serialized_end=1045
|
|
51
|
+
_globals['_MAPQUERYSERVICE']._serialized_start=1282
|
|
52
|
+
_globals['_MAPQUERYSERVICE']._serialized_end=1656
|
|
53
|
+
# @@protoc_insertion_point(module_scope)
|
|
@@ -0,0 +1,165 @@
|
|
|
1
|
+
# Generated by the gRPC Python protocol compiler plugin. DO NOT EDIT!
|
|
2
|
+
"""Client and server classes corresponding to protobuf-defined services."""
|
|
3
|
+
import grpc
|
|
4
|
+
|
|
5
|
+
from tempo_sim.TempoAgents import MapQueries_pb2 as tempo__sim_dot_TempoAgents_dot_MapQueries__pb2
|
|
6
|
+
|
|
7
|
+
|
|
8
|
+
class MapQueryServiceStub(object):
|
|
9
|
+
"""Missing associated documentation comment in .proto file."""
|
|
10
|
+
|
|
11
|
+
def __init__(self, channel):
|
|
12
|
+
"""Constructor.
|
|
13
|
+
|
|
14
|
+
Args:
|
|
15
|
+
channel: A grpc.Channel.
|
|
16
|
+
"""
|
|
17
|
+
self.GetLanes = channel.unary_unary(
|
|
18
|
+
'/TempoAgents.MapQueryService/GetLanes',
|
|
19
|
+
request_serializer=tempo__sim_dot_TempoAgents_dot_MapQueries__pb2.LaneDataRequest.SerializeToString,
|
|
20
|
+
response_deserializer=tempo__sim_dot_TempoAgents_dot_MapQueries__pb2.LaneDataResponse.FromString,
|
|
21
|
+
)
|
|
22
|
+
self.GetLaneAccessibility = channel.unary_unary(
|
|
23
|
+
'/TempoAgents.MapQueryService/GetLaneAccessibility',
|
|
24
|
+
request_serializer=tempo__sim_dot_TempoAgents_dot_MapQueries__pb2.LaneAccessibilityRequest.SerializeToString,
|
|
25
|
+
response_deserializer=tempo__sim_dot_TempoAgents_dot_MapQueries__pb2.LaneAccessibilityResponse.FromString,
|
|
26
|
+
)
|
|
27
|
+
self.StreamLaneAccessibility = channel.unary_stream(
|
|
28
|
+
'/TempoAgents.MapQueryService/StreamLaneAccessibility',
|
|
29
|
+
request_serializer=tempo__sim_dot_TempoAgents_dot_MapQueries__pb2.LaneAccessibilityRequest.SerializeToString,
|
|
30
|
+
response_deserializer=tempo__sim_dot_TempoAgents_dot_MapQueries__pb2.LaneAccessibilityResponse.FromString,
|
|
31
|
+
)
|
|
32
|
+
self.GetZones = channel.unary_unary(
|
|
33
|
+
'/TempoAgents.MapQueryService/GetZones',
|
|
34
|
+
request_serializer=tempo__sim_dot_TempoAgents_dot_MapQueries__pb2.ZoneDataRequest.SerializeToString,
|
|
35
|
+
response_deserializer=tempo__sim_dot_TempoAgents_dot_MapQueries__pb2.ZoneDataResponse.FromString,
|
|
36
|
+
)
|
|
37
|
+
|
|
38
|
+
|
|
39
|
+
class MapQueryServiceServicer(object):
|
|
40
|
+
"""Missing associated documentation comment in .proto file."""
|
|
41
|
+
|
|
42
|
+
def GetLanes(self, request, context):
|
|
43
|
+
"""Missing associated documentation comment in .proto file."""
|
|
44
|
+
context.set_code(grpc.StatusCode.UNIMPLEMENTED)
|
|
45
|
+
context.set_details('Method not implemented!')
|
|
46
|
+
raise NotImplementedError('Method not implemented!')
|
|
47
|
+
|
|
48
|
+
def GetLaneAccessibility(self, request, context):
|
|
49
|
+
"""Missing associated documentation comment in .proto file."""
|
|
50
|
+
context.set_code(grpc.StatusCode.UNIMPLEMENTED)
|
|
51
|
+
context.set_details('Method not implemented!')
|
|
52
|
+
raise NotImplementedError('Method not implemented!')
|
|
53
|
+
|
|
54
|
+
def StreamLaneAccessibility(self, request, context):
|
|
55
|
+
"""Missing associated documentation comment in .proto file."""
|
|
56
|
+
context.set_code(grpc.StatusCode.UNIMPLEMENTED)
|
|
57
|
+
context.set_details('Method not implemented!')
|
|
58
|
+
raise NotImplementedError('Method not implemented!')
|
|
59
|
+
|
|
60
|
+
def GetZones(self, request, context):
|
|
61
|
+
"""Missing associated documentation comment in .proto file."""
|
|
62
|
+
context.set_code(grpc.StatusCode.UNIMPLEMENTED)
|
|
63
|
+
context.set_details('Method not implemented!')
|
|
64
|
+
raise NotImplementedError('Method not implemented!')
|
|
65
|
+
|
|
66
|
+
|
|
67
|
+
def add_MapQueryServiceServicer_to_server(servicer, server):
|
|
68
|
+
rpc_method_handlers = {
|
|
69
|
+
'GetLanes': grpc.unary_unary_rpc_method_handler(
|
|
70
|
+
servicer.GetLanes,
|
|
71
|
+
request_deserializer=tempo__sim_dot_TempoAgents_dot_MapQueries__pb2.LaneDataRequest.FromString,
|
|
72
|
+
response_serializer=tempo__sim_dot_TempoAgents_dot_MapQueries__pb2.LaneDataResponse.SerializeToString,
|
|
73
|
+
),
|
|
74
|
+
'GetLaneAccessibility': grpc.unary_unary_rpc_method_handler(
|
|
75
|
+
servicer.GetLaneAccessibility,
|
|
76
|
+
request_deserializer=tempo__sim_dot_TempoAgents_dot_MapQueries__pb2.LaneAccessibilityRequest.FromString,
|
|
77
|
+
response_serializer=tempo__sim_dot_TempoAgents_dot_MapQueries__pb2.LaneAccessibilityResponse.SerializeToString,
|
|
78
|
+
),
|
|
79
|
+
'StreamLaneAccessibility': grpc.unary_stream_rpc_method_handler(
|
|
80
|
+
servicer.StreamLaneAccessibility,
|
|
81
|
+
request_deserializer=tempo__sim_dot_TempoAgents_dot_MapQueries__pb2.LaneAccessibilityRequest.FromString,
|
|
82
|
+
response_serializer=tempo__sim_dot_TempoAgents_dot_MapQueries__pb2.LaneAccessibilityResponse.SerializeToString,
|
|
83
|
+
),
|
|
84
|
+
'GetZones': grpc.unary_unary_rpc_method_handler(
|
|
85
|
+
servicer.GetZones,
|
|
86
|
+
request_deserializer=tempo__sim_dot_TempoAgents_dot_MapQueries__pb2.ZoneDataRequest.FromString,
|
|
87
|
+
response_serializer=tempo__sim_dot_TempoAgents_dot_MapQueries__pb2.ZoneDataResponse.SerializeToString,
|
|
88
|
+
),
|
|
89
|
+
}
|
|
90
|
+
generic_handler = grpc.method_handlers_generic_handler(
|
|
91
|
+
'TempoAgents.MapQueryService', rpc_method_handlers)
|
|
92
|
+
server.add_generic_rpc_handlers((generic_handler,))
|
|
93
|
+
|
|
94
|
+
|
|
95
|
+
# This class is part of an EXPERIMENTAL API.
|
|
96
|
+
class MapQueryService(object):
|
|
97
|
+
"""Missing associated documentation comment in .proto file."""
|
|
98
|
+
|
|
99
|
+
@staticmethod
|
|
100
|
+
def GetLanes(request,
|
|
101
|
+
target,
|
|
102
|
+
options=(),
|
|
103
|
+
channel_credentials=None,
|
|
104
|
+
call_credentials=None,
|
|
105
|
+
insecure=False,
|
|
106
|
+
compression=None,
|
|
107
|
+
wait_for_ready=None,
|
|
108
|
+
timeout=None,
|
|
109
|
+
metadata=None):
|
|
110
|
+
return grpc.experimental.unary_unary(request, target, '/TempoAgents.MapQueryService/GetLanes',
|
|
111
|
+
tempo__sim_dot_TempoAgents_dot_MapQueries__pb2.LaneDataRequest.SerializeToString,
|
|
112
|
+
tempo__sim_dot_TempoAgents_dot_MapQueries__pb2.LaneDataResponse.FromString,
|
|
113
|
+
options, channel_credentials,
|
|
114
|
+
insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
|
|
115
|
+
|
|
116
|
+
@staticmethod
|
|
117
|
+
def GetLaneAccessibility(request,
|
|
118
|
+
target,
|
|
119
|
+
options=(),
|
|
120
|
+
channel_credentials=None,
|
|
121
|
+
call_credentials=None,
|
|
122
|
+
insecure=False,
|
|
123
|
+
compression=None,
|
|
124
|
+
wait_for_ready=None,
|
|
125
|
+
timeout=None,
|
|
126
|
+
metadata=None):
|
|
127
|
+
return grpc.experimental.unary_unary(request, target, '/TempoAgents.MapQueryService/GetLaneAccessibility',
|
|
128
|
+
tempo__sim_dot_TempoAgents_dot_MapQueries__pb2.LaneAccessibilityRequest.SerializeToString,
|
|
129
|
+
tempo__sim_dot_TempoAgents_dot_MapQueries__pb2.LaneAccessibilityResponse.FromString,
|
|
130
|
+
options, channel_credentials,
|
|
131
|
+
insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
|
|
132
|
+
|
|
133
|
+
@staticmethod
|
|
134
|
+
def StreamLaneAccessibility(request,
|
|
135
|
+
target,
|
|
136
|
+
options=(),
|
|
137
|
+
channel_credentials=None,
|
|
138
|
+
call_credentials=None,
|
|
139
|
+
insecure=False,
|
|
140
|
+
compression=None,
|
|
141
|
+
wait_for_ready=None,
|
|
142
|
+
timeout=None,
|
|
143
|
+
metadata=None):
|
|
144
|
+
return grpc.experimental.unary_stream(request, target, '/TempoAgents.MapQueryService/StreamLaneAccessibility',
|
|
145
|
+
tempo__sim_dot_TempoAgents_dot_MapQueries__pb2.LaneAccessibilityRequest.SerializeToString,
|
|
146
|
+
tempo__sim_dot_TempoAgents_dot_MapQueries__pb2.LaneAccessibilityResponse.FromString,
|
|
147
|
+
options, channel_credentials,
|
|
148
|
+
insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
|
|
149
|
+
|
|
150
|
+
@staticmethod
|
|
151
|
+
def GetZones(request,
|
|
152
|
+
target,
|
|
153
|
+
options=(),
|
|
154
|
+
channel_credentials=None,
|
|
155
|
+
call_credentials=None,
|
|
156
|
+
insecure=False,
|
|
157
|
+
compression=None,
|
|
158
|
+
wait_for_ready=None,
|
|
159
|
+
timeout=None,
|
|
160
|
+
metadata=None):
|
|
161
|
+
return grpc.experimental.unary_unary(request, target, '/TempoAgents.MapQueryService/GetZones',
|
|
162
|
+
tempo__sim_dot_TempoAgents_dot_MapQueries__pb2.ZoneDataRequest.SerializeToString,
|
|
163
|
+
tempo__sim_dot_TempoAgents_dot_MapQueries__pb2.ZoneDataResponse.FromString,
|
|
164
|
+
options, channel_credentials,
|
|
165
|
+
insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
|
|
File without changes
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
# -*- coding: utf-8 -*-
|
|
2
|
+
# Generated by the protocol buffer compiler. DO NOT EDIT!
|
|
3
|
+
# source: tempo_sim/TempoCore/Empty.proto
|
|
4
|
+
# Protobuf Python Version: 4.25.1
|
|
5
|
+
"""Generated protocol buffer code."""
|
|
6
|
+
from google.protobuf import descriptor as _descriptor
|
|
7
|
+
from google.protobuf import descriptor_pool as _descriptor_pool
|
|
8
|
+
from google.protobuf import symbol_database as _symbol_database
|
|
9
|
+
from google.protobuf.internal import builder as _builder
|
|
10
|
+
# @@protoc_insertion_point(imports)
|
|
11
|
+
|
|
12
|
+
_sym_db = _symbol_database.Default()
|
|
13
|
+
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
|
|
17
|
+
DESCRIPTOR = _descriptor_pool.Default().AddSerializedFile(b'\n\x1ftempo_sim/TempoCore/Empty.proto\x12\tTempoCore\"\x07\n\x05\x45mptyb\x06proto3')
|
|
18
|
+
|
|
19
|
+
_globals = globals()
|
|
20
|
+
_builder.BuildMessageAndEnumDescriptors(DESCRIPTOR, _globals)
|
|
21
|
+
_builder.BuildTopDescriptorsAndMessages(DESCRIPTOR, 'tempo_sim.TempoCore.Empty_pb2', _globals)
|
|
22
|
+
if _descriptor._USE_C_DESCRIPTORS == False:
|
|
23
|
+
DESCRIPTOR._options = None
|
|
24
|
+
_globals['_EMPTY']._serialized_start=46
|
|
25
|
+
_globals['_EMPTY']._serialized_end=53
|
|
26
|
+
# @@protoc_insertion_point(module_scope)
|