__init__.py 332 B

12345678910111213141516171819
  1. """
  2. File tools - 文件操作工具
  3. 包含:read, write, edit, glob, grep
  4. """
  5. from .read import read_file
  6. from .write import write_file
  7. from .edit import edit_file
  8. from .glob import glob_files
  9. from .grep import grep_content
  10. __all__ = [
  11. "read_file",
  12. "write_file",
  13. "edit_file",
  14. "glob_files",
  15. "grep_content",
  16. ]