yzm_log
Print and save a simple log to a file
This is a simple log package. You can see Github-yzm_log PyPI-yzm_log
upload
py -m build
twine check dist/*
twine upload dist/*
Use
install
pip install yzm_log
use
# -*- coding: utf-8 -*-
from yzm_log import Logger
log = Logger("name", "log")
if __name__ == '__main__':
print("run...")
log.debug("info......")
log.info("info......")
log.warning("info......")
log.error("info......")
output
2023-03-17 09:21:36 root name[34768] DEBUG info......
2023-03-17 09:21:36 root name[34768] INFO info......
2023-03-17 09:21:36 root name[34768] WARNING info......
2023-03-17 09:21:36 root name[34768] ERROR info......
Introduction
main function
yzm_log.
Logger(name: str = None,
log_path: str = None,
level: str = "INFO",
is_solitary: bool = True,
is_form_file: bool = False,
size: int = 104857600,
backup_count: int = 10,
encoding: str = "UTF-8"
)
:param name: Project Name
:param log_path: Log file output path. Default is log_%Y%m%d.log.
:param level: Log printing level. Default is INFO.
:param is_solitary: When the file path is consistent (here, the log_path parameter is not a specific file name, but a file path), whether the file is formed independently according to the name parameter. Default is True.
:param is_form_file: Whether to form a log file. Default is False.
:param size: Setting the file size if a file is formed. Default is 104857600. (100MB)
:param backup_count: Setting the number of rotating files if a file is formed. Default is 10.
:param encoding: Setting of file encoding if a file is formed. Default is UTF-8.
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
yzm_log-0.0.2.tar.gz
(5.5 kB
view details)
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file yzm_log-0.0.2.tar.gz.
File metadata
- Download URL: yzm_log-0.0.2.tar.gz
- Upload date:
- Size: 5.5 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via:
twine/4.0.2 CPython/3.10.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
6f31fe3570d2b7dfe2d0024fb63d3a3a05a5512b09a34b576aa0eb33687654cc
|
|
| MD5 |
e29e50b24a7b56dd6fc2c768a187fbc9
|
|
| BLAKE2b-256 |
b275c1d9c7c0fa0ca844330a8e747506aa9d8cc0db791dd30832490fe1292d81
|
File details
Details for the file yzm_log-0.0.2-py3-none-any.whl.
File metadata
- Download URL: yzm_log-0.0.2-py3-none-any.whl
- Upload date:
- Size: 5.5 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via:
twine/4.0.2 CPython/3.10.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
30b1747eac936dc06e4558eddd81f16630a3841b7f9f465374e8134c62256323
|
|
| MD5 |
8e0aa099195cae9a20c7b9980c1c5a5a
|
|
| BLAKE2b-256 |
4372518452fa765f702e1923fb4af3538173bada72368037d9be298edffcefc7
|