Metadata-Version: 2.1
Name: pyaxetool
Version: 1.1.1
Summary: An utility tool collection for make life easily
Project-URL: Bug Tracker, https://github.com/sunjinopensource/PyAxeTool/issues
Project-URL: Homepage, https://github.com/sunjinopensource/PyAxeTool
Author-email: Sun Jin <412640665@qq.com>
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 3
Requires-Python: >=3.6
Requires-Dist: pyaxe>=1.0.32
Description-Content-Type: text/markdown

PyAxeTool
=========

An utility tool collection for make life easily.

Examples
--------
```
# 显示单个文件的MD5
python3 -m PyAxeTool.MD5 file test.txt

# 显示所有满足通配符文件的MD5
python3 -m PyAxeTool.MD5 file "*.txt"

# 显示目录内所有文件汇总的单个MD5
python3 -m PyAxeTool.MD5 dir testdir

# 显示字符串的MD5
python3 -m PyAxeTool.MD5 str abc

# 通过lib模板创建CMake工程
python3 -m PyAxeTool.CMake archetype:generate lib --libname=foo
```