首页 > 其他 > 详细

Pychrm配置autopep8

时间:2020-08-12 16:47:35      阅读:54      评论:0      收藏:0      [点我收藏+]

原文:https://www.cnblogs.com/xiao-apple36/p/9242069.html

关于PEP 8

PEP 8,Style Guide for Python Code,是Python官方推出编码约定,主要是为了保证 Python 编码的风格一致,提高代码的可读性。

官网地址:https://www.python.org/dev/peps/pep-0008/

关于Autopep8

Autopep8是自动将Python代码格式化为符合PEP 8风格的工具。它使用pycodestyle工具来确定代码的哪些部分需要被格式化。Autopep8能够修复大部分pycodestyle检测的格式问题。

github地址:https://github.com/hhatto/autopep8

下载安装Autopep8

1
pip install autopep8

使用Autopep8

命令行使用方式如下

1
2
$ autopep8 --in-place --aggressive <filename>
$ autopep8 --in-place --aggressive Student.py
 

Pycharm配置Autopep8方法

1)选择菜单「File」–>「Settings」–>「Tools」–>「External Tools」–>点击加号添加工具

技术分享图片

 

2)填写如下配置项,点击「OK」保存

技术分享图片

 

1
2
3
4
5
6
7
8
9
Name:autopep8 (可随意填写)
 
Tools settings:
 
    Programs:autopep8
 
    Parameters:--in-place --aggressive $FilePath$
 
    Working directory:$ProjectFileDir$

 

技术分享图片

点击Output Filters,点击弹窗右侧加号添加Filter, 在Regular expression to match output中

1
输入:$FILE_PATH$\:$LINE$\:$COLUMN$\:.*

 

3) 使用autopep8自动格式化你的python代码

技术分享图片

 

第一种方式:

编写完代码后,右键选择「Extern Tools」–>「autopep8」

技术分享图片

 

第二种方式:

选择菜单「Tool」–>「Extern Tools」–>「autopep8」即可

技术分享图片

 

格式化后显示

技术分享图片

 

在命令行中使用方式如下:

1
autopep8 --in-place --aggressive Student.py

  

 其他参考:https://www.cnblogs.com/miniren/p/5075697.html

Pychrm配置autopep8

原文:https://www.cnblogs.com/-wenli/p/13491121.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!