personal-logging 1.0.0__py3-none-any.whl
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.
|
@@ -0,0 +1,45 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: personal-logging
|
|
3
|
+
Version: 1.0.0
|
|
4
|
+
Summary: A Python library for colored common logs with customization support.
|
|
5
|
+
Project-URL: Homepage, https://github.com/Placewith5s/personal-logging
|
|
6
|
+
Project-URL: Issues, https://github.com/Placewith5s/personal-logging/issues
|
|
7
|
+
Author: Placewith5s
|
|
8
|
+
Classifier: Operating System :: OS Independent
|
|
9
|
+
Classifier: Programming Language :: Python :: 3
|
|
10
|
+
Requires-Python: >=3.14
|
|
11
|
+
Requires-Dist: build>=1.5.0
|
|
12
|
+
Requires-Dist: termcolor>=3.3.0
|
|
13
|
+
Requires-Dist: twine>=6.2.0
|
|
14
|
+
Description-Content-Type: text/markdown
|
|
15
|
+
|
|
16
|
+
# Personal Logging
|
|
17
|
+
A Python library for colored common logs with customization support.
|
|
18
|
+
|
|
19
|
+
|
|
20
|
+
## Installation
|
|
21
|
+
```sh
|
|
22
|
+
pip3 install personal-logging
|
|
23
|
+
```
|
|
24
|
+
|
|
25
|
+
|
|
26
|
+
## Usage
|
|
27
|
+
```python
|
|
28
|
+
from personal_logging.main import warn, error
|
|
29
|
+
|
|
30
|
+
warn("Caution!")
|
|
31
|
+
error("Uh oh!")
|
|
32
|
+
```
|
|
33
|
+
|
|
34
|
+
## Defaults
|
|
35
|
+
### Variables
|
|
36
|
+
```python
|
|
37
|
+
warn_emoji = "⚠️"
|
|
38
|
+
error_emoji = "❌"
|
|
39
|
+
```
|
|
40
|
+
|
|
41
|
+
### Parameters
|
|
42
|
+
```python
|
|
43
|
+
identifier_on=True
|
|
44
|
+
emojis=True
|
|
45
|
+
```
|