Dataset management and measurement library for scientific data
Project description
qdrive
Dataset management and measurement library for the qHarbor data platform.
qdrive is the Python interface for creating, managing, and syncing scientific datasets with qHarbor.
Features
- 📦 Create & manage datasets — Store measurements with rich metadata (tags, attributes, descriptions)
- 📁 Multi-file support with versioning — Attach xarray, NumPy, JSON, HDF5 or any file, with automatic version tracking
- 🔍 Powerful search — Filter datasets by attributes, date range, tags, or text
- ☁️ Cloud sync — Automatic synchronization via the sync agent
- 📊 Measurement tools — Built-in
do0D,do1D,do2Dsweep functions using native qHarbor format, compatible with QCoDeS parameters
Installation
pip install qdrive
Quick Start
Log in
import qdrive
qdrive.launch_GUI()
Create a dataset
from qdrive import dataset
ds = dataset.create(
'Qubit T2* measurement',
tags=['calibration'],
attributes={'sample': 'Q7-R3', 'fridge': 'BlueFors-1'}
)
Add files to a dataset
import numpy as np
import xarray as xr
# Add various file types
ds['config.json'] = {'param1': 42, 'param2': 'value'}
ds['raw_data.npz'] = np.random.rand(100, 100)
ds['measurement.hdf5'] = xr.Dataset({'signal': (['time'], np.sin(np.linspace(0, 10, 100)))})
ds['script.py'] = __file__ # Attach the current script
Retrieve and access data
from qdrive import dataset
ds = dataset('59c40af3-cef3-49aa-8747-64707a9b080a') # Load by UUID
# Access files in multiple formats
xr_data = ds['measurement.hdf5'].xarray
json_data = ds['config.json'].json
Search datasets
from qdrive.dataset.search import search_datasets
results = search_datasets(
search_query='T2*',
attributes={'sample': 'Q7-R3'},
ranking=1
)
for ds in results:
print(ds.name, ds.uuid)
Documentation
- 📖 Full Documentation
- 🖥️ DataQruiser App — Browse and visualize your data
- 💬 Support
License
GPL-3.0 — © 2024-2026 QHarbor B.V. See LICENCE for details.
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
No source distribution files available for this release.See tutorial on generating distribution archives.
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
qdrive-0.2.59-py3-none-any.whl
(132.1 kB
view details)
File details
Details for the file qdrive-0.2.59-py3-none-any.whl.
File metadata
- Download URL: qdrive-0.2.59-py3-none-any.whl
- Upload date:
- Size: 132.1 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.11.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
13e07db72eec4971a379c495dfe3d3e59d65b63792b375215b952599ddf5488b
|
|
| MD5 |
584a74bbe1231cac6e6fdb57f9bfe4e3
|
|
| BLAKE2b-256 |
886246dd9ad6ad4ac6267a29af24e2948b25fdf724c8589127eea1506193e0a6
|