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.
@@ -1,7 +1,7 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: logging-module
3
- Version: 0.2.0
4
- Summary: A comprehensive logging and file utility module for Python applications
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 comprehensive Python logging and file utility module designed for easy integration into FastAPI projects and other Python applications.
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**: Comprehensive error tracking and reporting
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 comprehensive Python logging and file utility module designed for easy integration into FastAPI projects and other Python applications.
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**: Comprehensive error tracking and reporting
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 - A comprehensive logging and file utility package.
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.0"
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.0
4
- Summary: A comprehensive logging and file utility module for Python applications
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 comprehensive Python logging and file utility module designed for easy integration into FastAPI projects and other Python applications.
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**: Comprehensive error tracking and reporting
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.0"
14
- description = "A comprehensive logging and file utility module for Python applications"
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