FoundryProductsTechnologyCompanyInvestor relationsResource libraryNews
Contact us
Resource library
    Introduction to Dirac-3 home
    Dirac-3 Developer Beginner Guide
    Dirac-3 user guide
    Dirac-3 spec sheet
    Entropy Quantum Computing overview
    Multibody formulation
    qci-client software package
      Getting Started
      Basic Usage
      qci-client
      Dependencies
      Index
      Module Index
    eqc-direct software package

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

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