Python admin SDK for EdgeBase service-key workloads
Project description
edgebase-admin
Server-only Python admin SDK for EdgeBase.
Use edgebase-admin from trusted environments that hold a Service Key, such as backend APIs, cron jobs, workers, and operational tooling. It exposes admin auth, service-key database access, storage management, raw SQL, functions, analytics, push, and native Cloudflare resources.
If you want the broader umbrella package that also includes the higher-level EdgeBaseServer entry point and room helpers, use edgebase from this repository or your internal build flow. The current public PyPI install path is edgebase-admin.
EdgeBase is the open-source edge-native BaaS that runs on Edge, Docker, and Node.js.
This package is one part of the wider EdgeBase platform. For the full platform, CLI, Admin Dashboard, server runtime, docs, and all public SDKs, see the main repository: edge-base/edgebase.
Documentation Map
Use this README for the fast overview, then jump into the docs when you need depth:
- SDK Overview Install commands and language matrix for all public SDKs
- Admin SDK Service-key concepts, trust boundaries, and admin-only capabilities
- Admin SDK Reference Cross-language auth, database, storage, functions, and push examples
- Admin User Management Create, update, delete, and manage users with the Service Key
- Database Admin SDK Table queries, filters, pagination, batch writes, and raw SQL
- Storage Uploads, downloads, metadata, and signed URLs
- Analytics Admin SDK Request metrics, event tracking, and event queries
- Push Admin SDK Push send, topic broadcast, token inspection, and logs
- Native Resources KV, D1, Vectorize, and other edge-native resources
For AI Coding Assistants
This package includes an llms.txt file for AI-assisted development.
Use it when you want an agent or code assistant to:
- use the right Python admin method signatures
- remember which surfaces are properties vs methods
- avoid copying JavaScript or Go API shapes into Python
- choose
edgebase-admininstead of the broaderedgebasepackage when only admin features are needed
You can find it:
- in this repository: llms.txt
- in your environment after install, inside the
edgebase_adminpackage directory asllms.txt
Installation
pip install edgebase-admin
Quick Start
import os
from edgebase_admin import create_admin_client
admin = create_admin_client(
"https://your-project.edgebase.fun",
service_key=os.environ["EDGEBASE_SERVICE_KEY"],
)
users = admin.admin_auth.list_users(limit=20)
posts = (
admin.db("shared")
.table("posts")
.where("published", "==", True)
.order_by("createdAt", "desc")
.limit(10)
.get_list()
)
rows = admin.sql(
"shared",
None,
"SELECT COUNT(*) AS total FROM posts WHERE published = ?",
[1],
)
bucket = admin.storage().bucket("avatars")
signed = bucket.create_signed_url("user-1.jpg", expires_in="1h")
print(len(users.get("users", [])), len(posts.items), rows, signed.url)
Core API
AdminClient(base_url, service_key=...)Main admin entry pointcreate_admin_client(base_url, service_key=...)Convenience helper matching the public docsadmin.admin_authAdmin user managementadmin.db(namespace="shared", instance_id=None).table(name)Service-key database accessadmin.storage()Storage bucket accessadmin.sql(namespace="shared", instance_id=None, query="", params=None)Raw SQLadmin.functions()Call app functions from trusted codeadmin.analytics()Query request metrics and track custom eventsadmin.push()Send push notifications and inspect logsadmin.kv(namespace),admin.d1(database),admin.vector(index)/admin.vectorize(index)Native Cloudflare resources
Requirements
- Python
3.10+ edgebase-core>=0.2.7,<0.3.0- A valid EdgeBase Service Key
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 edgebase_admin-0.2.7.tar.gz.
File metadata
- Download URL: edgebase_admin-0.2.7.tar.gz
- Upload date:
- Size: 15.0 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.12.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
27b8a956e6043ee12cd5360674da8a417b403196bb0cc974f548ee413cc1bbc1
|
|
| MD5 |
058aad86582d06f6808b58a521f88276
|
|
| BLAKE2b-256 |
dae52ca6b9aac2628019a509032a59a185371d5ae545586fc6e7ec905408ba3b
|
File details
Details for the file edgebase_admin-0.2.7-py3-none-any.whl.
File metadata
- Download URL: edgebase_admin-0.2.7-py3-none-any.whl
- Upload date:
- Size: 20.3 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.12.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
fac0568790e311b73ae20b0b2140752034322c26b9e7c96f9cfb803a8ead6272
|
|
| MD5 |
26b5da04d459a139bd34f73427d0bcfe
|
|
| BLAKE2b-256 |
9bdfb9dd58a9d9e86ca30fab8806df1cc84ea22da5f5f76c1500b0d2451b80a9
|