Python client for the LCMD molecular database
Project description
LCMD-DB
Python client for the LCMD molecular database.
Installation
uv add lcmd-db
# or
pip install lcmd-db
Quick start
from lcmd_db import load_dataset
# Load a subset (molecules included by default)
data = load_dataset("qm9")
data.molecules # polars DataFrame
# Include multiple entity types
data = load_dataset("qm9", include=["molecules", "reactions", "fragments"])
# Include XYZ structure files
data = load_dataset("qm9", include_structures=True)
# Select specific properties
data = load_dataset("qm9", molecule_properties=["smiles", "energy"])
# Choose output format
data = load_dataset("qm9", data_format="csv")
# Force re-download (bypass cache)
data = load_dataset("qm9", force_download=True)
Dataset API
load_dataset returns a SubsetData object containing polars DataFrames for each entity type. Convert it to a typed Dataset for lazy loading, filtering, and indexing:
data = load_dataset("qm9")
# Get a typed, iterable Dataset
molecules = data.as_dataset("molecules")
# Index and iterate
mol = molecules[0] # Molecule(id=..., properties={...})
batch = molecules[10:20] # Dataset slice
# Filter with polars expressions
import polars as pl
heavy = molecules.filter(pl.col("molecular_weight") > 100)
# Select specific columns
subset = molecules.select("smiles", "energy")
# Train/test split
train, test = molecules.train_test_split(test_size=0.2, seed=42)
# Export
df = molecules.to_polars()
pdf = molecules.to_pandas()
atoms = molecules.to_ase() # requires ase
CLI
# Download a dataset
lcmd-db download qm9
lcmd-db download qm9 --include molecules --include structures
lcmd-db download qm9 -f csv --force
# Browse available schemas
lcmd-db schema list
lcmd-db schema show qm9
# Manage cache
lcmd-db cache clear
lcmd-db cache clear qm9
# Sync type stubs for autocomplete
lcmd-db stubs sync
Configuration
Settings are controlled via environment variables (prefix LCMD_DB_) or programmatically:
| Variable | Description | Default |
|---|---|---|
LCMD_DB_BASE_URL |
API base URL | https://lcmd-app.epfl.ch |
LCMD_DB_CACHE_DIR |
Cache directory | OS-dependent |
LCMD_DB_TIMEOUT |
Download timeout (seconds) | 300 |
LCMD_DB_AUTO_SYNC_STUBS |
Auto-sync type stubs on import | true |
from lcmd_db import settings
settings.base_url = "https://custom-instance.example.com"
Project details
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 lcmd_db-0.3.2.tar.gz.
File metadata
- Download URL: lcmd_db-0.3.2.tar.gz
- Upload date:
- Size: 308.5 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: uv/0.8.15
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
0c6da5c22de5403f80b605b64037309a45291f2dfc9be023fb6375eabcdfba12
|
|
| MD5 |
90f419c30d58ca8b7d4972a914a81d64
|
|
| BLAKE2b-256 |
ab5a4ffaba894fb79f89a18bf109181e621f4cd75752f64cb2a5fd7dff25a817
|
File details
Details for the file lcmd_db-0.3.2-py3-none-any.whl.
File metadata
- Download URL: lcmd_db-0.3.2-py3-none-any.whl
- Upload date:
- Size: 31.9 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: uv/0.8.15
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
5a3e8fb87710c5519128369afa51f7face4a75481e6d4d7b8099211970639740
|
|
| MD5 |
d202a84ce47eec559f6eb5746d616a34
|
|
| BLAKE2b-256 |
416667a7c2d122aa1c43106aeed829c446596da0831460727efc518edce82781
|