This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| { | |
| "src": { | |
| "core": ["__init__.py", "main.py"], | |
| "utils": ["logging.py", "validators.py"] | |
| }, | |
| "tests": ["conftest.py", "test_core.py"], | |
| "docs": ["README.md", "API.md"], | |
| "": ["pyproject.toml", ".gitignore"] | |
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import re | |
| from typing import Set | |
| from bs4 import BeautifulSoup | |
| class ScrapingUtils: | |
| """ | |
| Collection of optimized utilities for data extraction and fingerprinting. | |
| Technical complement to CiberWebScan: https://github.com/HC-ONLINE/CiberWebScan | |
| """ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import re | |
| from typing import Dict, List | |
| class LexGuardPII: | |
| """ | |
| PoC de LexGuard enfocada exclusivamente en PII (Data Privacy). | |
| Este script demuestra la detección determinista de datos sensibles | |
| bajo un enfoque de seguridad operativa. | |