contentintelpy 0.1.4__tar.gz → 0.1.5__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 (28) hide show
  1. {contentintelpy-0.1.4 → contentintelpy-0.1.5}/PKG-INFO +1 -1
  2. {contentintelpy-0.1.4 → contentintelpy-0.1.5}/contentintelpy/__init__.py +1 -1
  3. {contentintelpy-0.1.4 → contentintelpy-0.1.5}/contentintelpy.egg-info/PKG-INFO +1 -1
  4. {contentintelpy-0.1.4 → contentintelpy-0.1.5}/pyproject.toml +1 -1
  5. {contentintelpy-0.1.4 → contentintelpy-0.1.5}/LICENSE +0 -0
  6. {contentintelpy-0.1.4 → contentintelpy-0.1.5}/README.md +0 -0
  7. {contentintelpy-0.1.4 → contentintelpy-0.1.5}/contentintelpy/nodes/classification_node.py +0 -0
  8. {contentintelpy-0.1.4 → contentintelpy-0.1.5}/contentintelpy/nodes/keyword_extract_node.py +0 -0
  9. {contentintelpy-0.1.4 → contentintelpy-0.1.5}/contentintelpy/nodes/language_node.py +0 -0
  10. {contentintelpy-0.1.4 → contentintelpy-0.1.5}/contentintelpy/nodes/location_node.py +0 -0
  11. {contentintelpy-0.1.4 → contentintelpy-0.1.5}/contentintelpy/nodes/ner_node.py +0 -0
  12. {contentintelpy-0.1.4 → contentintelpy-0.1.5}/contentintelpy/nodes/sentiment_node.py +0 -0
  13. {contentintelpy-0.1.4 → contentintelpy-0.1.5}/contentintelpy/nodes/summarization_node.py +0 -0
  14. {contentintelpy-0.1.4 → contentintelpy-0.1.5}/contentintelpy/nodes/translation_node.py +0 -0
  15. {contentintelpy-0.1.4 → contentintelpy-0.1.5}/contentintelpy/pipeline/base_node.py +0 -0
  16. {contentintelpy-0.1.4 → contentintelpy-0.1.5}/contentintelpy/pipeline/context.py +0 -0
  17. {contentintelpy-0.1.4 → contentintelpy-0.1.5}/contentintelpy/pipeline/pipeline.py +0 -0
  18. {contentintelpy-0.1.4 → contentintelpy-0.1.5}/contentintelpy/services/ner_service.py +0 -0
  19. {contentintelpy-0.1.4 → contentintelpy-0.1.5}/contentintelpy/services/sentiment_service.py +0 -0
  20. {contentintelpy-0.1.4 → contentintelpy-0.1.5}/contentintelpy/services/summarization_service.py +0 -0
  21. {contentintelpy-0.1.4 → contentintelpy-0.1.5}/contentintelpy/services/translation_service.py +0 -0
  22. {contentintelpy-0.1.4 → contentintelpy-0.1.5}/contentintelpy/utils/lazy_import.py +0 -0
  23. {contentintelpy-0.1.4 → contentintelpy-0.1.5}/contentintelpy/utils/model_registry.py +0 -0
  24. {contentintelpy-0.1.4 → contentintelpy-0.1.5}/contentintelpy.egg-info/SOURCES.txt +0 -0
  25. {contentintelpy-0.1.4 → contentintelpy-0.1.5}/contentintelpy.egg-info/dependency_links.txt +0 -0
  26. {contentintelpy-0.1.4 → contentintelpy-0.1.5}/contentintelpy.egg-info/requires.txt +0 -0
  27. {contentintelpy-0.1.4 → contentintelpy-0.1.5}/contentintelpy.egg-info/top_level.txt +0 -0
  28. {contentintelpy-0.1.4 → contentintelpy-0.1.5}/setup.cfg +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: contentintelpy
3
- Version: 0.1.4
3
+ Version: 0.1.5
4
4
  Summary: Production-grade NLP library for unified content intelligence.
5
5
  Author-email: Ronit Fulari <ronitfulari31@gmail.com>
6
6
  License: MIT
@@ -13,7 +13,7 @@ def _show_welcome_hint():
13
13
  YELLOW = "\033[93m"
14
14
  RESET = "\033[0m"
15
15
  print(f"{YELLOW}⚠️ [ContentIntelPy] Optional ML dependencies are missing. Features like Translation/NER will be disabled.")
16
- print(f" Check README.md or run: pip install \"contentintelpy[core,ner,translation,summarization]\"{RESET}")
16
+ print(f"-> Check README.md or run: pip install \"contentintelpy[core,ner,translation,summarization]\"{RESET}")
17
17
 
18
18
  # Run hint on first import if in an interactive session
19
19
  if sys.stdout.isatty():
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: contentintelpy
3
- Version: 0.1.4
3
+ Version: 0.1.5
4
4
  Summary: Production-grade NLP library for unified content intelligence.
5
5
  Author-email: Ronit Fulari <ronitfulari31@gmail.com>
6
6
  License: MIT
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
4
4
 
5
5
  [project]
6
6
  name = "contentintelpy"
7
- version = "0.1.4"
7
+ version = "0.1.5"
8
8
  description = "Production-grade NLP library for unified content intelligence."
9
9
  authors = [
10
10
  { name = "Ronit Fulari", email = "ronitfulari31@gmail.com" },
File without changes
File without changes
File without changes