如何从 python 源代码中删除注释和文档字符串?

发布于 2024-08-08 10:20:17 字数 1539 浏览 4 评论 0原文

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

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

发布评论

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

评论(2

你的背包 2024-08-15 10:20:17

这个 Python minifier 看起来它可以满足您的需要。

This Python minifier looks like it does what you need.

猥琐帝 2024-08-15 10:20:17

我推荐 minipy。最引人注目的原因是它对源代码抽象语法树进行了正确的分析,因此缩小的代码更加准确。我发现更知名的 pyminifier 往往会生成带有未定义符号错误的代码,被误解元组等。我还使用 minipy 获得了好几个百分点的压缩结果。 minipy 的一个小好处是它的代码大小不到 pyminifier 的一半。它也更容易管理和集成到构建管道中,因为它是一个独立的 python 文件。

I recommend minipy. The most compelling reason is that it does proper analysis of the source code abstract syntax tree so the minified code is much more accurate. I've found that the more well known pyminifier tends to generate code with undefined symbol errors, misinterpreted tuples, etc. I also got a few percent better compression results with minipy. A minor benefit of minipy is that it's less than half the code size of pyminifier. It's also easier to manage and integrate into a build pipeline because it's a single standalone python file.

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