Timeseries Database
Project description
AtriumDB
AtriumDB is a comprehensive solution for the management and analysis of physiological waveform data. It includes a powerful SDK for data compression, storage and retrieval.
Installation
From PyPI (recommended)
$ pip install atriumdb
This will install the base version of AtriumDB, allowing the reading and writing to local datasets, supported by sqlite3 only. For more installation options including support to MariaDB datasets see the documentation. To install from source see GitHub readme here.
Quick Start
Creating a new dataset
To create a new dataset, you can use the create_dataset
method. This method allows you to specify the type of metadata database to use and where the data will be stored.
from atriumdb import AtriumSDK
# Create a new local dataset using SQLite
sdk = AtriumSDK.create_dataset(dataset_location="./new_dataset", database_type="sqlite")
# OR create a new local dataset using MariaDB
connection_params = {
'host': "localhost",
'user': "user",
'password': "pass",
'database': "new_dataset",
'port': 3306
}
sdk = AtriumSDK.create_dataset(dataset_location="./new_dataset", database_type="mysql", connection_params=connection_params)
The sdk object is how you will interact with the dataset including retrieving data, saving data and any of the other methods defined in the documentation.
Connecting to an existing dataset
To connect to an already created dataset, you will need to specify a local path where the dataset is stored if it's a sqlite database. If it's a MariaDB dataset you will also have to specify the connection parameters.
# Import AtriumSDK python object
from atriumdb import AtriumSDK
# Define a directory path where the dataset is stored (always needed)
dataset_location = "./example_dataset"
# Create AtriumSDK python object (sqlite)
sdk = AtriumSDK(dataset_location=dataset_location)
# OR Connect to a dataset supported by mariadb
connection_params = {
'host': "localhost",
'user': "user",
'password': "pass",
'database': "new_dataset",
'port': 3306
}
sdk = AtriumSDK(dataset_location=dataset_location, metadata_connection_type="mysql", connection_params=connection_params)
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 Distributions
Built Distribution
File details
Details for the file atriumdb-2.3.0-py3-none-any.whl
.
File metadata
- Download URL: atriumdb-2.3.0-py3-none-any.whl
- Upload date:
- Size: 1.0 MB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.1 CPython/3.10.14
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 0cc5eb60a290d12ef99ca53b0a61c0ed7779b819fe81e2473a120f656937a80f |
|
MD5 | bc88bd8734bb5dcd0e21039b2b37c536 |
|
BLAKE2b-256 | fb589b1321eadb37783e59bf6805e18b13d0640a033b6d09df7e4685677f66b9 |