← All recipes
Moderne licensed

Find Python function and method usages

Recipe IDorg.openrewrite.python.migrate.FindMethods
Artifactorg.openrewrite.recipe:rewrite-migrate-python

Find function and method calls by pattern. Covers standalone functions, class methods, static methods, and constructor calls.

Single recipeProprietary

Usage

You’ll need the Moderne CLI configured before running the command below.

mod run . --recipe org.openrewrite.python.migrate.FindMethods --recipe-option "methodPattern=dumps(..)"

If the recipe isn’t available locally, install it with:

mod config recipes jar install org.openrewrite.recipe:rewrite-migrate-python:0.11.0

Options

NameTypeDescription
methodPatternrequiredStringA method pattern used to find matching function and method calls. The pattern format is <module-or-type> <function-name>(<arg-patterns>). The module or type part is optional; when omitted, any declaring type matches. .. matches any number of arguments. For example, dumps(..) finds all calls to any function named dumps, json dumps(..) finds only calls to json.dumps(), and os.path join(..) finds calls to os.path.join().
e.g. dumps(..)
matchOverridesBooleanWhen enabled, find methods that are overrides of the method pattern.

Data tables

Structured output this recipe can produce.

  • Method callsThe text of matching method invocations.org.openrewrite.java.table.MethodCalls
  • 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