truthound 0.1.0__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.
Files changed (41) hide show
  1. truthound-0.1.0/.gitignore +91 -0
  2. truthound-0.1.0/LICENSE +21 -0
  3. truthound-0.1.0/PKG-INFO +616 -0
  4. truthound-0.1.0/README.md +576 -0
  5. truthound-0.1.0/pyproject.toml +116 -0
  6. truthound-0.1.0/src/truthound/__init__.py +20 -0
  7. truthound-0.1.0/src/truthound/adapters.py +100 -0
  8. truthound-0.1.0/src/truthound/api.py +221 -0
  9. truthound-0.1.0/src/truthound/cache.py +252 -0
  10. truthound-0.1.0/src/truthound/cli.py +325 -0
  11. truthound-0.1.0/src/truthound/decorators.py +98 -0
  12. truthound-0.1.0/src/truthound/drift/__init__.py +22 -0
  13. truthound-0.1.0/src/truthound/drift/compare.py +189 -0
  14. truthound-0.1.0/src/truthound/drift/detectors.py +463 -0
  15. truthound-0.1.0/src/truthound/drift/report.py +160 -0
  16. truthound-0.1.0/src/truthound/maskers.py +113 -0
  17. truthound-0.1.0/src/truthound/profiler.py +80 -0
  18. truthound-0.1.0/src/truthound/py.typed +0 -0
  19. truthound-0.1.0/src/truthound/report.py +280 -0
  20. truthound-0.1.0/src/truthound/scanners.py +170 -0
  21. truthound-0.1.0/src/truthound/schema.py +275 -0
  22. truthound-0.1.0/src/truthound/types.py +56 -0
  23. truthound-0.1.0/src/truthound/validators/__init__.py +55 -0
  24. truthound-0.1.0/src/truthound/validators/base.py +47 -0
  25. truthound-0.1.0/src/truthound/validators/duplicate.py +56 -0
  26. truthound-0.1.0/src/truthound/validators/format.py +123 -0
  27. truthound-0.1.0/src/truthound/validators/null.py +59 -0
  28. truthound-0.1.0/src/truthound/validators/outlier.py +120 -0
  29. truthound-0.1.0/src/truthound/validators/range.py +131 -0
  30. truthound-0.1.0/src/truthound/validators/schema_validator.py +219 -0
  31. truthound-0.1.0/src/truthound/validators/type.py +74 -0
  32. truthound-0.1.0/src/truthound/validators/unique.py +91 -0
  33. truthound-0.1.0/tests/__init__.py +1 -0
  34. truthound-0.1.0/tests/test_adapters.py +120 -0
  35. truthound-0.1.0/tests/test_api.py +204 -0
  36. truthound-0.1.0/tests/test_cache.py +273 -0
  37. truthound-0.1.0/tests/test_drift.py +277 -0
  38. truthound-0.1.0/tests/test_extreme_stress.py +579 -0
  39. truthound-0.1.0/tests/test_schema.py +226 -0
  40. truthound-0.1.0/tests/test_stress.py +674 -0
  41. truthound-0.1.0/tests/test_validators.py +185 -0
@@ -0,0 +1,91 @@
1
+ # Byte-compiled / optimized / DLL files
2
+ __pycache__/
3
+ *.py[cod]
4
+ *$py.class
5
+
6
+ # C extensions
7
+ *.so
8
+
9
+ # Distribution / packaging
10
+ .Python
11
+ build/
12
+ develop-eggs/
13
+ dist/
14
+ downloads/
15
+ eggs/
16
+ .eggs/
17
+ lib/
18
+ lib64/
19
+ parts/
20
+ sdist/
21
+ var/
22
+ wheels/
23
+ *.egg-info/
24
+ .installed.cfg
25
+ *.egg
26
+
27
+ # PyInstaller
28
+ *.manifest
29
+ *.spec
30
+
31
+ # Installer logs
32
+ pip-log.txt
33
+ pip-delete-this-directory.txt
34
+
35
+ # Unit test / coverage reports
36
+ htmlcov/
37
+ .tox/
38
+ .nox/
39
+ .coverage
40
+ .coverage.*
41
+ .cache
42
+ nosetests.xml
43
+ coverage.xml
44
+ *.cover
45
+ *.py,cover
46
+ .hypothesis/
47
+ .pytest_cache/
48
+
49
+ # Translations
50
+ *.mo
51
+ *.pot
52
+
53
+ # Environments
54
+ .env
55
+ .venv
56
+ env/
57
+ venv/
58
+ ENV/
59
+ env.bak/
60
+ venv.bak/
61
+
62
+ # IDE
63
+ .idea/
64
+ .vscode/
65
+ *.swp
66
+ *.swo
67
+ *~
68
+
69
+ # mypy
70
+ .mypy_cache/
71
+ .dmypy.json
72
+ dmypy.json
73
+
74
+ # ruff
75
+ .ruff_cache/
76
+
77
+ # OS
78
+ .DS_Store
79
+ Thumbs.db
80
+
81
+ # Project specific
82
+ *.csv
83
+ *.parquet
84
+ *.json
85
+ !pyproject.toml
86
+
87
+ # Claude Code
88
+ .claude/
89
+
90
+ # Truthound cache
91
+ .truthound/
@@ -0,0 +1,21 @@
1
+ MIT License
2
+
3
+ Copyright (c) 2025 seadonggyun4
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.