radiens-drive-catalog
A Python package for programmatically managing large neural datasets stored on Google Drive. It handles Drive scanning, local cataloging, and selective dataset download. Analysis is done locally — this package is purely about data management.
Documentation: https://neuronexus.github.io/radiens-drive-catalog/latest/
Overview
Neural data is stored as xdat filesets (NeuroNexus format) on a shared Google Drive. Each dataset consists of 3 files sharing a common base_name:
{base_name}_data.xdat
{base_name}.xdat.json
{base_name}_timestamp.xdat
radiens-drive-catalog scans the Drive hierarchy, builds a local catalog indexed by base_name, and lets you query and download datasets selectively. Non-xdat content found alongside recordings — logs directories, PowerPoints, writeups — is also discovered and tracked as Drive items.
Usage
Recordings
from radiens_drive_catalog import Catalog, Config
config = Config.from_file("config.json")
catalog = Catalog(config)
# Scan Drive and build the catalog (discovers recordings and Drive items)
result = catalog.scan() # returns ScanResult with new/existing/removed counts
result = catalog.scan(flat=False) # recursive traversal instead of flat file scan
# Query recordings using pandas directly
catalog.recordings_df
catalog.list_recordings() # everything
catalog.list_recordings(drive_path="2026-02-15_batch/reaching") # exact folder
catalog.list_recordings(drive_path="2026-02-15_batch", drive_path_mode="prefix") # full date subtree
catalog.list_recordings(drive_path="reaching", drive_path_mode="contains") # any depth
catalog.list_recordings(base_name="rat01_session3") # exact base_name
catalog.list_recordings(base_name="rat01", base_name_mode="prefix") # base_name prefix
catalog.list_recordings(base_name="session3", base_name_mode="contains") # base_name substring
# Filters are ANDed together, e.g. all "rat01" recordings under "2026-02-15_batch"
catalog.list_recordings(drive_path="2026-02-15_batch", drive_path_mode="prefix", base_name="rat01", base_name_mode="prefix")
# Look up a recording by base_name (raises AmbiguousRecordingError if not globally
# unique — pass drive_path to disambiguate)
entry = catalog.get_recording("rat01_session3")
entry = catalog.get_recording("rat01_session3", drive_path="2026-02-15_batch/reaching")
# Download a recording (3 xdat files)
catalog.download_recording("2026-02-15_batch/reaching", "rat01_session3")
# Get the local path, downloading automatically if needed
path = catalog.get_recording_path("2026-02-15_batch/reaching", "rat01_session3")
Drive items (non-xdat content)
Non-xdat files and folders (e.g. logs/, PowerPoints, writeups) are automatically cataloged as Drive items during scan().
# Query items using pandas directly
catalog.items_df
catalog.items_df[catalog.items_df["drive_path"].str.startswith("2026-02-15_batch")]
catalog.items_df[catalog.items_df["is_folder"] == True]
# Download an item (drive_path is the slash-joined path to the item's parent folder)
catalog.download_item("2026-02-15_batch/reaching", "logs")
# Get the local path, downloading automatically if needed
path = catalog.get_item_path("2026-02-15_batch/reaching", "logs")
# Render an annotated tree of the full Drive hierarchy
print(catalog.file_tree())
# Print a headline summary report: counts, download progress, date
# range, and Drive/local storage totals
print(catalog.summary())
# verbose=True adds an item-type breakdown, largest entries, itemized
# incomplete recordings, a per-folder breakdown, and a full per-entry listing
print(catalog.summary(verbose=True))
Items land under local_data_dir/{drive_path}/{name}, using the same Drive-mirroring convention as recordings.
Configuration
Create a config.json (outside your repo — do not commit it):
{
"credentials_path": "/path/to/service_account.json",
"root_folder_id": "your-drive-folder-id",
"local_data_dir": "/path/to/local/data",
"catalog_path": "/path/to/local/data/catalog.json"
}
Config.from_file() locates the config file using this resolution order:
- Explicit
pathargument. RADIENS_DRIVE_CATALOG_CONFIGenvironment variable..secrets/config.json, thenconfig.json, searched starting in the current working directory and then each parent directory up to the filesystem root (closest directory wins) — the same convention git uses to locate.git, so this works the same whether you run from the repo root or a nested subdirectory (e.g. a notebook innotebooks/).~/.config/radiens-drive/config.json./etc/radiens-drive/config.json.
# Automatic discovery (env var or well-known paths)
config = Config.from_file()
# Explicit path
config = Config.from_file("/path/to/config.json")
The root_folder_id is the alphanumeric string in the Drive URL when you're inside the root data folder.
Authentication
This package uses a Google service account for shared access among collaborators. To set it up:
- Create a project in Google Cloud Console
- Enable the Google Drive API
- Create a service account and download its JSON credentials file
- Share your root Drive data folder with the service account's email address (Viewer access is sufficient)
- Point
credentials_pathin your config at the downloaded JSON file
Distribute the credentials file to collaborators securely — treat it like a password.
Installation
This project uses uv for dependency management. If you don't have it:
macOS / Linux:
curl -LsSf https://astral.sh/uv/install.sh | sh
Windows:
powershell -c "irm https://astral.sh/uv/install.ps1 | iex"
Then install the project:
uv sync
Development
uv run pytest # run tests
uv run mypy # type checking
uv run ruff check . # linting
uv run ruff format . # formatting
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 radiens_drive_catalog-0.0.15.tar.gz.
File metadata
- Download URL: radiens_drive_catalog-0.0.15.tar.gz
- Upload date:
- Size: 148.1 kB
- Tags: Source
- Uploaded using Trusted Publishing? Yes
- Uploaded via:
twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
9d950f0ac0396ba8e84429f2d2f48acbe17e919d593e3aae2a878e971ea6add3
|
|
| MD5 |
5bfa1443bba565edb5225d8eed1b966a
|
|
| BLAKE2b-256 |
abc7701c23f29a2e14de0c3f32253a7f0a4c66db3e8d4363ce3c153810421cfa
|
Provenance
The following attestation bundles were made for radiens_drive_catalog-0.0.15.tar.gz:
Publisher:
publish.yml on NeuroNexus/radiens-drive-catalog
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
radiens_drive_catalog-0.0.15.tar.gz -
Subject digest:
9d950f0ac0396ba8e84429f2d2f48acbe17e919d593e3aae2a878e971ea6add3 - Sigstore transparency entry: 2195667670
- Sigstore integration time:
-
Permalink:
NeuroNexus/radiens-drive-catalog@9030ee46157674b0326818083e139575bb159bd8 -
Branch / Tag:
refs/tags/v0.0.15 - Owner: https://github.com/NeuroNexus
-
Access:
private
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@9030ee46157674b0326818083e139575bb159bd8 -
Trigger Event:
push
-
Statement type:
File details
Details for the file radiens_drive_catalog-0.0.15-py3-none-any.whl.
File metadata
- Download URL: radiens_drive_catalog-0.0.15-py3-none-any.whl
- Upload date:
- Size: 25.4 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? Yes
- Uploaded via:
twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
3bb40d35baa707da43b91cb1969ee5e5fe9d5d36b1340af319dc86d9e6c26431
|
|
| MD5 |
d00eb6cb4d161b0f4d8a020ca32a7f1d
|
|
| BLAKE2b-256 |
31c04a376908e6e7b912232aec1eae3235cee6a2cb157057e8e0ff1e8fecdf61
|
Provenance
The following attestation bundles were made for radiens_drive_catalog-0.0.15-py3-none-any.whl:
Publisher:
publish.yml on NeuroNexus/radiens-drive-catalog
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
radiens_drive_catalog-0.0.15-py3-none-any.whl -
Subject digest:
3bb40d35baa707da43b91cb1969ee5e5fe9d5d36b1340af319dc86d9e6c26431 - Sigstore transparency entry: 2195667674
- Sigstore integration time:
-
Permalink:
NeuroNexus/radiens-drive-catalog@9030ee46157674b0326818083e139575bb159bd8 -
Branch / Tag:
refs/tags/v0.0.15 - Owner: https://github.com/NeuroNexus
-
Access:
private
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@9030ee46157674b0326818083e139575bb159bd8 -
Trigger Event:
push
-
Statement type: