pyveil 0.1.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.
- pyveil/__init__.py +5 -0
- pyveil/masker.py +1 -0
- pyveil/patterns.py +1 -0
- pyveil/utils.py +1 -0
- pyveil-0.1.0.dist-info/METADATA +53 -0
- pyveil-0.1.0.dist-info/RECORD +9 -0
- pyveil-0.1.0.dist-info/WHEEL +5 -0
- pyveil-0.1.0.dist-info/licenses/LICENSE +21 -0
- pyveil-0.1.0.dist-info/top_level.txt +1 -0
pyveil/__init__.py
ADDED
pyveil/masker.py
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
"""Core masking functionality for PII data."""
|
pyveil/patterns.py
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
"""Pattern definitions for detecting various types of PII in text."""
|
pyveil/utils.py
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
"""Utility functions for the veil package."""
|
|
@@ -0,0 +1,53 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: pyveil
|
|
3
|
+
Version: 0.1.0
|
|
4
|
+
Summary: A Python library for masking sensitive data (PII) - emails, phones, names, and more
|
|
5
|
+
Author-email: Hyeon Sang Jeon <your.email@example.com>
|
|
6
|
+
Maintainer-email: Hyeon Sang Jeon <your.email@example.com>
|
|
7
|
+
License: MIT
|
|
8
|
+
Project-URL: Homepage, https://github.com/yourusername/pyveil
|
|
9
|
+
Project-URL: Documentation, https://github.com/yourusername/pyveil#readme
|
|
10
|
+
Project-URL: Repository, https://github.com/yourusername/pyveil
|
|
11
|
+
Project-URL: Issues, https://github.com/yourusername/pyveil/issues
|
|
12
|
+
Project-URL: Changelog, https://github.com/yourusername/pyveil/releases
|
|
13
|
+
Keywords: pii,privacy,masking,data-protection,security,anonymization,sensitive-data,gdpr,compliance
|
|
14
|
+
Classifier: Development Status :: 3 - Alpha
|
|
15
|
+
Classifier: Intended Audience :: Developers
|
|
16
|
+
Classifier: License :: OSI Approved :: MIT License
|
|
17
|
+
Classifier: Operating System :: OS Independent
|
|
18
|
+
Classifier: Programming Language :: Python :: 3
|
|
19
|
+
Classifier: Programming Language :: Python :: 3.8
|
|
20
|
+
Classifier: Programming Language :: Python :: 3.9
|
|
21
|
+
Classifier: Programming Language :: Python :: 3.10
|
|
22
|
+
Classifier: Programming Language :: Python :: 3.11
|
|
23
|
+
Classifier: Programming Language :: Python :: 3.12
|
|
24
|
+
Classifier: Topic :: Security
|
|
25
|
+
Classifier: Topic :: Software Development :: Libraries :: Python Modules
|
|
26
|
+
Classifier: Topic :: Text Processing
|
|
27
|
+
Classifier: Typing :: Typed
|
|
28
|
+
Requires-Python: >=3.8
|
|
29
|
+
Description-Content-Type: text/markdown
|
|
30
|
+
License-File: LICENSE
|
|
31
|
+
Provides-Extra: dev
|
|
32
|
+
Requires-Dist: pytest>=7.0.0; extra == "dev"
|
|
33
|
+
Requires-Dist: pytest-cov>=4.0.0; extra == "dev"
|
|
34
|
+
Requires-Dist: black>=23.0.0; extra == "dev"
|
|
35
|
+
Requires-Dist: ruff>=0.1.0; extra == "dev"
|
|
36
|
+
Requires-Dist: mypy>=1.0.0; extra == "dev"
|
|
37
|
+
Provides-Extra: test
|
|
38
|
+
Requires-Dist: pytest>=7.0.0; extra == "test"
|
|
39
|
+
Requires-Dist: pytest-cov>=4.0.0; extra == "test"
|
|
40
|
+
Dynamic: license-file
|
|
41
|
+
|
|
42
|
+
# pyveil ðŸŽ
|
|
43
|
+
|
|
44
|
+
A Python library for masking sensitive data (PII) - emails, phones, names, and more
|
|
45
|
+
|
|
46
|
+
[](https://opensource.org/licenses/MIT)
|
|
47
|
+
[](https://www.python.org/downloads/)
|
|
48
|
+
|
|
49
|
+
## Overview
|
|
50
|
+
|
|
51
|
+
pyveil helps protect sensitive information by detecting and masking various types of personally identifiable information (PII) in text data. Whether you're handling logs, user data, or any text containing sensitive information, PyVeil provides flexible and easy-to-use tools to protect privacy.
|
|
52
|
+
|
|
53
|
+
## Features
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
pyveil/__init__.py,sha256=KwUPijZapjgnsq-uXUDz6HrtKb7oThv4KFy9V4CAKSU,136
|
|
2
|
+
pyveil/masker.py,sha256=eag8oi1TAcySJsCX1JAYIQSaE5xpZb8SCeXTMnM3-0g,47
|
|
3
|
+
pyveil/patterns.py,sha256=r1iJZK5targiq80I21vT08lKJBeluIABIwGqp95G4jE,70
|
|
4
|
+
pyveil/utils.py,sha256=FIF7wkPalf26eGpKBpek5VP_oJUTGQVqXnXq_vK9ApA,46
|
|
5
|
+
pyveil-0.1.0.dist-info/licenses/LICENSE,sha256=g-NlZm6XSJDcpOZIb4iIgrgkvQ0SwVZwAE_mSvOaQAo,1073
|
|
6
|
+
pyveil-0.1.0.dist-info/METADATA,sha256=dyMX_uNV9RlsRubCwVfGGGXKM1T0NnAFKKZkpgUjB9c,2467
|
|
7
|
+
pyveil-0.1.0.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
|
8
|
+
pyveil-0.1.0.dist-info/top_level.txt,sha256=bVLyuY7AejhMDx-yud1ECE9RhlhJLgnan1kR-jcYLDw,7
|
|
9
|
+
pyveil-0.1.0.dist-info/RECORD,,
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
MIT License
|
|
2
|
+
|
|
3
|
+
Copyright (c) 2025 Hyeon Sang Jeon
|
|
4
|
+
|
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
6
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
7
|
+
in the Software without restriction, including without limitation the rights
|
|
8
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
9
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
10
|
+
furnished to do so, subject to the following conditions:
|
|
11
|
+
|
|
12
|
+
The above copyright notice and this permission notice shall be included in all
|
|
13
|
+
copies or substantial portions of the Software.
|
|
14
|
+
|
|
15
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
16
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
17
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
18
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
19
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
20
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
21
|
+
SOFTWARE.
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
pyveil
|