Python SDK for Teicor external app integrations
Project description
Teicor Python SDK
For full external integration setup (install flow, auth, core/runtime interaction, and troubleshooting), see:
This SDK helps installed Teicor apps interact with:
- Runtime proxy APIs
- Core app-scoped state in Teicor core DB
Install from PyPI
Add to your requirements.txt (pin versions):
teicor-sdk==0.2.1
Example install command from PyPI:
pip install teicor-sdk==0.2.1
Usage
from teicor_marketplace_sdk import TeicorClient
client = TeicorClient(
base_url="https://api.teicor.com",
team_slug="client-a",
app_slug="shopify",
service_token="tkmkt_...",
)
context = client.get_context()
state = client.get_core_state()
state = client.patch_core_state({"cursor": "next-page-token"})
rows = client.runtime_request(method="GET", runtime_path="api/schemas")
SDK CRUD quickstart (schema/table/column/record)
from teicor_marketplace_sdk import TeicorClient
client = TeicorClient(
base_url="https://api.teicor.com",
team_slug="client-a",
app_slug="shopify",
service_token="tkmkt_...",
)
# Context + runtime access descriptor
ctx = client.get_context()
print(ctx.runtime_access_mode) # proxy (today)
print(ctx.runtime_proxy_base_url) # use now
print(ctx.runtime_api_base_url) # future direct mode
# ---------- Schema ----------
client.create_schema("app_shopify")
schemas = client.list_schemas()
client.update_schema("app_shopify", new_schema_name="app_shopify_v2")
# ---------- Table ----------
table = client.create_table(
name="oauth_tokens",
schema_name="app_shopify_v2",
is_private=True,
)
table_id = str(table["id"])
tables = client.list_tables()
table_details = client.get_table(table_id)
client.update_table(table_id, name="oauth_tokens_v2")
# ---------- Column ----------
column = client.create_column(
table_id=table_id,
name="Provider Account Id",
column_type="single_line_text", # see TeicorClient.COLUMN_TYPES
config={"unique": True},
)
column_id = str(column["id"])
columns = client.list_columns(table_id)
client.update_column(
table_id=table_id,
column_id=column_id,
name="Provider Account ID",
config={"unique": True},
)
# ---------- Record ----------
created = client.create_record(
table_id=table_id,
data={column_id: "acct_123"},
)
record_id = str(created["id"])
records = client.list_records(
table_id=table_id,
limit=50,
offset=0,
filter_expr={
"and": [
{
"column_id": column_id,
"op": "contains", # see TeicorClient.FILTER_OPS
"value": "acct_",
}
]
},
sort=[{"column_id": column_id, "direction": "asc"}],
)
first = client.find_record(
table_id=table_id,
filter_expr={
"and": [
{"column_id": column_id, "op": "eq", "value": "acct_123"}
]
},
)
client.update_record(
table_id=table_id,
record_id=record_id,
data={column_id: "acct_456"},
)
client.delete_record(table_id=table_id, record_id=record_id)
# ---------- Cleanup ----------
client.delete_column(table_id=table_id, column_id=column_id)
client.delete_table(table_id)
client.delete_schema("app_shopify_v2")
Package maintainers
Build artifacts:
python -m pip install --upgrade build
python -m build
Publish to PyPI:
python -m pip install --upgrade twine
python -m twine upload dist/*
Auth headers used
Authorization: Bearer <service_token>X-Teicor-App-Slug: <app_slug>
Notes
core/stateis app-scoped per team installation.- Runtime calls are proxied through Teicor backend.
- Source package is in sdk/python/src/teicor_marketplace_sdk.
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 teicor_sdk-0.2.1.tar.gz.
File metadata
- Download URL: teicor_sdk-0.2.1.tar.gz
- Upload date:
- Size: 7.5 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.12.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
52e4f897cc0d176bfeddb9b0b533b748b313909852d88e40e2e81bfb34727b54
|
|
| MD5 |
6780b87ae9020a9b50b4e03f597526b9
|
|
| BLAKE2b-256 |
72cbcfe138a774cf2d276e9842bf593fd43650e6ab277f7a56f35399624f1243
|
File details
Details for the file teicor_sdk-0.2.1-py3-none-any.whl.
File metadata
- Download URL: teicor_sdk-0.2.1-py3-none-any.whl
- Upload date:
- Size: 6.1 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 |
16592b0e6c880050a2d3690cbd5ee9f69887ba5e24220b4b72a46946b2c42bb2
|
|
| MD5 |
d1ff4e3b1c1dee170429d17349a86abd
|
|
| BLAKE2b-256 |
0e11f96c23a152d398e98ab7c243aa69f518a480fc61455c35a478889532a046
|