A Python refactoring and optimization linter that analyzes code for performance issues, complexity problems, and opportunities for improvement
Project description
PyRefactor
A Python refactoring and optimization linter that uses AST analysis to identify performance issues, complexity problems, and code improvements.
Features
- Multi-threaded Analysis: Fast parallel file processing
- Configurable Detectors: Enable/disable specific detectors
- Severity Levels: Issues categorized as INFO, LOW, MEDIUM, or HIGH
- Flexible Output: Group by file or severity
- Cross-platform: Works on Windows, macOS, and Linux
Detectors
- Complexity: High cyclomatic complexity functions
- Performance: String concatenation in loops, uncached calls, inefficient operations
- Boolean Logic: Overcomplicated boolean expressions
- Loops: Nested loops, invariant code, comprehension opportunities
- Duplication: Duplicate code blocks
- Context Manager: Missing
withstatements for resource operations - Control Flow: Unnecessary
elseafterreturn/raise/break/continue - Dictionary Operations: Non-idiomatic dict patterns, missing
.get(), unnecessary.keys() - Comparisons: Chained comparisons, singleton checks,
type()vsisinstance()
Installation
Recommended: Via pip
pip install pyrefactor
Standalone Executable
Download the latest release from the Releases section. No Python installation required.
From Source
git clone https://github.com/tboy1337/PyRefactor.git
cd PyRefactor
pip install -e .
Requirements: Python 3.9+
Usage
# Analyze a file or directory
pyrefactor myfile.py
pyrefactor src/
# Show only medium/high severity issues
pyrefactor --min-severity medium src/
# Group by severity level
pyrefactor --group-by severity src/
# Use more workers for faster analysis
pyrefactor --jobs 8 src/
# Custom configuration file
pyrefactor --config custom.toml src/
Options
-c, --config: Configuration file path (default:pyproject.toml)-g, --group-by: Group byfileorseverity(default:file)--min-severity: Minimum severity to report:info,low,medium,high(default:info)-j, --jobs: Number of parallel workers (default: 4)-v, --verbose: Enable verbose logging--version: Show version
Exit Codes
0- No issues or only INFO/LOW severity1- MEDIUM/HIGH severity issues found2- Analysis error (syntax errors, invalid paths)
Configuration
Configure via TOML file (e.g., pyproject.toml):
[tool.pyrefactor]
exclude_patterns = ["__pycache__", ".venv", "build", "dist"]
[tool.pyrefactor.complexity]
max_complexity = 10
[tool.pyrefactor.performance]
enabled = true
min_concatenations = 3
min_duplicate_calls = 3
[tool.pyrefactor.boolean_logic]
enabled = true
min_depth = 3
[tool.pyrefactor.loops]
enabled = true
max_nesting = 3
[tool.pyrefactor.duplication]
enabled = true
min_lines = 5
similarity_threshold = 0.8
[tool.pyrefactor.context_manager]
enabled = true
[tool.pyrefactor.control_flow]
enabled = true
[tool.pyrefactor.dict_operations]
enabled = true
[tool.pyrefactor.comparisons]
enabled = true
Configuration is searched in: --config → pyproject.toml → pyrefactor.ini → defaults
CI/CD Integration
Pre-commit Hook
repos:
- repo: local
hooks:
- id: pyrefactor
name: PyRefactor
entry: pyrefactor
language: system
types: [python]
args: [--min-severity=medium]
GitHub Actions
name: Code Quality
on: [push, pull_request]
jobs:
pyrefactor:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-python@v4
with:
python-version: '3.9'
- run: pip install pyrefactor
- run: pyrefactor --min-severity medium src/
Contributing
Contributions are welcome! This project is under a Commercial Restricted License (CRL). For commercial use, contact the copyright holder.
- Follow existing code style (Black, isort)
- Add tests for new features (>95% coverage)
- Run type checking and linting
License
Licensed under the CRL license - see LICENSE.md for details.
Project details
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 pyrefactor-1.0.5.tar.gz.
File metadata
- Download URL: pyrefactor-1.0.5.tar.gz
- Upload date:
- Size: 63.6 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
abcb4b744555043d91664999576d80b0d9016c7db61b3efe4542ad0eb7b644d3
|
|
| MD5 |
f553c102e090e782986c469ac4db0a6d
|
|
| BLAKE2b-256 |
7fc0f5e161b843f44309a57595ea7477218786939944805632b2986531fde5a1
|
File details
Details for the file pyrefactor-1.0.5-py3-none-any.whl.
File metadata
- Download URL: pyrefactor-1.0.5-py3-none-any.whl
- Upload date:
- Size: 40.7 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
2ca5e3f4154c7836710e18e1ec573453d95ba12572e372ef16ef81d4f63defbb
|
|
| MD5 |
c1eacf83b7ada1f7d7696ffa5bbc117d
|
|
| BLAKE2b-256 |
c8b7fa59bc9f1656cbcce77be73f1e5aefda6e57fb1c28c5c2efe80a51868e0f
|