indexify 0.0.26__py3-none-any.whl → 0.0.27__py3-none-any.whl
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.
- indexify/client.py +7 -2
- {indexify-0.0.26.dist-info → indexify-0.0.27.dist-info}/METADATA +1 -1
- {indexify-0.0.26.dist-info → indexify-0.0.27.dist-info}/RECORD +5 -5
- {indexify-0.0.26.dist-info → indexify-0.0.27.dist-info}/LICENSE.txt +0 -0
- {indexify-0.0.26.dist-info → indexify-0.0.27.dist-info}/WHEEL +0 -0
indexify/client.py
CHANGED
@@ -624,14 +624,19 @@ class IndexifyClient:
|
|
624
624
|
)
|
625
625
|
return response.json()
|
626
626
|
|
627
|
-
def wait_for_extraction(self,
|
627
|
+
def wait_for_extraction(self, content_ids: Union[str, List[str]]):
|
628
628
|
"""
|
629
629
|
Wait for extraction to complete for a given content id
|
630
630
|
|
631
631
|
Args:
|
632
632
|
- content_id (str): id of content
|
633
633
|
"""
|
634
|
-
|
634
|
+
if type(content_ids) == str:
|
635
|
+
content_ids = [content_ids]
|
636
|
+
print("Waiting for extraction to complete for content id: ", ",".join(content_ids))
|
637
|
+
for content_id in content_ids:
|
638
|
+
response = self.get(f"namespaces/{self.namespace}/content/{content_id}/wait")
|
639
|
+
print("Extraction completed for content id: ", content_id)
|
635
640
|
response.raise_for_status()
|
636
641
|
|
637
642
|
def generate_unique_hex_id(self):
|
@@ -1,5 +1,5 @@
|
|
1
1
|
indexify/__init__.py,sha256=Y40-Ur_tL7kGGs-reh9BTfEYGe-KyGxgdg-CmoFsXRQ,473
|
2
|
-
indexify/client.py,sha256=
|
2
|
+
indexify/client.py,sha256=NwEvU-9FU2U-UkhlKjfVmIUJ9E9DcSIjIJYE4AEqwJA,22109
|
3
3
|
indexify/data_containers.py,sha256=r1wxJPtsmXbyKvb17fqxm-dPjKz51oZ62f8A8Zxls1c,361
|
4
4
|
indexify/error.py,sha256=3umTeYb0ugtUyehV1ibfvaeACxAONPyWPc-1HRN4d1M,856
|
5
5
|
indexify/exceptions.py,sha256=vjd5SPPNFIEW35GorSIodsqvm9RKHQm9kdp8t9gv-WM,111
|
@@ -8,7 +8,7 @@ indexify/extractor.py,sha256=sWFLlXHgEfWlmiKAXN6ytUt_uG7th-XGNHqz-TG39gs,1216
|
|
8
8
|
indexify/index.py,sha256=RvxYhJXEth-GKvqzlMiz5PuN1eIbZk84pt20piA1Gsw,504
|
9
9
|
indexify/settings.py,sha256=LSaWZ0ADIVmUv6o6dHWRC3-Ry5uLbCw2sBSg1e_U7UM,99
|
10
10
|
indexify/utils.py,sha256=rDN2lrsAs9noJEIjfx6ukmC2SAIyrlUt7QU-kaBjujM,125
|
11
|
-
indexify-0.0.
|
12
|
-
indexify-0.0.
|
13
|
-
indexify-0.0.
|
14
|
-
indexify-0.0.
|
11
|
+
indexify-0.0.27.dist-info/LICENSE.txt,sha256=xx0jnfkXJvxRnG63LTGOxlggYnIysveWIZ6H3PNdCrQ,11357
|
12
|
+
indexify-0.0.27.dist-info/METADATA,sha256=Hz-3CZFY5Nz99brOcraBKR8moLhghxgoHOugofABP_c,1798
|
13
|
+
indexify-0.0.27.dist-info/WHEEL,sha256=sP946D7jFCHeNz5Iq4fL4Lu-PrWrFsgfLXbbkciIZwg,88
|
14
|
+
indexify-0.0.27.dist-info/RECORD,,
|
File without changes
|
File without changes
|