Skip to content

Latest commit

 

History

History

astyle

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 
 
 
 
 

Astyle Python Distribution

This project packages the astyle utility as a Python package.

Install

pip install astyle

Usage

shell

astyle --help
# or
python -m astyle --help

python

from astyle.__main__ import main

main("--help")

Or:

from astyle import astyle

astyle("  #include <Python.h>", "indent-classes")

pre-commit

.pre-commit-config.yaml:

repos:
  - repo: https://github.com/Freed-Wu/astyle-wheel
    rev: 3.6.6
    hooks:
      - id: astyle