Automated Python refactoring
Project description
pyrefact
Automatic python refactoring, with the goal of simplifying complicated code, deleting dead code, and to some extent improve performance.
It is strongly recommended that you version control or otherwise backup any code you run pyrefact on.
Features
Readability
- Invert
if/elseto put the smaller block first. - De-indent code with early
continueandreturnstatements. - Replace loops that only fill up lists or sets with comprehensions.
- Rename variables, functions and classes with conventions.
- Move code into primitive functions.
Performance
- Replace
sumcomprehensions and for loops with constant expressions. The symbolic algebra tool Sympy is used under the hood. - Replace hardcoded inlined collections and comprehensions with set or generator equivalents in places where that would improve performance.
- Replace
sorted()[:n]withheapq.nsmallest, replacesorted()[0]withmin - Replace matrix operation comprehensions with equivalent
np.matmul()andnp.dot()calls, for code that already depends on numpy. - Use
isinstead of==for comparisons toNone,TrueandFalse.
Removing dead and useless code
- Delete unused functions, classes and variables.
- Remove most pointless simple statements.
- Remove branches of code that obviously do nothing useful.
- Remove unreachable code.
- Rename unused variables to
_ - Delete variables named
_, unless where that would cause a syntax error. - Remove redundant chained calls involving
sorted(),set(),tuple(),reversed(),iter()andlist(). - Remove duplicate function definitions.
- Remove redundant elif and else.
- Remove unused
selfandclsfunction arguments, and add@staticmethodor@classmethod. - Move functions decorated with
@staticmethodoutside of their class namespaces.
Imports
- Delete unused imports
- Move safe imports to toplevel
- Add missing imports by guessing what you probably wanted.
- For example, if
Sequenceis used but never defined, it will insertfrom typing import Sequenceat the top of the file.
- For example, if
Cleanup
- Run black and isort with --line-length=100. (Will be removed in a future release)
Usage
The --preserve flag lets you define places where code is used. When this is set, pyrefact will try to keep these usages intact.
The --safe flag will entirely prevent pyrefact from renaming or removing code.
The --from-stdin flag will format code recieved from stdin, and output the result to stdout.
pip install pyrefact
python -m pyrefact /path/to/filename.py --preserve /path/to/module/where/filename/is/used
python -m pyrefact /path/to/filename.py --safe
cat /path/to/filename.py | pyrefact --from-stdin
Prerequisites
CPython
Pyrefact requires python>=3.8, and is tested on CPython 3.8, 3.9, 3.10 and 3.11. Pyrefact works best on python>=3.9.
Pypy
Pyrefact is supported and tested on Pypy3.9. Pypy3.8 is not supported. Pyrefact is slightly faster on Pypy3.9 than on CPython3.9, but only for large repos as the JIT compile overhead is otherwise too large to make up.
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
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
File details
Details for the file pyrefact-47.tar.gz.
File metadata
- Download URL: pyrefact-47.tar.gz
- Upload date:
- Size: 50.6 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.9.16
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
10824012c4035bbace3ec0cb682a01845be4ec45980670281a858fbad6cc0320
|
|
| MD5 |
00e6157293ddd718106156d2b78a5892
|
|
| BLAKE2b-256 |
c19a341579037e33b3cd8b5a80cbee9c688483585701483363feaa86a7b36129
|
File details
Details for the file pyrefact-47-py3-none-any.whl.
File metadata
- Download URL: pyrefact-47-py3-none-any.whl
- Upload date:
- Size: 41.7 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.9.16
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
56784b77c500d72782af7e048d8721db208cb1557c1a8cd9f0f503cff433453f
|
|
| MD5 |
08e271f5e30bc1968e0a17a285da0aaf
|
|
| BLAKE2b-256 |
4f1f6b1033ad8c4912d025344001601632c49b47c1925b0b1d892cc44982e52a
|