SaaSHub helps you find the best software and product alternatives Learn more →
Autoflake Alternatives
Similar projects and alternatives to autoflake
-
-
-
Sonar
Write Clean Python Code. Always.. Sonar helps you commit clean code every time. With over 225 unique rules to find Python bugs, code smells & vulnerabilities, Sonar finds the issues while you focus on the work.
-
Flake8
flake8 is a python tool that glues together pycodestyle, pyflakes, mccabe, and third-party plugins to check the style and quality of some python code.
-
autopep8
A tool that automatically formats Python code to conform to the PEP 8 style guide.
-
pyupgrade
A tool (and pre-commit hook) to automatically upgrade syntax for newer versions of the language.
-
-
-
InfluxDB
Access the most powerful time series database as a service. Ingest, store, & analyze all types of time series data in a fully-managed, purpose-built database. Keep data forever with low-cost storage and superior data compression.
-
-
-
django-autotranslate
A simple Django app to automatically translate the pot (.po) files generated by django's makemessages command using google translate.
-
best-of-python-dev
🏆 A ranked list of awesome python developer tools and libraries. Updated weekly.
-
-
ipython
Official repository for IPython itself. Other repos in the IPython organization contain things like the website, documentation builds, etc.
-
-
pytest
The pytest framework makes it easy to write small tests, yet scales to support complex functional testing
-
-
sourcery
Automatically review and improve your Python code. ⭐ this repo and Sourcery Starbot will send you a PR. Or install our CLI to improve your code locally (by sourcery-ai)
-
pytest-xdist
pytest plugin for distributed testing and loop-on-failures testing modes.
-
-
unimport
:rocket: A linter, formatter for finding and removing unused import statements.
-
SaaSHub
SaaSHub - Software Alternatives and Reviews. SaaSHub helps you find the best software and product alternatives
autoflake reviews and mentions
-
Quick wins in improving your Python codebase health
Having unused imports in a Python file is a prevalent issue, with a very easy solution: autoflake. Running it over your files will remove any unused imports in place.
-
Makefile for your Django project
cleanimports: runs isort and removes unused imports with Autoflake. Be sure to set up profile=black in isort settings to avoid conflicts with Black.
- Automatically find and remove unused import statements in your project.
-
Formatting Code with Black
We use isort[0] for this. It even has a "black" compatible profile that line spits along black's defaults. Additionally we use autoflake[1] to remove unused import statements in place.
-
Python Code Quality - Improve the quality of your Python code with linters, code formatters, and security vulnerability scanners
yaml repos: - repo: https://github.com/myint/autoflake rev: v1.4 hooks: - id: autoflake args: - --in-place - --remove-all-unused-imports - --expand-star-imports - --remove-duplicate-keys - --remove-unused-variables - repo: https://github.com/asottile/pyupgrade rev: v2.29.0 hooks: - id: pyupgrade args: [--py36-plus] - repo: https://github.com/PyCQA/isort rev: 5.9.3 hooks: - id: isort - repo: https://github.com/psf/black rev: 21.10b0 hooks: - id: black args: [--safe, --quiet] - repo: https://github.com/PyCQA/flake8 rev: 4.0.1 hooks: - id: flake8 - repo: local hooks: - id: pylint name: pylint entry: pylint language: system types: [python] args: [ "-rn", "-sn", ] - repo: https://github.com/pre-commit/mirrors-mypy rev: v0.910-1 hooks: - id: mypy name: mypy entry: mypy language: python types: [python] args: [] require_serial: true - repo: https://github.com/pre-commit/mirrors-prettier rev: v2.4.1 hooks: - id: prettier args: [--prose-wrap=always, --print-width=88]
-
Automate Clean Code and Linting in Python
autoflake 400+⭐️
-
A note from our sponsor - #<SponsorshipServiceOld:0x00007f160f278e28>
www.saashub.com | 29 Mar 2023
Stats
PyCQA/autoflake is an open source project licensed under MIT License which is an OSI approved license.