Python dependency insight
Recipe ID
org.openrewrite.python.migrate.DependencyInsightArtifact
org.openrewrite.recipe:rewrite-migrate-pythonFind Python dependencies, including transitive dependencies, matching a package name pattern. Results include the resolved version, scope, and whether the dependency is direct or transitive.
Usage
You’ll need the Moderne CLI configured before running the command below.
mod run . --recipe org.openrewrite.python.migrate.DependencyInsight --recipe-option "packagePattern=requests"If the recipe isn’t available locally, install it with:
mod config recipes jar install org.openrewrite.recipe:rewrite-migrate-python:0.11.0Options
| Name | Type | Description |
|---|---|---|
packagePatternrequired | String | A glob pattern to match against package names. Package names are normalized per PEP 503 before matching (lowercased, runs of dashes/underscores/dots collapsed to a single dash). e.g. requests |
scope | String | Filter dependencies by scope. Common scopes: main, build, or the name of an optional-dependency extra or dependency-group (e.g., dev, test). When omitted, all scopes are searched.e.g. main |
Data tables
Structured output this recipe can produce.
- Python dependencies in useDirect and transitive dependencies in use in Python projects.
org.openrewrite.python.table.PythonDependenciesInUse - Source files that had resultsSource files that were modified by the recipe run.
org.openrewrite.table.SourcesFileResults - Source files that had search resultsSearch results that were found during the recipe run.
org.openrewrite.table.SearchResults - Source files that errored on a recipeThe details of all errors produced by a recipe run.
org.openrewrite.table.SourcesFileErrors - Recipe performanceStatistics used in analyzing the performance of recipes.
org.openrewrite.table.RecipeRunStats