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
pythonfrom longlink import storagewith storage.open("reports/example.txt", "wb") as f:f.write(b"hello")