arbok-inspector 0.1.0__py3-none-any.whl → 1.2.4__py3-none-any.whl

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.

Potentially problematic release.


This version of arbok-inspector might be problematic. Click here for more details.

@@ -0,0 +1,49 @@
1
+ {
2
+ "data": [],
3
+ "layout": {
4
+ "template": "plotly_dark",
5
+ "autosize": true,
6
+ "margin": {
7
+ "l": 40,
8
+ "r": 40,
9
+ "t": 40,
10
+ "b": 40
11
+ },
12
+ "xaxis": {
13
+ "type": "linear",
14
+ "title": {
15
+ "text": "placeholder x-axis",
16
+ "font": {
17
+ "size": 12
18
+ }
19
+ }
20
+ },
21
+ "yaxis": {
22
+ "type": "linear",
23
+ "title": {
24
+ "text": "placeholder y-axis",
25
+ "font": {
26
+ "size": 12
27
+ }
28
+ }
29
+ },
30
+ "title": {
31
+ "text": "placeholder title",
32
+ "x": 0.5,
33
+ "xanchor": "center",
34
+ "yanchor": "bottom",
35
+ "font": {
36
+ "size": 16
37
+ }
38
+ },
39
+ "legend": {
40
+ "x": 1,
41
+ "y": 1,
42
+ "xanchor": "right",
43
+ "yanchor": "top",
44
+ "bgcolor": "rgba(0,0,0,0.5)",
45
+ "bordercolor": "white",
46
+ "borderwidth": 1
47
+ }
48
+ }
49
+ }
@@ -0,0 +1,60 @@
1
+ {
2
+ "data": [
3
+ {
4
+ "type": "heatmap",
5
+ "z": null,
6
+ "x": null,
7
+ "y": null,
8
+ "colorscale": "magma",
9
+ "colorbar": {
10
+ "thickness": 10,
11
+ "xanchor": "left",
12
+ "x": 1.0
13
+ },
14
+ "showscale": true
15
+ }
16
+ ],
17
+ "layout": {
18
+ "template": "plotly_dark",
19
+ "autosize": true,
20
+ "margin": {
21
+ "l": 40,
22
+ "r": 40,
23
+ "t": 40,
24
+ "b": 40
25
+ },
26
+ "xaxis": {
27
+ "type": "linear",
28
+ "title": {
29
+ "text": "placeholder x-axis",
30
+ "font": {
31
+ "size": 12
32
+ }
33
+ },
34
+ "tickfont": {
35
+ "size": 12
36
+ }
37
+ },
38
+ "yaxis": {
39
+ "type": "linear",
40
+ "title": {
41
+ "text": "placeholder y-axis",
42
+ "font": {
43
+ "size": 12
44
+ }
45
+ },
46
+ "tickfont": {
47
+ "size": 12
48
+ }
49
+ },
50
+ "title": {
51
+ "text": "placeholder title",
52
+ "x": 0.5,
53
+ "xanchor": "center",
54
+ "yanchor": "bottom",
55
+ "font": {
56
+ "size": 12
57
+ }
58
+ }
59
+ }
60
+ }
Binary file
@@ -1,7 +1,9 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: arbok-inspector
3
- Version: 0.1.0
4
- Summary: Add your description here
3
+ Version: 1.2.4
4
+ Summary: Browser based QCoDeS database inspector
5
+ License: MIT
6
+ Classifier: Programming Language :: Python :: 3.12
5
7
  Requires-Python: >=3.12
6
8
  Description-Content-Type: text/markdown
7
9
  License-File: LICENSE
@@ -25,7 +27,7 @@ Plottr is a great tool to get started, but struggles with increasing abounts of
25
27
 
26
28
  This is how arbok_inspector streamlines your data inspection:
27
29
  - Fast browsing of measurement runs and their metadata
