文件名称:python-fu:Python命令行工具,用于增加功能
文件大小:11KB
文件格式:ZIP
更新时间:2024-06-13 05:01:32
Python
python-fu:对Python开发人员有用的shell脚本 轻松为模块创建目录结构: $ mkmodule foo.bar.qux $ tree foo foo ├── __init__.py └── bar ├── __init__.py └── qux.py 轻松升级模块文件: $ promote foo.bar.qux $ tree foo foo ├── __init__.py └── bar ├── __init__.py └── qux └── __init__.py 轻松降级模块文件(如果安全): $ demote foo.bar.qux $ tree foo foo ├── __init__.py └── bar ├── __init__.py └── qux.py 安全第一 这些命令将永远不
【文件预览】:
python-fu-master
----setup.py(2KB)
----.gitignore(47B)
----Makefile(496B)
----.travis.yml(144B)
----python_fu()
--------compat.py(613B)
--------__init__.py(0B)
--------module.py(5KB)
--------commands()
--------commandline.py(266B)
--------helpers.py(278B)
----README.md(975B)
----tests()
--------test_create.py(1KB)
--------__init__.py(0B)
--------test_demote.py(912B)
--------helpers.py(953B)
--------test_module.py(1KB)
--------test_promote.py(1KB)
----.envrc(14B)
----tox.ini(73B)