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.74.0.tar.gz
(240.1 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.74.0-py3-none-any.whl
(282.8 kB
view details)
File details
Details for the file openrewrite-8.74.0.tar.gz.
File metadata
- Download URL: openrewrite-8.74.0.tar.gz
- Upload date:
- Size: 240.1 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.12.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
e8fb3e9fc9223862e852fb274035670b540f47f51b40d8b5d4bec0ce4e3a74c7
|
|
| MD5 |
1222c08d29b8893f0cbb65df2b1b7647
|
|
| BLAKE2b-256 |
65d9fb1018b146e3e18fee259c45d8a92524b242995bd21e5462068192f792df
|
File details
Details for the file openrewrite-8.74.0-py3-none-any.whl.
File metadata
- Download URL: openrewrite-8.74.0-py3-none-any.whl
- Upload date:
- Size: 282.8 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 |
068342ac55d88967d4baa239996256f9fdd3e96f186561121807ede3f2d04d3f
|
|
| MD5 |
6a9dfeb0e4a0e7412bf7780288f04b42
|
|
| BLAKE2b-256 |
5375b88b57df4ae928614075ac5c0618a10108df2a429dcdf87dce53720fdf10
|