28
- - Written in tailwind using nicegui wrapper
30
+ - Written with [nicegui](https://nicegui.io/) acting as a [tailwind](https://tailwindcss.com/) wrapper
29
31
  - Browser based approach ensures cross system compatibily
30
32
  - Selected runs are opened in a new tab and run on a separate thread
31
33
  - this avoids blocking the entire application when loading big datasets
@@ -37,22 +39,16 @@ This is how arbok_inspector streamlines your data inspection:
37
39
 
38
40
  ## Installation 📲
39
41
 
40
- From the project root (the folder containing `pyproject.toml`), install:
42
+ From pypi install using pip in your environment:
41
43
  ```bash
42
- python -m pip install -e .
44
+ pip install arbok-inspector
43
45
  ```
44
- To be added to pypi (pip) soon!
45
-
46
- Launch either from CLI:
46
+ Even better if you are using uv, a uv.lock file is included!
47
+ Launch from CLI:
47
48
  ```bash
48
49
  arbok-inspector
49
50
  ```
50
51
 
51
- ... or alternatively run in editable/dev mode:
52
- ```bash
53
- python -m arbok_inspector/dev.py
54
- ```
55
-
56
52
  ## Project layout
57
53
 
58
54
  - `main.py` — app entrypoint and startup logic
@@ -65,18 +61,16 @@ python -m arbok_inspector/dev.py
65
61
 
66
62
  Development & testing 🛠️
67
63
 
68
- - Run tests:
69
-
64
+ Clone this git repository and navigate into it.
65
+ Use an editable install for local development to pick up changes immediately
70
66
  ```bash
71
- pytest -q
67
+ pip install -e .
72
68
  ```
73
69
 
74
- - Use an editable install for local development to pick up changes immediately:
75
-
70
+ To launch the app in editable mode launch from dev.py file:
76
71
  ```bash
77
- python -m pip install -e .
72
+ python -m arbok_inspector/dev.py
78
73
  ```
79
-
80
74
  Contributing & help 🙌
81
75
 
82
76
  Contributions, bug reports, and small feature requests are welcome. If you want to add a visualization or a new page, use `pages/` and `widgets/` for examples of how UI components are composed. When opening a PR, please keep changes focused and include a short description of how to exercise the change locally.
@@ -3,11 +3,14 @@ arbok_inspector/cli.py,sha256=G0gIa4ByfQTMmeXCyLjnsmke5EEXs6DYuR5eVbhszXo,96
3
3
  arbok_inspector/dev.py,sha256=F19xar7hlR-fG1QTxGyXSwT5r80x52vZIlZDaimPc4E,413
4
4
  arbok_inspector/main.py,sha256=oQEypBKdD5jLARiXmz2u1_Op5OIos0BTqkM--oLU3lo,300
5
5
  arbok_inspector/state.py,sha256=FDsnqUq8_oGecTvFgQoVB0-JMgFtmgccsxPX7jYX74A,2295
6
+ arbok_inspector/test.db,sha256=ux4N1KNG0wwovG7W8ThRDwwdcLa42Rb3M1evDsocFnU,10342400
6
7
  arbok_inspector/test_main.py,sha256=brV3O2ZVyuUrqnUmZr3U-tH6VY7PQxthNiElgIax_x0,1955
7
8
  arbok_inspector/analysis/analysis_base.py,sha256=7uChxCyoiHazQBId9DHgXZtk166fZshr-E-eF-SNw5Q,933
8
9
  arbok_inspector/analysis/prepare_data.py,sha256=DedVxlbTNDppMlNBwt8kN4cWk0_Nnyx9J442GqG1Asw,4393
9
10
  arbok_inspector/classes/dim.py,sha256=bPxVNn23ohZ9CVePmiqLUFABbh6iKiuN_dMAxIcqIG0,750
10
11
  arbok_inspector/classes/run.py,sha256=i50RhllM-fXanTNRLxBdcpBCkfiqjrNvupDSv4vwg2s,9895
12
+ arbok_inspector/configurations/1d_plot.json,sha256=Uy3quv9PG7_mTgInevfbRepHJbaii7K_rzdT8f7QO-s,895
13
+ arbok_inspector/configurations/2d_plot.json,sha256=DKiwJJQnrcoEgCq9Cff_Oq9uVVnXETXEK7vMTvMBlnY,1054
11
14
  arbok_inspector/helpers/string_formaters.py,sha256=q8ldfHRlACWKBhjUpuwbDthbUBcP6q8Z9qaRLdiwxJ4,1000
12
15
  arbok_inspector/helpers/unit_formater.py,sha256=7h77hqPoLLBil3Z1n72T1iLv3Du84Qt0iZ3B0tzZtaY,1163
13
16
  arbok_inspector/pages/__init__.py,sha256=3ZbSQftX4VYoWU6DsAEZvXl89PLjwn89Xtxqwwxy8vc,88
@@ -19,9 +22,9 @@ arbok_inspector/widgets/build_xarray_html.py,sha256=NaS8YKidcXOPhSY-QHraHS_Hag8c
19
22
  arbok_inspector/widgets/json_plot_settings_dialog.py,sha256=tUjx9TqDHhKsT9IGZfw61zuzjY1BqJH00s_gtR5kzio,2913
20
23
  arbok_inspector/widgets/update_day_selecter.py,sha256=z5HVUVnxSqtZfoaK4lzMh5J16o9RoEZJwDvnwS-ewZ8,1011
21
24
  arbok_inspector/widgets/update_run_selecter.py,sha256=M7hvy80kXO2NA83ly3QeeMQsTfdslit--2K3CbkHrQc,1639
22
- arbok_inspector-0.1.0.dist-info/licenses/LICENSE,sha256=ZEqWKVZ2qROesXQcWpU2JTdY2yk6OkWR70H5771iIGc,1070
23
- arbok_inspector-0.1.0.dist-info/METADATA,sha256=ykCseeNLgTxncqeBwMUT_DPB5e1LlXle_NcaWHt4Eyc,3282
24
- arbok_inspector-0.1.0.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
25
- arbok_inspector-0.1.0.dist-info/entry_points.txt,sha256=i1gVPzcOgNNzSly4zUqJ_z38eiUrMEOCNgtH1dr55zE,64
26
- arbok_inspector-0.1.0.dist-info/top_level.txt,sha256=-jLIWMq05sffOZ-lCiP8dZgVga7Upp95QsBgoE718oE,16
27
- arbok_inspector-0.1.0.dist-info/RECORD,,
25
+ arbok_inspector-1.2.4.dist-info/licenses/LICENSE,sha256=ZEqWKVZ2qROesXQcWpU2JTdY2yk6OkWR70H5771iIGc,1070
26
+ arbok_inspector-1.2.4.dist-info/METADATA,sha256=0nwpjKWO26tdDWGGby04zS9pjVAQQPC_GLE7tQnwsmE,3426
27
+ arbok_inspector-1.2.4.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
28
+ arbok_inspector-1.2.4.dist-info/entry_points.txt,sha256=i1gVPzcOgNNzSly4zUqJ_z38eiUrMEOCNgtH1dr55zE,64
29
+ arbok_inspector-1.2.4.dist-info/top_level.txt,sha256=-jLIWMq05sffOZ-lCiP8dZgVga7Upp95QsBgoE718oE,16
30
+ arbok_inspector-1.2.4.dist-info/RECORD,,