Web UI for dagster.
npx @tessl/cli install tessl/pypi-dagit@1.11.0A compatibility package that provides the web UI for Dagster. Dagit serves as a transitional wrapper around the dagster-webserver package, maintaining backward compatibility for existing installations while encouraging migration to the newer dagster-webserver package.
pip install dagitimport dagitFor version information:
from dagit import __version__The primary way to use dagit is through its command-line interface:
# Start the Dagster web UI server
dagit
# Start the debug server
dagit-debug
# Check version
dagit --versionfrom dagit import __version__
# Access package version
print(f"Dagit version: {__version__}")Access to the package version identifier.
__version__: strThe version string for the dagit package (e.g., "1.11.8").
Two console commands are provided for running the Dagster web UI.
dagit [options]Starts the Dagster web UI server. This command is a direct delegate to dagster-webserver.cli:main - it passes through all arguments and options while showing deprecation warnings directing users to migrate to dagster-webserver.
Common Options:
-f, --python-file: Python file to load Dagster definitions from-m, --module-name: Python module to load Dagster definitions from-a, --attribute: Attribute in the module to use as the repository-w, --working-directory: Working directory for the command-h, --host: Host to run the web server on-p, --port: Port to run the web server on--version: Show version informationdagit-debug [options]Starts the Dagster web UI in debug mode. This command is a direct delegate to dagster_webserver.debug:main - it passes through all arguments and options.
__version__: strString constant containing the package version.
Dagit has minimal direct functionality and primarily depends on:
This package is a compatibility shim. Users are encouraged to migrate to using dagster-webserver directly:
dagit command with dagster-webserverdagit-debug command with dagster-webserver --debugThe CLI commands may raise:
Version command returns "dagster-webserver, version X.X.X" format and accepts standard dagster arguments for loading definitions.