privlog 0.0.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.
- privlog-0.0.1/LICENSE +7 -0
- privlog-0.0.1/PKG-INFO +20 -0
- privlog-0.0.1/README.md +7 -0
- privlog-0.0.1/privlog/__init__.py +1 -0
- privlog-0.0.1/privlog/cli.py +19 -0
- privlog-0.0.1/privlog.egg-info/PKG-INFO +20 -0
- privlog-0.0.1/privlog.egg-info/SOURCES.txt +11 -0
- privlog-0.0.1/privlog.egg-info/dependency_links.txt +1 -0
- privlog-0.0.1/privlog.egg-info/entry_points.txt +2 -0
- privlog-0.0.1/privlog.egg-info/requires.txt +2 -0
- privlog-0.0.1/privlog.egg-info/top_level.txt +1 -0
- privlog-0.0.1/pyproject.toml +25 -0
- privlog-0.0.1/setup.cfg +4 -0
privlog-0.0.1/LICENSE
ADDED
privlog-0.0.1/PKG-INFO
ADDED
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: privlog
|
|
3
|
+
Version: 0.0.1
|
|
4
|
+
Summary: Privacy-aware logging hygiene linter for Python
|
|
5
|
+
Author: Christopher Mariani
|
|
6
|
+
License: Proprietary
|
|
7
|
+
Requires-Python: >=3.9
|
|
8
|
+
Description-Content-Type: text/markdown
|
|
9
|
+
License-File: LICENSE
|
|
10
|
+
Requires-Dist: semgrep
|
|
11
|
+
Requires-Dist: typer
|
|
12
|
+
Dynamic: license-file
|
|
13
|
+
|
|
14
|
+
# Privlog
|
|
15
|
+
|
|
16
|
+
Privacy-aware logging hygiene tooling for Python systems.
|
|
17
|
+
|
|
18
|
+
Privlog helps developers detect potentially sensitive data in logs and enforce safe logging patterns.
|
|
19
|
+
|
|
20
|
+
⚠️ Early developer preview. Functionality may change.
|
privlog-0.0.1/README.md
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
__version__ = "0.0.1"
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
import typer
|
|
2
|
+
|
|
3
|
+
app = typer.Typer(help="Privacy-aware logging hygiene linter.")
|
|
4
|
+
|
|
5
|
+
# -------------------------
|
|
6
|
+
# CHECK COMMAND
|
|
7
|
+
# -------------------------
|
|
8
|
+
@app.callback(invoke_without_command=True)
|
|
9
|
+
def main(path: str = typer.Argument(".")):
|
|
10
|
+
"""
|
|
11
|
+
Run Privlog checks on a path.
|
|
12
|
+
"""
|
|
13
|
+
typer.echo(f"Running Privlog checks on: {path}")
|
|
14
|
+
|
|
15
|
+
# -------------------------
|
|
16
|
+
# ENTRYPOINT
|
|
17
|
+
# -------------------------
|
|
18
|
+
if __name__ == "__main__":
|
|
19
|
+
app()
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: privlog
|
|
3
|
+
Version: 0.0.1
|
|
4
|
+
Summary: Privacy-aware logging hygiene linter for Python
|
|
5
|
+
Author: Christopher Mariani
|
|
6
|
+
License: Proprietary
|
|
7
|
+
Requires-Python: >=3.9
|
|
8
|
+
Description-Content-Type: text/markdown
|
|
9
|
+
License-File: LICENSE
|
|
10
|
+
Requires-Dist: semgrep
|
|
11
|
+
Requires-Dist: typer
|
|
12
|
+
Dynamic: license-file
|
|
13
|
+
|
|
14
|
+
# Privlog
|
|
15
|
+
|
|
16
|
+
Privacy-aware logging hygiene tooling for Python systems.
|
|
17
|
+
|
|
18
|
+
Privlog helps developers detect potentially sensitive data in logs and enforce safe logging patterns.
|
|
19
|
+
|
|
20
|
+
⚠️ Early developer preview. Functionality may change.
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
LICENSE
|
|
2
|
+
README.md
|
|
3
|
+
pyproject.toml
|
|
4
|
+
privlog/__init__.py
|
|
5
|
+
privlog/cli.py
|
|
6
|
+
privlog.egg-info/PKG-INFO
|
|
7
|
+
privlog.egg-info/SOURCES.txt
|
|
8
|
+
privlog.egg-info/dependency_links.txt
|
|
9
|
+
privlog.egg-info/entry_points.txt
|
|
10
|
+
privlog.egg-info/requires.txt
|
|
11
|
+
privlog.egg-info/top_level.txt
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
privlog
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
[build-system]
|
|
2
|
+
requires = ["setuptools>=61"]
|
|
3
|
+
build-backend = "setuptools.build_meta"
|
|
4
|
+
|
|
5
|
+
[project]
|
|
6
|
+
name = "privlog"
|
|
7
|
+
version = "0.0.1"
|
|
8
|
+
description = "Privacy-aware logging hygiene linter for Python"
|
|
9
|
+
readme = "README.md"
|
|
10
|
+
requires-python = ">=3.9"
|
|
11
|
+
authors = [
|
|
12
|
+
{name="Christopher Mariani"}
|
|
13
|
+
]
|
|
14
|
+
license = { text = "Proprietary" }
|
|
15
|
+
|
|
16
|
+
dependencies = [
|
|
17
|
+
"semgrep",
|
|
18
|
+
"typer"
|
|
19
|
+
]
|
|
20
|
+
|
|
21
|
+
[project.scripts]
|
|
22
|
+
privlog = "privlog.cli:app"
|
|
23
|
+
|
|
24
|
+
[tool.setuptools]
|
|
25
|
+
packages = ["privlog"]
|
privlog-0.0.1/setup.cfg
ADDED