poelis-sdk 0.2.1__tar.gz → 0.2.2__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.

Potentially problematic release.


This version of poelis-sdk might be problematic. Click here for more details.

Files changed (31) hide show
  1. {poelis_sdk-0.2.1 → poelis_sdk-0.2.2}/PKG-INFO +1 -1
  2. {poelis_sdk-0.2.1 → poelis_sdk-0.2.2}/notebooks/try_poelis_sdk.ipynb +27 -5
  3. {poelis_sdk-0.2.1 → poelis_sdk-0.2.2}/pyproject.toml +1 -1
  4. {poelis_sdk-0.2.1 → poelis_sdk-0.2.2}/uv.lock +1 -1
  5. {poelis_sdk-0.2.1 → poelis_sdk-0.2.2}/.github/workflows/ci.yml +0 -0
  6. {poelis_sdk-0.2.1 → poelis_sdk-0.2.2}/.github/workflows/codeql.yml +0 -0
  7. {poelis_sdk-0.2.1 → poelis_sdk-0.2.2}/.github/workflows/publish-on-push.yml +0 -0
  8. {poelis_sdk-0.2.1 → poelis_sdk-0.2.2}/.gitignore +0 -0
  9. {poelis_sdk-0.2.1 → poelis_sdk-0.2.2}/LICENSE +0 -0
  10. {poelis_sdk-0.2.1 → poelis_sdk-0.2.2}/README.md +0 -0
  11. {poelis_sdk-0.2.1 → poelis_sdk-0.2.2}/src/poelis_sdk/__init__.py +0 -0
  12. {poelis_sdk-0.2.1 → poelis_sdk-0.2.2}/src/poelis_sdk/_transport.py +0 -0
  13. {poelis_sdk-0.2.1 → poelis_sdk-0.2.2}/src/poelis_sdk/auth0.py +0 -0
  14. {poelis_sdk-0.2.1 → poelis_sdk-0.2.2}/src/poelis_sdk/browser.py +0 -0
  15. {poelis_sdk-0.2.1 → poelis_sdk-0.2.2}/src/poelis_sdk/client.py +0 -0
  16. {poelis_sdk-0.2.1 → poelis_sdk-0.2.2}/src/poelis_sdk/exceptions.py +0 -0
  17. {poelis_sdk-0.2.1 → poelis_sdk-0.2.2}/src/poelis_sdk/items.py +0 -0
  18. {poelis_sdk-0.2.1 → poelis_sdk-0.2.2}/src/poelis_sdk/logging.py +0 -0
  19. {poelis_sdk-0.2.1 → poelis_sdk-0.2.2}/src/poelis_sdk/models.py +0 -0
  20. {poelis_sdk-0.2.1 → poelis_sdk-0.2.2}/src/poelis_sdk/org_validation.py +0 -0
  21. {poelis_sdk-0.2.1 → poelis_sdk-0.2.2}/src/poelis_sdk/products.py +0 -0
  22. {poelis_sdk-0.2.1 → poelis_sdk-0.2.2}/src/poelis_sdk/search.py +0 -0
  23. {poelis_sdk-0.2.1 → poelis_sdk-0.2.2}/src/poelis_sdk/workspaces.py +0 -0
  24. {poelis_sdk-0.2.1 → poelis_sdk-0.2.2}/src/tests/test_client_basic.py +0 -0
  25. {poelis_sdk-0.2.1 → poelis_sdk-0.2.2}/src/tests/test_errors_and_backoff.py +0 -0
  26. {poelis_sdk-0.2.1 → poelis_sdk-0.2.2}/src/tests/test_items_client.py +0 -0
  27. {poelis_sdk-0.2.1 → poelis_sdk-0.2.2}/src/tests/test_search_client.py +0 -0
  28. {poelis_sdk-0.2.1 → poelis_sdk-0.2.2}/src/tests/test_transport_and_products.py +0 -0
  29. {poelis_sdk-0.2.1 → poelis_sdk-0.2.2}/tests/__init__.py +0 -0
  30. {poelis_sdk-0.2.1 → poelis_sdk-0.2.2}/tests/test_browser_navigation.py +0 -0
  31. {poelis_sdk-0.2.1 → poelis_sdk-0.2.2}/tests/test_integration_smoke.py +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: poelis-sdk
3
- Version: 0.2.1
3
+ Version: 0.2.2
4
4
  Summary: Official Python SDK for Poelis
5
5
  Project-URL: Homepage, https://poelis.com
6
6
  Project-URL: Source, https://github.com/PoelisTechnologies/poelis-python-sdk
@@ -180,17 +180,39 @@
180
180
  "# - Type: client.browser. and press TAB to see workspaces\n",
181
181
  "# - Then: client.browser.<workspace>. and TAB to see products\n",
182
182
  "# - Then: client.browser.<workspace>.<product>. and TAB to see items\n",
183
- "# - On an item, TAB shows child items and property keys\n",
184
- "\n",
183
+ "# - On an item, TAB shows child items and property keys"
184
+ ]
185
+ },
186
+ {
187
+ "cell_type": "code",
188
+ "execution_count": null,
189
+ "metadata": {},
190
+ "outputs": [],
191
+ "source": [
185
192
  "# 3) Access a property’s value and category via dot paths\n",
186
193
  "# Example (replace names with your actual names shown by TAB):\n",
187
- "workspace = client.browser.UH2_Workspace\n",
194
+ "workspace = client.browser.UH2_Workspace"
195
+ ]
196
+ },
197
+ {
198
+ "cell_type": "code",
199
+ "execution_count": null,
200
+ "metadata": {},
201
+ "outputs": [],
202
+ "source": [
188
203
  "val = workspace.LH2_Tank.cold_box.clv.mass.value\n",
189
204
  "cat = workspace.LH2_Tank.cold_box.clv.mass.category\n",
190
205
  "\n",
191
206
  "print(\"property value:\", val)\n",
192
- "print(\"property category:\", cat)\n",
193
- "\n",
207
+ "print(\"property category:\", cat)"
208
+ ]
209
+ },
210
+ {
211
+ "cell_type": "code",
212
+ "execution_count": null,
213
+ "metadata": {},
214
+ "outputs": [],
215
+ "source": [
194
216
  "# 4) Go deeper into child items if needed (TAB will suggest only item/property names)\n",
195
217
  "inner = client.browser.UH2_Workspace.LH2_Tank.inner_tank"
196
218
  ]
@@ -4,7 +4,7 @@ build-backend = "hatchling.build"
4
4
 
5
5
  [project]
6
6
  name = "poelis-sdk"
7
- version = "0.2.1"
7
+ version = "0.2.2"
8
8
  description = "Official Python SDK for Poelis"
9
9
  readme = "README.md"
10
10
  requires-python = ">=3.11"
@@ -538,7 +538,7 @@ wheels = [
538
538
 
539
539
  [[package]]
540
540
  name = "poelis-sdk"
541
- version = "0.2.1"
541
+ version = "0.2.2"
542
542
  source = { editable = "." }
543
543
  dependencies = [
544
544
  { name = "build" },
File without changes
File without changes
File without changes
File without changes