Official Python client for the Limely API (chatbots, knowledge bases, forms, conversations, analytics).
Project description
limely-sdk (Python)
Official Python client for the Limely API. Manage chatbots, knowledge bases, forms, conversations, and analytics.
Install
pip install limely-sdk
Imports as limely.
Auth
The Limely API authenticates with a Clerk bearer token and scopes every call to the token owner's workspace.
from limely import LimelyClient
with LimelyClient(token="...") as limely:
types = limely.chatbot_types.list()
kb = limely.knowledge_bases.create_from_text(
name="Support docs",
content="Our return window is 30 days...",
)
bot = limely.chatbots.create(
name="Support bot",
chatbot_type_id=types[0]["_id"],
knowledge_base_ids=[kb["_id"]],
)
stats = limely.analytics.chatbot(bot["_id"], start="2026-06-01", end="2026-06-30")
API
workspace.get()chatbot_types.list()chatbots.list() | get(id) | create(...) | toggle_status(id) | delete(id)knowledge_bases.list() | create_from_text(...) | delete(id)forms.list() | get(id) | create(...) | submissions(id) | templates()analytics.dashboard() | billing() | chatbot(id, start=, end=)chats.list(start_date=, end_date=) | get(session_id)
Errors are raised as LimelyApiError with .status_code and .body.
Requirements
Python >= 3.9. Depends on httpx.
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 limely_sdk-0.0.0.tar.gz.
File metadata
- Download URL: limely_sdk-0.0.0.tar.gz
- Upload date:
- Size: 3.4 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
d9e03524fbad46a7b51fa9eab823b8045f5ad5350ecd1bad24a5e27486bd0352
|
|
| MD5 |
6e5c0dcbd478c2b670bfbe08734956df
|
|
| BLAKE2b-256 |
52f9346116e700975ff3eededec7522013d8ec9454b29bc18a3df1a09c7d42ed
|
File details
Details for the file limely_sdk-0.0.0-py3-none-any.whl.
File metadata
- Download URL: limely_sdk-0.0.0-py3-none-any.whl
- Upload date:
- Size: 4.1 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
e50eb59fe7f6cf91ad58ff0405d86c3414de6869c38a172db022122169b53c31
|
|
| MD5 |
76971a219230bc9b412e35dec8b924a6
|
|
| BLAKE2b-256 |
81385294c78858dc7d8e1f128919df7e0e3c13f228388afeb72acc08b3e2934f
|