datafog 3.2.2__tar.gz → 3.2.2b2__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 (32) hide show
  1. {datafog-3.2.2 → datafog-3.2.2b2}/PKG-INFO +1 -1
  2. {datafog-3.2.2 → datafog-3.2.2b2}/datafog.egg-info/PKG-INFO +1 -1
  3. {datafog-3.2.2 → datafog-3.2.2b2}/setup.py +1 -1
  4. {datafog-3.2.2 → datafog-3.2.2b2}/LICENSE +0 -0
  5. {datafog-3.2.2 → datafog-3.2.2b2}/README.md +0 -0
  6. {datafog-3.2.2 → datafog-3.2.2b2}/datafog/__about__.py +0 -0
  7. {datafog-3.2.2 → datafog-3.2.2b2}/datafog/__init__.py +0 -0
  8. {datafog-3.2.2 → datafog-3.2.2b2}/datafog/config.py +0 -0
  9. {datafog-3.2.2 → datafog-3.2.2b2}/datafog/main.py +0 -0
  10. {datafog-3.2.2 → datafog-3.2.2b2}/datafog/processing/__init__.py +0 -0
  11. {datafog-3.2.2 → datafog-3.2.2b2}/datafog/processing/image_processing/__init__.py +0 -0
  12. {datafog-3.2.2 → datafog-3.2.2b2}/datafog/processing/image_processing/donut_processor.py +0 -0
  13. {datafog-3.2.2 → datafog-3.2.2b2}/datafog/processing/image_processing/image_downloader.py +0 -0
  14. {datafog-3.2.2 → datafog-3.2.2b2}/datafog/processing/image_processing/pytesseract_processor.py +0 -0
  15. {datafog-3.2.2 → datafog-3.2.2b2}/datafog/processing/spark_processing/__init__.py +0 -0
  16. {datafog-3.2.2 → datafog-3.2.2b2}/datafog/processing/spark_processing/pyspark_udfs.py +0 -0
  17. {datafog-3.2.2 → datafog-3.2.2b2}/datafog/processing/text_processing/__init__.py +0 -0
  18. {datafog-3.2.2 → datafog-3.2.2b2}/datafog/processing/text_processing/spacy_pii_annotator.py +0 -0
  19. {datafog-3.2.2 → datafog-3.2.2b2}/datafog/services/__init__.py +0 -0
  20. {datafog-3.2.2 → datafog-3.2.2b2}/datafog/services/image_service.py +0 -0
  21. {datafog-3.2.2 → datafog-3.2.2b2}/datafog/services/spark_service.py +0 -0
  22. {datafog-3.2.2 → datafog-3.2.2b2}/datafog/services/text_service.py +0 -0
  23. {datafog-3.2.2 → datafog-3.2.2b2}/datafog/telemetry/__init__.py +0 -0
  24. {datafog-3.2.2 → datafog-3.2.2b2}/datafog/telemetry/open_telemetry.py +0 -0
  25. {datafog-3.2.2 → datafog-3.2.2b2}/datafog.egg-info/SOURCES.txt +0 -0
  26. {datafog-3.2.2 → datafog-3.2.2b2}/datafog.egg-info/dependency_links.txt +0 -0
  27. {datafog-3.2.2 → datafog-3.2.2b2}/datafog.egg-info/requires.txt +0 -0
  28. {datafog-3.2.2 → datafog-3.2.2b2}/datafog.egg-info/top_level.txt +0 -0
  29. {datafog-3.2.2 → datafog-3.2.2b2}/setup.cfg +0 -0
  30. {datafog-3.2.2 → datafog-3.2.2b2}/tests/__init__.py +0 -0
  31. {datafog-3.2.2 → datafog-3.2.2b2}/tests/test_image_service.py +0 -0
  32. {datafog-3.2.2 → datafog-3.2.2b2}/tests/test_main.py +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: datafog
3
- Version: 3.2.2
3
+ Version: 3.2.2b2
4
4
  Summary: Scan, redact, and manage PII in your documents before they get uploaded to a Retrieval Augmented Generation (RAG) system.
5
5
  Home-page: https://datafog.ai
6
6
  Author: Sid Mohan
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: datafog
3
- Version: 3.2.2
3
+ Version: 3.2.2b2
4
4
  Summary: Scan, redact, and manage PII in your documents before they get uploaded to a Retrieval Augmented Generation (RAG) system.
5
5
  Home-page: https://datafog.ai
6
6
  Author: Sid Mohan
@@ -6,7 +6,7 @@ with open("README.md", "r") as f:
6
6
 
7
7
 
8
8
  def __version__():
9
- return "3.2.2"
9
+ return "3.2.2b2"
10
10
 
11
11
 
12
12
  project_urls = {
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