nosible 0.2.3__tar.gz → 0.2.4__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 (26) hide show
  1. {nosible-0.2.3/src/nosible.egg-info → nosible-0.2.4}/PKG-INFO +1 -1
  2. {nosible-0.2.3 → nosible-0.2.4}/pyproject.toml +1 -1
  3. {nosible-0.2.3 → nosible-0.2.4}/src/nosible/classes/result.py +1 -1
  4. {nosible-0.2.3 → nosible-0.2.4}/src/nosible/nosible_client.py +4 -4
  5. {nosible-0.2.3 → nosible-0.2.4/src/nosible.egg-info}/PKG-INFO +1 -1
  6. {nosible-0.2.3 → nosible-0.2.4}/LICENSE +0 -0
  7. {nosible-0.2.3 → nosible-0.2.4}/README.md +0 -0
  8. {nosible-0.2.3 → nosible-0.2.4}/setup.cfg +0 -0
  9. {nosible-0.2.3 → nosible-0.2.4}/setup.py +0 -0
  10. {nosible-0.2.3 → nosible-0.2.4}/src/nosible/__init__.py +0 -0
  11. {nosible-0.2.3 → nosible-0.2.4}/src/nosible/classes/result_set.py +0 -0
  12. {nosible-0.2.3 → nosible-0.2.4}/src/nosible/classes/search.py +0 -0
  13. {nosible-0.2.3 → nosible-0.2.4}/src/nosible/classes/search_set.py +0 -0
  14. {nosible-0.2.3 → nosible-0.2.4}/src/nosible/classes/snippet.py +0 -0
  15. {nosible-0.2.3 → nosible-0.2.4}/src/nosible/classes/snippet_set.py +0 -0
  16. {nosible-0.2.3 → nosible-0.2.4}/src/nosible/classes/web_page.py +0 -0
  17. {nosible-0.2.3 → nosible-0.2.4}/src/nosible/utils/json_tools.py +0 -0
  18. {nosible-0.2.3 → nosible-0.2.4}/src/nosible/utils/rate_limiter.py +0 -0
  19. {nosible-0.2.3 → nosible-0.2.4}/src/nosible.egg-info/SOURCES.txt +0 -0
  20. {nosible-0.2.3 → nosible-0.2.4}/src/nosible.egg-info/dependency_links.txt +0 -0
  21. {nosible-0.2.3 → nosible-0.2.4}/src/nosible.egg-info/requires.txt +0 -0
  22. {nosible-0.2.3 → nosible-0.2.4}/src/nosible.egg-info/top_level.txt +0 -0
  23. {nosible-0.2.3 → nosible-0.2.4}/tests/test_01_nosible.py +0 -0
  24. {nosible-0.2.3 → nosible-0.2.4}/tests/test_02_results.py +0 -0
  25. {nosible-0.2.3 → nosible-0.2.4}/tests/test_03_search_searchset.py +0 -0
  26. {nosible-0.2.3 → nosible-0.2.4}/tests/test_04_snippets.py +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: nosible
3
- Version: 0.2.3
3
+ Version: 0.2.4
4
4
  Summary: Python client for the NOSIBLE Search API
5
5
  Home-page: https://github.com/NosibleAI/nosible
6
6
  Author: Stuart Reid, Matthew Dicks, Richard Taylor, Gareth Warburton
@@ -1,6 +1,6 @@
1
1
  [project]
2
2
  name = "nosible"
3
- version = "0.2.3"
3
+ version = "0.2.4"
4
4
  description = "Python client for the NOSIBLE Search API"
5
5
  readme = { file = "README.md", content-type = "text/markdown" }
6
6
  requires-python = ">=3.9"
@@ -332,7 +332,7 @@ class Result:
332
332
  n_results: int = 100,
333
333
  n_probes: int = 30,
334
334
  n_contextify: int = 128,
335
- algorithm: str = "hybrid-2",
335
+ algorithm: str = "hybrid-3",
336
336
  publish_start: str = None,
337
337
  publish_end: str = None,
338
338
  include_netlocs: list = None,
@@ -208,7 +208,7 @@ class Nosible:
208
208
  n_results: int = 100,
209
209
  n_probes: int = 30,
210
210
  n_contextify: int = 128,
211
- algorithm: str = "hybrid-2",
211
+ algorithm: str = "hybrid-3",
212
212
  min_similarity: float = None,
213
213
  must_include: list[str] = None,
214
214
  must_exclude: list[str] = None,
@@ -385,7 +385,7 @@ class Nosible:
385
385
  n_results: int = 100,
386
386
  n_probes: int = 30,
387
387
  n_contextify: int = 128,
388
- algorithm: str = "hybrid-2",
388
+ algorithm: str = "hybrid-3",
389
389
  min_similarity: float = None,
390
390
  must_include: list[str] = None,
391
391
  must_exclude: list[str] = None,
@@ -604,7 +604,7 @@ class Nosible:
604
604
  n_results = search_obj.n_results if search_obj.n_results is not None else 100
605
605
  n_probes = search_obj.n_probes if search_obj.n_probes is not None else 30
606
606
  n_contextify = search_obj.n_contextify if search_obj.n_contextify is not None else 128
607
- algorithm = search_obj.algorithm if search_obj.algorithm is not None else "hybrid-2"
607
+ algorithm = search_obj.algorithm if search_obj.algorithm is not None else "hybrid-3"
608
608
  min_similarity = search_obj.min_similarity if search_obj.min_similarity is not None else 0
609
609
  must_include = search_obj.must_include if search_obj.must_include is not None else []
610
610
  must_exclude = search_obj.must_exclude if search_obj.must_exclude is not None else []
@@ -732,7 +732,7 @@ class Nosible:
732
732
  n_results: int = 1000,
733
733
  n_probes: int = 30,
734
734
  n_contextify: int = 128,
735
- algorithm: str = "hybrid-2",
735
+ algorithm: str = "hybrid-3",
736
736
  min_similarity: float = None,
737
737
  must_include: list[str] = None,
738
738
  must_exclude: list[str] = None,
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: nosible
3
- Version: 0.2.3
3
+ Version: 0.2.4
4
4
  Summary: Python client for the NOSIBLE Search API
5
5
  Home-page: https://github.com/NosibleAI/nosible
6
6
  Author: Stuart Reid, Matthew Dicks, Richard Taylor, Gareth Warburton
File without changes
File without changes
File without changes
File without changes
File without changes