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

@@ -19,24 +19,31 @@ from unstructured_ingest.v2.processes.connectors.sharepoint import (
19
19
  )
20
20
 
21
21
 
22
+ def sharepoint_config():
23
+ class SharepointTestConfig:
24
+ def __init__(self):
25
+ self.client_id = os.environ["SHAREPOINT_CLIENT_ID"]
26
+ self.client_cred = os.environ["SHAREPOINT_CRED"]
27
+ self.user_pname = os.environ["MS_USER_PNAME"]
28
+ self.tenant = os.environ["MS_TENANT_ID"]
29
+
30
+ return SharepointTestConfig()
31
+
32
+
22
33
  @pytest.mark.asyncio
23
34
  @pytest.mark.tags(CONNECTOR_TYPE, SOURCE_TAG, BLOB_STORAGE_TAG)
24
35
  @requires_env("SHAREPOINT_CLIENT_ID", "SHAREPOINT_CRED", "MS_TENANT_ID", "MS_USER_PNAME")
25
36
  async def test_sharepoint_source(temp_dir):
26
- # Retrieve environment variables
27
37
  site = "https://unstructuredio.sharepoint.com/sites/utic-platform-test-source"
28
- client_id = os.environ["SHAREPOINT_CLIENT_ID"]
29
- client_cred = os.environ["SHAREPOINT_CRED"]
30
- user_pname = os.environ["MS_USER_PNAME"]
31
- tenant = os.environ["MS_TENANT_ID"]
38
+ config = sharepoint_config()
32
39
 
33
40
  # Create connection and indexer configurations
34
- access_config = SharepointAccessConfig(client_cred=client_cred)
41
+ access_config = SharepointAccessConfig(client_cred=config.client_cred)
35
42
  connection_config = SharepointConnectionConfig(
36
- client_id=client_id,
43
+ client_id=config.client_id,
37
44
  site=site,
38
- tenant=tenant,
39
- user_pname=user_pname,
45
+ tenant=config.tenant,
46
+ user_pname=config.user_pname,
40
47
  access_config=access_config,
41
48
  )
42
49
  index_config = SharepointIndexerConfig(recursive=True)
@@ -58,7 +65,151 @@ async def test_sharepoint_source(temp_dir):
58
65
  indexer=indexer,
59
66
  downloader=downloader,
