Official Python SDK for Poelis
Project description
Poelis Python SDK
Python SDK for Poelis - explore your data with simple dot notation.
IDE Compatibility & Autocomplete
The Poelis SDK works in all Python environments, but autocomplete behavior varies by IDE:
✅ VS Code (Recommended for Notebooks)
- Autocomplete: Works perfectly with dynamic attributes
- Setup: No configuration needed
- Experience: Full autocomplete at all levels
⚠️ PyCharm (Jupyter Notebooks)
- Autocomplete: Limited - PyCharm uses static analysis and doesn't see dynamic attributes
- Code execution: Works perfectly (attributes are real and functional)
- Workaround: Call the relevant
list_*().namesat each level to prime autocomplete
Examples
See notebooks/try_poelis_sdk.ipynb for complete examples including authentication, data exploration, and search queries.
Installation
- Python >= 3.11
- API base URL reachable from your environment
pip install -U poelis-sdk
Quick Start
- Go to Organization Settings → API Keys
- Click "Create API key"
- Copy the key (shown only once) and store it securely, for example as an environment variable:
from poelis_sdk import PoelisClient
# Create client
poelis_client = PoelisClient(
api_key="poelis_live_A1B2C3...", # Get from Organization Settings → API Keys
)
Browser Usage
The browser lets you navigate your Poelis data with simple dot notation:
# Navigate through your data
poelis = poelis_client.browser
# List workspaces
poelis.list_workspaces().names # ['workspace1', 'workspace2', ...]
# Access workspace
ws = poelis.workspace1
# List products in workspace
ws.list_products().names # ['product1', 'product2', ...]
# Access product
product = ws.product1
# List items in product
product.list_items().names # ['item1', 'item2', ...]
# Access item and its properties
item = product.item1
# List children by type for more control
item.list_items().names # ['child_item1', 'child_item2'] - only child items
item.list_properties().names # ['Color', 'Weight', ...] - only properties
# Access property values directly
item_value = item.some_property.value # Access property values directly
item_category = item.some_property.category # Access property categories directly
item_unit = item.some_property.unit # Access property units directly
Property Change Detection
The SDK can automatically warn you when property values change between script/notebook runs. This is useful when you're using property values for calculations and want to be notified if a colleague changes them in the webapp.
License
MIT
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file poelis_sdk-0.6.5.tar.gz.
File metadata
- Download URL: poelis_sdk-0.6.5.tar.gz
- Upload date:
- Size: 131.6 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.12.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
afe397537c67c0b0d426d61260a22851ad3a8d1e4ac1e20c5941544c617b65cb
|
|
| MD5 |
27057f8aa98f2828d1e21d687f389d1f
|
|
| BLAKE2b-256 |
6e21882e3141516a5da6e489cd486efb417ad0c56ddcaea5469169f6af943b68
|
File details
Details for the file poelis_sdk-0.6.5-py3-none-any.whl.
File metadata
- Download URL: poelis_sdk-0.6.5-py3-none-any.whl
- Upload date:
- Size: 48.6 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.12.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
fc223e826e351c1b3b519747704a335f7e5b906e775727b17758c118304c91e5
|
|
| MD5 |
f1eaaf94714c87d3712a8eb44cc75454
|
|
| BLAKE2b-256 |
ab490280e07a3e115c02dd81695bc21a4a3c133a3e8c6b31723f7e9a7d1654cc
|