1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
# This file is automatically generated by pyo3_stub_gen
# ruff: noqa: E501, F401, F403, F405
=
r"""
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.
"""
r"""
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
```python
import asyncio
from qcs_sdk import diagnostics
async def main():
return await diagnostics.get_report_async()
report = asyncio.run(main())
print(report)
```
"""