logging-module 0.2.0__tar.gz → 0.2.1__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {logging_module-0.2.0 → logging_module-0.2.1}/PKG-INFO +4 -4
- {logging_module-0.2.0 → logging_module-0.2.1}/README.md +2 -2
- {logging_module-0.2.0 → logging_module-0.2.1}/logging_module/__init__.py +3 -7
- {logging_module-0.2.0 → logging_module-0.2.1}/logging_module.egg-info/PKG-INFO +4 -4
- {logging_module-0.2.0 → logging_module-0.2.1}/pyproject.toml +2 -2
- {logging_module-0.2.0 → logging_module-0.2.1}/LICENSE +0 -0
- {logging_module-0.2.0 → logging_module-0.2.1}/logging_module/config.py +0 -0
- {logging_module-0.2.0 → logging_module-0.2.1}/logging_module/file_utils.py +0 -0
- {logging_module-0.2.0 → logging_module-0.2.1}/logging_module/my_logging.py +0 -0
- {logging_module-0.2.0 → logging_module-0.2.1}/logging_module.egg-info/SOURCES.txt +0 -0
- {logging_module-0.2.0 → logging_module-0.2.1}/logging_module.egg-info/dependency_links.txt +0 -0
- {logging_module-0.2.0 → logging_module-0.2.1}/logging_module.egg-info/requires.txt +0 -0
- {logging_module-0.2.0 → logging_module-0.2.1}/logging_module.egg-info/top_level.txt +0 -0
- {logging_module-0.2.0 → logging_module-0.2.1}/setup.cfg +0 -0
- {logging_module-0.2.0 → logging_module-0.2.1}/tests/test_config.py +0 -0
- {logging_module-0.2.0 → logging_module-0.2.1}/tests/test_file_utils.py +0 -0
- {logging_module-0.2.0 → logging_module-0.2.1}/tests/test_my_logging.py +0 -0
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: logging-module
|
|
3
|
-
Version: 0.2.
|
|
4
|
-
Summary:
|
|
3
|
+
Version: 0.2.1
|
|
4
|
+
Summary: Lightweight Python logger with timestamped file output, caller stack tracing, and working-directory-scoped file utilities
|
|
5
5
|
Author-email: Nathan T Nguyen <nhatnguyen2807@gmail.com>
|
|
6
6
|
License-Expression: MIT
|
|
7
7
|
Project-URL: CreatorGithub, https://github.com/NhatNguyen5
|
|
@@ -27,14 +27,14 @@ Dynamic: license-file
|
|
|
27
27
|
|
|
28
28
|
# Logging Module
|
|
29
29
|
|
|
30
|
-
A
|
|
30
|
+
A lightweight Python logging and file utility module for structured, timestamped logging with caller information and safe file operations.
|
|
31
31
|
|
|
32
32
|
## Features
|
|
33
33
|
|
|
34
34
|
- **Flexible Logging**: Timestamp-based logging with caller information
|
|
35
35
|
- **File Utilities**: Safe file operations with error handling
|
|
36
36
|
- **Configuration**: Easy-to-configure logging and tracing options
|
|
37
|
-
- **Error Management**:
|
|
37
|
+
- **Error Management**: Structured error handling for file operations with descriptive error messages
|
|
38
38
|
|
|
39
39
|
## Installation
|
|
40
40
|
|
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
# Logging Module
|
|
2
2
|
|
|
3
|
-
A
|
|
3
|
+
A lightweight Python logging and file utility module for structured, timestamped logging with caller information and safe file operations.
|
|
4
4
|
|
|
5
5
|
## Features
|
|
6
6
|
|
|
7
7
|
- **Flexible Logging**: Timestamp-based logging with caller information
|
|
8
8
|
- **File Utilities**: Safe file operations with error handling
|
|
9
9
|
- **Configuration**: Easy-to-configure logging and tracing options
|
|
10
|
-
- **Error Management**:
|
|
10
|
+
- **Error Management**: Structured error handling for file operations with descriptive error messages
|
|
11
11
|
|
|
12
12
|
## Installation
|
|
13
13
|
|
|
@@ -1,10 +1,6 @@
|
|
|
1
1
|
"""
|
|
2
|
-
Logging Module -
|
|
3
|
-
|
|
4
|
-
This module provides:
|
|
5
|
-
- Logging configuration and management
|
|
6
|
-
- File utilities for logging operations
|
|
7
|
-
- Tracing and debug capabilities
|
|
2
|
+
Logging Module - Lightweight Python logger with timestamped file output,
|
|
3
|
+
caller stack tracing, and working-directory-scoped file utilities.
|
|
8
4
|
"""
|
|
9
5
|
|
|
10
6
|
from .my_logging import Logger
|
|
@@ -17,7 +13,7 @@ from .file_utils import (
|
|
|
17
13
|
file_verify_file,
|
|
18
14
|
)
|
|
19
15
|
|
|
20
|
-
__version__ = "0.2.
|
|
16
|
+
__version__ = "0.2.1"
|
|
21
17
|
__author__ = "Nathan T Nguyen"
|
|
22
18
|
|
|
23
19
|
__all__ = [
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: logging-module
|
|
3
|
-
Version: 0.2.
|
|
4
|
-
Summary:
|
|
3
|
+
Version: 0.2.1
|
|
4
|
+
Summary: Lightweight Python logger with timestamped file output, caller stack tracing, and working-directory-scoped file utilities
|
|
5
5
|
Author-email: Nathan T Nguyen <nhatnguyen2807@gmail.com>
|
|
6
6
|
License-Expression: MIT
|
|
7
7
|
Project-URL: CreatorGithub, https://github.com/NhatNguyen5
|
|
@@ -27,14 +27,14 @@ Dynamic: license-file
|
|
|
27
27
|
|
|
28
28
|
# Logging Module
|
|
29
29
|
|
|
30
|
-
A
|
|
30
|
+
A lightweight Python logging and file utility module for structured, timestamped logging with caller information and safe file operations.
|
|
31
31
|
|
|
32
32
|
## Features
|
|
33
33
|
|
|
34
34
|
- **Flexible Logging**: Timestamp-based logging with caller information
|
|
35
35
|
- **File Utilities**: Safe file operations with error handling
|
|
36
36
|
- **Configuration**: Easy-to-configure logging and tracing options
|
|
37
|
-
- **Error Management**:
|
|
37
|
+
- **Error Management**: Structured error handling for file operations with descriptive error messages
|
|
38
38
|
|
|
39
39
|
## Installation
|
|
40
40
|
|
|
@@ -10,8 +10,8 @@ exclude = ["logs*"]
|
|
|
10
10
|
|
|
11
11
|
[project]
|
|
12
12
|
name = "logging-module"
|
|
13
|
-
version = "0.2.
|
|
14
|
-
description = "
|
|
13
|
+
version = "0.2.1"
|
|
14
|
+
description = "Lightweight Python logger with timestamped file output, caller stack tracing, and working-directory-scoped file utilities"
|
|
15
15
|
readme = "README.md"
|
|
16
16
|
requires-python = ">=3.10"
|
|
17
17
|
license = "MIT"
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|