remotivelabs-cli 0.5.0a1__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.
- remotivelabs/cli/__init__.py +0 -0
- remotivelabs/cli/api/cloud/tokens.py +62 -0
- remotivelabs/cli/broker/__init__.py +33 -0
- remotivelabs/cli/broker/defaults.py +1 -0
- remotivelabs/cli/broker/discovery.py +43 -0
- remotivelabs/cli/broker/export.py +92 -0
- remotivelabs/cli/broker/files.py +119 -0
- remotivelabs/cli/broker/lib/__about__.py +4 -0
- remotivelabs/cli/broker/lib/broker.py +625 -0
- remotivelabs/cli/broker/lib/client.py +224 -0
- remotivelabs/cli/broker/lib/helper.py +277 -0
- remotivelabs/cli/broker/lib/signalcreator.py +196 -0
- remotivelabs/cli/broker/license_flows.py +167 -0
- remotivelabs/cli/broker/licenses.py +98 -0
- remotivelabs/cli/broker/playback.py +117 -0
- remotivelabs/cli/broker/record.py +41 -0
- remotivelabs/cli/broker/recording_session/__init__.py +3 -0
- remotivelabs/cli/broker/recording_session/client.py +67 -0
- remotivelabs/cli/broker/recording_session/cmd.py +254 -0
- remotivelabs/cli/broker/recording_session/time.py +49 -0
- remotivelabs/cli/broker/scripting.py +129 -0
- remotivelabs/cli/broker/signals.py +220 -0
- remotivelabs/cli/broker/version.py +31 -0
- remotivelabs/cli/cloud/__init__.py +17 -0
- remotivelabs/cli/cloud/auth/__init__.py +3 -0
- remotivelabs/cli/cloud/auth/cmd.py +128 -0
- remotivelabs/cli/cloud/auth/login.py +283 -0
- remotivelabs/cli/cloud/auth_tokens.py +149 -0
- remotivelabs/cli/cloud/brokers.py +109 -0
- remotivelabs/cli/cloud/configs.py +109 -0
- remotivelabs/cli/cloud/licenses/__init__.py +0 -0
- remotivelabs/cli/cloud/licenses/cmd.py +14 -0
- remotivelabs/cli/cloud/organisations.py +112 -0
- remotivelabs/cli/cloud/projects.py +44 -0
- remotivelabs/cli/cloud/recordings.py +580 -0
- remotivelabs/cli/cloud/recordings_playback.py +274 -0
- remotivelabs/cli/cloud/resumable_upload.py +87 -0
- remotivelabs/cli/cloud/sample_recordings.py +25 -0
- remotivelabs/cli/cloud/service_account_tokens.py +62 -0
- remotivelabs/cli/cloud/service_accounts.py +72 -0
- remotivelabs/cli/cloud/storage/__init__.py +5 -0
- remotivelabs/cli/cloud/storage/cmd.py +76 -0
- remotivelabs/cli/cloud/storage/copy.py +86 -0
- remotivelabs/cli/cloud/storage/uri_or_path.py +45 -0
- remotivelabs/cli/cloud/uri.py +113 -0
- remotivelabs/cli/connect/__init__.py +0 -0
- remotivelabs/cli/connect/connect.py +118 -0
- remotivelabs/cli/connect/protopie/protopie.py +185 -0
- remotivelabs/cli/py.typed +0 -0
- remotivelabs/cli/remotive.py +123 -0
- remotivelabs/cli/settings/__init__.py +20 -0
- remotivelabs/cli/settings/config_file.py +113 -0
- remotivelabs/cli/settings/core.py +333 -0
- remotivelabs/cli/settings/migration/__init__.py +0 -0
- remotivelabs/cli/settings/migration/migrate_all_token_files.py +80 -0
- remotivelabs/cli/settings/migration/migrate_config_file.py +64 -0
- remotivelabs/cli/settings/migration/migrate_legacy_dirs.py +50 -0
- remotivelabs/cli/settings/migration/migrate_token_file.py +52 -0
- remotivelabs/cli/settings/migration/migration_tools.py +38 -0
- remotivelabs/cli/settings/state_file.py +67 -0
- remotivelabs/cli/settings/token_file.py +128 -0
- remotivelabs/cli/tools/__init__.py +0 -0
- remotivelabs/cli/tools/can/__init__.py +0 -0
- remotivelabs/cli/tools/can/can.py +78 -0
- remotivelabs/cli/tools/tools.py +9 -0
- remotivelabs/cli/topology/__init__.py +28 -0
- remotivelabs/cli/topology/all.py +322 -0
- remotivelabs/cli/topology/cli/__init__.py +3 -0
- remotivelabs/cli/topology/cli/run_in_docker.py +58 -0
- remotivelabs/cli/topology/cli/topology_cli.py +16 -0
- remotivelabs/cli/topology/cmd.py +130 -0
- remotivelabs/cli/topology/start_trial.py +134 -0
- remotivelabs/cli/typer/__init__.py +0 -0
- remotivelabs/cli/typer/typer_utils.py +27 -0
- remotivelabs/cli/utils/__init__.py +0 -0
- remotivelabs/cli/utils/console.py +99 -0
- remotivelabs/cli/utils/rest_helper.py +369 -0
- remotivelabs/cli/utils/time.py +11 -0
- remotivelabs/cli/utils/versions.py +120 -0
- remotivelabs_cli-0.5.0a1.dist-info/METADATA +51 -0
- remotivelabs_cli-0.5.0a1.dist-info/RECORD +84 -0
- remotivelabs_cli-0.5.0a1.dist-info/WHEEL +4 -0
- remotivelabs_cli-0.5.0a1.dist-info/entry_points.txt +3 -0
- remotivelabs_cli-0.5.0a1.dist-info/licenses/LICENSE +17 -0
|
@@ -0,0 +1,84 @@
|
|
|
1
|
+
remotivelabs/cli/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
2
|
+
remotivelabs/cli/api/cloud/tokens.py,sha256=QiL_wZdj7Jo6IIMWv6uINeClc-gkuZ-0lfhlBFpR3DM,1644
|
|
3
|
+
remotivelabs/cli/broker/__init__.py,sha256=SKkyttrTQwLrFAxJn2mqCvqCdrpcB233au01a89srMM,1342
|
|
4
|
+
remotivelabs/cli/broker/defaults.py,sha256=U2x6q1pmikxQCoXjV2K0xNK0YqOZxpjupCICON_1dvE,44
|
|
5
|
+
remotivelabs/cli/broker/discovery.py,sha256=uvbLqA7_BQkFNcfEUTtopR1aOR6zI1-Uv0iyid2Pico,1535
|
|
6
|
+
remotivelabs/cli/broker/export.py,sha256=ua5_J7mwGngmkPWknkJEuAuw4Z5Ua_fR_OQuApEjzQg,3569
|
|
7
|
+
remotivelabs/cli/broker/files.py,sha256=m5d3g2GCZRfDYaQlfRlD9hLIb8EYBCgj5VYuOCNP7Vs,4277
|
|
8
|
+
remotivelabs/cli/broker/lib/__about__.py,sha256=xnZ5V6ZcHW9dhWLWdMzVjYJbEnMKpeXm0_S_mbNzypE,141
|
|
9
|
+
remotivelabs/cli/broker/lib/broker.py,sha256=1p2OWHowaRiKznxz8q5WhuyNObmdPITX91gTqQhkcsQ,26345
|
|
10
|
+
remotivelabs/cli/broker/lib/client.py,sha256=MCwP6LW5BnwZCWOtZc9mowK2f-wjjqh4Qbvgy1pCqq8,8566
|
|
11
|
+
remotivelabs/cli/broker/lib/helper.py,sha256=P5Argv-cZPjL1OJewbJUyTQUgvumBjk-KVorv8edxlo,9296
|
|
12
|
+
remotivelabs/cli/broker/lib/signalcreator.py,sha256=CDInuSAmNrOlEya_br8CGZR1VNAXY7CXkF9s3mQUpHk,8201
|
|
13
|
+
remotivelabs/cli/broker/license_flows.py,sha256=d1q5Dg7C-O8GJ5uRfmVsJKBtRbGShUKkVGCzL1HCAZ8,7388
|
|
14
|
+
remotivelabs/cli/broker/licenses.py,sha256=roT-FwkZv44BYEpF51kHqYQxyYA9ix4b2hj4qUzAxqI,4056
|
|
15
|
+
remotivelabs/cli/broker/playback.py,sha256=iOaqg0yMN8c2TE1V7f_9ekxcO3g2v-YUTd6rEdOTLsY,4158
|
|
16
|
+
remotivelabs/cli/broker/record.py,sha256=w0tmQjOIn9jfTEucXIjgMU3JRaU_7ryOz5LpWttj-1M,1488
|
|
17
|
+
remotivelabs/cli/broker/recording_session/__init__.py,sha256=uNjxsb25IslNVfoOVgwVlb8VkvYHmMBBo9zMJQwAoX4,81
|
|
18
|
+
remotivelabs/cli/broker/recording_session/client.py,sha256=zpwTwQ8U5cFzmNMMIPVZEoqDqxevdj3eHJjZli4II9I,2379
|
|
19
|
+
remotivelabs/cli/broker/recording_session/cmd.py,sha256=VNz5pVmpCTWXl7_igiez3rDPke_PtfH4fBNPBG-42cw,10336
|
|
20
|
+
remotivelabs/cli/broker/recording_session/time.py,sha256=7gk02uqyHJLhJjZFimWzpV4FRN7xAByw5gb9pRoNk48,1362
|
|
21
|
+
remotivelabs/cli/broker/scripting.py,sha256=ZM-GhTGz1DPaY8In8MQjw8dK1rXqUxKJN8NQCITlUCM,3773
|
|
22
|
+
remotivelabs/cli/broker/signals.py,sha256=l9pgpITXYbV9X73TFPY91g-PTzxIuianfk1zFD-17f8,8323
|
|
23
|
+
remotivelabs/cli/broker/version.py,sha256=Oe5toX9RpgsGwi_sWuBO-UtJMUrVY1L7Qa2L0WqOYBk,1054
|
|
24
|
+
remotivelabs/cli/cloud/__init__.py,sha256=eswNI642yKD6tPc4boYorjVCuEEe6wzQgItX_aCrXUQ,1026
|
|
25
|
+
remotivelabs/cli/cloud/auth/__init__.py,sha256=t_uRw7BBfPegGV5eB23OpDrQ92mdhyDorbyikXNMeX8,67
|
|
26
|
+
remotivelabs/cli/cloud/auth/cmd.py,sha256=OulyeH_fTgGPDAo8KMILewMwmAAZAT7-5rm-cJwNLpQ,4052
|
|
27
|
+
remotivelabs/cli/cloud/auth/login.py,sha256=V_dyv71FoAxjmkghaTz5qVOTxrfhVasruNbycn4Pp6w,10386
|
|
28
|
+
remotivelabs/cli/cloud/auth_tokens.py,sha256=ywHcl6VFMjOnPOpP8zHMbYyKjSQjopE17pqggLH-QY8,5319
|
|
29
|
+
remotivelabs/cli/cloud/brokers.py,sha256=kfZg5POjAo5Is5xAtZ3r2EZpKX8UKVvlz_b-_1grqoE,3888
|
|
30
|
+
remotivelabs/cli/cloud/configs.py,sha256=wAYij5WbsB6ejIisG4ATzBiRykqALS-WsaqRl2gh9tU,3784
|
|
31
|
+
remotivelabs/cli/cloud/licenses/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
32
|
+
remotivelabs/cli/cloud/licenses/cmd.py,sha256=3873_kqjLHB5BOZdhP3XDqSqfOPTqlUQ-b7l_9-BqzY,503
|
|
33
|
+
remotivelabs/cli/cloud/organisations.py,sha256=ZiAv8uME6b6HCewuUG-ViJxKEh6-6kLbKMymKDK-Fvg,4110
|
|
34
|
+
remotivelabs/cli/cloud/projects.py,sha256=a3ImLSw0k4YhihxX8ojsIgVwWtiGfESV8r0uwcm8ixI,1636
|
|
35
|
+
remotivelabs/cli/cloud/recordings.py,sha256=soKzXtpeOSJnFOyJmd0FF5EawLs7yX0mFj0MH0BzEmU,23816
|
|
36
|
+
remotivelabs/cli/cloud/recordings_playback.py,sha256=iapKGJzKqCgK4zWd8LikmYj5c78w8O4Q_X4NmB43Wr0,11504
|
|
37
|
+
remotivelabs/cli/cloud/resumable_upload.py,sha256=mJtQUnodydVBukKHTNE__EXW9S3NvtUFLTPGbNxMA0Q,3734
|
|
38
|
+
remotivelabs/cli/cloud/sample_recordings.py,sha256=xP6TXxbgg81fOcN4_Vq24yfmHhwNlsk7WNnD-_J8PNk,747
|
|
39
|
+
remotivelabs/cli/cloud/service_account_tokens.py,sha256=dSNOzL5afVu0zXb1Y3NVm-YuaVZC7UJhWdEm2Jjhu28,2922
|
|
40
|
+
remotivelabs/cli/cloud/service_accounts.py,sha256=vAZmV3LZJoHjnkEBBrv3xsXyGgvlnNNnCZWpSkN0Dms,2632
|
|
41
|
+
remotivelabs/cli/cloud/storage/__init__.py,sha256=rF8DPQdKZfmhwY98pXo51laiWOemjXC_9pM4zmfytBI,198
|
|
42
|
+
remotivelabs/cli/cloud/storage/cmd.py,sha256=-NQ-G5tBkJbD-tDUoik_OagqZUb27MhRgeHC2BMB7vk,3052
|
|
43
|
+
remotivelabs/cli/cloud/storage/copy.py,sha256=D-aXS70fnWiXVaZWrKTc6ZdwWFTKiPA6cSWaDp-2RSU,3341
|
|
44
|
+
remotivelabs/cli/cloud/storage/uri_or_path.py,sha256=yhP9z2tpGhZlbd56IXlw1e9kV_FPFTYRYy2qrW2zrWA,1171
|
|
45
|
+
remotivelabs/cli/cloud/uri.py,sha256=QZCus--KJQlVwGCOzZqiglvj8VvSRKxfVvN33Pilgyg,3616
|
|
46
|
+
remotivelabs/cli/connect/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
47
|
+
remotivelabs/cli/connect/connect.py,sha256=xNRBzhj95mmSz2kktDERXKChRZE9uWg3TjpuHEUg2y8,4259
|
|
48
|
+
remotivelabs/cli/connect/protopie/protopie.py,sha256=acyEmP0K1PNNf9qyf1Z9X_YsHXH57TOiOokFeqQdOLs,6522
|
|
49
|
+
remotivelabs/cli/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
50
|
+
remotivelabs/cli/remotive.py,sha256=vYfacRzoRwPuGanjPwYZHKmxjbJx22W9aCW6jSFrcwg,4010
|
|
51
|
+
remotivelabs/cli/settings/__init__.py,sha256=vnZZ3zGgBgRxfMVk48N_cJCRMjZjLFM3JbhXmg6DJl0,756
|
|
52
|
+
remotivelabs/cli/settings/config_file.py,sha256=Y4T5lF4ohAsHhoHIlX-Dm9hG6lBC4lN6FGRLbbiw560,3599
|
|
53
|
+
remotivelabs/cli/settings/core.py,sha256=Bgu6ZcRsEq29XwIXp2tMRhmGHWALc2dSlbjDFJeLVLo,11496
|
|
54
|
+
remotivelabs/cli/settings/migration/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
55
|
+
remotivelabs/cli/settings/migration/migrate_all_token_files.py,sha256=Ej4Q5U6fhRvEQ_cyMK2f6wG2S505P8aqWlSEu5mb_sU,3062
|
|
56
|
+
remotivelabs/cli/settings/migration/migrate_config_file.py,sha256=x4AytaEJ3KKeYR7TE-QJr6XFsFD9wbmoMzIHbQ2gKnk,2256
|
|
57
|
+
remotivelabs/cli/settings/migration/migrate_legacy_dirs.py,sha256=N0t2io3bT_ub8BcVPw1CeQ4eeexRUiu3jXq3DL018OE,1819
|
|
58
|
+
remotivelabs/cli/settings/migration/migrate_token_file.py,sha256=lrA9N_FLZiM0de3kB8m8MYP_B3UgpPDNific9VvVsRI,1556
|
|
59
|
+
remotivelabs/cli/settings/migration/migration_tools.py,sha256=63i-u3RwRV5eDI4DikIjkva7EACLJjyodrJ3CExhXKw,1412
|
|
60
|
+
remotivelabs/cli/settings/state_file.py,sha256=14MP8Gw-ZH0Db0wx0aSjL75dvLSLXCGO5CdEzCsWaF4,2175
|
|
61
|
+
remotivelabs/cli/settings/token_file.py,sha256=8JbLYdPk2mO8SQrJKJ4Z9V4B6dKJsy023ZG1A1HHuOk,3934
|
|
62
|
+
remotivelabs/cli/tools/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
63
|
+
remotivelabs/cli/tools/can/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
64
|
+
remotivelabs/cli/tools/can/can.py,sha256=V1rAQZ0u0jmqdkLpMmqnwYl7t8h7VPVnqYBTOtzsUl0,2197
|
|
65
|
+
remotivelabs/cli/tools/tools.py,sha256=_FmwroN1dafUpJry48QSH3mub_bJJwooLlIuzDSxBiM,266
|
|
66
|
+
remotivelabs/cli/topology/__init__.py,sha256=ETIxEAvYWSfgEvBZ5AnSmq6iy7xcx16KLq7EvkToMdM,859
|
|
67
|
+
remotivelabs/cli/topology/all.py,sha256=TjJAMQj5-X1IFWcgI-AYEVd-VsZ0dJbpS5k5yRleXrY,11598
|
|
68
|
+
remotivelabs/cli/topology/cli/__init__.py,sha256=V1wcw6rlgLVM9UvH5H1ZvOrlVdIMJW7krqZLkFJq6wY,104
|
|
69
|
+
remotivelabs/cli/topology/cli/run_in_docker.py,sha256=T6orttlcaDJlUBw_G2IobKGBhcX4S9duPftFJc-yAh4,2020
|
|
70
|
+
remotivelabs/cli/topology/cli/topology_cli.py,sha256=zj1aZlsZqW0-eupZqfDgcuvHU8Vb6eKsVLRmWxvpstk,484
|
|
71
|
+
remotivelabs/cli/topology/cmd.py,sha256=_zgdtCbcIYR3Izw5OB8gXv_cIhf6xUKSfkcM0Uvk2XQ,5004
|
|
72
|
+
remotivelabs/cli/topology/start_trial.py,sha256=0qtBsMyc8w5pTYO7VyvHhLkDmek3jhhbNJHPcv0tEOo,4590
|
|
73
|
+
remotivelabs/cli/typer/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
74
|
+
remotivelabs/cli/typer/typer_utils.py,sha256=Dl19stFqzwS9Q1fSKtrK1sGRVZLaF4YZjRECe5zeIKQ,897
|
|
75
|
+
remotivelabs/cli/utils/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
76
|
+
remotivelabs/cli/utils/console.py,sha256=U3rEvm9EVJ1a_rcdu7irYredT90j21m5k-Nu7bPDmro,2516
|
|
77
|
+
remotivelabs/cli/utils/rest_helper.py,sha256=Dyt_gLn_u0yy58XEJnUKF7PGs3lwxHQSU1zh3ejweYw,14154
|
|
78
|
+
remotivelabs/cli/utils/time.py,sha256=TEKcNZ-pQoJ7cZ6hQmVD0sTRwRm2rBy51-MuDNdO4S4,296
|
|
79
|
+
remotivelabs/cli/utils/versions.py,sha256=mtcZCJ6ZuYaEWTns9oEKqaduZP5B2Swl-tB-6vkRTtw,3847
|
|
80
|
+
remotivelabs_cli-0.5.0a1.dist-info/licenses/LICENSE,sha256=qDPP_yfuv1fF-u7EfexN-cN3M8aFgGVndGhGLovLKz0,608
|
|
81
|
+
remotivelabs_cli-0.5.0a1.dist-info/WHEEL,sha256=I8-bO5cg2sb8TH6ZM6EgCP87Y1cV_f9UGgWnfAhVOZI,78
|
|
82
|
+
remotivelabs_cli-0.5.0a1.dist-info/entry_points.txt,sha256=1_z4tuKIHN1c7BYHgQ7iQ_JJPKzsCk2aiPRRJZGBooY,60
|
|
83
|
+
remotivelabs_cli-0.5.0a1.dist-info/METADATA,sha256=vRZPm3GUt4FrI6jcJFFLxikCq3Rg2HvO2eKbZJA7l6Y,1926
|
|
84
|
+
remotivelabs_cli-0.5.0a1.dist-info/RECORD,,
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
Apache-2.0
|
|
2
|
+
|
|
3
|
+
RemotiveLabs CLI
|
|
4
|
+
Copyright 2022 RemotiveLabs <hello@remotivelabs.com>
|
|
5
|
+
|
|
6
|
+
Licensed under the Apache License, Version 2.0 (the "License");
|
|
7
|
+
you may not use this file except in compliance with the License.
|
|
8
|
+
You may obtain a copy of the License at
|
|
9
|
+
|
|
10
|
+
http://www.apache.org/licenses/LICENSE-2.0
|
|
11
|
+
|
|
12
|
+
Unless required by applicable law or agreed to in writing, software
|
|
13
|
+
distributed under the License is distributed on an "AS IS" BASIS,
|
|
14
|
+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
15
|
+
See the License for the specific language governing permissions and
|
|
16
|
+
limitations under the License.
|
|
17
|
+
|