unstructured-ingest 0.5.7__py3-none-any.whl → 0.5.8__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.

Potentially problematic release.


This version of unstructured-ingest might be problematic. Click here for more details.

@@ -1 +1 @@
1
- __version__ = "0.5.7" # pragma: no cover
1
+ __version__ = "0.5.8" # pragma: no cover
@@ -63,14 +63,14 @@ class PineconeDestinationConnector(IngestDocSessionHandleMixin, BaseDestinationC
63
63
  @property
64
64
  def pinecone_index(self):
65
65
  if self._index is None:
66
- self._index = self.create_index()
66
+ self._index = self.get_index()
67
67
  return self._index
68
68
 
69
69
  def initialize(self):
70
70
  pass
71
71
 
72
72
  @requires_dependencies(["pinecone"], extras="pinecone")
73
- def create_index(self) -> "PineconeIndex":
73
+ def get_index(self) -> "PineconeIndex":
74
74
  from pinecone import Pinecone
75
75
  from unstructured import __version__ as unstructured_version
76
76
 
@@ -83,6 +83,16 @@ class PineconeDestinationConnector(IngestDocSessionHandleMixin, BaseDestinationC
83
83
  logger.debug(f"connected to index: {pc.describe_index(self.connector_config.index_name)}")
84
84
  return index
85
85
 
86
+ @requires_dependencies(["pinecone"], extras="pinecone")
87
+ def create_index(self) -> "PineconeIndex":
88
+ logger.warning(
89
+ "create_index (a misleading name as of now) will be deprecated soon. "
90
+ + "Use get_index instead. This is due to unstructured supporting actual "
91
+ + "index creation/provisioning now. "
92
+ + "(Support for v2 connectors only. you are currently using a v1 connector.)"
93
+ )
94
+ return self.get_index()
95
+
86
96
  @DestinationConnectionError.wrap
87
97
  def check_connection(self):
88
98
  _ = self.pinecone_index
@@ -38,7 +38,9 @@ class Uploader(BaseProcess, BaseConnector, ABC):
38
38
  def run_batch(self, contents: list[UploadContent], **kwargs: Any) -> None:
39
39
  raise NotImplementedError()
40
40
 
41
- def create_destination(self, destination_name: str = "elements", **kwargs: Any) -> bool:
41
+ def create_destination(
42
+ self, destination_name: str = "unstructuredautocreated", **kwargs: Any
43
+ ) -> bool:
42
44
  # Update the uploader config if needed with a new destination that gets created.
43
45
  # Return a flag on if anything was created or not.
44
46
  return False
@@ -61,6 +63,6 @@ class Uploader(BaseProcess, BaseConnector, ABC):
61
63
  @dataclass
62
64
  class VectorDBUploader(Uploader, ABC):
63
65
  def create_destination(
64
- self, vector_length: int, destination_name: str = "elements", **kwargs: Any
66
+ self, vector_length: int, destination_name: str = "unstructuredautocreated", **kwargs: Any
65
67
  ) -> bool:
66
68
  return False
@@ -11,7 +11,7 @@ from unstructured_ingest.v2.utils import serialize_base_model_json
11
11
 
12
12
  IndexerT = TypeVar("IndexerT", bound=Indexer)
13
13
 
14
- STEP_ID = "index"
14
+ STEP_ID = "indexer"
15
15
 
16
16
 
17
17
  @dataclass
@@ -208,7 +208,7 @@ class PineconeUploader(VectorDBUploader):
208
208
  def create_destination(
209
209
  self,
210
210
  vector_length: int,
211
- destination_name: str = "elements",
211
+ destination_name: str = "unstructuredautocreated",
212
212
  destination_type: Literal["pod", "serverless"] = "serverless",
213
213
  serverless_cloud: str = "aws",
214
214
  serverless_region: str = "us-west-2",
@@ -219,7 +219,7 @@ class PineconeUploader(VectorDBUploader):
219
219
  ) -> bool:
220
220
  from pinecone import PodSpec, ServerlessSpec
221
221
 
222
- index_name = destination_name or self.connection_config.index_name
222
+ index_name = self.connection_config.index_name or destination_name
223
223
  index_name = self.format_destination_name(index_name)
224
224
  self.connection_config.index_name = index_name
225
225
 
@@ -228,13 +228,11 @@ class PineconeUploader(VectorDBUploader):
228
228
  logger.info(f"creating pinecone index {index_name}")
229
229
 
230
230
  pc = self.connection_config.get_client()
231
-
232
231
  if destination_type == "serverless":
233
232
  pc.create_index(
234
- name=destination_name,
233
+ name=index_name,
235
234
  dimension=vector_length,
236
235
  spec=ServerlessSpec(cloud=serverless_cloud, region=serverless_region),
237
- **kwargs,
238
236
  )
239
237
 
240
238
  return True
@@ -244,7 +242,6 @@ class PineconeUploader(VectorDBUploader):
244
242
  name=destination_name,
245
243
  dimension=vector_length,
246
244
  spec=PodSpec(environment=pod_environment, pod_type=pod_type, pods=pod_count),
247
- **kwargs,
248
245
  )
249
246
 
250
247
  return True
@@ -241,10 +241,13 @@ class WeaviateUploader(VectorDBUploader, ABC):
241
241
  return formatted.capitalize()
242
242
 
243
243
  def create_destination(
244
- self, destination_name: str = "elements", vector_length: Optional[int] = None, **kwargs: Any
244
+ self,
245
+ destination_name: str = "unstructuredautocreated",
246
+ vector_length: Optional[int] = None,
247
+ **kwargs: Any,
245
248
  ) -> bool:
246
- destination_name = self.format_destination_name(destination_name)
247
249
  collection_name = self.upload_config.collection or destination_name
250
+ collection_name = self.format_destination_name(collection_name)
248
251
  self.upload_config.collection = collection_name
249
252
 
250
253
  connectors_dir = Path(__file__).parents[1]
@@ -254,9 +257,7 @@ class WeaviateUploader(VectorDBUploader, ABC):
254
257
  collection_config["class"] = collection_name
255
258
 
256
259
  if not self._collection_exists():
257
- logger.info(
258
- f"creating default weaviate collection '{collection_name}' with default configs"
259
- )
260
+ logger.info(f"creating weaviate collection '{collection_name}' with default configs")
260
261
  with self.connection_config.get_client() as weaviate_client:
261
262
  weaviate_client.collections.create_from_dict(config=collection_config)
262
263
  return True
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.2
2
2
  Name: unstructured-ingest
3
- Version: 0.5.7
3
+ Version: 0.5.8
4
4
  Summary: A library that prepares raw documents for downstream ML tasks.
5
5
  Home-page: https://github.com/Unstructured-IO/unstructured-ingest
6
6
  Author: Unstructured Technologies
@@ -22,13 +22,13 @@ Classifier: Topic :: Scientific/Engineering :: Artificial Intelligence
22
22
  Requires-Python: >=3.9.0,<3.14
23
23
  Description-Content-Type: text/markdown
24
24
  License-File: LICENSE.md
25
- Requires-Dist: opentelemetry-sdk
26
25
  Requires-Dist: pydantic>=2.7
27
26
  Requires-Dist: dataclasses_json
28
- Requires-Dist: python-dateutil
29
27
  Requires-Dist: tqdm
30
28
  Requires-Dist: click
31
29
  Requires-Dist: pandas
30
+ Requires-Dist: python-dateutil
31
+ Requires-Dist: opentelemetry-sdk
32
32
  Provides-Extra: remote
33
33
  Requires-Dist: unstructured-client>=0.26.1; extra == "remote"
34
34
  Provides-Extra: csv
@@ -66,13 +66,13 @@ Requires-Dist: pyairtable; extra == "airtable"
66
66
  Provides-Extra: astradb
67
67
  Requires-Dist: astrapy; extra == "astradb"
68
68
  Provides-Extra: azure
69
- Requires-Dist: adlfs; extra == "azure"
70
69
  Requires-Dist: fsspec; extra == "azure"
70
+ Requires-Dist: adlfs; extra == "azure"
71
71
  Provides-Extra: azure-ai-search
72
72
  Requires-Dist: azure-search-documents; extra == "azure-ai-search"
73
73
  Provides-Extra: biomed
74
- Requires-Dist: bs4; extra == "biomed"
75
74
  Requires-Dist: requests; extra == "biomed"
75
+ Requires-Dist: bs4; extra == "biomed"
76
76
  Provides-Extra: box
77
77
  Requires-Dist: boxfs; extra == "box"
78
78
  Requires-Dist: fsspec; extra == "box"
@@ -99,18 +99,18 @@ Provides-Extra: elasticsearch
99
99
  Requires-Dist: elasticsearch[async]; extra == "elasticsearch"
100
100
  Provides-Extra: gcs
101
101
  Requires-Dist: bs4; extra == "gcs"
102
- Requires-Dist: fsspec; extra == "gcs"
103
102
  Requires-Dist: gcsfs; extra == "gcs"
103
+ Requires-Dist: fsspec; extra == "gcs"
104
104
  Provides-Extra: github
105
- Requires-Dist: requests; extra == "github"
106
105
  Requires-Dist: pygithub>1.58.0; extra == "github"
106
+ Requires-Dist: requests; extra == "github"
107
107
  Provides-Extra: gitlab
108
108
  Requires-Dist: python-gitlab; extra == "gitlab"
109
109
  Provides-Extra: google-drive
110
110
  Requires-Dist: google-api-python-client; extra == "google-drive"
111
111
  Provides-Extra: hubspot
112
- Requires-Dist: hubspot-api-client; extra == "hubspot"
113
112
  Requires-Dist: urllib3; extra == "hubspot"
113
+ Requires-Dist: hubspot-api-client; extra == "hubspot"
114
114
  Provides-Extra: jira
115
115
  Requires-Dist: atlassian-python-api; extra == "jira"
116
116
  Provides-Extra: kafka
@@ -125,17 +125,17 @@ Provides-Extra: mongodb
125
125
  Requires-Dist: pymongo; extra == "mongodb"
126
126
  Provides-Extra: neo4j
127
127
  Requires-Dist: neo4j-rust-ext; extra == "neo4j"
128
- Requires-Dist: cymple; extra == "neo4j"
129
128
  Requires-Dist: networkx; extra == "neo4j"
129
+ Requires-Dist: cymple; extra == "neo4j"
130
130
  Provides-Extra: notion
131
- Requires-Dist: notion-client; extra == "notion"
132
131
  Requires-Dist: backoff; extra == "notion"
133
- Requires-Dist: htmlBuilder; extra == "notion"
134
132
  Requires-Dist: httpx; extra == "notion"
133
+ Requires-Dist: htmlBuilder; extra == "notion"
134
+ Requires-Dist: notion-client; extra == "notion"
135
135
  Provides-Extra: onedrive
136
136
  Requires-Dist: Office365-REST-Python-Client; extra == "onedrive"
137
- Requires-Dist: msal; extra == "onedrive"
138
137
  Requires-Dist: bs4; extra == "onedrive"
138
+ Requires-Dist: msal; extra == "onedrive"
139
139
  Provides-Extra: opensearch
140
140
  Requires-Dist: opensearch-py; extra == "opensearch"
141
141
  Provides-Extra: outlook
@@ -152,8 +152,8 @@ Requires-Dist: praw; extra == "reddit"
152
152
  Provides-Extra: redis
153
153
  Requires-Dist: redis; extra == "redis"
154
154
  Provides-Extra: s3
155
- Requires-Dist: s3fs; extra == "s3"
156
155
  Requires-Dist: fsspec; extra == "s3"
156
+ Requires-Dist: s3fs; extra == "s3"
157
157
  Provides-Extra: sharepoint
158
158
  Requires-Dist: Office365-REST-Python-Client; extra == "sharepoint"
159
159
  Requires-Dist: msal; extra == "sharepoint"
@@ -165,8 +165,8 @@ Requires-Dist: fsspec; extra == "sftp"
165
165
  Provides-Extra: slack
166
166
  Requires-Dist: slack_sdk[optional]; extra == "slack"
167
167
  Provides-Extra: snowflake
168
- Requires-Dist: psycopg2-binary; extra == "snowflake"
169
168
  Requires-Dist: snowflake-connector-python; extra == "snowflake"
169
+ Requires-Dist: psycopg2-binary; extra == "snowflake"
170
170
  Provides-Extra: wikipedia
171
171
  Requires-Dist: wikipedia; extra == "wikipedia"
172
172
  Provides-Extra: weaviate
@@ -178,13 +178,13 @@ Requires-Dist: databricks-sql-connector; extra == "databricks-delta-tables"
178
178
  Provides-Extra: singlestore
179
179
  Requires-Dist: singlestoredb; extra == "singlestore"
180
180
  Provides-Extra: vectara
181
- Requires-Dist: httpx; extra == "vectara"
182
181
  Requires-Dist: requests; extra == "vectara"
182
+ Requires-Dist: httpx; extra == "vectara"
183
183
  Requires-Dist: aiofiles; extra == "vectara"
184
184
  Provides-Extra: vastdb
185
- Requires-Dist: pyarrow; extra == "vastdb"
186
185
  Requires-Dist: ibis; extra == "vastdb"
187
186
  Requires-Dist: vastdb; extra == "vastdb"
187
+ Requires-Dist: pyarrow; extra == "vastdb"
188
188
  Provides-Extra: embed-huggingface
189
189
  Requires-Dist: sentence-transformers; extra == "embed-huggingface"
190
190
  Provides-Extra: embed-octoai
@@ -200,8 +200,8 @@ Provides-Extra: openai
200
200
  Requires-Dist: tiktoken; extra == "openai"
201
201
  Requires-Dist: openai; extra == "openai"
202
202
  Provides-Extra: bedrock
203
- Requires-Dist: boto3; extra == "bedrock"
204
203
  Requires-Dist: aioboto3; extra == "bedrock"
204
+ Requires-Dist: boto3; extra == "bedrock"
205
205
  Provides-Extra: togetherai
206
206
  Requires-Dist: together; extra == "togetherai"
207
207
  Dynamic: author
@@ -107,7 +107,7 @@ test/unit/v2/partitioners/test_partitioner.py,sha256=iIYg7IpftV3LusoO4H8tr1IHY1U
107
107
  test/unit/v2/utils/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
108
108
  test/unit/v2/utils/data_generator.py,sha256=UoYVNjG4S4wlaA9gceQ82HIpF9_6I1UTHD1_GrQBHp0,973
109
109
  unstructured_ingest/__init__.py,sha256=U4S_2y3zgLZVfMenHRaJFBW8yqh2mUBuI291LGQVOJ8,35
110
- unstructured_ingest/__version__.py,sha256=SJI27PQ23gz4_g984Mn5VF7Lgitn3vm0GQDyvqnYbdc,42
110
+ unstructured_ingest/__version__.py,sha256=vQvQulXRcV6LlEgelowkr5icYo-SRhOqh_4lxM-S0Yg,42
111
111
  unstructured_ingest/error.py,sha256=qDncnJgbf5ils956RcO2CGlAKYDT5OaEM9Clv1JVTNc,1448
112
112
  unstructured_ingest/interfaces.py,sha256=7DOnDpGvUNlCoFR7UPRGmOarqH5sFtuUOO5vf8X3oTM,31489
113
113
  unstructured_ingest/logger.py,sha256=S5nSqGcABoQyeicgRnBQFjDScCaTvFVivOCvbo-laL0,4479
@@ -189,7 +189,7 @@ unstructured_ingest/connector/mongodb.py,sha256=UD8T1V435YvGY68dpL-fyFesD7bcLckp
189
189
  unstructured_ingest/connector/onedrive.py,sha256=-yy3scFHVIUiPAAQdmJXel3_BMZnZc9qUI8HwecuoJ4,8911
190
190
  unstructured_ingest/connector/opensearch.py,sha256=kvzqEqanP6nGHjxCJ2e2CAz9iK8na3yYBX1l4ZuVq0A,7937
191
191
  unstructured_ingest/connector/outlook.py,sha256=f7WXb1xhf4iA3B7HTOCz2KuqxrywuChoDsDSy-erwYY,10443
192
- unstructured_ingest/connector/pinecone.py,sha256=koUO3EVXP_cglbs3XtXTgNQJVmUmYfDQpYi79jclP3k,4796
192
+ unstructured_ingest/connector/pinecone.py,sha256=wS5hkKPDt2hqbqGEcg0s1T_iYJsxGPtDV8f_S-4YCkw,5273
193
193
  unstructured_ingest/connector/qdrant.py,sha256=Y1PAW6ueAzkTxoeViZ7JjkErFJNJlSYvzaRU1c-hcJA,4964
194
194
  unstructured_ingest/connector/reddit.py,sha256=8pyVSXXKGS9vOlNBeXw1ev5oqu-uWka5hzgUI8CFRos,5457
195
195
  unstructured_ingest/connector/registry.py,sha256=SxXKzOGimHGYOPDSCsYm_xhbwNb-DIcv6XqxoPRIaIY,4846
@@ -400,7 +400,7 @@ unstructured_ingest/v2/interfaces/indexer.py,sha256=i0oftyifXefxfKa4a3sCfSwkzWGS
400
400
  unstructured_ingest/v2/interfaces/process.py,sha256=S3A_9gkwwGC-iQxvnpj3Er6IJAjAT5npzpSgxuFAzUM,449
401
401
  unstructured_ingest/v2/interfaces/processor.py,sha256=VX7JqXlbG1plxMK8THWhWINPbTICaaUEk4XUXhnOixY,3303
402
402
  unstructured_ingest/v2/interfaces/upload_stager.py,sha256=9EV9863ODDv0Y5liDT3xh2yiVuFiaVVyCcnwCy6nfkM,3172
403
- unstructured_ingest/v2/interfaces/uploader.py,sha256=diMkAD5HY8IYpeP1DoFeRD_SexAgOEl1nUcimNnyATc,2063
403
+ unstructured_ingest/v2/interfaces/uploader.py,sha256=AMgp0uaJ5XeqiyURLIUnWyoIqhUT9Ak5P_LT9-qasYk,2107
404
404
  unstructured_ingest/v2/pipeline/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
405
405
  unstructured_ingest/v2/pipeline/interfaces.py,sha256=-Y6gPnl-SbNxIx5-dQCmiYSPKUMjivrRlBLIKIUWVeM,8658
406
406
  unstructured_ingest/v2/pipeline/otel.py,sha256=K3pQvWVgWzyOWMKCBUofsH7wTZPJ0Ysw5sLjMBLW41I,1088
@@ -410,7 +410,7 @@ unstructured_ingest/v2/pipeline/steps/chunk.py,sha256=LK2ldM24TE4ukX_Z6Z81LpF53o
410
410
  unstructured_ingest/v2/pipeline/steps/download.py,sha256=nZ4B0d9p-6TgWqrBoKUQPlr8m6dz1RGNr_3OjUhRpWg,8259
411
411
  unstructured_ingest/v2/pipeline/steps/embed.py,sha256=iL6X0G5AvKnlfI-3XRWudlb0-6rD_PqyzA3MFmmcn6M,3199
412
412
  unstructured_ingest/v2/pipeline/steps/filter.py,sha256=pju7knTSbB2ll1jC9DPePRDnHlOlvEcU1-sjk6xYGGc,1211
413
- unstructured_ingest/v2/pipeline/steps/index.py,sha256=uIiGZeI9pFxkwS91IldXE37UUwAopsinfUgGNL7WJaw,3555
413
+ unstructured_ingest/v2/pipeline/steps/index.py,sha256=m0BbUwe_7s_gFxR9K31IJdAf3_GgKXXajGJec5jcSXA,3557
414
414
  unstructured_ingest/v2/pipeline/steps/partition.py,sha256=IJQWaOTcyFlH2bz8WbmynE5Zkd5D8ELOKTnSCnt9Wcc,3282
415
415
  unstructured_ingest/v2/pipeline/steps/stage.py,sha256=VR8SLUJdVva61aieVKyxUHzupTCQbQeaMA0CKu4Fx7o,2347
416
416
  unstructured_ingest/v2/pipeline/steps/uncompress.py,sha256=p2nPFGbcpivPAZO5jDogTfn0iaL5bCFsgBNMejxVbzE,1768
@@ -440,7 +440,7 @@ unstructured_ingest/v2/processes/connectors/mongodb.py,sha256=cL0QUQZF_s2brh3nNN
440
440
  unstructured_ingest/v2/processes/connectors/neo4j.py,sha256=ijp5hjmDpLoIHL9UJzV4_4vVtQBlQ2R_vLatlUYivX4,17464
441
441
  unstructured_ingest/v2/processes/connectors/onedrive.py,sha256=EM9fq67RsiudZvZbi6nDXkS-i6W0xLvbkNvD0G-Ni5E,17779
442
442
  unstructured_ingest/v2/processes/connectors/outlook.py,sha256=KgNGM8hImRhy6_SpswRP2VwRD4VOrqqJoySgxf2oduI,9290
443
- unstructured_ingest/v2/processes/connectors/pinecone.py,sha256=93WmYO9OT8er9DSlh8odbJCtjcLsVMlqyXlYADgDEjc,14013
443
+ unstructured_ingest/v2/processes/connectors/pinecone.py,sha256=O9lC4mZ9V_exg9apiCJSWHsgkuYDSEOlI6CaUS5ZB7c,13961
444
444
  unstructured_ingest/v2/processes/connectors/redisdb.py,sha256=p0AY4ukBNpwAemV4bWzpScvVbLTVlI3DzsCNUKiBI5M,6757
445
445
  unstructured_ingest/v2/processes/connectors/salesforce.py,sha256=2CiO2ZZiZ1Y1-nB7wcDlDVcpW2B7ut9wCj66rkkqho0,11616
446
446
  unstructured_ingest/v2/processes/connectors/sharepoint.py,sha256=2T9Bm1H_ALwHhG_YP7vsuUUW-mUg61zcaae3aa9BnN4,4827
@@ -566,10 +566,10 @@ unstructured_ingest/v2/processes/connectors/weaviate/__init__.py,sha256=NMiwnVWa
566
566
  unstructured_ingest/v2/processes/connectors/weaviate/cloud.py,sha256=bXtfEYLquR-BszZ5S_lQ4JbETNs9Vozgpfm8x9egAmE,6251
567
567
  unstructured_ingest/v2/processes/connectors/weaviate/embedded.py,sha256=S8Zg8StuZT-k7tCg1D5YShO1-vJYYk9-M1bE1fIqx64,3014
568
568
  unstructured_ingest/v2/processes/connectors/weaviate/local.py,sha256=LuTBKPseVewsz8VqxRPRLfGEm3BeI9nBZxpy7ZU5tOA,2201
569
- unstructured_ingest/v2/processes/connectors/weaviate/weaviate.py,sha256=yfABJKJGCvPuZ2XCNtDOuCtiscdEAmBCSPPNZnbTKDk,12821
570
- unstructured_ingest-0.5.7.dist-info/LICENSE.md,sha256=SxkKP_62uIAKb9mb1eH7FH4Kn2aYT09fgjKpJt5PyTk,11360
571
- unstructured_ingest-0.5.7.dist-info/METADATA,sha256=Zr_UTJd0V_0vUjwukPd2BgrEh47hqfLSiwivBPAxJos,8316
572
- unstructured_ingest-0.5.7.dist-info/WHEEL,sha256=In9FTNxeP60KnTkGw7wk6mJPYd_dQSjEZmXdBdMCI-8,91
573
- unstructured_ingest-0.5.7.dist-info/entry_points.txt,sha256=gUAAFnjFPnBgThJSEbw0N5ZjxtaKlT1s9e05_arQrNw,70
574
- unstructured_ingest-0.5.7.dist-info/top_level.txt,sha256=DMuDMHZRMdeay8v8Kdi855muIv92F0OkutvBCaBEW6M,25
575
- unstructured_ingest-0.5.7.dist-info/RECORD,,
569
+ unstructured_ingest/v2/processes/connectors/weaviate/weaviate.py,sha256=UZ_s8dnVNx9BWFG2fPah4VbQbgEDF4nP78bQeU3jg08,12821
570
+ unstructured_ingest-0.5.8.dist-info/LICENSE.md,sha256=SxkKP_62uIAKb9mb1eH7FH4Kn2aYT09fgjKpJt5PyTk,11360
571
+ unstructured_ingest-0.5.8.dist-info/METADATA,sha256=rPZsUHbYbqp5HbErXowfhBsQazRcBL9JmaZlHbO9Yqc,8316
572
+ unstructured_ingest-0.5.8.dist-info/WHEEL,sha256=In9FTNxeP60KnTkGw7wk6mJPYd_dQSjEZmXdBdMCI-8,91
573
+ unstructured_ingest-0.5.8.dist-info/entry_points.txt,sha256=gUAAFnjFPnBgThJSEbw0N5ZjxtaKlT1s9e05_arQrNw,70
574
+ unstructured_ingest-0.5.8.dist-info/top_level.txt,sha256=DMuDMHZRMdeay8v8Kdi855muIv92F0OkutvBCaBEW6M,25
575
+ unstructured_ingest-0.5.8.dist-info/RECORD,,