remotivelabs-cli 0.0.39__py3-none-any.whl → 0.0.40__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.
cli/broker/brokers.py CHANGED
@@ -11,9 +11,11 @@ from zeroconf import (
11
11
  Zeroconf,
12
12
  )
13
13
 
14
+ from cli.typer import typer_utils
15
+
14
16
  from . import export, files, licenses, playback, record, scripting, signals
15
17
 
16
- app = typer.Typer(rich_markup_mode="rich")
18
+ app = typer_utils.create_typer(rich_markup_mode="rich")
17
19
 
18
20
 
19
21
  @app.callback()
cli/broker/export.py CHANGED
@@ -9,9 +9,10 @@ import typer
9
9
 
10
10
  from cli.errors import ErrorPrinter
11
11
 
12
+ from ..typer import typer_utils
12
13
  from .lib.broker import Broker, SubscribableSignal
13
14
 
14
- app = typer.Typer(
15
+ app = typer_utils.create_typer(
15
16
  rich_markup_mode="rich",
16
17
  help="""
17
18
  Export subscribed signals to different formats, currently only InfluxDB line protocol
cli/broker/files.py CHANGED
@@ -8,10 +8,11 @@ import typer
8
8
  from rich.progress import Progress, SpinnerColumn, TextColumn
9
9
 
10
10
  from cli.errors import ErrorPrinter
11
+ from cli.typer import typer_utils
11
12
 
12
13
  from .lib.broker import Broker
13
14
 
14
- app = typer.Typer(help=help) # type: ignore
15
+ app = typer_utils.create_typer(help=help)
15
16
 
16
17
 
17
18
  @app.command()
cli/broker/licenses.py CHANGED
@@ -5,9 +5,11 @@ from enum import Enum
5
5
  import typer
6
6
  from rich import print_json
7
7
 
8
+ from cli.typer import typer_utils
9
+
8
10
  from .license_flows import LicenseFlow
9
11
 
10
- app = typer.Typer()
12
+ app = typer_utils.create_typer()
11
13
 
12
14
  help_text = """
13
15
  More info on our docs page
cli/broker/playback.py CHANGED
@@ -6,10 +6,11 @@ import grpc
6
6
  import typer
7
7
 
8
8
  from cli.errors import ErrorPrinter
9
+ from cli.typer import typer_utils
9
10
 
10
11
  from .lib.broker import Broker
11
12
 
12
- app = typer.Typer(help=help) # type: ignore
13
+ app = typer_utils.create_typer(help=help)
13
14
 
14
15
 
15
16
  def recording_and_namespace(recording: str) -> Dict[str, str]:
cli/broker/record.py CHANGED
@@ -6,10 +6,11 @@ import grpc
6
6
  import typer
7
7
 
8
8
  from cli.errors import ErrorPrinter
9
+ from cli.typer import typer_utils
9
10
 
10
11
  from .lib.broker import Broker
11
12
 
12
- app = typer.Typer(help=help) # type: ignore
13
+ app = typer_utils.create_typer(help=help)
13
14
 
14
15
 
15
16
  @app.command()
cli/broker/scripting.py CHANGED
@@ -7,8 +7,9 @@ import typer
7
7
  from rich import print as rich_print
8
8
 
9
9
  from cli.errors import ErrorPrinter
10
+ from cli.typer import typer_utils
10
11
 
11
- app = typer.Typer(
12
+ app = typer_utils.create_typer(
12
13
  rich_markup_mode="rich",
13
14
  help="""
14
15
  [Experimental] - Generate template lua script for input and output signals
cli/broker/signals.py CHANGED
@@ -14,10 +14,11 @@ import typer
14
14
  from rich import print as rich_rprint
15
15
 
16
16
  from cli.errors import ErrorPrinter
17
+ from cli.typer import typer_utils
17
18
 
18
19
  from .lib.broker import Broker, SubscribableSignal
19
20
 
20
- app = typer.Typer(help=help) # type: ignore
21
+ app = typer_utils.create_typer(help=help)
21
22
 
22
23
  DEFAULT_GRPC_URL = "http://localhost:50051"
23
24
 
cli/cloud/auth/cmd.py CHANGED
@@ -1,18 +1,17 @@
1
1
  import sys
2
2
 
3
- import typer
4
-
5
3
  from cli.cloud.auth.login import login as do_login
6
4
  from cli.cloud.rest_helper import RestHelper as Rest
7
5
  from cli.errors import ErrorPrinter
8
6
  from cli.settings import TokenNotFoundError, settings
7
+ from cli.typer import typer_utils
9
8
 
10
9
  from .. import auth_tokens
11
10
 
12
11
  HELP = """
13
12
  Manage how you authenticate with our cloud platform
14
13
  """
15
- app = typer.Typer(help=HELP)
14
+ app = typer_utils.create_typer(help=HELP)
16
15
  app.add_typer(auth_tokens.app, name="tokens", help="Manage users personal access tokens")
17
16
 
18
17
 
cli/cloud/auth_tokens.py CHANGED
@@ -1,10 +1,11 @@
1
1
  import typer
2
2
 
3
3
  from cli.settings import settings
4
+ from cli.typer import typer_utils
4
5
 
5
6
  from .rest_helper import RestHelper as Rest
6
7
 
7
- app = typer.Typer()
8
+ app = typer_utils.create_typer()
8
9
 
9
10
 
10
11
  # TODO: add add interactive flag to set target directory # pylint: disable=fixme
cli/cloud/brokers.py CHANGED
@@ -9,9 +9,11 @@ import requests
9
9
  import typer
10
10
  import websocket
11
11
 
12
+ from cli.typer import typer_utils
13
+
12
14
  from .rest_helper import RestHelper as Rest
13
15
 
14
- app = typer.Typer()
16
+ app = typer_utils.create_typer()
15
17
 
16
18
 
17
19
  @app.command("list", help="Lists brokers in project")
cli/cloud/cloud_cli.py CHANGED
@@ -2,8 +2,9 @@ import typer
2
2
 
3
3
  from cli.cloud import auth, brokers, configs, organisations, projects, recordings, sample_recordings, service_accounts, storage
4
4
  from cli.cloud.rest_helper import RestHelper
5
+ from cli.typer import typer_utils
5
6
 
6
- app = typer.Typer()
7
+ app = typer_utils.create_typer()
7
8
 
8
9
 
9
10
  @app.command(help="List licenses for an organisation")
cli/cloud/configs.py CHANGED
@@ -7,9 +7,11 @@ import requests
7
7
  import typer
8
8
  from rich.progress import Progress, SpinnerColumn, TextColumn
9
9
 
10
+ from cli.typer import typer_utils
11
+
10
12
  from .rest_helper import RestHelper as Rest
11
13
 
12
- app = typer.Typer()
14
+ app = typer_utils.create_typer()
13
15
 
14
16
 
15
17
  @app.command("list")
@@ -1,11 +1,10 @@
1
1
  import json
2
2
  import sys
3
3
 
4
- import typer
5
-
6
4
  from cli.cloud.rest_helper import RestHelper
5
+ from cli.typer import typer_utils
7
6
 
8
- app = typer.Typer()
7
+ app = typer_utils.create_typer()
9
8
 
10
9
 
11
10
  @app.command(name="list", help="List your available organisations")
cli/cloud/projects.py CHANGED
@@ -2,9 +2,11 @@ import json
2
2
 
3
3
  import typer
4
4
 
5
+ from cli.typer import typer_utils
6
+
5
7
  from .rest_helper import RestHelper as Rest
6
8
 
7
- app = typer.Typer()
9
+ app = typer_utils.create_typer()
8
10
 
9
11
 
10
12
  @app.command(name="list", help="List your projects")
cli/cloud/recordings.py CHANGED
@@ -18,13 +18,14 @@ from typing_extensions import Annotated
18
18
 
19
19
  from cli.cloud.uri import URI
20
20
  from cli.errors import ErrorPrinter
21
+ from cli.typer import typer_utils
21
22
 
22
23
  from ..broker.lib.broker import Broker
23
24
  from .recordings_playback import app as playback_app
24
25
  from .rest_helper import RestHelper as Rest
25
26
  from .rest_helper import err_console
26
27
 
27
- app = typer.Typer()
28
+ app = typer_utils.create_typer()
28
29
  app.add_typer(playback_app, name="playback")
29
30
 
30
31
 
@@ -17,9 +17,10 @@ from rich.progress import Progress, SpinnerColumn, TextColumn
17
17
  from cli.errors import ErrorPrinter
18
18
 
19
19
  from ..broker.lib.broker import Broker, SubscribableSignal
20
+ from ..typer import typer_utils
20
21
  from .rest_helper import RestHelper as Rest
21
22
 
22
- app = typer.Typer(
23
+ app = typer_utils.create_typer(
23
24
  help="""
24
25
  Support for playback of a recording on a cloud broker, make sure to always mount a recording first
25
26
  """
@@ -2,9 +2,11 @@ import json
2
2
 
3
3
  import typer
4
4
 
5
+ from cli.typer import typer_utils
6
+
5
7
  from .rest_helper import RestHelper as Rest
6
8
 
7
- app = typer.Typer()
9
+ app = typer_utils.create_typer()
8
10
 
9
11
 
10
12
  @app.command(name="import", help="Import sample recording into project")
@@ -3,10 +3,11 @@ import json
3
3
  import typer
4
4
 
5
5
  from cli.settings import settings
6
+ from cli.typer import typer_utils
6
7
 
7
8
  from .rest_helper import RestHelper as Rest
8
9
 
9
- app = typer.Typer()
10
+ app = typer_utils.create_typer()
10
11
 
11
12
 
12
13
  # TODO: add add interactive flag to set target directory # pylint: disable=fixme
@@ -5,10 +5,12 @@ from typing import List
5
5
 
6
6
  import typer
7
7
 
8
+ from cli.typer import typer_utils
9
+
8
10
  from . import service_account_tokens
9
11
  from .rest_helper import RestHelper as Rest
10
12
 
11
- app = typer.Typer()
13
+ app = typer_utils.create_typer()
12
14
 
13
15
 
14
16
  @app.command(name="list", help="List service-accounts")
cli/cloud/storage/cmd.py CHANGED
@@ -9,6 +9,7 @@ from cli.cloud.storage.uri_or_path import UriOrPath
9
9
  from cli.cloud.storage.uri_or_path import uri as uri_parser
10
10
  from cli.cloud.uri import URI, InvalidURIError, JoinURIError
11
11
  from cli.errors import ErrorPrinter
12
+ from cli.typer import typer_utils
12
13
 
13
14
  HELP = """
14
15
  Manage files ([yellow]Beta feature not available for all customers[/yellow])
@@ -17,7 +18,7 @@ Copy file from local to remote storage and vice versa, list and delete files.
17
18
 
18
19
  """
19
20
 
20
- app = typer.Typer(rich_markup_mode="rich", help=HELP)
21
+ app = typer_utils.create_typer(rich_markup_mode="rich", help=HELP)
21
22
 
22
23
 
23
24
  @app.command(name="ls")
cli/connect/connect.py CHANGED
@@ -9,10 +9,11 @@ from typing_extensions import List
9
9
 
10
10
  from cli.broker.lib.broker import SubscribableSignal
11
11
  from cli.errors import ErrorPrinter
12
+ from cli.typer import typer_utils
12
13
 
13
14
  from .protopie import protopie as ppie
14
15
 
15
- app = typer.Typer()
16
+ app = typer_utils.create_typer()
16
17
 
17
18
 
18
19
  @app.command()
cli/remotive.py CHANGED
@@ -11,11 +11,12 @@ from .cloud.cloud_cli import app as cloud_app
11
11
  from .connect.connect import app as connect_app
12
12
  from .settings.cmd import app as settings_app
13
13
  from .tools.tools import app as tools_app
14
+ from .typer import typer_utils
14
15
 
15
16
  if os.getenv("GRPC_VERBOSITY") is None:
16
17
  os.environ["GRPC_VERBOSITY"] = "NONE"
17
18
 
18
- app = typer.Typer(
19
+ app = typer_utils.create_typer(
19
20
  rich_markup_mode="rich",
20
21
  help="""
21
22
  Welcome to RemotiveLabs CLI - Simplify and automate tasks for cloud resources and brokers
cli/settings/cmd.py CHANGED
@@ -2,8 +2,9 @@ import typer
2
2
 
3
3
  from cli.errors import ErrorPrinter
4
4
  from cli.settings.core import TokenNotFoundError, settings
5
+ from cli.typer import typer_utils
5
6
 
6
- app = typer.Typer()
7
+ app = typer_utils.create_typer()
7
8
 
8
9
 
9
10
  @app.command()
cli/tools/can/can.py CHANGED
@@ -4,6 +4,8 @@ import can
4
4
  import typer
5
5
  from rich.console import Console
6
6
 
7
+ from cli.typer import typer_utils
8
+
7
9
  err_console = Console(stderr=True)
8
10
  console = Console()
9
11
 
@@ -11,7 +13,7 @@ HELP = """
11
13
  CAN related tools
12
14
  """
13
15
 
14
- app = typer.Typer(help=HELP)
16
+ app = typer_utils.create_typer(help=HELP)
15
17
 
16
18
 
17
19
  @app.command("convert")
cli/tools/tools.py CHANGED
@@ -1,4 +1,4 @@
1
- import typer
1
+ from cli.typer import typer_utils
2
2
 
3
3
  from .can.can import app as can_app
4
4
 
@@ -6,5 +6,5 @@ HELP_TEXT = """
6
6
  CLI tools unrelated to cloud or broker
7
7
  """
8
8
 
9
- app = typer.Typer(help=HELP_TEXT)
9
+ app = typer_utils.create_typer(help=HELP_TEXT)
10
10
  app.add_typer(can_app, name="can", help="CAN tools")
cli/typer/__init__.py ADDED
File without changes
@@ -0,0 +1,8 @@
1
+ from typing import Any
2
+
3
+ import typer
4
+
5
+
6
+ def create_typer(**kwargs: Any) -> typer.Typer:
7
+ """Create a Typer instance with default settings."""
8
+ return typer.Typer(no_args_is_help=True, **kwargs)
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: remotivelabs-cli
3
- Version: 0.0.39
3
+ Version: 0.0.40
4
4
  Summary: CLI for operating RemotiveCloud and RemotiveBroker
5
5
  Author: Johan Rask
6
6
  Author-email: johan.rask@remotivelabs.com
@@ -0,0 +1,55 @@
1
+ cli/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
2
+ cli/broker/brokers.py,sha256=xpwC6S5wCVn_9MOXa12Z-CbRvacjXETU0bqxOlFGKjo,3245
3
+ cli/broker/export.py,sha256=rXWPP8JZgWt48l_sVZu5oJ7lEKT6Q1NnR5b493GZ50Q,4476
4
+ cli/broker/files.py,sha256=JMpyBYfqVX_ppIChDcUuWvCDIQHC8YI6IsljyIL0NZ8,4212
5
+ cli/broker/lib/__about__.py,sha256=xnZ5V6ZcHW9dhWLWdMzVjYJbEnMKpeXm0_S_mbNzypE,141
6
+ cli/broker/lib/broker.py,sha256=HbGo83j6ipaol0uJ93Me78pOPjy7p8PUjYT9xZmRT-w,25086
7
+ cli/broker/license_flows.py,sha256=qJplaeugkUiypFGPdEIl5Asqlf7W3geJ-wU-QbYMP_8,7216
8
+ cli/broker/licenses.py,sha256=jIuLB2qBGflzSjm952CBnErpzs7iIkmEgx9L8GDAPNc,4021
9
+ cli/broker/playback.py,sha256=fO-ZvzmB3ZzanmD1L09PeKkabx35uKsELMM-h-5brSE,4023
10
+ cli/broker/record.py,sha256=rVjvyWRSWNFtthZZkZeZZGvZdmhDB_qmYcrCocCJxY4,1445
11
+ cli/broker/scripting.py,sha256=RExHSruSyL8MjEhZHj9SVKi3z5OuSWwiz44hc9X3hiY,3839
12
+ cli/broker/signals.py,sha256=1f3pwMBbhxg_x4ktGR9eivNDPJY678CpTBrjXbQaItg,8193
13
+ cli/cloud/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
14
+ cli/cloud/auth/__init__.py,sha256=MtQ01-n8CgZb9Y_SvxwZUgj44Yo0dFAU3_XwhQiUYtw,54
15
+ cli/cloud/auth/cmd.py,sha256=rdM1Am0E5AcErn0s35x0KL5ys_dGSGaIE7nw0SNtF-0,1655
16
+ cli/cloud/auth/login.py,sha256=Yrir9ThKJ7sqL4AsEivXxMKjP7QevEGxcm3f2BPUqFg,1898
17
+ cli/cloud/auth_tokens.py,sha256=xTdL_wHVnOq1hW45XU9iDvQWW7ISDuf5RrDgVilg4-U,1263
18
+ cli/cloud/brokers.py,sha256=TzUfd2PBfF3vDyTjZ4fMv8ndA4_37IUgOuZHgGHGSEE,3938
19
+ cli/cloud/cloud_cli.py,sha256=a-LhunHPRPZkxaXQJ0evOYCVXZRYY_qzM6GJG75SjkY,1309
20
+ cli/cloud/configs.py,sha256=y7uu9IRJjspSpxREvwRNNfx0N1ypstElaqtpt9tepgY,5117
21
+ cli/cloud/organisations.py,sha256=BNi4S2em6ruoYUCSuX48zhZS-e31s5u064cBOHGlsgo,785
22
+ cli/cloud/projects.py,sha256=gXvlaGER3zxBwvjdO3lOa6Fl1xHfQHVCaPdpUNi7G3k,1479
23
+ cli/cloud/recordings.py,sha256=QrgXJC4csC73Gau-dV_YgL0EZaUzFbc9Nkz_qZHrp70,25067
24
+ cli/cloud/recordings_playback.py,sha256=h0NVHTbbX-TxA0IxHDejtIA8uHcPUAQXmxeocYo9UtQ,11584
25
+ cli/cloud/rest_helper.py,sha256=yeJ1FEE64VBBhpureRi6Zi7j_BY5dEJP88cQdmz0TEE,11448
26
+ cli/cloud/resumable_upload.py,sha256=8lEIdncJZoTZzNsQVHH3gm_GunxEmN5JbmWX7awy3p4,3713
27
+ cli/cloud/sample_recordings.py,sha256=zHfzpo-YxuBaor95PeVJrbBYyPBXS5zOBf2j0lYnT9Q,738
28
+ cli/cloud/service_account_tokens.py,sha256=7rwR8UoqG3Y1aPqf0lDcwpYd9X3sM7J9qTmL30iUBsY,1814
29
+ cli/cloud/service_accounts.py,sha256=BmliX2w3LBoZoZ8fCR0fP3ph945YPIZBAb8Y13oWZuw,1707
30
+ cli/cloud/storage/__init__.py,sha256=ijl9WwU5D4oASbwrFKJurYsBUyzwZCOhcdTQYj-ZSeM,159
31
+ cli/cloud/storage/cmd.py,sha256=3j_SbM0Pvh7QklJPfF8DMhj-VpohAf6mcgO0TaaSuHc,2970
32
+ cli/cloud/storage/copy.py,sha256=4FDBNZVcHKxDI9vU8qawOBcWNYobZu8RdtPUHZsY7iA,3253
33
+ cli/cloud/storage/uri_or_path.py,sha256=DLlyr0RAV-DRlL2C36U-jvUqwiLIlkw7c3mJ7SSGMdI,1158
34
+ cli/cloud/uri.py,sha256=QZCus--KJQlVwGCOzZqiglvj8VvSRKxfVvN33Pilgyg,3616
35
+ cli/connect/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
36
+ cli/connect/connect.py,sha256=ygpsd3ZMXQe7wZeJ_E1TBkRDgTxr9r5V7XeoUO_-68w,4239
37
+ cli/connect/protopie/protopie.py,sha256=GRFN4P5zxWcgwuIwRKUeJ3ie0HqtHUxN7f6dsWPCfBc,6524
38
+ cli/errors.py,sha256=8_BcTPX3mrPFDQJKKBg6ERjs6HSOiewrY86K1Jays74,1495
39
+ cli/remotive.py,sha256=B9wCk1jeAd21VgWDW4ntziuwhFk1J5I4wr903l1AZ58,1951
40
+ cli/settings/__init__.py,sha256=4Mj9DFvRBN0LKn6PPLrb-BmuObP707IYeRmg7t7aycg,288
41
+ cli/settings/cmd.py,sha256=1riCR5oCjAtNEnyE9wnit1NPa-BJJtuFMUDMMtX-b7E,2039
42
+ cli/settings/core.py,sha256=o9SDCiqYfihHbiepFebpEB5vEMW656vngyjCkXJaaeQ,9209
43
+ cli/settings/token_file.py,sha256=UUSbnm6zrPS2HJmbyLzfoKWjmHVOh3IjiwDvLPCoyXc,455
44
+ cli/tools/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
45
+ cli/tools/can/RemotiveLabs.can1.log,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
46
+ cli/tools/can/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
47
+ cli/tools/can/can.py,sha256=42BwsIOx9NUPkp_rB-0MDqL1tCpeqYVOgWzpixm5ykk,2310
48
+ cli/tools/tools.py,sha256=jhLfrFDqkmWV3eBAzNwBf6WgDGrz7sOhgVCia36Twn8,232
49
+ cli/typer/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
50
+ cli/typer/typer_utils.py,sha256=DmGxdIo0_iK_DYJrZvpFT-tEaQZT1cJtrFR-5VmF_jo,199
51
+ remotivelabs_cli-0.0.40.dist-info/LICENSE,sha256=qDPP_yfuv1fF-u7EfexN-cN3M8aFgGVndGhGLovLKz0,608
52
+ remotivelabs_cli-0.0.40.dist-info/METADATA,sha256=P9sv31V9krJhcp9E3df3PjtV1H5xka5O7i7fmbGjuOY,1359
53
+ remotivelabs_cli-0.0.40.dist-info/WHEEL,sha256=sP946D7jFCHeNz5Iq4fL4Lu-PrWrFsgfLXbbkciIZwg,88
54
+ remotivelabs_cli-0.0.40.dist-info/entry_points.txt,sha256=lvDhPgagLqW_KTnLPCwKSqfYlEp-1uYVosRiPjsVj10,45
55
+ remotivelabs_cli-0.0.40.dist-info/RECORD,,
@@ -1,53 +0,0 @@
1
- cli/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
2
- cli/broker/brokers.py,sha256=oUadEL6xQ4bhXucBH-ZjL67VuERf19kn1g240v_lEpg,3197
3
- cli/broker/export.py,sha256=3sG9i6ZwOQW6snu87NSzOL2_giQTYQMzQlpPg7z8n78,4431
4
- cli/broker/files.py,sha256=_MVwitQ5Z9-lNDb3biXqnlkKti8rizTEw0nnAViussU,4181
5
- cli/broker/lib/__about__.py,sha256=xnZ5V6ZcHW9dhWLWdMzVjYJbEnMKpeXm0_S_mbNzypE,141
6
- cli/broker/lib/broker.py,sha256=HbGo83j6ipaol0uJ93Me78pOPjy7p8PUjYT9xZmRT-w,25086
7
- cli/broker/license_flows.py,sha256=qJplaeugkUiypFGPdEIl5Asqlf7W3geJ-wU-QbYMP_8,7216
8
- cli/broker/licenses.py,sha256=Ddl243re8RoeP9CoWWbIzwDePQ9l8r7ixmbd1gqn8f0,3973
9
- cli/broker/playback.py,sha256=hdDKXGPuIE3gcT-kgQltgn5jsPzK19Yh9hiNcgtkLX0,3992
10
- cli/broker/record.py,sha256=Oa6hUpS0Dgnt0f6Ig33vl0Jy8wN7wMXfemaxXWjRVoQ,1414
11
- cli/broker/scripting.py,sha256=8577_C6siOk90s4G1ItIfAoFIUAkS0ItUl5kqR0cD-k,3792
12
- cli/broker/signals.py,sha256=Z35TZXgPE478Kr_wPnsKgRYmSydGCSe_NMGdJFBKmus,8162
13
- cli/cloud/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
14
- cli/cloud/auth/__init__.py,sha256=MtQ01-n8CgZb9Y_SvxwZUgj44Yo0dFAU3_XwhQiUYtw,54
15
- cli/cloud/auth/cmd.py,sha256=Lew9gJDC4pU2Hvbrbe4ZPoanphN0CiNwbpLAo9R00gM,1622
16
- cli/cloud/auth/login.py,sha256=Yrir9ThKJ7sqL4AsEivXxMKjP7QevEGxcm3f2BPUqFg,1898
17
- cli/cloud/auth_tokens.py,sha256=MGTM8gMqKbCBVZudH1cfhRqJRfsiStUZXNhPcrs9-7I,1216
18
- cli/cloud/brokers.py,sha256=DNj79MTkPylKUQbr-iPUhQgfNJLAW8UehnvgpEmNH_k,3890
19
- cli/cloud/cloud_cli.py,sha256=c_JMjAOsJnAw4TM7gkPWmEfrrQly6lAppvfHAmaUGmo,1262
20
- cli/cloud/configs.py,sha256=0GDr2-N77Aj7DG26zjamA0zpV3iMyVYhtoTak-n8BUc,5069
21
- cli/cloud/organisations.py,sha256=txKQmSQEpTmeqlqngai8pwgQQEvRgeDd0dT_VzZ7RNc,752
22
- cli/cloud/projects.py,sha256=YrwPJClC2Sq_y1HjPd_tzaiv4GEnnsXSXHBhtQCPdK0,1431
23
- cli/cloud/recordings.py,sha256=XKLHTkOdcfEbXyNX4G_TbqVkO4aazoAwL79KoYDz9RY,25020
24
- cli/cloud/recordings_playback.py,sha256=PRzftmvG2iePrL9f6qTEXVOnyJ-etcyzn5w9CCxcSto,11539
25
- cli/cloud/rest_helper.py,sha256=yeJ1FEE64VBBhpureRi6Zi7j_BY5dEJP88cQdmz0TEE,11448
26
- cli/cloud/resumable_upload.py,sha256=8lEIdncJZoTZzNsQVHH3gm_GunxEmN5JbmWX7awy3p4,3713
27
- cli/cloud/sample_recordings.py,sha256=OVX32U1dkkkJZysbgr5Dy515oOQKnwBAbZYzV_QUu1g,690
28
- cli/cloud/service_account_tokens.py,sha256=jC2ofhHpp5R3CxFgshmnNMh8wQ9I3GtIK42ISYGX2JA,1767
29
- cli/cloud/service_accounts.py,sha256=XOIPobUamCLIaufjyvb33XJDwy6uRqW5ZljZx3GYEfo,1659
30
- cli/cloud/storage/__init__.py,sha256=ijl9WwU5D4oASbwrFKJurYsBUyzwZCOhcdTQYj-ZSeM,159
31
- cli/cloud/storage/cmd.py,sha256=uhpSVpdsaydurc7SEW6LQHN9xGDvynIAF3kSPCTFzi8,2923
32
- cli/cloud/storage/copy.py,sha256=4FDBNZVcHKxDI9vU8qawOBcWNYobZu8RdtPUHZsY7iA,3253
33
- cli/cloud/storage/uri_or_path.py,sha256=DLlyr0RAV-DRlL2C36U-jvUqwiLIlkw7c3mJ7SSGMdI,1158
34
- cli/cloud/uri.py,sha256=QZCus--KJQlVwGCOzZqiglvj8VvSRKxfVvN33Pilgyg,3616
35
- cli/connect/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
36
- cli/connect/connect.py,sha256=UPEdul9lJFfAmaJmWXaduSXOvRiA9Xs35kNRxAbdy-Y,4192
37
- cli/connect/protopie/protopie.py,sha256=GRFN4P5zxWcgwuIwRKUeJ3ie0HqtHUxN7f6dsWPCfBc,6524
38
- cli/errors.py,sha256=8_BcTPX3mrPFDQJKKBg6ERjs6HSOiewrY86K1Jays74,1495
39
- cli/remotive.py,sha256=rwCIPFuWn0CNxLU2Sgwug5UVjletC1DTJrxUtGkVGPs,1907
40
- cli/settings/__init__.py,sha256=4Mj9DFvRBN0LKn6PPLrb-BmuObP707IYeRmg7t7aycg,288
41
- cli/settings/cmd.py,sha256=sj1bYgMXUAcS4sx_dZjPVCEjoVAR1p_H-KYb7w02wvU,1992
42
- cli/settings/core.py,sha256=o9SDCiqYfihHbiepFebpEB5vEMW656vngyjCkXJaaeQ,9209
43
- cli/settings/token_file.py,sha256=UUSbnm6zrPS2HJmbyLzfoKWjmHVOh3IjiwDvLPCoyXc,455
44
- cli/tools/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
45
- cli/tools/can/RemotiveLabs.can1.log,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
46
- cli/tools/can/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
47
- cli/tools/can/can.py,sha256=8uATViSFlpkdSiIm4fzbuQi1_m7V9Pym-K17TaJQRHU,2262
48
- cli/tools/tools.py,sha256=0KU-hXR1f9xHP4BOG9A9eXfmICLmNuQCOU8ueF6iGg0,198
49
- remotivelabs_cli-0.0.39.dist-info/LICENSE,sha256=qDPP_yfuv1fF-u7EfexN-cN3M8aFgGVndGhGLovLKz0,608
50
- remotivelabs_cli-0.0.39.dist-info/METADATA,sha256=y4YdQWFEDOCoWJtrg8903WMCbqId_8NuvK4e6yPQzzM,1359
51
- remotivelabs_cli-0.0.39.dist-info/WHEEL,sha256=sP946D7jFCHeNz5Iq4fL4Lu-PrWrFsgfLXbbkciIZwg,88
52
- remotivelabs_cli-0.0.39.dist-info/entry_points.txt,sha256=lvDhPgagLqW_KTnLPCwKSqfYlEp-1uYVosRiPjsVj10,45
53
- remotivelabs_cli-0.0.39.dist-info/RECORD,,