Custom streamlit component connecting local browser indexedDB database as RxDB collection as dataframe
Project description
streamlit-rxdb-dataframe
Custom streamlit component connecting local browser indexedDB database as RxDB collection as dataframe
Demo
demo - based on TodoMVC
Usage
Provide JSONSchema
JSONSchema
{
"definitions": {},
"$schema": "http://json-schema.org/draft-07/schema#",
"type": "object",
"title": "Todo",
"description": "Todo Schema",
"required": ["id", "title", "createdAt"],
"version": 0,
"properties": {
"id": {
"type": "string",
"format": "uuid",
"title": "Id",
"pattern": "^(.*)$",
"maxLength": 36,
"readOnly": true
},
"title": {
"type": "string",
"title": "Title",
"minLength": 3
},
"completed": {
"type": "boolean",
"title": "Done"
},
"createdAt": {
"type": "string",
"title": "Created Date",
"format": "date-time",
"readOnly": true
},
"last_modified": {
"type": "integer",
"format": "time",
"title": "Last Modified Date"
}
},
"__indexes": ["createdAt"],
"primaryKey": "id",
"attachments": {
"encrypted": false
}
}
Provide Collection Config and use streamlit dataframe, data_editor or table
todoSchema: Dict = json.load(open(os.path.join(data_dir, "todo.schema.json")))
# initial_docs: List = json.load(open(os.path.join(data_dir, "col.dump.json")))["docs"]
collection_config = {
"name": "todo",
"schema": todoSchema, # to auto load schema from remote url pass None
"localDocuments": True,
"options": {
# 'schemaUrl': 'assets/data/todo.schema.json',
# "initialDocs": initial_docs,
},
}
def on_change_dataframe(rxdb_state: RxDBSessionState):
print("RxDBDataframe component on_change call")
print("collection.info()", rxdb_state.info)
print("dataframe.head()", rxdb_state.dataframe.head())
df = rxdb_dataframe(
collection_config,
query=None,
with_rev=False,
on_change=on_change_dataframe,
)
st.dataframe(
df,
use_container_width=True,
hide_index=True,
column_config=st.session_state["rxdb"]["column_config"],
column_order=["title", "completed", "createdAt"],
)
Run & Build
Run
cd packages/streamlit-rxdb-dataframe/
poetry run streamlit run example.py
Build
poetry build -o ../../dist/packages/streamlit-rxdb-dataframe
Publish
poetry publish -r test-pypi --dist-dir ../../dist/packages/streamlit-rx
db-dataframe
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 streamlit_rxdb_dataframe-0.1.0.tar.gz.
File metadata
- Download URL: streamlit_rxdb_dataframe-0.1.0.tar.gz
- Upload date:
- Size: 824.0 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.8.2 CPython/3.10.12 Linux/6.6.10-76060610-generic
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
854106b58273574258f7804c248fced39a08016a2ccf94e8a7ec985eabaf8168
|
|
| MD5 |
fb3f6b46481ac63f856aeb6f24e3f956
|
|
| BLAKE2b-256 |
c2dee1ec3adc4e99fd57d9fdb9bcf538c2570a46feff90b7ed981bde4e806e6d
|
File details
Details for the file streamlit_rxdb_dataframe-0.1.0-py3-none-any.whl.
File metadata
- Download URL: streamlit_rxdb_dataframe-0.1.0-py3-none-any.whl
- Upload date:
- Size: 838.8 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.8.2 CPython/3.10.12 Linux/6.6.10-76060610-generic
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
0277802ed72dd7878e97d8166c1d725ab126a8677a66f4f72cf4ac20a61624be
|
|
| MD5 |
41127fc0eab1cf70aa97599594ccedce
|
|
| BLAKE2b-256 |
70bbe038f169247aad02cfab2d6ae5d94e7dcffd9f7494c934432e2c2ebe5ce9
|