Skip to main content

Official Python SDK for interacting with the BosBase API.

Project description

BosBase Python SDK

BosBase provides a batteries-included backend with collections, authentication, files, vector search, LangChaingo flows, realtime subscriptions, and more.
This package is the official Python SDK that mirrors the JavaScript and Dart SDKs in this repository so Python developers can talk to the BosBase API with a familiar API surface.

Installation

pip install bosbase

Quick start

from bosbase import BosBase

pb = BosBase("http://127.0.0.1:8090")

# Authenticate as auth collection record
auth = pb.collection("users").auth_with_password("test@example.com", "123456")
print(auth.token)

# List records
posts = pb.collection("posts").get_list(page=1, per_page=10, query={"expand": "author"})
for post in posts["items"]:
    print(post["title"])

# Create a record with a file
with open("cover.png", "rb") as handle:
    pb.collection("posts").create(
        body={"title": "Hello", "status": "published"},
        files={"cover": ("cover.png", handle, "image/png")},
    )

# Realtime subscription
unsubscribe = pb.collection("posts").subscribe("*", lambda event: print(event["action"]))
# ...
unsubscribe()

High-level features

  • pb.collection("...") – CRUD helpers, auth flows, OTP/MFA helpers, impersonation.
  • pb.collections – Manage collections, scaffolds, schema queries.
  • pb.files – Token generation and URL building for protected files.
  • pb.logs, pb.crons, pb.backups, pb.vectors, pb.llm_documents, pb.langchaingo, pb.caches – Service wrappers that mirror the JavaScript SDK.
  • pb.realtime – SSE based realtime subscriptions with automatic reconnection.
  • pb.create_batch() – Transactional batch writes across collections.

The SDK exposes the same filter builder (pb.filter()), before_send / after_send hooks, and auth store semantics as the other SDKs, so existing examples port to Python with minimal changes.

Documentation

The docs/ directory mirrors the JavaScript SDK guides, adapted for Python. Highlights:

  • COLLECTIONS.md: collection types, scaffolds, schema queries.
  • API_RECORDS.md: CRUD, batch operations, auth helpers.
  • REALTIME.md: realtime subscriptions, connection lifecycle.
  • FILES.md, FILE_API.md: uploads, tokens, download URLs.
  • LANGCHAINGO_API.md, LLM_DOCUMENTS.md, VECTOR_API.md: AI and RAG workflows.

Every topic from the JS SDK now has a Python-specific counterpart with code samples.

See SDK_DOCUMENTATION.md in the repo for feature-specific guides.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

bosbase-0.1.2.tar.gz (57.2 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

bosbase-0.1.2-py3-none-any.whl (34.1 kB view details)

Uploaded Python 3

File details

Details for the file bosbase-0.1.2.tar.gz.

File metadata

  • Download URL: bosbase-0.1.2.tar.gz
  • Upload date:
  • Size: 57.2 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: python-httpx/0.28.1

File hashes

Hashes for bosbase-0.1.2.tar.gz
Algorithm Hash digest
SHA256 7ba160348f5f6df67cf4fc912efa77a0c7218ac48e86afb1a6de93e90bc6a550
MD5 2fe8ef4d346b3007f85c66222f055c92
BLAKE2b-256 2b2c9e9eaab552b3689ab713866ab6d50d8605cff1d72a9e601b67b3255b4dcc

See more details on using hashes here.

File details

Details for the file bosbase-0.1.2-py3-none-any.whl.

File metadata

  • Download URL: bosbase-0.1.2-py3-none-any.whl
  • Upload date:
  • Size: 34.1 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: python-httpx/0.28.1

File hashes

Hashes for bosbase-0.1.2-py3-none-any.whl
Algorithm Hash digest
SHA256 fa7551bdb6c8071503a9a5f90a705050be13f4c2d47ca6ddb9467ad743e197ec
MD5 97a442d18775cbb1dab21f802b1b81cf
BLAKE2b-256 22805831aa185dcb43bdbe166834efd087b34fd650ab7bc6bbf44a76bc05570f

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page