Install & Compatibility
Where this runs
tested against v2.2.0 · pip install
no network on importno background threads
Install × environment matrix
Each cell = how many times install + import succeeded across repeated harness runs. Partial = flaky.
glibc = Debian/Ubuntu slim · musl = Alpine Linux
muslpy 3.10–3.95 runs
installs and imports cleanly · install 0.0s · import 0.000s · 92.7MB
glibcpy 3.10–3.95 runs
installs and imports cleanly · install 8.5s · import 0.000s · 94MB
93MB installed
● package 93MB
Code
Verified usage
Verified import paths — ran on the pinned version, not inferred.
get_storage
✓ from datarobot_storage import get_storage
✗ from datarobot_storage import Storage
get_async_storage
✓ from datarobot_storage import get_async_storage
put_generator
✓ from datarobot_storage import put_generator
Initialize an S3-backed storage and upload a file.
from datarobot_storage import Storage
from datarobot_storage.backends import S3Backend
backend = S3Backend(
bucket='my-bucket',
aws_access_key_id=os.environ.get('AWS_ACCESS_KEY_ID', ''),
aws_secret_access_key=os.environ.get('AWS_SECRET_ACCESS_KEY', '')
)
storage = Storage(backend)
storage.upload('local/path.txt', 'remote/path.txt')
Upgrade
Version history
2.2.0latest on PyPI · released Apr 22, 2025
Audit
Dependencies
boto3optionalS3 storage backend
google-cloud-storageoptionalGCS storage backend
azure-storage-bloboptionalAzure Blob storage backend