使用 pep8 约定整理 Python 代码的库
是否有任何库可以将您的 python 文件作为输入并进行整理(根据 PEP 8
约定对其进行修改)。 为了理解我在说什么,JavaScript
类比如下:
- 转到此 链接
- 按按钮TidyUp
任何在线编辑器、库或脚本将不胜感激。
Is there any library that takes in your python file as input and does tidy-up (modifies it based on the PEP 8
conventions).
To understand what I am talking about, a JavaScript
analogy is as follows:
- Go to this link
- Press the button TidyUp
Any online editor or library or script would be appreciated.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可以查看 PythonTidy ,它正式工作到 python2.5(并且似乎是python2.6支持):
You can take a look to PythonTidy which is officially working till python2.5 (and seems to be supported in python2.6) :
pep8.py 会向您发出违规警告。但实际上并不正确。
pep8.py gives you warnings for violations. Doesn't actually correct though.