logo
Free, unlimited AI code reviews that run on commit
git-lrc git-lrc GitHub Install Now We'd appreciate a star git-lrc - Free, unlimited AI code reviews that run on commit | Product Hunt git-lrc - Free, unlimited AI code reviews that run on commit | Product Hunt

Format Python Code - Black Formatter | Online Free DevTools by Hexmos

Format Python code efficiently with Black, the uncompromising code formatter. Ensure consistent style and improve code readability. Free online tool, no registration required.

black

Format Python code automatically. More information: https://black.readthedocs.io/en/stable/usage_and_configuration/the_basics.html.

  • Auto-format a file or entire directory:

black {{path/to/file_or_directory}}

  • Format the code passed in as a string:

black {{[-c|--code]}} "{{code}}"

  • Show whether a file or a directory would have changes made to them if they were to be formatted:

black --check {{path/to/file_or_directory}}

  • Show changes that would be made to a file or a directory without performing them (dry-run):

black --diff {{path/to/file_or_directory}}

  • Auto-format a file or directory, emitting exclusively error messages to stderr:

black {{[-q|--quiet]}} {{path/to/file_or_directory}}

  • Auto-format a file or directory without replacing single quotes with double quotes (adoption helper, avoid using this for new projects):

black {{[-S|--skip-string-normalization]}} {{path/to/file_or_directory}}

See Also