bosdyn-client 5.1.0__py3-none-any.whl → 5.1.1__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.
- bosdyn/client/command_line.py +12 -12
- {bosdyn_client-5.1.0.dist-info → bosdyn_client-5.1.1.dist-info}/METADATA +3 -3
- {bosdyn_client-5.1.0.dist-info → bosdyn_client-5.1.1.dist-info}/RECORD +5 -5
- {bosdyn_client-5.1.0.dist-info → bosdyn_client-5.1.1.dist-info}/WHEEL +0 -0
- {bosdyn_client-5.1.0.dist-info → bosdyn_client-5.1.1.dist-info}/top_level.txt +0 -0
bosdyn/client/command_line.py
CHANGED
|
@@ -697,14 +697,14 @@ class FaultWatchCommand(Command):
|
|
|
697
697
|
|
|
698
698
|
|
|
699
699
|
class LogStatusCommands(Subcommands):
|
|
700
|
-
"""Start, update and terminate experiment logs, start and terminate retro logs and check status
|
|
701
|
-
active logs for robot."""
|
|
700
|
+
"""Start, update and terminate experiment logs, start and terminate retro logs and check status
|
|
701
|
+
of active logs for robot."""
|
|
702
702
|
|
|
703
703
|
NAME = 'log-status'
|
|
704
704
|
NEED_AUTHENTICATION = True
|
|
705
705
|
|
|
706
706
|
def __init__(self, subparsers, command_dict):
|
|
707
|
-
"""Interact with logs for robot
|
|
707
|
+
"""Interact with logs for robot.
|
|
708
708
|
|
|
709
709
|
Args:
|
|
710
710
|
subparsers: List of argument parsers.
|
|
@@ -729,7 +729,7 @@ class GetLogCommand(Command):
|
|
|
729
729
|
NAME = 'get'
|
|
730
730
|
|
|
731
731
|
def __init__(self, subparsers, command_dict):
|
|
732
|
-
"""Get log status from robot
|
|
732
|
+
"""Get log status from robot.
|
|
733
733
|
|
|
734
734
|
Args:
|
|
735
735
|
subparsers: List of argument parsers.
|
|
@@ -809,7 +809,7 @@ class StartTimedExperimentLogCommand(Command):
|
|
|
809
809
|
NAME = 'timed'
|
|
810
810
|
|
|
811
811
|
def __init__(self, subparsers, command_dict):
|
|
812
|
-
"""Start timed experiment log
|
|
812
|
+
"""Start timed experiment log.
|
|
813
813
|
|
|
814
814
|
Args:
|
|
815
815
|
subparsers: List of argument parsers.
|
|
@@ -841,7 +841,8 @@ class StartContinuousExperimentLogCommand(Command):
|
|
|
841
841
|
NAME = 'continuous'
|
|
842
842
|
|
|
843
843
|
def __init__(self, subparsers, command_dict):
|
|
844
|
-
"""Start continuous experiment log, defaulted to update keep alive time by 10 seconds every
|
|
844
|
+
"""Start continuous experiment log, defaulted to update keep alive time by 10 seconds every
|
|
845
|
+
5 seconds.
|
|
845
846
|
|
|
846
847
|
Args:
|
|
847
848
|
subparsers: List of argument parsers.
|
|
@@ -898,7 +899,7 @@ class StartRetroLogCommand(Command):
|
|
|
898
899
|
NAME = 'retro'
|
|
899
900
|
|
|
900
901
|
def __init__(self, subparsers, command_dict):
|
|
901
|
-
"""Start a retro log
|
|
902
|
+
"""Start a retro log.
|
|
902
903
|
|
|
903
904
|
Args:
|
|
904
905
|
subparsers: List of argument parsers.
|
|
@@ -942,6 +943,7 @@ class StartConcurrentLogCommand(Command):
|
|
|
942
943
|
|
|
943
944
|
def _run(self, robot, options):
|
|
944
945
|
"""Implementation of the command.
|
|
946
|
+
|
|
945
947
|
Args:
|
|
946
948
|
robot: Robot object on which to run the command.
|
|
947
949
|
options: Parsed command-line arguments.
|
|
@@ -977,7 +979,7 @@ class TerminateLogCommand(Command):
|
|
|
977
979
|
NAME = 'terminate'
|
|
978
980
|
|
|
979
981
|
def __init__(self, subparsers, command_dict):
|
|
980
|
-
"""Terminate log on robot
|
|
982
|
+
"""Terminate log on robot.
|
|
981
983
|
|
|
982
984
|
Args:
|
|
983
985
|
subparsers: List of argument parsers.
|
|
@@ -1174,7 +1176,7 @@ class DataServiceCommands(Subcommands):
|
|
|
1174
1176
|
NAME = 'data'
|
|
1175
1177
|
|
|
1176
1178
|
def __init__(self, subparsers, command_dict):
|
|
1177
|
-
"""Commands for querying the data-service
|
|
1179
|
+
"""Commands for querying the data-service.
|
|
1178
1180
|
|
|
1179
1181
|
Args:
|
|
1180
1182
|
subparsers: List of argument parsers.
|
|
@@ -1346,7 +1348,7 @@ class GetDataBufferStatusCommand(Command):
|
|
|
1346
1348
|
NAME = 'status'
|
|
1347
1349
|
|
|
1348
1350
|
def __init__(self, subparsers, command_dict):
|
|
1349
|
-
"""Get status of data-buffer on robot
|
|
1351
|
+
"""Get status of data-buffer on robot.
|
|
1350
1352
|
|
|
1351
1353
|
Args:
|
|
1352
1354
|
subparsers: List of argument parsers.
|
|
@@ -1589,7 +1591,6 @@ class MetricsCommand(Command):
|
|
|
1589
1591
|
|
|
1590
1592
|
Returns:
|
|
1591
1593
|
Timestamp string in ISO 8601 format
|
|
1592
|
-
|
|
1593
1594
|
"""
|
|
1594
1595
|
# The json format of a timestamp is a string that looks like '"2022-01-12T21:56:05Z"',
|
|
1595
1596
|
# so we strip off the outer quotes and return that.
|
|
@@ -2730,7 +2731,6 @@ def main(args=None):
|
|
|
2730
2731
|
LocalGridCommands(subparsers, command_dict)
|
|
2731
2732
|
DataAcquisitionCommand(subparsers, command_dict)
|
|
2732
2733
|
HostComputerIPCommand(subparsers, command_dict)
|
|
2733
|
-
VideoRecordingCommands(subparsers, command_dict)
|
|
2734
2734
|
PowerCommand(subparsers, command_dict)
|
|
2735
2735
|
KeepaliveCommand(subparsers, command_dict)
|
|
2736
2736
|
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: bosdyn-client
|
|
3
|
-
Version: 5.1.
|
|
3
|
+
Version: 5.1.1
|
|
4
4
|
Summary: Boston Dynamics API client code and interfaces
|
|
5
5
|
Home-page: https://dev.bostondynamics.com/
|
|
6
6
|
Author: Boston Dynamics
|
|
@@ -15,8 +15,8 @@ Classifier: License :: Other/Proprietary License
|
|
|
15
15
|
Classifier: Operating System :: OS Independent
|
|
16
16
|
Requires-Python: >=3.7
|
|
17
17
|
Description-Content-Type: text/markdown
|
|
18
|
-
Requires-Dist: bosdyn-api (==5.1.
|
|
19
|
-
Requires-Dist: bosdyn-core (==5.1.
|
|
18
|
+
Requires-Dist: bosdyn-api (==5.1.1)
|
|
19
|
+
Requires-Dist: bosdyn-core (==5.1.1)
|
|
20
20
|
Requires-Dist: grpcio
|
|
21
21
|
Requires-Dist: pyjwt
|
|
22
22
|
Requires-Dist: numpy
|
|
@@ -17,7 +17,7 @@ bosdyn/client/autowalk.py,sha256=e7W_r8gnlIZArrLyYCldpRHZazQp9AIXpc4HgV1A2DM,569
|
|
|
17
17
|
bosdyn/client/bddf.py,sha256=ok_2JcflSCQfcM25lpEgzKnkEJl0FDcJ16Bgo9Rjyzc,1763
|
|
18
18
|
bosdyn/client/bddf_download.py,sha256=oDztm-aS5J_ABLb-cxomNtwNPrdlnFp8hEuOMVxVRH4,7586
|
|
19
19
|
bosdyn/client/channel.py,sha256=voNa-3S6LXsTlsXPXPLEoqNxYl2Xx5CNP7w9EELEtdY,8840
|
|
20
|
-
bosdyn/client/command_line.py,sha256=
|
|
20
|
+
bosdyn/client/command_line.py,sha256=lE_vcMFdhPC0-O3OUF9LKzkuQKFCv3GGPSpA98iSKi0,100675
|
|
21
21
|
bosdyn/client/common.py,sha256=gbjhMnmq2pR8ECS6XnhNeQ5fWN5oSQKkoIeVlhnnawc,24981
|
|
22
22
|
bosdyn/client/data_acquisition.py,sha256=bFtP7p1OaZAhB5cbZtnyj3g668wzoeXWU9UI196ieyo,15139
|
|
23
23
|
bosdyn/client/data_acquisition_helpers.py,sha256=1zkiHr3JMLjYr3Sf3FRylaXWzTMrYQKH8Msy_JCnaSE,14718
|
|
@@ -100,7 +100,7 @@ bosdyn/client/spot_cam/power.py,sha256=UOcyK9UdOH6cxd3U7LvSlD88XhzQjTOQoVBzEoBeP
|
|
|
100
100
|
bosdyn/client/spot_cam/ptz.py,sha256=jlj2KKuhPct1NZklfa6rPzrdQbMh3eoNGonA25KmNm8,10601
|
|
101
101
|
bosdyn/client/spot_cam/streamquality.py,sha256=VuGfT5yY_qsFtX1rQzjrKosPPMIKSwqQnVaXSAEzxEg,6342
|
|
102
102
|
bosdyn/client/spot_cam/version.py,sha256=YuYH0zyAFgy6G7_aUArBPNY1I4m_8qAfikf66fxAddo,2834
|
|
103
|
-
bosdyn_client-5.1.
|
|
104
|
-
bosdyn_client-5.1.
|
|
105
|
-
bosdyn_client-5.1.
|
|
106
|
-
bosdyn_client-5.1.
|
|
103
|
+
bosdyn_client-5.1.1.dist-info/METADATA,sha256=TV0--vsgAHgcuuzTDIgUIEPfpwOD-pC0-yhdLMg5l5o,3987
|
|
104
|
+
bosdyn_client-5.1.1.dist-info/WHEEL,sha256=AtBG6SXL3KF_v0NxLf0ehyVOh0cold-JbJYXNGorC6Q,92
|
|
105
|
+
bosdyn_client-5.1.1.dist-info/top_level.txt,sha256=an2OWgx1ej2jFjmBjPWNQ68ZglvUfKhmXWW-WhTtDmA,7
|
|
106
|
+
bosdyn_client-5.1.1.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|