Shared Python core for EdgeBase table, storage, and HTTP primitives
Project description
edgebase-core
Shared low-level Python primitives for EdgeBase.
edgebase-core is the foundation used by edgebase and edgebase-admin. It contains the HTTP client, table/query builder, storage helpers, push primitives, field operations, and common error types.
Most application code should install one of these instead:
pip install edgebasepip install edgebase-admin
Install edgebase-core directly only if you are building custom wrappers, generated bindings, or internal integrations on top of the EdgeBase APIs.
Docs
- SDK overview: https://edgebase.fun/docs/sdks
- Database admin SDK: https://edgebase.fun/docs/database/admin-sdk
- Storage docs: https://edgebase.fun/docs/storage/upload-download
Quick Start
from edgebase_core import HttpClient, StorageClient, TableRef
http = HttpClient(
"https://your-project.edgebase.fun",
service_key="service-key",
)
posts = (
TableRef(http, "shared", None, "posts")
.where("published", "==", True)
.order_by("createdAt", "desc")
.limit(20)
.get_list()
)
bucket = StorageClient(http).bucket("avatars")
Included Surfaces
HttpClientTableRef,DocRef,ListResultStorageClient,StorageBucketPushClientFieldOps,increment,delete_fieldContextManagerEdgeBaseError
AI Assistant
- Package guide:
packages/sdk/python/packages/core/README.md - Assistant reference:
packages/sdk/python/packages/core/llms.txt
Requirements
- Python
3.10+ httpx>=0.27
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_core-0.1.3.tar.gz.
File metadata
- Download URL: edgebase_core-0.1.3.tar.gz
- Upload date:
- Size: 19.8 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.12.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
1463a84c806c28d5bcac98edccf2b441028c77267a431ea2e5d252a5e37508da
|
|
| MD5 |
a058d5141c363b3f37f15d05ed9f9106
|
|
| BLAKE2b-256 |
f214f5285be94685b8a83284a16b790411a2aa53ff540458ee1e1dd3795bc036
|
File details
Details for the file edgebase_core-0.1.3-py3-none-any.whl.
File metadata
- Download URL: edgebase_core-0.1.3-py3-none-any.whl
- Upload date:
- Size: 24.0 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 |
dcd084bd02a91455fac2c99b96afdb3103c7943c892203693d9de9a778cfff02
|
|
| MD5 |
fe1b5703a20c9599a276b3cfba276d37
|
|
| BLAKE2b-256 |
01249bbdc8378d802c97f5e9d21156f45d5e24cb86f6d14e9874abf988a3a84f
|