60
67
  configs=SourceValidationConfigs(
61
- test_id="sharepoint",
68
+ test_id="sharepoint1",
69
+ expected_num_files=4,
70
+ validate_downloaded_files=True,
71
+ exclude_fields_extend=[
72
+ "metadata.date_created",
73
+ "metadata.date_modified",
74
+ "additional_metadata.LastModified",
75
+ "additional_metadata.@microsoft.graph.downloadUrl",
76
+ ],
77
+ ),
78
+ )
79
+
80
+
81
+ @pytest.mark.asyncio
82
+ @pytest.mark.tags(CONNECTOR_TYPE, SOURCE_TAG, BLOB_STORAGE_TAG)
83
+ @requires_env("SHAREPOINT_CLIENT_ID", "SHAREPOINT_CRED", "MS_TENANT_ID", "MS_USER_PNAME")
84
+ async def test_sharepoint_source_with_path(temp_dir):
85
+ site = "https://unstructuredio.sharepoint.com/sites/utic-platform-test-source"
86
+ config = sharepoint_config()
87
+
88
+ # Create connection and indexer configurations
89
+ access_config = SharepointAccessConfig(client_cred=config.client_cred)
90
+ connection_config = SharepointConnectionConfig(
91
+ client_id=config.client_id,
92
+ site=site,
93
+ tenant=config.tenant,
94
+ user_pname=config.user_pname,
95
+ access_config=access_config,
96
+ )
97
+ index_config = SharepointIndexerConfig(recursive=True, path="Folder1")
98
+
99
+ download_config = SharepointDownloaderConfig(download_dir=temp_dir)
100
+
101
+ # Instantiate indexer and downloader
102
+ indexer = SharepointIndexer(
103
+ connection_config=connection_config,
104
+ index_config=index_config,
105
+ )
106
+ downloader = SharepointDownloader(
107
+ connection_config=connection_config,
108
+ download_config=download_config,
109
+ )
110
+
111
+ # Run the source connector validation
112
+ await source_connector_validation(
113
+ indexer=indexer,
114
+ downloader=downloader,
115
+ configs=SourceValidationConfigs(
116
+ test_id="sharepoint2",
117
+ expected_num_files=2,
118
+ validate_downloaded_files=True,
119
+ exclude_fields_extend=[
120
+ "metadata.date_created",
121
+ "metadata.date_modified",
122
+ "additional_metadata.LastModified",
123
+ "additional_metadata.@microsoft.graph.downloadUrl",
124
+ ],
125
+ ),
126
+ )
127
+
128
+
129
+ @pytest.mark.asyncio
130
+ @pytest.mark.tags(CONNECTOR_TYPE, SOURCE_TAG, BLOB_STORAGE_TAG)
131
+ @requires_env("SHAREPOINT_CLIENT_ID", "SHAREPOINT_CRED", "MS_TENANT_ID", "MS_USER_PNAME")
132
+ async def test_sharepoint_root_with_path(temp_dir):
133
+ site = "https://unstructuredio.sharepoint.com/"
134
+ config = sharepoint_config()
135
+
136
+ # Create connection and indexer configurations
137
+ access_config = SharepointAccessConfig(client_cred=config.client_cred)
138
+ connection_config = SharepointConnectionConfig(
139
+ client_id=config.client_id,
140
+ site=site,
141
+ tenant=config.tenant,
142
+ user_pname=config.user_pname,
143
+ access_config=access_config,
144
+ )
145
+ index_config = SharepointIndexerConfig(recursive=True, path="e2e-test-folder")
146
+
147
+ download_config = SharepointDownloaderConfig(download_dir=temp_dir)
148
+
149
+ # Instantiate indexer and downloader
150
+ indexer = SharepointIndexer(
151
+ connection_config=connection_config,
152
+ index_config=index_config,
153
+ )
154
+ downloader = SharepointDownloader(
155
+ connection_config=connection_config,
156
+ download_config=download_config,
157
+ )
158
+
159
+ # Run the source connector validation
160
+ await source_connector_validation(
161
+ indexer=indexer,
162
+ downloader=downloader,
163
+ configs=SourceValidationConfigs(
164
+ test_id="sharepoint3",
165
+ expected_num_files=1,
166
+ validate_downloaded_files=True,
167
+ exclude_fields_extend=[
168
+ "metadata.date_created",
169
+ "metadata.date_modified",
170
+ "additional_metadata.LastModified",
171
+ "additional_metadata.@microsoft.graph.downloadUrl",
172
+ ],
173
+ ),
174
+ )
175
+
176
+
177
+ @pytest.mark.asyncio
178
+ @pytest.mark.tags(CONNECTOR_TYPE, SOURCE_TAG, BLOB_STORAGE_TAG)
179
+ @requires_env("SHAREPOINT_CLIENT_ID", "SHAREPOINT_CRED", "MS_TENANT_ID", "MS_USER_PNAME")
180
+ async def test_sharepoint_shared_documents(temp_dir):
181
+ site = "https://unstructuredio.sharepoint.com/sites/utic-platform-test-source"
182
+ config = sharepoint_config()
183
+
184
+ # Create connection and indexer configurations
185
+ access_config = SharepointAccessConfig(client_cred=config.client_cred)
186
+ connection_config = SharepointConnectionConfig(
187
+ client_id=config.client_id,
188
+ site=site,
189
+ tenant=config.tenant,
190
+ user_pname=config.user_pname,
191
+ access_config=access_config,
192
+ )
193
+ index_config = SharepointIndexerConfig(recursive=True, path="Shared Documents")
194
+
195
+ download_config = SharepointDownloaderConfig(download_dir=temp_dir)
196
+
197
+ # Instantiate indexer and downloader
198
+ indexer = SharepointIndexer(
199
+ connection_config=connection_config,
200
+ index_config=index_config,
201
+ )
202
+ downloader = SharepointDownloader(
203
+ connection_config=connection_config,
204
+ download_config=download_config,
205
+ )
206
+
207
+ # Run the source connector validation
208
+ await source_connector_validation(
209
+ indexer=indexer,
210
+ downloader=downloader,
211
+ configs=SourceValidationConfigs(
212
+ test_id="sharepoint4",
62
213
  expected_num_files=4,
63
214
  validate_downloaded_files=True,
64
215
  exclude_fields_extend=[
@@ -1 +1 @@
1
- __version__ = "0.5.3" # pragma: no cover
1
+ __version__ = "0.5.4" # pragma: no cover
@@ -31,6 +31,7 @@ if TYPE_CHECKING:
31
31
  from office365.onedrive.driveitems.driveItem import DriveItem
32
32
 
33
33
  CONNECTOR_TYPE = "sharepoint"
34
+ LEGACY_DEFAULT_PATH = "Shared Documents"
34
35
 
35
36
 
36
37
  class SharepointAccessConfig(OnedriveAccessConfig):
@@ -76,10 +77,14 @@ class SharepointIndexer(OnedriveIndexer):
76
77
  except ClientRequestException:
77
78
  logger.info("Site not found")
78
79
 
79
- drive_items = await self.list_objects(
80
- folder=site_drive_item, recursive=self.index_config.recursive
81
- )
82
- for drive_item in drive_items:
80
+ path = self.index_config.path
81
+ # Deprecated sharepoint sdk needed a default path. Microsoft Graph SDK does not.
82
+ if path and path != LEGACY_DEFAULT_PATH:
83
+ site_drive_item = site_drive_item.get_by_path(path).get().execute_query()
84
+
85
+ for drive_item in site_drive_item.get_files(
86
+ recursive=self.index_config.recursive
87
+ ).execute_query():
83
88
  file_data = await self.drive_item_to_file_data(drive_item=drive_item)
84
89
  yield file_data
85
90
 
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.2
2
2
  Name: unstructured-ingest
3
- Version: 0.5.3
3
+ Version: 0.5.4
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
@@ -23,12 +23,12 @@ Requires-Python: >=3.9.0,<3.14
23
23
  Description-Content-Type: text/markdown
24
24
  License-File: LICENSE.md
25
25
  Requires-Dist: opentelemetry-sdk
26
- Requires-Dist: click
27
- Requires-Dist: pydantic>=2.7
26
+ Requires-Dist: pandas
28
27
  Requires-Dist: python-dateutil
29
28
  Requires-Dist: dataclasses_json
30
- Requires-Dist: pandas
31
29
  Requires-Dist: tqdm
30
+ Requires-Dist: pydantic>=2.7
31
+ Requires-Dist: click
32
32
  Provides-Extra: remote
33
33
  Requires-Dist: unstructured-client>=0.26.1; extra == "remote"
34
34
  Provides-Extra: csv
@@ -71,18 +71,18 @@ 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
- Requires-Dist: fsspec; extra == "box"
78
77
  Requires-Dist: boxfs; extra == "box"
78
+ Requires-Dist: fsspec; extra == "box"
79
79
  Provides-Extra: chroma
80
80
  Requires-Dist: chromadb; extra == "chroma"
81
81
  Provides-Extra: clarifai
82
82
  Requires-Dist: clarifai; extra == "clarifai"
83
83
  Provides-Extra: confluence
84
- Requires-Dist: atlassian-python-api; extra == "confluence"
85
84
  Requires-Dist: requests; extra == "confluence"
85
+ Requires-Dist: atlassian-python-api; extra == "confluence"
86
86
  Provides-Extra: couchbase
87
87
  Requires-Dist: couchbase; extra == "couchbase"
88
88
  Provides-Extra: delta-table
@@ -98,9 +98,9 @@ Requires-Dist: duckdb; extra == "duckdb"
98
98
  Provides-Extra: elasticsearch
99
99
  Requires-Dist: elasticsearch[async]; extra == "elasticsearch"
100
100
  Provides-Extra: gcs
101
+ Requires-Dist: gcsfs; extra == "gcs"
101
102
  Requires-Dist: fsspec; extra == "gcs"
102
103
  Requires-Dist: bs4; extra == "gcs"
103
- Requires-Dist: gcsfs; extra == "gcs"
104
104
  Provides-Extra: github
105
105
  Requires-Dist: pygithub>1.58.0; extra == "github"
106
106
  Requires-Dist: requests; extra == "github"
@@ -124,18 +124,18 @@ Requires-Dist: pymilvus; extra == "milvus"
124
124
  Provides-Extra: mongodb
125
125
  Requires-Dist: pymongo; extra == "mongodb"
126
126
  Provides-Extra: neo4j
127
- Requires-Dist: neo4j-rust-ext; extra == "neo4j"
128
127
  Requires-Dist: cymple; extra == "neo4j"
129
128
  Requires-Dist: networkx; extra == "neo4j"
129
+ Requires-Dist: neo4j-rust-ext; extra == "neo4j"
130
130
  Provides-Extra: notion
131
- Requires-Dist: htmlBuilder; extra == "notion"
132
131
  Requires-Dist: httpx; extra == "notion"
133
- Requires-Dist: backoff; extra == "notion"
134
132
  Requires-Dist: notion-client; extra == "notion"
133
+ Requires-Dist: backoff; extra == "notion"
134
+ Requires-Dist: htmlBuilder; extra == "notion"
135
135
  Provides-Extra: onedrive
136
- Requires-Dist: bs4; extra == "onedrive"
137
136
  Requires-Dist: Office365-REST-Python-Client; extra == "onedrive"
138
137
  Requires-Dist: msal; extra == "onedrive"
138
+ Requires-Dist: bs4; extra == "onedrive"
139
139
  Provides-Extra: opensearch
140
140
  Requires-Dist: opensearch-py; extra == "opensearch"
141
141
  Provides-Extra: outlook
@@ -160,13 +160,13 @@ Requires-Dist: msal; extra == "sharepoint"
160
160
  Provides-Extra: salesforce
161
161
  Requires-Dist: simple-salesforce; extra == "salesforce"
162
162
  Provides-Extra: sftp
163
- Requires-Dist: fsspec; extra == "sftp"
164
163
  Requires-Dist: paramiko; extra == "sftp"
164
+ 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,9 +178,9 @@ 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: aiofiles; extra == "vectara"
182
- Requires-Dist: httpx; extra == "vectara"
183
181
  Requires-Dist: requests; extra == "vectara"
182
+ Requires-Dist: httpx; extra == "vectara"
183
+ Requires-Dist: aiofiles; extra == "vectara"
184
184
  Provides-Extra: vastdb
185
185
  Requires-Dist: pyarrow; extra == "vastdb"
186
186
  Requires-Dist: ibis; extra == "vastdb"
@@ -188,8 +188,8 @@ Requires-Dist: vastdb; extra == "vastdb"
188
188
  Provides-Extra: embed-huggingface
189
189
  Requires-Dist: sentence-transformers; extra == "embed-huggingface"
190
190
  Provides-Extra: embed-octoai
191
- Requires-Dist: openai; extra == "embed-octoai"
192
191
  Requires-Dist: tiktoken; extra == "embed-octoai"
192
+ Requires-Dist: openai; extra == "embed-octoai"
193
193
  Provides-Extra: embed-vertexai
194
194
  Requires-Dist: vertexai; extra == "embed-vertexai"
195
195
  Provides-Extra: embed-voyageai
@@ -197,8 +197,8 @@ Requires-Dist: voyageai; extra == "embed-voyageai"
197
197
  Provides-Extra: embed-mixedbreadai
198
198
  Requires-Dist: mixedbread-ai; extra == "embed-mixedbreadai"
199
199
  Provides-Extra: openai
200
- Requires-Dist: openai; extra == "openai"
201
200
  Requires-Dist: tiktoken; extra == "openai"
201
+ Requires-Dist: openai; extra == "openai"
202
202
  Provides-Extra: bedrock
203
203
  Requires-Dist: aioboto3; extra == "bedrock"
204
204
  Requires-Dist: boto3; extra == "bedrock"
@@ -21,7 +21,7 @@ test/integration/connectors/test_pinecone.py,sha256=acKEu1vnAk0Ht3FhCnGtOEKaj_Yl
21
21
  test/integration/connectors/test_qdrant.py,sha256=Yme3ZZ5zIbaZ-yYLUqN2oy0hsrcAfvlleRLYWMSYeSE,8049
22
22
  test/integration/connectors/test_redis.py,sha256=1aKwOb-K4zCxZwHmgW_WzGJwqLntbWTbpGQ-rtUwN9o,4360
23
23
  test/integration/connectors/test_s3.py,sha256=E1dypeag_E3OIfpQWIz3jb7ctRHRD63UtyTrzyvJzpc,7473
24
- test/integration/connectors/test_sharepoint.py,sha256=8HlcnrP4K8oPUzef6AA11P2cMlxSp7tiddTkT4JOeRU,2378
24
+ test/integration/connectors/test_sharepoint.py,sha256=weGby5YD6se7R7KLEq96hxUZYPzwoqZqXXTPhtQWZsQ,7646
25
25
  test/integration/connectors/test_vectara.py,sha256=4kKOOTGUjeZw2jKRcgVDI7ifbRPRZfjjVO4d_7H5C6I,8710
26
26
  test/integration/connectors/databricks/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
27
27
  test/integration/connectors/databricks/test_volumes_native.py,sha256=KqiapQAV0s_Zv0CO8BwYoiCk30dwrSZzuigUWNRIem0,9559
@@ -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=qWgfAaALtcimLu1dKMS-KpBB0Tnw60hH7XF06t-OzjI,42
110
+ unstructured_ingest/__version__.py,sha256=2QfHN0aecwYlnmO8dtgtrQp_DCM5nNLT2FX_S7HbQPk,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
@@ -443,7 +443,7 @@ unstructured_ingest/v2/processes/connectors/outlook.py,sha256=KgNGM8hImRhy6_Spsw
443
443
  unstructured_ingest/v2/processes/connectors/pinecone.py,sha256=U5gSa8S08JvCwmAhE8aV0yxGTIFnUlKVsQDybE8Fqb8,10746
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
- unstructured_ingest/v2/processes/connectors/sharepoint.py,sha256=f0F7KioXgucVc3tVASTa67ynlTa4s9_FKGPHop6Xm0A,4563
446
+ unstructured_ingest/v2/processes/connectors/sharepoint.py,sha256=2T9Bm1H_ALwHhG_YP7vsuUUW-mUg61zcaae3aa9BnN4,4827
447
447
  unstructured_ingest/v2/processes/connectors/slack.py,sha256=Z73VmQ3oUY09KoLEi5OBdQeDt4ONEY_02SglWQc6HXE,9252
448
448
  unstructured_ingest/v2/processes/connectors/utils.py,sha256=8kd0g7lo9NqnpaIkjeO-Ut6erhwUNH_gS9koevpe3WE,878
449
449
  unstructured_ingest/v2/processes/connectors/vectara.py,sha256=BlI_4nkpNR99aYxDd9eusm5LQsVB9EI0r-5Kc1D7pgQ,12255
@@ -567,9 +567,9 @@ unstructured_ingest/v2/processes/connectors/weaviate/cloud.py,sha256=bXtfEYLquR-
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
569
  unstructured_ingest/v2/processes/connectors/weaviate/weaviate.py,sha256=yJza_jBSEFnzZRq5L6vJ0Mm3uS1uxkOiKIimPpUyQds,12418
570
- unstructured_ingest-0.5.3.dist-info/LICENSE.md,sha256=SxkKP_62uIAKb9mb1eH7FH4Kn2aYT09fgjKpJt5PyTk,11360
571
- unstructured_ingest-0.5.3.dist-info/METADATA,sha256=Ypb6HJHp4T_Y7kfL2hmU03MfYFJYe8LptQZ4JzzRFEY,8316
572
- unstructured_ingest-0.5.3.dist-info/WHEEL,sha256=In9FTNxeP60KnTkGw7wk6mJPYd_dQSjEZmXdBdMCI-8,91
573
- unstructured_ingest-0.5.3.dist-info/entry_points.txt,sha256=gUAAFnjFPnBgThJSEbw0N5ZjxtaKlT1s9e05_arQrNw,70
574
- unstructured_ingest-0.5.3.dist-info/top_level.txt,sha256=DMuDMHZRMdeay8v8Kdi855muIv92F0OkutvBCaBEW6M,25
575
- unstructured_ingest-0.5.3.dist-info/RECORD,,
570
+ unstructured_ingest-0.5.4.dist-info/LICENSE.md,sha256=SxkKP_62uIAKb9mb1eH7FH4Kn2aYT09fgjKpJt5PyTk,11360
571
+ unstructured_ingest-0.5.4.dist-info/METADATA,sha256=KMDH7tStB6vEdpMqI8VQqTyvloKDieXb47rRsiW9OYk,8316
572
+ unstructured_ingest-0.5.4.dist-info/WHEEL,sha256=In9FTNxeP60KnTkGw7wk6mJPYd_dQSjEZmXdBdMCI-8,91
573
+ unstructured_ingest-0.5.4.dist-info/entry_points.txt,sha256=gUAAFnjFPnBgThJSEbw0N5ZjxtaKlT1s9e05_arQrNw,70
574
+ unstructured_ingest-0.5.4.dist-info/top_level.txt,sha256=DMuDMHZRMdeay8v8Kdi855muIv92F0OkutvBCaBEW6M,25
575
+ unstructured_ingest-0.5.4.dist-info/RECORD,,