Storage

The SDK creates a solution-scoped storage filesystem backed by fsspec(opens in new tab). Project source uses the same filesystem interface in local development, tests, and production.

Environment
Testing
memory backend for isolated in-memory test files.
Development
file backend for inspectable local files.
Production
s3 backend using solution and shared prefixes in one Organization bucket.

Usage

python
from longlink import storage
with storage.open("reports/example.txt", "wb") as f:
f.write(b"hello")