qcs_sdk.diagnostics
def
get_report() -> str:
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() -> Awaitable[str]:
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)