Metadata-Version: 2.1
Name: michaelPanLogLib
Version: 0.0.1
Summary: all kind of log
Author: chuntong pan
Author-email: panzhang1314@gmail.com
Platform: all
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Description-Content-Type: text/markdown
License-File: LICENSE

# Log function library

## 1.Introduction

> Hello user, I am the author of this library. We often deal with logs in daily programming, although writing logs is not too difficult, but this library aims to make it easier to complete the various functions of the log

## 2.Use method

```python
# pip install michaelPanLogLib
"""
	from michaelPanLogLib,logs import AllKindLog
	a_log = AllKindLog()
	a_log.write_log_file(f"D:/pycharm_project/michaelPanLogLib/test1.yml","hello world")  # Write a content to log file
	a_log.write_log_file(f"D:/pycharm_project/michaelPanLogLib/test1.yml", "hi world")
	a_log.find_log_file(f"D:/pycharm_project/michaelPanLogLib/test1.yml", "world")  # Find every log that contains "hello"
	a_log.clear_log_file(f"D:/pycharm_project/michaelPanLogLib/test1.yml")  # clear the log file
	a_log.delete_file(f"D:/pycharm_project/michaelPanLogLib/test1.yml")  # delete the log file
"""
```

## 3.Contact information

```python
# ***************************************************************
# Maintainers:
#     chuntong pan <panzhang1314@gmail.com>
# Date:
#     2023.11
# ***************************************************************
```

