dvc-objects
dvc objects - filesystem and object-db level abstractions to use in dvc and dvc-data
What it is and what it does
DVC objects is a low-level abstraction layer that unifies access to multiple storage backends through a common interface built on fsspec. It handles the filesystem and object-database operations needed by DVC and dvc-data, supporting local storage, cloud providers (S3, Google Cloud Storage, Google Drive), and remote systems (SSH/SFTP). The package is serverless and requires only that the underlying storage support basic operations: uploading, downloading, listing, copying, and atomic renames.
This is a foundational library rather than a user-facing tool—it's designed to be used by other DVC ecosystem packages rather than directly by end users. It abstracts away the complexity of working with different storage systems, allowing higher-level tools to treat all backends uniformly.
Use it for:
- Building data pipeline tools that need to work across multiple storage backends without backend-specific code
- Implementing object-database systems that require consistent operations across local and cloud storage
- Extending DVC or dvc-data with custom storage support by leveraging the fsspec abstraction layer
Worth the install?
AI-flagged interpretation of the facts on this page — verify before relying
Provides filesystem and object-database abstractions for working with multiple storage backends (local, S3, GS, GDrive, SSH/SFTP, etc.) via fsspec, used internally by DVC and dvc-data.
Yes, if you are building tools in the DVC ecosystem or need a lightweight, actively maintained abstraction for multi-backend storage operations. The low install friction, permissive license, and active maintenance make it a safe dependency. However, this is primarily a library for other packages rather than a standalone tool—install it as a dependency, not as a direct solution to a storage problem.
Install
dvc-objects on PyPI
pip
pip install dvc-objectsuv
uv add dvc-objectspoetry
poetry add dvc-objectsInstalling dvc-objects
Before you install
Low install friction with only two runtime dependencies (fsspec and funcy). Actively maintained with recent commits; last release was 235 days ago and the repository remains active.
License in practice
Apache 2.0 permissive license allows free use, modification, and distribution with minimal restrictions, making it suitable for both open-source and commercial projects.
Quickstart
pip install dvc-objects
from dvc_objects.fs import get_cloud_fs
fs = get_cloud_fs(None, **{"url": "s3://bucket/path"})
fs.upload("local_file", "remote_path")
Requires Python 3.9 or later; the underlying storage backend (S3, GCS, etc.) must support upload, download, list, copy, and quasiatomic rename operations.
Verify before relying
- Whether the package provides a stable public API or is primarily intended for internal DVC ecosystem use
- Performance characteristics and scalability limits for large-scale object operations
- Specific storage backend compatibility matrix and any known limitations
Package facts
| License | Apache-2.0 (permissive) |
| Python support | supports the current Python release (>=3.9) |
| Install friction | low — pure-Python wheel |
| Runtime dependencies | 2 — fsspec, funcy |
| Maintenance | actively maintained — 235 days since the last release |
| Last repo commit | |
| First released | |
| Downloads | 2,013,946/month — #3,362 on PyPI (30-day window, as of 2026-08-14) |
| Known vulnerabilities | none known (OSV.dev, checked 2026-08-14) |
Evidence: dvc_objects-5.2.0-py3-none-any.whl
Tags
More Software Development packages
Provides backported and experimental type hints…
permissive · top 100 on PyPI
numpyNumPy provides an N-dimensional array object…
permissive · top 100 on PyPI
fastapiFastAPI is a Python web framework for building…
permissive · top 100 on PyPI
annotated-docProvides a way to document function parameters,…
permissive · top 100 on PyPI
typerTyper builds command-line applications from…
permissive · top 1,000 on PyPI
distlibDistlib provides low-level packaging utilities…
permissive · top 1,000 on PyPI
dvc-dataProvides data storage and indexing abstractions…
permissive · top 5,000 on PyPI
dvc-gsEnables DVC to read from and write to Google…
permissive · top 15,000 on PyPI
dvc-sshAdds SSH remote storage support to DVC,…
permissive · top 15,000 on PyPI
scmreposcmrepo provides an fsspec-based filesystem…
permissive · top 5,000 on PyPI
dvc-gdriveEnables DVC to store and retrieve data from…
permissive · top 15,000 on PyPI
morefsmorefs provides fsspec-based filesystem…
permissive · top 15,000 on PyPI
fsspecfsspec provides a unified filesystem interface…
unclear · top 100 on PyPI
iopathiopath provides a unified interface for reading…
permissive · top 5,000 on PyPI
dvc-s3Enables DVC to read from, write to, and manage…
permissive · top 5,000 on PyPI
gdrive-fsspecProvides a fsspec-compatible filesystem…
permissive · top 15,000 on PyPI