OpenRewrite automated refactoring for Python.
Project description
OpenRewrite Python
OpenRewrite automated refactoring for Python source code.
Installation
pip install openrewrite
Quick Start
from rewrite.python import PythonParser
from rewrite import ExecutionContext
# Parse Python source code
parser = PythonParser()
ctx = ExecutionContext()
source_files = parser.parse(ctx, "example.py")
# Apply recipes to transform code
# ...
Writing Recipes
from dataclasses import dataclass, field
from rewrite import Recipe, option
from rewrite.python import PythonVisitor
@dataclass
class ChangeImport(Recipe):
"""Changes an import from one module to another."""
old_module: str = field(metadata=option(
display_name="Old module",
description="The module to change imports from",
example="flask"
))
new_module: str = field(metadata=option(
display_name="New module",
description="The module to change imports to",
example="flask_restful"
))
@property
def name(self) -> str:
return "org.openrewrite.python.ChangeImport"
@property
def display_name(self) -> str:
return "Change import"
@property
def description(self) -> str:
return "Changes an import from one module to another."
def editor(self) -> PythonVisitor:
# Implementation...
pass
Documentation
See docs.openrewrite.org for full documentation.
License
Moderne Source Available License - see LICENSE.md
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
openrewrite-8.81.1.tar.gz
(259.3 kB
view details)
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
openrewrite-8.81.1-py3-none-any.whl
(304.1 kB
view details)
File details
Details for the file openrewrite-8.81.1.tar.gz.
File metadata
- Download URL: openrewrite-8.81.1.tar.gz
- Upload date:
- Size: 259.3 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.12.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
62b3eaef1a266ac715acb58bf7fe4d3bc710d7b52f4f8d620fe52d43c2319153
|
|
| MD5 |
bc26b870c650b0f5581b7bbef956623f
|
|
| BLAKE2b-256 |
7f011bdf7e8cba67681f1fd451f46d91c4392340d2869f87474d32f76f3332d5
|
File details
Details for the file openrewrite-8.81.1-py3-none-any.whl.
File metadata
- Download URL: openrewrite-8.81.1-py3-none-any.whl
- Upload date:
- Size: 304.1 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.12.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
4f9ab0493215c9dafb9f7071d97cf76d312dab8619443b394c02e5e01e8fe4e4
|
|
| MD5 |
24b3f9f07e5690b200e8c26e973e0d8b
|
|
| BLAKE2b-256 |
f768d109c897139cb1f8d55a29a4548de06997cc8094e5405365f0991befea24
|