FoundryProductsTechnologyCompanyInvestor relationsResource libraryNews
Contact us
Resource library
    Resource library home
    Developer resources
    Applications
    Lessons
    Research and publications
    Support
      Software packages
        eqc-direct software package
        qci-client software package
          Getting Started
          Basic Usage
          qci-client
          Dependencies
          Index
          Module Index
        uqrng-direct software package
        emucore-direct software package
        eqc-models software package
      Spec sheets
      User guides

Couldn’t find what you are looking for? Reach out to technical support.

Contact support
Privacy PolicyCookie PolicyTerms of UseForward Looking StatementsAccessibility Statement
Terms and Conditions of SaleEnd User License Agreement

© 2018-2026 Quantum Computing Inc.

Download

Default

Getting Started

Installation

qci-client currently supports Python 3.8-12, inclusive, as specified in the PEP-621-compliant pyproject.toml.

Install qci-client from the public PyPI server (https://pypi.org/project/qci-client/) into your Python virtual environment using–

  • pip install qci-client

Instantiating a Client

With Environment Variables

To access the API, set these environment variables–

  • QCI_API_URL - URL for Qatalyst API, Example: “https://api.qci-prod.com”
  • QCI_TOKEN - refresh token string for securely accessing Qatalyst API

then instantiate a QciClient as follows–

  • from qci_client import QciClient
  • client = QciClient()

Without Environment Variables

Access the API without first defining environment variables by instantiating a QciClient as follows–

  • from qci_client import QciClient
  • client = QciClient(url="https://api.qci-prod.com", api_token="<secret-token>")

Table of Contents

  • Getting Started
  • qci_client
    • qci_client.qci_client
      • JobStatus
      • QciClient
    • qci_client.utilities
      • file_part_generator()
      • get_patch_request_body()
      • get_post_request_body()
      • zip_payload()
    • qci_client.data_converter
      • compute_results_step_len()
      • data_to_json()
      • get_size()
    • qci_client.base
      • BaseApi

Version

3.2.1

Next page

Content

  • Getting Started
  • Installation
  • Instantiating a Client
  • With Environment Variables
  • Without Environment Variables
  • Table of Contents
  • Version