qbraid-cli 0.8.0.dev6__py3-none-any.whl → 0.8.0.dev7__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 CHANGED
@@ -12,5 +12,5 @@ __version__: str
12
12
  __version_tuple__: VERSION_TUPLE
13
13
  version_tuple: VERSION_TUPLE
14
14
 
15
- __version__ = version = '0.8.0.dev6'
16
- __version_tuple__ = version_tuple = (0, 8, 0, 'dev6')
15
+ __version__ = version = '0.8.0.dev7'
16
+ __version_tuple__ = version_tuple = (0, 8, 0, 'dev7')
@@ -7,6 +7,7 @@ Module defining commands in the 'qbraid configure' namespace.
7
7
  """
8
8
 
9
9
  import typer
10
+ from rich.console import Console
10
11
 
11
12
  from qbraid_cli.configure.actions import default_action
12
13
 
@@ -54,15 +55,22 @@ def configure_set(
54
55
 
55
56
  @configure_app.command(name="magic")
56
57
  def configure_magic():
57
- """Configure qBraid IPython magic commands."""
58
+ """Enable qBraid IPython magic commands."""
58
59
  # pylint: disable-next=import-outside-toplevel
59
60
  from qbraid_core.services.environments import add_magic_config
60
61
 
61
62
  add_magic_config()
62
63
 
63
- typer.echo("Successfully configured qBraid IPython magic commands.")
64
- typer.echo("You can now use the qBraid-CLI from inside a Jupyter notebook as follows:")
65
- typer.echo("\n\n\t[ ] %load_ext qbraid_magic\n\n\t[ ] %qbraid")
64
+ console = Console()
65
+
66
+ in_1 = (
67
+ "[green]In [[/green][yellow]1[/yellow][green]]:[/green] [blue]%[/blue]load_ext qbraid_magic"
68
+ )
69
+ in_2 = "[green]In [[/green][yellow]2[/yellow][green]]:[/green] [blue]%[/blue]qbraid"
70
+
71
+ console.print("\nSuccessfully configured qBraid IPython magic commands.\n")
72
+ console.print("You can now use the qBraid-CLI from inside a Jupyter notebook as follows:")
73
+ console.print(f"\n\t{in_1}\n\n\t{in_2}\n")
66
74
 
67
75
 
68
76
  if __name__ == "__main__":
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: qbraid-cli
3
- Version: 0.8.0.dev6
3
+ Version: 0.8.0.dev7
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
@@ -1,5 +1,5 @@
1
1
  qbraid_cli/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
2
- qbraid_cli/_version.py,sha256=9V-2xXPHq42ZtrAPqEiMfWvgn4E8aKBKuNNPjD1ffOk,424
2
+ qbraid_cli/_version.py,sha256=LlNqfqEKaHtz__4TUC6OnHia_u-wZZrbjkS5UKENpH0,424
3
3
  qbraid_cli/exceptions.py,sha256=KjlhYJhSHMVazaNiBjD_Ur06w4sekP8zRsFzBdyIpno,672
4
4
  qbraid_cli/handlers.py,sha256=i3vdRtdy4bZKg3j6fwfVMz1ddhMgzlc2hhmj-vewxpI,6542
5
5
  qbraid_cli/main.py,sha256=IRKazFqtFpoiq_xOtqb-IXDKAVs4lacFIRCQCoiGNF4,2503
@@ -9,7 +9,7 @@ qbraid_cli/admin/headers.py,sha256=oE2Ry9221ZV4tgYqFJNHAPilDw72xR3LqG_gBw7BFxM,6
9
9
  qbraid_cli/admin/validation.py,sha256=LkAVXlHtM0MhCa34MIWrfX59wGXMVlZmdVB4-AQ8fBk,1003
10
10
  qbraid_cli/configure/__init__.py,sha256=6GU7vR6JYRGcMsmdrpFbwLO5VSUmnLgwSbtmGWMQND4,158
11
11
  qbraid_cli/configure/actions.py,sha256=3rrWHaCAsogyx0Ll-lcjbSzldD4kPuz1z6VQiWebSWw,3203
12
- qbraid_cli/configure/app.py,sha256=Y-XQYQ5lwQJkHW1vUNK44RpVmmA86mZR0xf_Q-yT7yE,2160
12
+ qbraid_cli/configure/app.py,sha256=1uRe2lkUA4TtYb5b4mbD4LH-cKCbsZGT3Wfk7fpNzX0,2414
13
13
  qbraid_cli/credits/__init__.py,sha256=t-3XAJFAXiu_jI4sgjaIOuNne_AoSYaSEsi-SSRkvPw,154
14
14
  qbraid_cli/credits/app.py,sha256=iHikmjx8pylMFNzHckuauOg-Nb9pS7xQq_H75ibVJig,774
15
15
  qbraid_cli/devices/__init__.py,sha256=_PU3eMQRV4DkPw-oCmfCPh8EbVmgG76ieEKuNsY9Xqc,154
@@ -26,8 +26,8 @@ qbraid_cli/jobs/toggle_braket.py,sha256=d5C_Di80jWMFlh-77eH8YY9pjMKWXK5abenUDtPl
26
26
  qbraid_cli/jobs/validation.py,sha256=xNbjUggMhUs4wzkuRm4PuFPi_wrElYicUgYXLznHz3U,2983
27
27
  qbraid_cli/kernels/__init__.py,sha256=VhpBota_v7OoiGxrPCqJU4XBVcolf81mbCYGSxXzVhc,154
28
28
  qbraid_cli/kernels/app.py,sha256=ZJWVdKzCDfzGnA1pqp01vDbE7fh8p84jC-y6DDgWlxc,3373
29
- qbraid_cli-0.8.0.dev6.dist-info/METADATA,sha256=2B553-9K_zSo24YJE_PL1t31R9ZQRcvv9TV0CcT-yzA,5919
30
- qbraid_cli-0.8.0.dev6.dist-info/WHEEL,sha256=GJ7t_kWBFywbagK5eo9IoUwLW6oyOeTKmQ-9iHFVNxQ,92
31
- qbraid_cli-0.8.0.dev6.dist-info/entry_points.txt,sha256=c5ZJ7NjbxhDqMpou9q5F03_b_KG34HzFDijIDmEIwgQ,47
32
- qbraid_cli-0.8.0.dev6.dist-info/top_level.txt,sha256=LTYJgeYSCHo9Il8vZu0yIPuGdGyNaIw6iRy6BeoZo8o,11
33
- qbraid_cli-0.8.0.dev6.dist-info/RECORD,,
29
+ qbraid_cli-0.8.0.dev7.dist-info/METADATA,sha256=2TTf3_aT_Dt7MxkpSCUgwXlKiFfA2UzWWCpieAL8u_c,5919
30
+ qbraid_cli-0.8.0.dev7.dist-info/WHEEL,sha256=GJ7t_kWBFywbagK5eo9IoUwLW6oyOeTKmQ-9iHFVNxQ,92
31
+ qbraid_cli-0.8.0.dev7.dist-info/entry_points.txt,sha256=c5ZJ7NjbxhDqMpou9q5F03_b_KG34HzFDijIDmEIwgQ,47
32
+ qbraid_cli-0.8.0.dev7.dist-info/top_level.txt,sha256=LTYJgeYSCHo9Il8vZu0yIPuGdGyNaIw6iRy6BeoZo8o,11
33
+ qbraid_cli-0.8.0.dev7.dist-info/RECORD,,