dagster-shared is an internal utility library providing common code, constants, and data structures shared between the core `dagster` package and other `dagster-` prefixed libraries (e.g., `dagster-dg-core`). It is not intended for direct use by end-users. The current version is 1.12.22, and it typically releases weekly or bi-weekly, synchronized with `dagster` core releases.
pip install dagster-sharedVerified import paths — ran on the pinned version, not inferred.
dagster-shared is an internal dependency and does not offer a direct quickstart for end-users. User code should typically interact with the `dagster` library directly. This example shows a basic Dagster asset definition, which internally leverages components from `dagster-shared`.
Always prefer importing Dagster-related symbols directly from the top-level `dagster` package (e.g., `from dagster import ...`) instead of `dagster_shared`.
Avoid direct imports from `dagster_shared`. Rely on the stable APIs provided by `dagster` and other user-facing `dagster-*` libraries. If a specific utility is needed, check if it's available via a stable `dagster` import path.
No dependency data recorded yet.