Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add interactive CLI to save user account #2066

Open
wants to merge 32 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
32 commits
Select commit Hold shift + click to select a range
90103c4
CLI: First pass
frankharkins Dec 2, 2024
781fe7a
Make types compatible with Python3.8
frankharkins Dec 2, 2024
4c7fb44
Add tests
frankharkins Dec 2, 2024
6446c5d
Make CLI module private
frankharkins Dec 2, 2024
2b97788
Add --help
frankharkins Dec 2, 2024
25f2275
Add `save-account` as subcommand
frankharkins Dec 2, 2024
2c21d52
Neaten, lint, and format
frankharkins Dec 2, 2024
d340758
Update qiskit_ibm_runtime/_cli.py
frankharkins Dec 2, 2024
fcc79d4
Merge branch 'main' of https://github.com/Qiskit/qiskit-ibm-runtime i…
frankharkins Dec 2, 2024
dbc307b
black
frankharkins Dec 2, 2024
fd671aa
Fix apache header
frankharkins Dec 2, 2024
1407d38
Fix types
frankharkins Dec 2, 2024
237b1c0
Update qiskit_ibm_runtime/_cli.py
frankharkins Dec 5, 2024
c0c0f29
quit -> q
frankharkins Dec 5, 2024
51d132c
Refactor: Format
frankharkins Dec 5, 2024
4dd96bf
Minor bug
frankharkins Dec 5, 2024
a2e4936
scripts -> commands
frankharkins Dec 5, 2024
093977d
Reorg: UserInput
frankharkins Dec 5, 2024
68a335a
Add `--no-color` arg
frankharkins Dec 16, 2024
89d4374
Move `Formatter` class
frankharkins Dec 16, 2024
cb84f21
Merge branch 'main' into FH/cli
frankharkins Dec 17, 2024
9f35940
Add docstring
frankharkins Dec 17, 2024
7c8302a
Add type hints
frankharkins Dec 17, 2024
7e76273
One-line test docstrings
frankharkins Dec 18, 2024
635a167
Apply suggestions from code review
frankharkins Dec 18, 2024
a3f3f4e
Simplify formatter
frankharkins Dec 18, 2024
c3ba41a
Incorporate review feedback
frankharkins Dec 18, 2024
b5f033f
Fix tests
frankharkins Dec 18, 2024
2ef0d97
lint
frankharkins Dec 18, 2024
19dca4a
Test commit to debug CI
frankharkins Dec 18, 2024
ae13cf2
Attempt fix for CI
frankharkins Dec 18, 2024
4405c5a
Revert "Test commit to debug CI"
frankharkins Dec 18, 2024
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -97,6 +97,9 @@ ibm_backend = "qiskit_ibm_runtime.transpiler.plugin:IBMTranslationPlugin"
ibm_dynamic_circuits = "qiskit_ibm_runtime.transpiler.plugin:IBMDynamicTranslationPlugin"
ibm_fractional = "qiskit_ibm_runtime.transpiler.plugin:IBMFractionalTranslationPlugin"

[project.entry-points."console_scripts"]
qiskit-ibm-runtime = "qiskit_ibm_runtime._cli:entry_point"

[project.urls]
documentation = "https://docs.quantum.ibm.com/"
repository = "https://github.com/Qiskit/qiskit-ibm-runtime"
Expand Down
247 changes: 247 additions & 0 deletions qiskit_ibm_runtime/_cli.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,247 @@
# This code is part of Qiskit.
#
# (C) Copyright IBM 2024.
#
# This code is licensed under the Apache License, Version 2.0. You may
# obtain a copy of this license in the LICENSE.txt file in the root directory
# of this source tree or at http://www.apache.org/licenses/LICENSE-2.0.
#
# Any modifications or derivative works of this code must retain this
# copyright notice, and modified files need to carry a notice indicating
# that they have been altered from the originals.

"""
The `save-account` command-line interface.

These classes and functions are not public.
"""

import argparse
frankharkins marked this conversation as resolved.
Show resolved Hide resolved
import sys
from getpass import getpass
from typing import List, Literal, Callable, TypeVar

from ibm_cloud_sdk_core.api_exception import ApiException

from .qiskit_runtime_service import QiskitRuntimeService
from .exceptions import IBMNotAuthorizedError
from .api.exceptions import RequestsApiError
from .accounts.management import AccountManager, _DEFAULT_ACCOUNT_CONFIG_JSON_FILE
from .accounts.exceptions import AccountAlreadyExistsError

Channel = Literal["ibm_quantum", "ibm_cloud"]
T = TypeVar("T")


def entry_point() -> None:
"""
This is the entry point for the `qiskit-ibm-runtime` command. At the
moment, we only support one script (save-account), but we want to have a
`qiskit-ibm-runtime` command so users can run `pipx run qiskit-ibm-runtime
save-account`.
"""
# Use argparse to create the --help feature
parser = argparse.ArgumentParser(
prog="qiskit-ibm-runtime",
description="Commands for the Qiskit IBM Runtime Python package",
)
parser.add_subparsers(
title="Commands",
description="This package supports the following command:",
dest="script",
frankharkins marked this conversation as resolved.
Show resolved Hide resolved
required=True,
).add_parser(
"save-account",
description=(
"An interactive command-line interface to save your Qiskit IBM "
"Runtime account locally. This script is interactive-only."
),
help="Interactive command-line interface to save your account locally.",
frankharkins marked this conversation as resolved.
Show resolved Hide resolved
).add_argument(
"--no-color", action="store_true", help="Hide ANSI escape codes in output"
)
args = parser.parse_args()
use_color = not args.no_color
if args.script == "save-account":
try:
SaveAccountCLI(color=use_color).main()
except KeyboardInterrupt:
sys.exit()


