json-logify 0.1.3__tar.gz → 0.1.4__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.
- {json_logify-0.1.3 → json_logify-0.1.4}/PKG-INFO +2 -2
- {json_logify-0.1.3 → json_logify-0.1.4}/json_logify.egg-info/PKG-INFO +2 -2
- {json_logify-0.1.3 → json_logify-0.1.4}/pyproject.toml +2 -2
- {json_logify-0.1.3 → json_logify-0.1.4}/LICENSE +0 -0
- {json_logify-0.1.3 → json_logify-0.1.4}/README.md +0 -0
- {json_logify-0.1.3 → json_logify-0.1.4}/json_logify.egg-info/SOURCES.txt +0 -0
- {json_logify-0.1.3 → json_logify-0.1.4}/json_logify.egg-info/dependency_links.txt +0 -0
- {json_logify-0.1.3 → json_logify-0.1.4}/json_logify.egg-info/requires.txt +0 -0
- {json_logify-0.1.3 → json_logify-0.1.4}/json_logify.egg-info/top_level.txt +0 -0
- {json_logify-0.1.3 → json_logify-0.1.4}/logify/__init__.py +0 -0
- {json_logify-0.1.3 → json_logify-0.1.4}/logify/core.py +0 -0
- {json_logify-0.1.3 → json_logify-0.1.4}/logify/django.py +0 -0
- {json_logify-0.1.3 → json_logify-0.1.4}/logify/fastapi.py +0 -0
- {json_logify-0.1.3 → json_logify-0.1.4}/logify/flask.py +0 -0
- {json_logify-0.1.3 → json_logify-0.1.4}/logify/version.py +0 -0
- {json_logify-0.1.3 → json_logify-0.1.4}/setup.cfg +0 -0
- {json_logify-0.1.3 → json_logify-0.1.4}/tests/test_config_logic.py +0 -0
- {json_logify-0.1.3 → json_logify-0.1.4}/tests/test_core.py +0 -0
- {json_logify-0.1.3 → json_logify-0.1.4}/tests/test_django.py +0 -0
- {json_logify-0.1.3 → json_logify-0.1.4}/tests/test_fastapi.py +0 -0
- {json_logify-0.1.3 → json_logify-0.1.4}/tests/test_flask.py +0 -0
- {json_logify-0.1.3 → json_logify-0.1.4}/tests/test_security_masking.py +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: json-logify
|
|
3
|
-
Version: 0.1.
|
|
3
|
+
Version: 0.1.4
|
|
4
4
|
Summary: Universal structured logging with exact JSON schema for Python frameworks
|
|
5
5
|
Author-email: Bakdoolot Kulbarakov <kulbarakovbh@gmail.com>
|
|
6
6
|
Maintainer-email: Bakdoolot Kulbarakov <kulbarakovbh@gmail.com>
|
|
@@ -47,7 +47,7 @@ Classifier: Topic :: System :: Logging
|
|
|
47
47
|
Classifier: Framework :: Django
|
|
48
48
|
Classifier: Framework :: FastAPI
|
|
49
49
|
Classifier: Framework :: Flask
|
|
50
|
-
Requires-Python: >=3.
|
|
50
|
+
Requires-Python: >=3.11
|
|
51
51
|
Description-Content-Type: text/markdown
|
|
52
52
|
License-File: LICENSE
|
|
53
53
|
Requires-Dist: structlog>=23.0.0
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: json-logify
|
|
3
|
-
Version: 0.1.
|
|
3
|
+
Version: 0.1.4
|
|
4
4
|
Summary: Universal structured logging with exact JSON schema for Python frameworks
|
|
5
5
|
Author-email: Bakdoolot Kulbarakov <kulbarakovbh@gmail.com>
|
|
6
6
|
Maintainer-email: Bakdoolot Kulbarakov <kulbarakovbh@gmail.com>
|
|
@@ -47,7 +47,7 @@ Classifier: Topic :: System :: Logging
|
|
|
47
47
|
Classifier: Framework :: Django
|
|
48
48
|
Classifier: Framework :: FastAPI
|
|
49
49
|
Classifier: Framework :: Flask
|
|
50
|
-
Requires-Python: >=3.
|
|
50
|
+
Requires-Python: >=3.11
|
|
51
51
|
Description-Content-Type: text/markdown
|
|
52
52
|
License-File: LICENSE
|
|
53
53
|
Requires-Dist: structlog>=23.0.0
|
|
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
|
|
|
4
4
|
|
|
5
5
|
[project]
|
|
6
6
|
name = "json-logify"
|
|
7
|
-
version = "0.1.
|
|
7
|
+
version = "0.1.4"
|
|
8
8
|
description = "Universal structured logging with exact JSON schema for Python frameworks"
|
|
9
9
|
readme = "README.md"
|
|
10
10
|
license = {file = "LICENSE"}
|
|
@@ -43,7 +43,7 @@ classifiers = [
|
|
|
43
43
|
"Framework :: FastAPI",
|
|
44
44
|
"Framework :: Flask",
|
|
45
45
|
]
|
|
46
|
-
requires-python = ">=3.
|
|
46
|
+
requires-python = ">=3.11"
|
|
47
47
|
dependencies = [
|
|
48
48
|
"structlog>=23.0.0",
|
|
49
49
|
"orjson>=3.8.0",
|
|
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
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|