cuiman 0.2.1.dev1__tar.gz → 0.3.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.
Files changed (73) hide show
  1. {cuiman-0.2.1.dev1 → cuiman-0.3.1}/.gitignore +208 -204
  2. {cuiman-0.2.1.dev1 → cuiman-0.3.1}/LICENSE +201 -201
  3. {cuiman-0.2.1.dev1 → cuiman-0.3.1}/PKG-INFO +8 -5
  4. {cuiman-0.2.1.dev1 → cuiman-0.3.1}/README.md +10 -10
  5. cuiman-0.3.1/cuiman/__init__.py +42 -0
  6. {cuiman-0.2.1.dev1 → cuiman-0.3.1}/cuiman/api/__init__.py +18 -18
  7. {cuiman-0.2.1.dev1 → cuiman-0.3.1}/cuiman/api/async_client.py +399 -394
  8. cuiman-0.3.1/cuiman/api/async_client_mixin.py +319 -0
  9. cuiman-0.3.1/cuiman/api/auth/__init__.py +35 -0
  10. cuiman-0.3.1/cuiman/api/auth/config.py +293 -0
  11. cuiman-0.3.1/cuiman/api/auth/interactive.py +101 -0
  12. cuiman-0.3.1/cuiman/api/auth/login.py +73 -0
  13. cuiman-0.3.1/cuiman/api/auth/oauth2_client.py +75 -0
  14. cuiman-0.3.1/cuiman/api/auth/oidc.py +167 -0
  15. cuiman-0.3.1/cuiman/api/auth/secret_store.py +185 -0
  16. {cuiman-0.2.1.dev1 → cuiman-0.3.1}/cuiman/api/client.py +399 -394
  17. {cuiman-0.2.1.dev1 → cuiman-0.3.1}/cuiman/api/client_app_mixin.py +120 -110
  18. cuiman-0.3.1/cuiman/api/client_mixin.py +278 -0
  19. cuiman-0.3.1/cuiman/api/client_mixin_base.py +290 -0
  20. cuiman-0.3.1/cuiman/api/config.py +618 -0
  21. {cuiman-0.2.1.dev1 → cuiman-0.3.1}/cuiman/api/defaults.py +18 -18
  22. {cuiman-0.2.1.dev1 → cuiman-0.3.1}/cuiman/api/exceptions.py +28 -28
  23. {cuiman-0.2.1.dev1 → cuiman-0.3.1}/cuiman/api/ishell.py +69 -70
  24. {cuiman-0.2.1.dev1 → cuiman-0.3.1}/cuiman/api/jobs.py +304 -304
  25. {cuiman-0.2.1.dev1 → cuiman-0.3.1}/cuiman/api/opener/__init__.py +16 -16
  26. {cuiman-0.2.1.dev1 → cuiman-0.3.1}/cuiman/api/opener/context.py +165 -165
  27. {cuiman-0.2.1.dev1 → cuiman-0.3.1}/cuiman/api/opener/errors.py +33 -33
  28. {cuiman-0.2.1.dev1 → cuiman-0.3.1}/cuiman/api/opener/impl/__init__.py +23 -23
  29. {cuiman-0.2.1.dev1 → cuiman-0.3.1}/cuiman/api/opener/impl/_gpd.py +56 -56
  30. {cuiman-0.2.1.dev1 → cuiman-0.3.1}/cuiman/api/opener/impl/_image.py +48 -48
  31. {cuiman-0.2.1.dev1 → cuiman-0.3.1}/cuiman/api/opener/impl/_pd.py +63 -63
  32. {cuiman-0.2.1.dev1 → cuiman-0.3.1}/cuiman/api/opener/impl/_xr.py +32 -32
  33. {cuiman-0.2.1.dev1 → cuiman-0.3.1}/cuiman/api/opener/impl/base.py +139 -139
  34. {cuiman-0.2.1.dev1 → cuiman-0.3.1}/cuiman/api/opener/impl/openers.py +46 -46
  35. {cuiman-0.2.1.dev1 → cuiman-0.3.1}/cuiman/api/opener/opener.py +151 -151
  36. {cuiman-0.2.1.dev1 → cuiman-0.3.1}/cuiman/api/opener/registry.py +70 -67
  37. {cuiman-0.2.1.dev1 → cuiman-0.3.1}/cuiman/api/service_client.py +372 -372
  38. {cuiman-0.2.1.dev1 → cuiman-0.3.1}/cuiman/api/transport/__init__.py +8 -8
  39. {cuiman-0.2.1.dev1 → cuiman-0.3.1}/cuiman/api/transport/args.py +102 -102
  40. cuiman-0.2.1.dev1/cuiman/api/transport/httpx.py → cuiman-0.3.1/cuiman/api/transport/httpx2.py +138 -134
  41. {cuiman-0.2.1.dev1 → cuiman-0.3.1}/cuiman/api/transport/transport.py +64 -64
  42. {cuiman-0.2.1.dev1 → cuiman-0.3.1}/cuiman/app/__init__.py +11 -11
  43. {cuiman-0.2.1.dev1 → cuiman-0.3.1}/cuiman/app/app.py +124 -124
  44. {cuiman-0.2.1.dev1 → cuiman-0.3.1}/cuiman/app/display.py +111 -104
  45. cuiman-0.2.1.dev1/cuiman/app/dist/assets/index-DKE7nU5k.css → cuiman-0.3.1/cuiman/app/dist/assets/index-BGimzGp5.css +1 -1
  46. cuiman-0.3.1/cuiman/app/dist/assets/index-C0hMdBwG.js +85 -0
  47. {cuiman-0.2.1.dev1 → cuiman-0.3.1}/cuiman/app/dist/index.html +2 -2
  48. cuiman-0.3.1/cuiman/app/launch.py +347 -0
  49. {cuiman-0.2.1.dev1 → cuiman-0.3.1}/cuiman/app/notebook-display.js +217 -196
  50. {cuiman-0.2.1.dev1 → cuiman-0.3.1}/cuiman/app/serve.py +156 -123
  51. cuiman-0.3.1/cuiman/app/url.py +60 -0
  52. {cuiman-0.2.1.dev1 → cuiman-0.3.1}/cuiman/cli/__init__.py +10 -10
  53. {cuiman-0.2.1.dev1 → cuiman-0.3.1}/cuiman/cli/cli.py +620 -527
  54. {cuiman-0.2.1.dev1 → cuiman-0.3.1}/cuiman/cli/client.py +104 -69
  55. cuiman-0.3.1/cuiman/cli/config.py +223 -0
  56. {cuiman-0.2.1.dev1 → cuiman-0.3.1}/cuiman/cli/output.py +187 -187
  57. {cuiman-0.2.1.dev1 → cuiman-0.3.1}/pyproject.toml +83 -81
  58. cuiman-0.2.1.dev1/cuiman/__init__.py +0 -23
  59. cuiman-0.2.1.dev1/cuiman/api/async_client_mixin.py +0 -153
  60. cuiman-0.2.1.dev1/cuiman/api/auth/__init__.py +0 -16
  61. cuiman-0.2.1.dev1/cuiman/api/auth/config.py +0 -161
  62. cuiman-0.2.1.dev1/cuiman/api/auth/login.py +0 -180
  63. cuiman-0.2.1.dev1/cuiman/api/auth/login_async.py +0 -62
  64. cuiman-0.2.1.dev1/cuiman/api/client_mixin.py +0 -157
  65. cuiman-0.2.1.dev1/cuiman/api/config.py +0 -204
  66. cuiman-0.2.1.dev1/cuiman/app/dist/assets/index-9NSgOSt1.js +0 -85
  67. cuiman-0.2.1.dev1/cuiman/app/service.py +0 -116
  68. cuiman-0.2.1.dev1/cuiman/app/url.py +0 -77
  69. cuiman-0.2.1.dev1/cuiman/cli/config.py +0 -189
  70. {cuiman-0.2.1.dev1 → cuiman-0.3.1}/cuiman/app/dist/eozilla-small.svg +0 -0
  71. {cuiman-0.2.1.dev1 → cuiman-0.3.1}/cuiman/app/dist/eozilla.svg +0 -0
  72. {cuiman-0.2.1.dev1 → cuiman-0.3.1}/cuiman/app/dist/privacy.md +0 -0
  73. {cuiman-0.2.1.dev1 → cuiman-0.3.1}/cuiman/py.typed +0 -0
