使用 pep8 约定整理 Python 代码的库

发布于 2024-12-17 04:14:48 字数 282 浏览 4 评论 0原文

是否有任何库可以将您的 python 文件作为输入并进行整理(根据 PEP 8 约定对其进行修改)。 为了理解我在说什么,JavaScript 类比如下:

  1. 转到此 链接
  2. 按按钮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:

  1. Go to this link
  2. Press the button TidyUp

Any online editor or library or script would be appreciated.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

牵强ㄟ 2024-12-24 04:14:48

您可以查看 PythonTidy ,它正式工作到 python2.5(并且似乎是python2.6支持):

清理、规范化和重新格式化 Python 脚本的文本。

该脚本从标准输入读取 Python 代码并编写修改后的代码
版本到标准输出。

You can take a look to PythonTidy which is officially working till python2.5 (and seems to be supported in python2.6) :

Cleans up, regularizes, and reformats the text of Python scripts.

This script reads Python code from standard input and writes a revised
version to standard output.

如果没有 2024-12-24 04:14:48

pep8.py 会向您发出违规警告。但实际上并不正确。

pep8.py gives you warnings for violations. Doesn't actually correct though.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文