lr-qrm 0.1.0__tar.gz → 0.1.1__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {lr_qrm-0.1.0/src/lr_qrm.egg-info → lr_qrm-0.1.1}/PKG-INFO +22 -9
- {lr_qrm-0.1.0 → lr_qrm-0.1.1}/pyproject.toml +1 -1
- {lr_qrm-0.1.0 → lr_qrm-0.1.1}/src/README.md +21 -8
- {lr_qrm-0.1.0 → lr_qrm-0.1.1/src/lr_qrm.egg-info}/PKG-INFO +22 -9
- {lr_qrm-0.1.0 → lr_qrm-0.1.1}/LICENSE +0 -0
- {lr_qrm-0.1.0 → lr_qrm-0.1.1}/README.md +0 -0
- {lr_qrm-0.1.0 → lr_qrm-0.1.1}/setup.cfg +0 -0
- {lr_qrm-0.1.0 → lr_qrm-0.1.1}/src/lr_qrm.egg-info/SOURCES.txt +0 -0
- {lr_qrm-0.1.0 → lr_qrm-0.1.1}/src/lr_qrm.egg-info/dependency_links.txt +0 -0
- {lr_qrm-0.1.0 → lr_qrm-0.1.1}/src/lr_qrm.egg-info/entry_points.txt +0 -0
- {lr_qrm-0.1.0 → lr_qrm-0.1.1}/src/lr_qrm.egg-info/requires.txt +0 -0
- {lr_qrm-0.1.0 → lr_qrm-0.1.1}/src/lr_qrm.egg-info/top_level.txt +0 -0
- {lr_qrm-0.1.0 → lr_qrm-0.1.1}/src/qrm/__init__.py +0 -0
- {lr_qrm-0.1.0 → lr_qrm-0.1.1}/src/qrm/cli.py +0 -0
- {lr_qrm-0.1.0 → lr_qrm-0.1.1}/src/qrm/client.py +0 -0
- {lr_qrm-0.1.0 → lr_qrm-0.1.1}/src/qrm/config.py +0 -0
- {lr_qrm-0.1.0 → lr_qrm-0.1.1}/tests/test_cli.py +0 -0
- {lr_qrm-0.1.0 → lr_qrm-0.1.1}/tests/test_client.py +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: lr-qrm
|
|
3
|
-
Version: 0.1.
|
|
3
|
+
Version: 0.1.1
|
|
4
4
|
Summary: CLI client for interacting with Qestit QRM data from LumenRadio tooling.
|
|
5
5
|
Author-email: Jonas Estberger <jonas.estberger@lumenradio.com>
|
|
6
6
|
License: MIT License
|
|
@@ -57,30 +57,43 @@ By default, this stores session details at:
|
|
|
57
57
|
|
|
58
58
|
### Commands
|
|
59
59
|
|
|
60
|
+
#### Check API health
|
|
60
61
|
|
|
61
|
-
|
|
62
|
+
```bash
|
|
63
|
+
qrm status
|
|
64
|
+
```
|
|
65
|
+
|
|
66
|
+
#### Inspect UUT history
|
|
62
67
|
|
|
63
68
|
```bash
|
|
64
|
-
qrm
|
|
69
|
+
qrm uut status 326115020010F2F1 --start "2026-02-01 00:00:00" --stop "2026-02-06 23:59:00"
|
|
65
70
|
```
|
|
66
71
|
|
|
72
|
+
By default the command queries the last 24 hours ending now. Pass `--base-url` and `--insecure` to override the stored settings when needed.
|
|
67
73
|
|
|
68
74
|
#### JSON output
|
|
69
75
|
|
|
70
76
|
Most commands support a JSON output mode.
|
|
71
77
|
|
|
72
|
-
|
|
73
78
|
```bash
|
|
74
|
-
|
|
79
|
+
qrm uut status 326115020010F2F1 --output json
|
|
75
80
|
```
|
|
76
81
|
|
|
77
82
|
## Programmatic use
|
|
78
83
|
|
|
79
84
|
```python
|
|
80
|
-
from qrm import
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
85
|
+
from qrm.config import load_login_state
|
|
86
|
+
from qrm.client import QrmClient
|
|
87
|
+
|
|
88
|
+
state = load_login_state()
|
|
89
|
+
client = QrmClient(base_url=str(state.base_url), verify_tls=state.verify_tls)
|
|
90
|
+
uut_runs = client.uut_status(
|
|
91
|
+
token=state.token,
|
|
92
|
+
serial_number="326115020010F2F1",
|
|
93
|
+
start_datetime="2026-02-01 00:00:00",
|
|
94
|
+
stop_datetime="2026-02-06 23:59:00",
|
|
95
|
+
max_results=1000,
|
|
96
|
+
)
|
|
84
97
|
```
|
|
85
98
|
|
|
86
99
|
|
|
@@ -34,30 +34,43 @@ By default, this stores session details at:
|
|
|
34
34
|
|
|
35
35
|
### Commands
|
|
36
36
|
|
|
37
|
+
#### Check API health
|
|
37
38
|
|
|
38
|
-
|
|
39
|
+
```bash
|
|
40
|
+
qrm status
|
|
41
|
+
```
|
|
42
|
+
|
|
43
|
+
#### Inspect UUT history
|
|
39
44
|
|
|
40
45
|
```bash
|
|
41
|
-
qrm
|
|
46
|
+
qrm uut status 326115020010F2F1 --start "2026-02-01 00:00:00" --stop "2026-02-06 23:59:00"
|
|
42
47
|
```
|
|
43
48
|
|
|
49
|
+
By default the command queries the last 24 hours ending now. Pass `--base-url` and `--insecure` to override the stored settings when needed.
|
|
44
50
|
|
|
45
51
|
#### JSON output
|
|
46
52
|
|
|
47
53
|
Most commands support a JSON output mode.
|
|
48
54
|
|
|
49
|
-
|
|
50
55
|
```bash
|
|
51
|
-
|
|
56
|
+
qrm uut status 326115020010F2F1 --output json
|
|
52
57
|
```
|
|
53
58
|
|
|
54
59
|
## Programmatic use
|
|
55
60
|
|
|
56
61
|
```python
|
|
57
|
-
from qrm import
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
62
|
+
from qrm.config import load_login_state
|
|
63
|
+
from qrm.client import QrmClient
|
|
64
|
+
|
|
65
|
+
state = load_login_state()
|
|
66
|
+
client = QrmClient(base_url=str(state.base_url), verify_tls=state.verify_tls)
|
|
67
|
+
uut_runs = client.uut_status(
|
|
68
|
+
token=state.token,
|
|
69
|
+
serial_number="326115020010F2F1",
|
|
70
|
+
start_datetime="2026-02-01 00:00:00",
|
|
71
|
+
stop_datetime="2026-02-06 23:59:00",
|
|
72
|
+
max_results=1000,
|
|
73
|
+
)
|
|
61
74
|
```
|
|
62
75
|
|
|
63
76
|
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: lr-qrm
|
|
3
|
-
Version: 0.1.
|
|
3
|
+
Version: 0.1.1
|
|
4
4
|
Summary: CLI client for interacting with Qestit QRM data from LumenRadio tooling.
|
|
5
5
|
Author-email: Jonas Estberger <jonas.estberger@lumenradio.com>
|
|
6
6
|
License: MIT License
|
|
@@ -57,30 +57,43 @@ By default, this stores session details at:
|
|
|
57
57
|
|
|
58
58
|
### Commands
|
|
59
59
|
|
|
60
|
+
#### Check API health
|
|
60
61
|
|
|
61
|
-
|
|
62
|
+
```bash
|
|
63
|
+
qrm status
|
|
64
|
+
```
|
|
65
|
+
|
|
66
|
+
#### Inspect UUT history
|
|
62
67
|
|
|
63
68
|
```bash
|
|
64
|
-
qrm
|
|
69
|
+
qrm uut status 326115020010F2F1 --start "2026-02-01 00:00:00" --stop "2026-02-06 23:59:00"
|
|
65
70
|
```
|
|
66
71
|
|
|
72
|
+
By default the command queries the last 24 hours ending now. Pass `--base-url` and `--insecure` to override the stored settings when needed.
|
|
67
73
|
|
|
68
74
|
#### JSON output
|
|
69
75
|
|
|
70
76
|
Most commands support a JSON output mode.
|
|
71
77
|
|
|
72
|
-
|
|
73
78
|
```bash
|
|
74
|
-
|
|
79
|
+
qrm uut status 326115020010F2F1 --output json
|
|
75
80
|
```
|
|
76
81
|
|
|
77
82
|
## Programmatic use
|
|
78
83
|
|
|
79
84
|
```python
|
|
80
|
-
from qrm import
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
85
|
+
from qrm.config import load_login_state
|
|
86
|
+
from qrm.client import QrmClient
|
|
87
|
+
|
|
88
|
+
state = load_login_state()
|
|
89
|
+
client = QrmClient(base_url=str(state.base_url), verify_tls=state.verify_tls)
|
|
90
|
+
uut_runs = client.uut_status(
|
|
91
|
+
token=state.token,
|
|
92
|
+
serial_number="326115020010F2F1",
|
|
93
|
+
start_datetime="2026-02-01 00:00:00",
|
|
94
|
+
stop_datetime="2026-02-06 23:59:00",
|
|
95
|
+
max_results=1000,
|
|
96
|
+
)
|
|
84
97
|
```
|
|
85
98
|
|
|
86
99
|
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|