Python CLI Tools

注意
本文最后更新于 2024-07-10,文中内容可能已过时。

Python CLI Tools

原文 Python 命令行实用程序
Python’s many command-line utilities https://www.pythonmorsels.com/cli-tools/

部分翻译和笔记如下

使用 -m 选项时,是告诉解释器以模块模式运行代码。-m 后面跟着的是一个模块的名称,Python 解释器会将这个模块作为脚本执行。

常见用法是运行标准库中的脚本或工具,比如运行 unittest ,启动 Python 的内置单元测试框架。

命令目的更多
python -m http.server启动简单的 Web 服务器视频
python -m webbrowser启动 Web 浏览器文档
python -m json.tool格式化 JSON 数据文档
python -m calendar显示命令行日历文档

示例

text

python -m http.server
Serving HTTP on 0.0.0.0 port 8000 (http://0.0.0.0:8000/) ...

python -m webbrowser www.ftls.xyz

python -m json.tool /home/some.json

python -m calendar 2024 07
     July 2024
Mo Tu We Th Fr Sa Su
 1  2  3  4  5  6  7
 8  9 10 11 12 13 14
15 16 17 18 19 20 21
22 23 24 25 26 27 28
29 30 31
命令目的更多
python -m uuiduuidgen文档
python -m sqlite3sqlite3文档
python -m zipfilezip``unzip文档
python -m gzipgzip``gunzip文档
python -m tarfiletar文档
python -m base64base64
python -m ftplibftp
python -m smtplibsendmail
python -m poplib阅读电子邮件curl
python -m imaplib阅读电子邮件curl
python -m telnetlibtelnet
命令目的更多
python -m pip安装第三方 Python 包文档
python -m venv创建虚拟环境文档
python -m pdb运行 Python 调试器文档
python -m unittest在目录中运行测试unittest文档
python -m pydoc显示给定字符串的文档文档
python -m doctest对给定的 Python 文件运行 doctests文档
python -m ensurepip如果未安装,请安装pip文档
python -m idlelib启动 Python 的 IDLE 图形 REPL文档
python -m zipapp将 Python 模块转换为可运行的 ZIP文档
python -m compileall将 Python 文件预编译为字节码文档
  • pip
    安装第三方 Python 包。

  • venv
    创建虚拟环境。

  • pdb
    为 Python 调试器提供支持。

  • unittest
    用于在 Python 中编写自动化测试。 当作为命令行脚本运行时,将识别当前目录中的所有测试并自动运行。

  • pydoc
    将模块作为命令行脚本运行将显示给定模块或对象的文档。 这与将相同的对象名称传递给内置函数时看到的文档相同。

  • doctest
    作为命令行脚本运行将评估给定 Python 文件中的所有 doctest(文档字符串中的示例代码)。

  • ensurepip
    用于发现已卸载并需要重新安装它的方法的人

  • idlelib
    命令行启动 Python 的图形 IDLE 工具。

  • zipapp
    将 Python 模块捆绑成一个可以由 Python 直接运行的 ZIP 文件。 python -m zipapp my_module

  • compileall
    预热 Python 用于运行模块的已编译字节码缓存。运行以将当前目录下的所有 Python 文件编译为缓存字节码。python -m compileall .

命令目的更多
python -m tokenize将 Python 模块分解为“令牌”文档
python -m ast显示代码的抽象语法树文档
python -m dis将 Python 代码反汇编为字节码文档
python -m inspect检查 Python 对象的源代码文档
python -m pyclbr查看模块对象概述
命令目的
python -m __hello__打印Hello world!
python -m this展示 Python 的禅意 (PEP 20)
python -m antigravity在 Web 浏览器中打开 XKCD 353
python -m turtledemo查看模块演示turtle

Python 之禅

The Zen of Python, by Tim Peters

Beautiful is better than ugly.
Explicit is better than implicit.
Simple is better than complex.
Complex is better than complicated.
Flat is better than nested.
Sparse is better than dense.
Readability counts.
Special cases aren’t special enough to break the rules.
Although practicality beats purity.
Errors should never pass silently.
Unless explicitly silenced.
In the face of ambiguity, refuse the temptation to guess.
There should be one– and preferably only one –obvious way to do it.
Although that way may not be obvious at first unless you’re Dutch.
Now is better than never.
Although never is often better than right now.
If the implementation is hard to explain, it’s a bad idea.
If the implementation is easy to explain, it may be a good idea.
Namespaces are one honking great idea – let’s do more of those!

翻译 https://www.cnblogs.com/huangbiquan/p/7881913.html

Python之禅 by Tim Peters

优美胜于丑陋(Python 以编写优美的代码为目标)
明了胜于晦涩(优美的代码应当是明了的,命名规范,风格相似)
简洁胜于复杂(优美的代码应当是简洁的,不要有复杂的内部实现)
复杂胜于凌乱(如果复杂不可避免,那代码间也不能有难懂的关系,要保持接口简洁)
扁平胜于嵌套(优美的代码应当是扁平的,不能有太多的嵌套)
间隔胜于紧凑(优美的代码有适当的间隔,不要奢望一行代码解决问题)
可读性很重要(优美的代码是可读的)
即便假借特例的实用性之名,也不可违背这些规则(这些规则至高无上)

不要包容所有错误,除非你确定需要这样做(精准地捕获异常,不写 except:pass 风格的代码)

当存在多种可能,不要尝试去猜测
而是尽量找一种,最好是唯一一种明显的解决方案(如果不确定,就用穷举法)
虽然这并不容易,因为你不是 Python 之父(这里的 Dutch 是指 Guido )

做也许好过不做,但不假思索就动手还不如不做(动手之前要细思量)

如果你无法向人描述你的方案,那肯定不是一个好方案;反之亦然(方案测评标准)

命名空间是一种绝妙的理念,我们应当多加利用(倡导与号召)

命令目的更多
python -m asyncio启动异步感知 Python REPL文档
python -m cProfile分析 Python 程序文档
python -m profile使用纯 Python 分析 Python 程序
python -m pstats显示配置文件/c配置文件生成的文件的统计信息
python -m pickle显示 pickle 文件的内容(高级)文档
python -m pickletools反汇编 pickle 文件(低级)文档
命令目的
python -m code运行 Python REPL
python -m runpy将 Python 模块作为脚本运行
命令目的
python -m timeit对 Python 表达式进行计时
python -m site请参阅有关 Python 的“站点”信息
python -m sysconfig显示 Python 配置详细信息
python -m platform显示当前平台信息
python -m mimetypes显示文件 mimetype/extension details
python -m quopri对原始电子邮件数据进行编码/解码
python -m filecmp比较 2 个目录的内容
python -m encodings.rot_13ROT-13 编码/解码文本
python -m tabnanny检查 Python 文件中是否有混合的制表符和空格
Module/Script用途类别
http.server启动一个简单的Web服务器通用
webbrowser启动您的网络浏览器通用
json.tool美观地格式化JSON数据通用
calendar显示命令行日历通用
uuid类似于uuidgen CLI工具类Linux
sqlite3类似于sqlite3 CLI工具类Linux
zipfile类似于zipunzip CLI工具类Linux
gzip类似于gzipgunzip CLI工具类Linux
tarfile类似于tar CLI工具类Linux
base64类似于base64 CLI工具类Linux
ftplib类似于ftp工具类Linux
smtplib类似于sendmail工具类Linux
poplib类似于使用curl读取邮件类Linux
imaplib类似于使用curl读取邮件类Linux
telnetlib类似于telnet工具类Linux
pip安装第三方Python包Python
venv创建虚拟环境Python
pdb运行Python调试器Python
unittest在目录中运行unittest测试Python
pydoc显示给定字符串的文档Python
doctest为给定的Python文件运行doctestPython
ensurepip如果未安装,则安装pipPython
idlelib启动Python的IDLE图形REPLPython
zipapp将Python模块转换为可运行的ZIPPython
python -m compileall预编译Python文件到字节码Python
tokenize将Python模块分解为“令牌”检查代码
ast显示代码的抽象语法树检查代码
dis将Python代码反汇编为字节码检查代码
inspect检查Python对象的源代码检查代码
pyclbr查看模块对象的概览检查代码
asyncio启动异步IO感知的REPL深入Python
cProfile分析Python程序深入Python
profile用Python分析Python程序深入Python
pstats显示由cProfile生成的文件的统计信息深入Python
pickle以可读方式显示pickle文件内容深入Python
pickletools反汇编pickle文件深入Python
tabnanny检查文件中的混合制表符和空格深入Python
this显示Python之禅(PEP 20)乐趣
__hello__打印“Hello world!”乐趣
antigravity在Web浏览器中打开XKCD 353乐趣
turtledemo查看turtle模块演示乐趣
code运行Python REPLPython
runpy作为脚本运行Python模块Python
timeit计时Python表达式Python
site查看关于Python的“站点”信息深入Python
sysconfig显示Python配置详细信息深入Python
platform显示当前平台信息通用
mimetypes显示文件MIME类型/扩展名详情通用
quopri编码/解码原始电子邮件数据通用
filecmp比较两个目录的内容通用
encodings.rot_13ROT-13编码/解码文本通用