Repository URL to install this package:
|
Version:
4.1.0 ▾
|
# Copyright (c) 2023 Boston Dynamics, Inc. All rights reserved.
#
# Downloading, reproducing, distributing or otherwise using the SDK Software
# is subject to the terms and conditions of the Boston Dynamics Software
# Development Kit License (20191101-BDSDK-SL).
"""Command-line tool for interacting with robot services"""
__package__ = 'bosdyn.client'
import sys
from .command_line import main
if __name__ == "__main__":
if not main():
sys.exit(1)