@@ -1,204 +1,208 @@
1
- # Testing
2
- *.zarr/
3
- .cov-report
4
-
5
- # Documentation generation
6
- docs/notebooks/*.ipynb
7
-
8
- # Byte-compiled / optimized / DLL files
9
- __pycache__/
10
- *.py[cod]
11
- *$py.class
12
-
13
- # C extensions
14
- *.so
15
-
16
- # Distribution / packaging
17
- .Python
18
- build/
19
- develop-eggs/
20
- /*/dist/
21
- downloads/
22
- eggs/
23
- .eggs/
24
- lib/
25
- lib64/
26
- parts/
27
- sdist/
28
- var/
29
- wheels/
30
- share/python-wheels/
31
- *.egg-info/
32
- .installed.cfg
33
- *.egg
34
- MANIFEST
35
-
36
- # PyInstaller
37
- # Usually these files are written by a python script from a template
38
- # before PyInstaller builds the exe, so as to inject date/other infos into it.
39
- *.manifest
40
- *.spec
41
-
42
- # Installer logs
43
- pip-log.txt
44
- pip-delete-this-directory.txt
45
-
46
- # Unit test / coverage reports
47
- htmlcov/
48
- .tox/
49
- .nox/
50
- .coverage
51
- .coverage.*
52
- .cache
53
- nosetests.xml
54
- coverage.xml
55
- *.cover
56
- *.py,cover
57
- .hypothesis/
58
- .pytest_cache/
59
- cover/
60
-
61
- # Translations
62
- *.mo
63
- *.pot
64
-
65
- # Django stuff:
66
- *.log
67
- local_settings.py
68
- db.sqlite3
69
- db.sqlite3-journal
70
-
71
- # Flask stuff:
72
- instance/
73
- .webassets-cache
74
-
75
- # Scrapy stuff:
76
- .scrapy
77
-
78
- # Sphinx documentation
79
- docs/_build/
80
-
81
- # PyBuilder
82
- .pybuilder/
83
- target/
84
-
85
- # Jupyter Notebook
86
- .ipynb_checkpoints
87
-
88
- # IPython
89
- profile_default/
90
- ipython_config.py
91
-
92
- # pyenv
93
- # For a library or package, you might want to ignore these files since the code is
94
- # intended to run in multiple environments; otherwise, check them in:
95
- # .python-version
96
-
97
- # pipenv
98
- # According to pypa/pipenv#598, it is recommended to include Pipfile.lock in version control.
99
- # However, in case of collaboration, if having platform-specific dependencies or dependencies
100
- # having no cross-platform support, pipenv may install dependencies that don't work, or not
101
- # install all needed dependencies.
102
- #Pipfile.lock
103
-
104
- # UV
105
- # Similar to Pipfile.lock, it is generally recommended to include uv.lock in version control.
106
- # This is especially recommended for binary packages to ensure reproducibility, and is more
107
- # commonly ignored for libraries.
108
- #uv.lock
109
-
110
- # poetry
111
- # Similar to Pipfile.lock, it is generally recommended to include poetry.lock in version control.
112
- # This is especially recommended for binary packages to ensure reproducibility, and is more
113
- # commonly ignored for libraries.
114
- # https://python-poetry.org/docs/basic-usage/#commit-your-poetrylock-file-to-version-control
115
- #poetry.lock
116
-
117
- # pdm
118
- # Similar to Pipfile.lock, it is generally recommended to include pdm.lock in version control.
119
- #pdm.lock
120
- # pdm stores project-wide configurations in .pdm.toml, but it is recommended to not include it
121
- # in version control.
122
- # https://pdm.fming.dev/latest/usage/project/#working-with-version-control
123
- .pdm.toml
124
- .pdm-python
125
- .pdm-build/
126
-
127
- # PEP 582; used by e.g. github.com/David-OConnor/pyflow and github.com/pdm-project/pdm
128
- __pypackages__/
129
-
130
- # Celery stuff
131
- celerybeat-schedule
132
- celerybeat.pid
133
-
134
- # SageMath parsed files
135
- *.sage.py
136
-
137
- # Environments
138
- .env
139
- .venv
140
- env/
141
- venv/
142
- ENV/
143
- env.bak/
144
- venv.bak/
145
-
146
- # pixi stuff
147
- .pixi/
148
-
149
- # Spyder project settings
150
- .spyderproject
151
- .spyproject
152
-
153
- # Rope project settings
154
- .ropeproject
155
-
156
- # mkdocs documentation
157
- /site
158
-
159
- # mypy
160
- .mypy_cache/
161
- .dmypy.json
162
- dmypy.json
163
-
164
- # Pyre type checker
165
- .pyre/
166
-
167
- # pytype static type analyzer
168
- .pytype/
169
-
170
- # Cython debug symbols
171
- cython_debug/
172
-
173
- # PyCharm
174
- # JetBrains specific template is maintained in a separate JetBrains.gitignore that can
175
- # be found at https://github.com/github/gitignore/blob/main/Global/JetBrains.gitignore
176
- # and can be added to the global gitignore or merged into this file. For a more nuclear
177
- # option (not recommended) you can uncomment the following to ignore the entire idea folder.
178
- .idea/
179
-
180
- # Abstra
181
- # Abstra is an AI-powered process automation framework.
182
- # Ignore directories containing user credentials, local state, and settings.
183
- # Learn more at https://abstra.io/docs
184
- .abstra/
185
-
186
- # Visual Studio Code
187
- # Visual Studio Code specific template is maintained in a separate VisualStudioCode.gitignore
188
- # that can be found at https://github.com/github/gitignore/blob/main/Global/VisualStudioCode.gitignore
189
- # and can be added to the global gitignore or merged into this file. However, if you prefer,
190
- # you could uncomment the following to ignore the enitre vscode folder
191
- # .vscode/
192
-
193
- # Ruff stuff:
194
- .ruff_cache/
195
-
196
- # PyPI configuration file
197
- .pypirc
198
-
199
- # Cursor
200
- # Cursor is an AI-powered code editor. `.cursorignore` specifies files/directories to
201
- # exclude from AI features like autocomplete and code analysis. Recommended for sensitive data
202
- # refer to https://docs.cursor.com/context/ignore-files
203
- .cursorignore
204
- .cursorindexingignore
1
+ # Testing
2
+ *.zarr/
3
+ .cov-report
4
+ notebooks/auth-test.ipynb
5
+
6
+ # Legacy generated documentation (excluded from the site)
7
+ docs/notebooks/
8
+
9
+ # Byte-compiled / optimized / DLL files
10
+ __pycache__/
11
+ *.py[cod]
12
+ *$py.class
13
+
14
+ # C extensions
15
+ *.so
16
+
17
+ # Distribution / packaging
18
+ .Python
19
+ build/
20
+ develop-eggs/
21
+ /*/dist/
22
+ downloads/
23
+ eggs/
24
+ .eggs/
25
+ lib/
26
+ lib64/
27
+ parts/
28
+ sdist/
29
+ var/
30
+ wheels/
31
+ share/python-wheels/
32
+ *.egg-info/
33
+ .installed.cfg
34
+ *.egg
35
+ MANIFEST
36
+
37
+ # PyInstaller
38
+ # Usually these files are written by a python script from a template
39
+ # before PyInstaller builds the exe, so as to inject date/other infos into it.
40
+ *.manifest
41
+ *.spec
42
+
43
+ # Installer logs
44
+ pip-log.txt
45
+ pip-delete-this-directory.txt
46
+
47
+ # Unit test / coverage reports
48
+ htmlcov/
49
+ .tox/
50
+ .nox/
51
+ .coverage
52
+ .coverage.*
53
+ .cache
54
+ nosetests.xml
55
+ coverage.xml
56
+ *.cover
57
+ *.py,cover
58
+ .hypothesis/
59
+ .pytest_cache/
60
+ cover/
61
+
62
+ # Translations
63
+ *.mo
64
+ *.pot
65
+
66
+ # Django stuff:
67
+ *.log
68
+ local_settings.py
69
+ db.sqlite3
70
+ db.sqlite3-journal
71
+
72
+ # Flask stuff:
73
+ instance/
74
+ .webassets-cache
75
+
76
+ # Scrapy stuff:
77
+ .scrapy
78
+
79
+ # Sphinx documentation
80
+ docs/_build/
81
+
82
+ # PyBuilder
83
+ .pybuilder/
84
+ target/
85
+
86
+ # Jupyter Notebook
87
+ .ipynb_checkpoints
88
+
89
+ # IPython
90
+ profile_default/
91
+ ipython_config.py
92
+
93
+ # pyenv
94
+ # For a library or package, you might want to ignore these files since the code is
95
+ # intended to run in multiple environments; otherwise, check them in:
96
+ # .python-version
97
+
98
+ # pipenv
99
+ # According to pypa/pipenv#598, it is recommended to include Pipfile.lock in version control.
100
+ # However, in case of collaboration, if having platform-specific dependencies or dependencies
101
+ # having no cross-platform support, pipenv may install dependencies that don't work, or not
102
+ # install all needed dependencies.
103
+ #Pipfile.lock
104
+
105
+ # UV
106
+ # Similar to Pipfile.lock, it is generally recommended to include uv.lock in version control.
107
+ # This is especially recommended for binary packages to ensure reproducibility, and is more
108
+ # commonly ignored for libraries.
109
+ #uv.lock
110
+
111
+ # poetry
112
+ # Similar to Pipfile.lock, it is generally recommended to include poetry.lock in version control.
113
+ # This is especially recommended for binary packages to ensure reproducibility, and is more
114
+ # commonly ignored for libraries.
115
+ # https://python-poetry.org/docs/basic-usage/#commit-your-poetrylock-file-to-version-control
116
+ #poetry.lock
117
+
118
+ # pdm
119
+ # Similar to Pipfile.lock, it is generally recommended to include pdm.lock in version control.
120
+ #pdm.lock
121
+ # pdm stores project-wide configurations in .pdm.toml, but it is recommended to not include it
122
+ # in version control.
123
+ # https://pdm.fming.dev/latest/usage/project/#working-with-version-control
124
+ .pdm.toml
125
+ .pdm-python
126
+ .pdm-build/
127
+
128
+ # PEP 582; used by e.g. github.com/David-OConnor/pyflow and github.com/pdm-project/pdm
129
+ __pypackages__/
130
+
131
+ # Celery stuff
132
+ celerybeat-schedule
133
+ celerybeat.pid
134
+
135
+ # SageMath parsed files
136
+ *.sage.py
137
+
138
+ # Environments
139
+ .env
140
+ .venv
141
+ env/
142
+ venv/
143
+ ENV/
144
+ env.bak/
145
+ venv.bak/
146
+
147
+ # pixi stuff
148
+ .pixi/
149
+
150
+ # Spyder project settings
151
+ .spyderproject
152
+ .spyproject
153
+
154
+ # Rope project settings
155
+ .ropeproject
156
+
157
+ # mkdocs documentation
158
+ /site
159
+
160
+ # mypy
161
+ .mypy_cache/
162
+ .dmypy.json
163
+ dmypy.json
164
+
165
+ # Pyre type checker
166
+ .pyre/
167
+
168
+ # pytype static type analyzer
169
+ .pytype/
170
+
171
+ # Cython debug symbols
172
+ cython_debug/
173
+
174
+ # PyCharm
175
+ # JetBrains specific template is maintained in a separate JetBrains.gitignore that can
176
+ # be found at https://github.com/github/gitignore/blob/main/Global/JetBrains.gitignore
177
+ # and can be added to the global gitignore or merged into this file. For a more nuclear
178
+ # option (not recommended) you can uncomment the following to ignore the entire idea folder.
179
+ .idea/
180
+
181
+ # Abstra
182
+ # Abstra is an AI-powered process automation framework.
183
+ # Ignore directories containing user credentials, local state, and settings.
184
+ # Learn more at https://abstra.io/docs
185
+ .abstra/
186
+
187
+ # Visual Studio Code
188
+ # Visual Studio Code specific template is maintained in a separate VisualStudioCode.gitignore
189
+ # that can be found at https://github.com/github/gitignore/blob/main/Global/VisualStudioCode.gitignore
190
+ # and can be added to the global gitignore or merged into this file. However, if you prefer,
191
+ # you could uncomment the following to ignore the enitre vscode folder
192
+ # .vscode/
193
+
194
+ # Ruff stuff:
195
+ .ruff_cache/
196
+
197
+ # PyPI configuration file
198
+ .pypirc
199
+
200
+ # Cursor
201
+ # Cursor is an AI-powered code editor. `.cursorignore` specifies files/directories to
202
+ # exclude from AI features like autocomplete and code analysis. Recommended for sensitive data
203
+ # refer to https://docs.cursor.com/context/ignore-files
204
+ .cursorignore
205
+ .cursorindexingignore
206
+
207
+ # Downloaded font assets
208
+ docs/assets/fonts/*.ttf