qbraid-cli 0.8.0.dev0__py3-none-any.whl → 0.8.0.dev3__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.
Potentially problematic release.
This version of qbraid-cli might be problematic. Click here for more details.
- qbraid_cli/_version.py +2 -2
- qbraid_cli/configure/__init__.py +4 -1
- qbraid_cli/configure/actions.py +111 -0
- qbraid_cli/configure/app.py +11 -109
- qbraid_cli/credits/__init__.py +4 -1
- qbraid_cli/credits/app.py +12 -10
- qbraid_cli/devices/__init__.py +4 -1
- qbraid_cli/devices/app.py +43 -35
- qbraid_cli/devices/validation.py +27 -0
- qbraid_cli/envs/__init__.py +4 -1
- qbraid_cli/envs/activate.py +8 -5
- qbraid_cli/envs/app.py +162 -114
- qbraid_cli/envs/create.py +7 -14
- qbraid_cli/envs/data_handling.py +140 -0
- qbraid_cli/exceptions.py +3 -0
- qbraid_cli/handlers.py +4 -1
- qbraid_cli/jobs/__init__.py +4 -1
- qbraid_cli/jobs/app.py +80 -95
- qbraid_cli/jobs/toggle_braket.py +25 -23
- qbraid_cli/jobs/validation.py +74 -0
- qbraid_cli/kernels/__init__.py +4 -1
- qbraid_cli/kernels/app.py +93 -11
- qbraid_cli/main.py +15 -8
- {qbraid_cli-0.8.0.dev0.dist-info → qbraid_cli-0.8.0.dev3.dist-info}/METADATA +58 -42
- qbraid_cli-0.8.0.dev3.dist-info/RECORD +29 -0
- {qbraid_cli-0.8.0.dev0.dist-info → qbraid_cli-0.8.0.dev3.dist-info}/WHEEL +1 -1
- qbraid_cli-0.8.0.dev0.dist-info/RECORD +0 -25
- {qbraid_cli-0.8.0.dev0.dist-info → qbraid_cli-0.8.0.dev3.dist-info}/entry_points.txt +0 -0
- {qbraid_cli-0.8.0.dev0.dist-info → qbraid_cli-0.8.0.dev3.dist-info}/top_level.txt +0 -0
|
@@ -1,20 +1,22 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: qbraid-cli
|
|
3
|
-
Version: 0.8.0.
|
|
3
|
+
Version: 0.8.0.dev3
|
|
4
4
|
Summary: Command Line Interface for interacting with all parts of the qBraid platform.
|
|
5
5
|
Author-email: qBraid Development Team <contact@qbraid.com>
|
|
6
6
|
License: Proprietary
|
|
7
7
|
Project-URL: Homepage, https://www.qbraid.com/
|
|
8
|
-
Project-URL: Documentation, https://docs.qbraid.com/projects/cli/en/
|
|
8
|
+
Project-URL: Documentation, https://docs.qbraid.com/projects/cli/en/stable/guide/overview.html
|
|
9
9
|
Project-URL: Bug Tracker, https://github.com/qBraid/qBraid-Lab/issues
|
|
10
10
|
Project-URL: Discord, https://discord.gg/KugF6Cnncm
|
|
11
11
|
Project-URL: Launch on Lab, https://account.qbraid.com/?gitHubUrl=https://github.com/qBraid/qBraid-Lab.git
|
|
12
12
|
Keywords: qbraid,cli,quantum,cloud
|
|
13
13
|
Classifier: Development Status :: 5 - Production/Stable
|
|
14
14
|
Classifier: Intended Audience :: Developers
|
|
15
|
-
Classifier: Intended Audience :: System Administrators
|
|
16
15
|
Classifier: Natural Language :: English
|
|
17
|
-
Classifier:
|
|
16
|
+
Classifier: License :: Other/Proprietary License
|
|
17
|
+
Classifier: Intended Audience :: System Administrators
|
|
18
|
+
Classifier: Operating System :: Microsoft :: Windows
|
|
19
|
+
Classifier: Operating System :: POSIX :: Linux
|
|
18
20
|
Classifier: Programming Language :: Python
|
|
19
21
|
Classifier: Programming Language :: Python :: 3
|
|
20
22
|
Classifier: Programming Language :: Python :: 3 :: Only
|
|
@@ -24,28 +26,32 @@ Classifier: Programming Language :: Python :: 3.11
|
|
|
24
26
|
Classifier: Programming Language :: Python :: 3.12
|
|
25
27
|
Requires-Python: >=3.9
|
|
26
28
|
Description-Content-Type: text/markdown
|
|
27
|
-
Requires-Dist: typer
|
|
28
|
-
Requires-Dist: rich
|
|
29
|
-
Requires-Dist:
|
|
30
|
-
Requires-Dist:
|
|
31
|
-
Requires-Dist: qbraid ==0.5.1
|
|
29
|
+
Requires-Dist: typer >=0.12.1
|
|
30
|
+
Requires-Dist: rich >=10.11.0
|
|
31
|
+
Requires-Dist: jupyter-client <9.0.0,>=7.0.0
|
|
32
|
+
Requires-Dist: qbraid-core >=0.1.1
|
|
32
33
|
Provides-Extra: dev
|
|
33
34
|
Requires-Dist: black ; extra == 'dev'
|
|
34
35
|
Requires-Dist: isort ; extra == 'dev'
|
|
35
36
|
Requires-Dist: pylint ; extra == 'dev'
|
|
37
|
+
Requires-Dist: pytest ; extra == 'dev'
|
|
36
38
|
Provides-Extra: docs
|
|
37
|
-
Requires-Dist: sphinx ~=
|
|
38
|
-
Requires-Dist: sphinx-rtd-theme
|
|
39
|
-
Requires-Dist: docutils
|
|
39
|
+
Requires-Dist: sphinx ~=7.2.6 ; extra == 'docs'
|
|
40
|
+
Requires-Dist: sphinx-rtd-theme <2.1,>=1.3 ; extra == 'docs'
|
|
41
|
+
Requires-Dist: docutils <0.21 ; extra == 'docs'
|
|
42
|
+
Requires-Dist: toml ; extra == 'docs'
|
|
43
|
+
Requires-Dist: build ; extra == 'docs'
|
|
40
44
|
Provides-Extra: jobs
|
|
41
45
|
Requires-Dist: amazon-braket-sdk >=1.48.1 ; extra == 'jobs'
|
|
42
46
|
|
|
43
47
|
<img width="full" alt="qbraid_cli" src="https://qbraid-static.s3.amazonaws.com/logos/qbraid-cli-banner.png">
|
|
44
48
|
|
|
45
|
-
[](https://docs.qbraid.com/projects/cli/en/
|
|
49
|
+
[](https://docs.qbraid.com/projects/cli/en/stable/guide/overview.html)
|
|
46
50
|
[](https://pypi.org/project/qbraid-cli/)
|
|
51
|
+
[](https://pypi.org/project/qbraid-cli/)
|
|
52
|
+
[](https://pepy.tech/project/qbraid-cli)
|
|
47
53
|
[](https://github.com/qBraid/qBraid-Lab/issues)
|
|
48
|
-
[](https://discord.gg/
|
|
54
|
+
[](https://discord.gg/KugF6Cnncm)
|
|
49
55
|
|
|
50
56
|
Command Line Interface for interacting with all parts of the qBraid platform.
|
|
51
57
|
|
|
@@ -62,63 +68,73 @@ For help, see qBraid Lab User Guide: [Getting Started](https://docs.qbraid.com/p
|
|
|
62
68
|
|
|
63
69
|
## Basic Commands
|
|
64
70
|
|
|
65
|
-
```
|
|
71
|
+
```shell
|
|
66
72
|
$ qbraid
|
|
67
|
-
|
|
68
|
-
* Welcome to the qBraid CLI! *
|
|
69
|
-
|
|
73
|
+
----------------------------------
|
|
74
|
+
* Welcome to the qBraid CLI! *
|
|
75
|
+
----------------------------------
|
|
76
|
+
|
|
77
|
+
____ _ _
|
|
78
|
+
__ _| __ ) _ __ __ _(_) __| |
|
|
79
|
+
/ _` | _ \| '__/ _` | |/ _` |
|
|
80
|
+
| (_| | |_) | | | (_| | | (_| |
|
|
81
|
+
\__,_|____/|_| \__,_|_|\__,_|
|
|
82
|
+
|_|
|
|
70
83
|
|
|
71
|
-
- Use `qbraid -h` to see available commands.
|
|
72
84
|
|
|
73
|
-
|
|
85
|
+
- Use 'qbraid --help' to see available commands.
|
|
74
86
|
|
|
75
|
-
|
|
87
|
+
- Use 'qbraid --version' to see the current version.
|
|
88
|
+
|
|
89
|
+
Reference Docs: https://docs.qbraid.com/projects/cli/en/stable/guide/overview.html
|
|
76
90
|
```
|
|
77
91
|
|
|
78
92
|
A qBraid CLI command has the following structure:
|
|
79
93
|
|
|
80
|
-
```
|
|
94
|
+
```shell
|
|
81
95
|
$ qbraid <command> <subcommand> [options and parameters]
|
|
82
96
|
```
|
|
83
97
|
|
|
84
98
|
For example, to list installed environments, the command would be:
|
|
85
99
|
|
|
86
|
-
```
|
|
100
|
+
```shell
|
|
87
101
|
$ qbraid envs list
|
|
88
102
|
```
|
|
89
103
|
|
|
90
104
|
To view help documentation, use one of the following:
|
|
91
105
|
|
|
92
|
-
```
|
|
93
|
-
$ qbraid help
|
|
94
|
-
$ qbraid <command> help
|
|
95
|
-
$ qbraid <command> <subcommand> help
|
|
106
|
+
```shell
|
|
107
|
+
$ qbraid --help
|
|
108
|
+
$ qbraid <command> --help
|
|
109
|
+
$ qbraid <command> <subcommand> --help
|
|
96
110
|
```
|
|
97
111
|
|
|
98
112
|
For example:
|
|
99
113
|
|
|
100
|
-
```
|
|
101
|
-
$ qbraid help
|
|
102
|
-
|
|
103
|
-
Group
|
|
104
|
-
qbraid
|
|
114
|
+
```shell
|
|
115
|
+
$ qbraid --help
|
|
105
116
|
|
|
106
|
-
|
|
107
|
-
envs : Manage qBraid environments.
|
|
108
|
-
kernels : Manage qBraid kernels.
|
|
109
|
-
jobs : Manage qBraid Quantum Jobs.
|
|
117
|
+
Usage: qbraid [OPTIONS] COMMAND [ARGS]...
|
|
110
118
|
|
|
111
|
-
|
|
112
|
-
-V, --version : Show version and exit
|
|
119
|
+
The qBraid CLI.
|
|
113
120
|
|
|
114
|
-
|
|
115
|
-
|
|
121
|
+
Options
|
|
122
|
+
--version Show the version and exit.
|
|
123
|
+
--install-completion Install completion for the current shell.
|
|
124
|
+
--show-completion Show completion for the current shell, to copy it or customize the installation.
|
|
125
|
+
--help Show this message and exit.
|
|
116
126
|
|
|
117
|
-
|
|
127
|
+
Commands
|
|
128
|
+
configure Configure qBraid CLI options.
|
|
129
|
+
credits Manage qBraid credits.
|
|
130
|
+
devices Manage qBraid quantum devices.
|
|
131
|
+
envs Manage qBraid environments.
|
|
132
|
+
jobs Manage qBraid quantum jobs.
|
|
133
|
+
kernels Manage qBraid kernels.
|
|
118
134
|
```
|
|
119
135
|
|
|
120
136
|
To get the version of the qBraid CLI:
|
|
121
137
|
|
|
122
|
-
```
|
|
138
|
+
```shell
|
|
123
139
|
$ qbraid --version
|
|
124
140
|
```
|
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
qbraid_cli/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
2
|
+
qbraid_cli/_version.py,sha256=gmvID9vFrR93SKxjTAMGcHF8k0zAbpA7V0aBbjfr5jw,424
|
|
3
|
+
qbraid_cli/exceptions.py,sha256=KjlhYJhSHMVazaNiBjD_Ur06w4sekP8zRsFzBdyIpno,672
|
|
4
|
+
qbraid_cli/handlers.py,sha256=rGxHrwrPHvwP3CKVlJSCZ_KkgGvFlLXd3SsxcC4LqS0,6306
|
|
5
|
+
qbraid_cli/main.py,sha256=ko3c8fkzwcNlNb0AFLFgwlSoOOC4DJgeHlRuHbz-dyw,2504
|
|
6
|
+
qbraid_cli/configure/__init__.py,sha256=6GU7vR6JYRGcMsmdrpFbwLO5VSUmnLgwSbtmGWMQND4,158
|
|
7
|
+
qbraid_cli/configure/actions.py,sha256=3rrWHaCAsogyx0Ll-lcjbSzldD4kPuz1z6VQiWebSWw,3203
|
|
8
|
+
qbraid_cli/configure/app.py,sha256=vcPu1Npf8sfGtWGQrjDJQG5vCdeUa3nlpEnZMlVLlWM,1615
|
|
9
|
+
qbraid_cli/credits/__init__.py,sha256=t-3XAJFAXiu_jI4sgjaIOuNne_AoSYaSEsi-SSRkvPw,154
|
|
10
|
+
qbraid_cli/credits/app.py,sha256=iHikmjx8pylMFNzHckuauOg-Nb9pS7xQq_H75ibVJig,774
|
|
11
|
+
qbraid_cli/devices/__init__.py,sha256=_PU3eMQRV4DkPw-oCmfCPh8EbVmgG76ieEKuNsY9Xqc,154
|
|
12
|
+
qbraid_cli/devices/app.py,sha256=zxSxrEQn7irkJoME4S_CBnRqWeB8cqPaBsIMfpdYFk0,2530
|
|
13
|
+
qbraid_cli/devices/validation.py,sha256=Zt0mdg4nXHz-7yGP3qH6UwVoF18yrqW_4jdS4kiFKsQ,810
|
|
14
|
+
qbraid_cli/envs/__init__.py,sha256=YgIoMWxfGqzmwfypO5JHYuCOu6BfFwb9NHgQel1IJM8,148
|
|
15
|
+
qbraid_cli/envs/activate.py,sha256=VpvVYSfQDlcmlNWJOgkLIQ2p8YXPPLG8Jbl5t8GHUDw,2140
|
|
16
|
+
qbraid_cli/envs/app.py,sha256=t6bRwJGy-M3PAu870ZsttsM8tpSB0OFasgCJiV9nTSA,8620
|
|
17
|
+
qbraid_cli/envs/create.py,sha256=uCRex_TcFYw26jUOU06Ta5I8Mq5pRqLVaOE6MxrrExs,4337
|
|
18
|
+
qbraid_cli/envs/data_handling.py,sha256=mTVzsj6KleeeYDKGhgD-IesF9KQQMSszKFSEo8Wrv9w,4001
|
|
19
|
+
qbraid_cli/jobs/__init__.py,sha256=bj9XmZ4JL8OtMMZbHIu-DPhpOMXGLSB-W1b0wO7wKro,148
|
|
20
|
+
qbraid_cli/jobs/app.py,sha256=LsyYFh2949-6eCVfdzcY-Nvt4rSN5lNBDZ57j0OBzWE,4870
|
|
21
|
+
qbraid_cli/jobs/toggle_braket.py,sha256=2vCkKcDsQmVYpElHwOI-fQCVbIH-0HBnnDZSfp_bSlk,7553
|
|
22
|
+
qbraid_cli/jobs/validation.py,sha256=6QKkFINk8Jqw1wuwPivbD5HuFTzT1cUT_G2WVqaKcnc,2405
|
|
23
|
+
qbraid_cli/kernels/__init__.py,sha256=VhpBota_v7OoiGxrPCqJU4XBVcolf81mbCYGSxXzVhc,154
|
|
24
|
+
qbraid_cli/kernels/app.py,sha256=ZJWVdKzCDfzGnA1pqp01vDbE7fh8p84jC-y6DDgWlxc,3373
|
|
25
|
+
qbraid_cli-0.8.0.dev3.dist-info/METADATA,sha256=Ud547dThxdfsRnAXTcTy_J2s3xQcLVglP9houT2FNSw,5818
|
|
26
|
+
qbraid_cli-0.8.0.dev3.dist-info/WHEEL,sha256=GJ7t_kWBFywbagK5eo9IoUwLW6oyOeTKmQ-9iHFVNxQ,92
|
|
27
|
+
qbraid_cli-0.8.0.dev3.dist-info/entry_points.txt,sha256=c5ZJ7NjbxhDqMpou9q5F03_b_KG34HzFDijIDmEIwgQ,47
|
|
28
|
+
qbraid_cli-0.8.0.dev3.dist-info/top_level.txt,sha256=LTYJgeYSCHo9Il8vZu0yIPuGdGyNaIw6iRy6BeoZo8o,11
|
|
29
|
+
qbraid_cli-0.8.0.dev3.dist-info/RECORD,,
|
|
@@ -1,25 +0,0 @@
|
|
|
1
|
-
qbraid_cli/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
2
|
-
qbraid_cli/_version.py,sha256=T2k5pV0A7nP-1Gk3UNOvSV7kyW5LPzvLPoMH541MgG4,424
|
|
3
|
-
qbraid_cli/exceptions.py,sha256=DBYxsO5rywFdjy-S_46gJ9B91H3hw4SLpR6kXr2wG58,602
|
|
4
|
-
qbraid_cli/handlers.py,sha256=KM06TrgsQ2iIS3CEewh23lw1AS_QjHTqhGDgKjFepDU,6234
|
|
5
|
-
qbraid_cli/main.py,sha256=njcwwgOAT3-hmb2M8XiyodHG1GlIjbzEbrRC7PdF_rE,2234
|
|
6
|
-
qbraid_cli/configure/__init__.py,sha256=YhkIlsmZl0j1cIV8BMOarfMvZ99iwlTEG08UQoXz3P8,78
|
|
7
|
-
qbraid_cli/configure/app.py,sha256=EQgbZ2mHfQmqAQpDss-Xx-Npy_Uri5En4gAPMkAeoxk,4925
|
|
8
|
-
qbraid_cli/credits/__init__.py,sha256=0aN2OWG8cobDlLqa_LoM1I6ateOHLJHmFLVqiGNv19c,76
|
|
9
|
-
qbraid_cli/credits/app.py,sha256=i6FGzq9KHqykfi5rtHOsDs3Sbx5FzKcEit0gR9ggldQ,737
|
|
10
|
-
qbraid_cli/devices/__init__.py,sha256=w7DYe_FQij4bOU01VNV6vH_p-yjtrlfvbP5ctdSLvkE,76
|
|
11
|
-
qbraid_cli/devices/app.py,sha256=jhasrMr750G3PnINmqa7jwCwgRSg1-yLvF6b07i_V6w,2125
|
|
12
|
-
qbraid_cli/envs/__init__.py,sha256=_w-W4bV-rEmiA0qgYYGeGMupd7lDVwvkjebubk7dmsw,73
|
|
13
|
-
qbraid_cli/envs/activate.py,sha256=50w_RLS8H2-RXv9mzv-bRU6CfwsKOuGlXBZsLwbTOV4,1929
|
|
14
|
-
qbraid_cli/envs/app.py,sha256=_0_MSSw2-34kULhfYLf6h0tQTDr05vfb5ZoAKLqLzno,7199
|
|
15
|
-
qbraid_cli/envs/create.py,sha256=XgeyA6LxJ1iRlixW0l9b4X3nru-ffIvAVa55y-z-CME,4590
|
|
16
|
-
qbraid_cli/jobs/__init__.py,sha256=W7_dgrI8pLsku1H7KumlHaVURO-ZHnDA7bRuaKV0Qus,73
|
|
17
|
-
qbraid_cli/jobs/app.py,sha256=UA26t_okZ_XvqeOgNM2Kdb9wM78n6fgEXOpoleB_J48,4860
|
|
18
|
-
qbraid_cli/jobs/toggle_braket.py,sha256=2QyWMw0cG15itIWK5G6GBU7GTSfIviBDGe5-5Pc1cyw,7593
|
|
19
|
-
qbraid_cli/kernels/__init__.py,sha256=enVNsFCjbXqVppUU6aPmEe3YjfGhWXk4HmXwJbqDYpQ,76
|
|
20
|
-
qbraid_cli/kernels/app.py,sha256=_zHoB94QxkWqDnaMVfSuhEQQMcVQycmWoVXdJxvDde8,582
|
|
21
|
-
qbraid_cli-0.8.0.dev0.dist-info/METADATA,sha256=inPMOoP1iQrjzV-qfzxAR2mJUMlTFu5r-lBHgwcpTzc,4758
|
|
22
|
-
qbraid_cli-0.8.0.dev0.dist-info/WHEEL,sha256=oiQVh_5PnQM0E3gPdiz09WCNmwiHDMaGer_elqB3coM,92
|
|
23
|
-
qbraid_cli-0.8.0.dev0.dist-info/entry_points.txt,sha256=c5ZJ7NjbxhDqMpou9q5F03_b_KG34HzFDijIDmEIwgQ,47
|
|
24
|
-
qbraid_cli-0.8.0.dev0.dist-info/top_level.txt,sha256=LTYJgeYSCHo9Il8vZu0yIPuGdGyNaIw6iRy6BeoZo8o,11
|
|
25
|
-
qbraid_cli-0.8.0.dev0.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|