如何从命令行浏览 python 文件
How to explore a python file from commandline
我有一个 python 文件,其 __main__
中没有 argparse
实现,但是,我有兴趣从命令行。我很想写一个函数来执行这样的 探索 但我想先看看它是否已经可用。
编辑 1:为了使其更具体,我对函数名称和 类 + 他们的文档感兴趣。
您可能正在寻找类似 python-fire 的工具。
来自存储库:
Python Fire is a library for automatically generating command line interfaces (CLIs) from absolutely any Python object. [...] Python Fire helps with exploring existing code or turning other people's code into a CLI.
它在 pip 上作为一个包提供。
我有一个 python 文件,其 __main__
中没有 argparse
实现,但是,我有兴趣从命令行。我很想写一个函数来执行这样的 探索 但我想先看看它是否已经可用。
编辑 1:为了使其更具体,我对函数名称和 类 + 他们的文档感兴趣。
您可能正在寻找类似 python-fire 的工具。
来自存储库:
Python Fire is a library for automatically generating command line interfaces (CLIs) from absolutely any Python object. [...] Python Fire helps with exploring existing code or turning other people's code into a CLI.
它在 pip 上作为一个包提供。