class Formatter:
"""Format using terminal escape codes"""

# pylint: disable=missing-function-docstring
#
def __init__(self, *, color: bool) -> None:
self.color = color

def box(self, lines: List[str]) -> str:
"""Print lines in a box using Unicode box-drawing characters"""
width = max(len(line) for line in lines)
styled_lines = [self.text(line.ljust(width), "bold") for line in lines]
box_lines = [
"╭─" + "─" * width + "─╮",
*(f"│ {line} │" for line in styled_lines),
"╰─" + "─" * width + "─╯",
]
return "\n".join(box_lines)

def text(self, text: str, styles: str) -> str:
if not self.color:
return text
codes = {
"bold": 1,
"green": 32,
"red": 31,
"cyan": 36,
}
ansi_start = "".join([f"\033[{codes[style]}m" for style in styles.split(" ")])
ansi_end = "\033[0m"
return f"{ansi_start}{text}{ansi_end}"


class SaveAccountCLI:
"""
This class contains the save-account command and helper functions.
"""

def __init__(self, *, color: bool) -> None:
self.fmt = Formatter(color=color)

def main(self) -> None:
"""
A CLI that guides users through getting their account information and
saving it to disk.
"""
print(self.fmt.box(["Qiskit IBM Runtime save account"]))
channel = self.get_channel()
token = self.get_token(channel)
print("Verifying, this might take few seconds...")
try:
service = QiskitRuntimeService(channel=channel, token=token)
except (ApiException, IBMNotAuthorizedError, RequestsApiError) as err:
print(
frankharkins marked this conversation as resolved.
Show resolved Hide resolved
self.fmt.text("\nError while authorizing with your token\n", "red bold")
+ self.fmt.text(err.message or "", "red"),
file=sys.stderr,
)
sys.exit(1)
instance = self.get_instance(service)
self.save_to_disk(
{
"channel": channel,
"token": token,
"instance": instance,
}
)

def get_channel(self) -> Channel:
"""Ask user which channel to use"""
print(self.fmt.text("Select a channel", "bold"))
return UserInput.select_from_list(["ibm_quantum", "ibm_cloud"], self.fmt)

def get_token(self, channel: Channel) -> str:
"""Ask user for their token"""
token_url = {
"ibm_quantum": "https://quantum.ibm.com",
"ibm_cloud": "https://cloud.ibm.com/iam/apikeys",
}[channel]
styled_token_url = self.fmt.text(token_url, "cyan")
print(
self.fmt.text("\nPaste your API token", "bold")
+ f"\nYou can get this from {styled_token_url}."
+ "\nFor security, you might not see any feedback when typing."
)
return UserInput.token()

def get_instance(self, service: QiskitRuntimeService) -> str:
"""
Ask user which instance to use, or select automatically if only one
is available.
"""
instances = service.instances()
if len(instances) == 1:
instance = instances[0]
print("Using instance " + self.fmt.text(instance, "green bold"))
return instance
print(self.fmt.text("\nSelect a default instance", "bold"))
return UserInput.select_from_list(instances, self.fmt)

def save_to_disk(self, account: dict) -> None:
"""
Save account details to disk, confirming if they'd like to overwrite if
one exists already. Display a warning that token is stored in plain
text.
"""
try:
AccountManager.save(**account)
except AccountAlreadyExistsError:
response = UserInput.input(
message="\nDefault account already exists, would you like to overwrite it? (y/N):",
is_valid=lambda response: response.strip().lower() in ["y", "yes", "n", "no", ""],
)
if response.strip().lower() in ["y", "yes"]:
AccountManager.save(**account, overwrite=True)
else:
print("Account not saved.", file=sys.stderr)
return

print("Account saved to " + self.fmt.text(_DEFAULT_ACCOUNT_CONFIG_JSON_FILE, "green bold"))
print(
frankharkins marked this conversation as resolved.
Show resolved Hide resolved
self.fmt.box(
[
"⚠️ Warning: your token is saved to disk in plain text.",
"If on a shared computer, make sure to revoke your token",
"by regenerating it in your account settings when finished.",
]
),
file=sys.stderr,
)


class UserInput:
"""
Helper functions to get different types input from user.
"""

@staticmethod
def input(message: str, is_valid: Callable[[str], bool]) -> str:
"""
Repeatedly ask user for input until they give us something that satisifies
`is_valid`.
"""
while True:
response = input(message + " ").strip()
if response in ["q", "quit"]:
sys.exit()
if is_valid(response):
return response
print("Did not understand input, trying again... (or type 'q' to quit)")

@staticmethod
def token() -> str:
"""Ask for API token, prompting again if empty"""
while True:
token = getpass("Token: ").strip()
if token != "":
return token

@staticmethod
def select_from_list(options: List[T], formatter: Formatter) -> T:
"""
Prompt user to select from a list of options by entering a number.
"""
print()
for index, option in enumerate(options):
print(f" ({index+1}) {option}")
print()
response = UserInput.input(
message=f"Enter a number 1-{len(options)} and press enter:",
is_valid=lambda response: response.isdigit()
and int(response) in range(1, len(options) + 1),
)
choice = options[int(response) - 1]
print("Selected " + formatter.text(str(choice), "green bold"))
return choice
Loading
Loading