qcs_sdk.diagnostics

1# This file is automatically generated by pyo3_stub_gen
2# ruff: noqa: F401
3
4from qcs_sdk._qcs_sdk.diagnostics import get_report, get_report_async
5__all__ = [
6    "get_report",
7    "get_report_async",
8]
def get_report():

Return a string describing the package and its environment for use in bug reporting and diagnosis.

This is a synchronous wrapper around get_report_async. Use that version in async environments.

Note: this format is not stable and its content may change between versions.

def get_report_async():

Return a string describing the package and its environment for use in bug reporting and diagnosis.

Note: this format is not stable and its content may change between versions.

Python Usage

import asyncio
from qcs_sdk import diagnostics

async def main():
    return await diagnostics.get_report_async()

report = asyncio.run(main())
print(report)