unstructured-ingest 0.5.20__py3-none-any.whl → 0.5.23__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.
- test/integration/connectors/test_astradb.py +8 -2
- unstructured_ingest/__version__.py +1 -1
- unstructured_ingest/embed/interfaces.py +7 -3
- unstructured_ingest/utils/data_prep.py +17 -5
- unstructured_ingest/utils/table.py +11 -4
- unstructured_ingest/v2/interfaces/__init__.py +8 -1
- unstructured_ingest/v2/interfaces/file_data.py +13 -116
- unstructured_ingest/v2/processes/connectors/delta_table.py +8 -3
- unstructured_ingest/v2/processes/connectors/duckdb/base.py +4 -3
- unstructured_ingest/v2/processes/connectors/duckdb/duckdb.py +5 -2
- unstructured_ingest/v2/processes/connectors/duckdb/motherduck.py +5 -2
- unstructured_ingest/v2/processes/connectors/elasticsearch/elasticsearch.py +7 -1
- unstructured_ingest/v2/processes/connectors/elasticsearch/opensearch.py +7 -1
- unstructured_ingest/v2/processes/connectors/kdbai.py +6 -3
- unstructured_ingest/v2/processes/connectors/lancedb/lancedb.py +10 -2
- unstructured_ingest/v2/processes/connectors/sql/databricks_delta_tables.py +5 -3
- unstructured_ingest/v2/processes/connectors/sql/singlestore.py +5 -1
- unstructured_ingest/v2/processes/connectors/sql/snowflake.py +7 -3
- unstructured_ingest/v2/processes/connectors/sql/sql.py +22 -9
- unstructured_ingest/v2/processes/connectors/sql/sqlite.py +5 -1
- unstructured_ingest/v2/processes/connectors/sql/vastdb.py +5 -7
- unstructured_ingest/v2/types/__init__.py +0 -0
- unstructured_ingest/v2/types/file_data.py +116 -0
- {unstructured_ingest-0.5.20.dist-info → unstructured_ingest-0.5.23.dist-info}/METADATA +168 -17
- {unstructured_ingest-0.5.20.dist-info → unstructured_ingest-0.5.23.dist-info}/RECORD +29 -27
- {unstructured_ingest-0.5.20.dist-info → unstructured_ingest-0.5.23.dist-info}/LICENSE.md +0 -0
- {unstructured_ingest-0.5.20.dist-info → unstructured_ingest-0.5.23.dist-info}/WHEEL +0 -0
- {unstructured_ingest-0.5.20.dist-info → unstructured_ingest-0.5.23.dist-info}/entry_points.txt +0 -0
- {unstructured_ingest-0.5.20.dist-info → unstructured_ingest-0.5.23.dist-info}/top_level.txt +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.2
|
|
2
2
|
Name: unstructured-ingest
|
|
3
|
-
Version: 0.5.
|
|
3
|
+
Version: 0.5.23
|
|
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,197 +22,348 @@ 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:
|
|
26
|
-
Requires-Dist: click
|
|
25
|
+
Requires-Dist: dataclasses_json
|
|
27
26
|
Requires-Dist: opentelemetry-sdk
|
|
27
|
+
Requires-Dist: click
|
|
28
|
+
Requires-Dist: tqdm
|
|
29
|
+
Requires-Dist: python-dateutil
|
|
28
30
|
Requires-Dist: pydantic>=2.7
|
|
31
|
+
Requires-Dist: numpy
|
|
29
32
|
Requires-Dist: pandas
|
|
30
|
-
Requires-Dist: tqdm
|
|
31
|
-
Requires-Dist: dataclasses_json
|
|
32
33
|
Provides-Extra: remote
|
|
33
34
|
Requires-Dist: unstructured-client>=0.30.0; extra == "remote"
|
|
35
|
+
Requires-Dist: numpy; extra == "remote"
|
|
36
|
+
Requires-Dist: pandas; extra == "remote"
|
|
34
37
|
Provides-Extra: csv
|
|
35
38
|
Requires-Dist: unstructured[tsv]; extra == "csv"
|
|
39
|
+
Requires-Dist: numpy; extra == "csv"
|
|
40
|
+
Requires-Dist: pandas; extra == "csv"
|
|
36
41
|
Provides-Extra: doc
|
|
37
42
|
Requires-Dist: unstructured[docx]; extra == "doc"
|
|
43
|
+
Requires-Dist: numpy; extra == "doc"
|
|
44
|
+
Requires-Dist: pandas; extra == "doc"
|
|
38
45
|
Provides-Extra: docx
|
|
39
46
|
Requires-Dist: unstructured[docx]; extra == "docx"
|
|
47
|
+
Requires-Dist: numpy; extra == "docx"
|
|
48
|
+
Requires-Dist: pandas; extra == "docx"
|
|
40
49
|
Provides-Extra: epub
|
|
41
50
|
Requires-Dist: unstructured[epub]; extra == "epub"
|
|
51
|
+
Requires-Dist: numpy; extra == "epub"
|
|
52
|
+
Requires-Dist: pandas; extra == "epub"
|
|
42
53
|
Provides-Extra: md
|
|
43
54
|
Requires-Dist: unstructured[md]; extra == "md"
|
|
55
|
+
Requires-Dist: numpy; extra == "md"
|
|
56
|
+
Requires-Dist: pandas; extra == "md"
|
|
44
57
|
Provides-Extra: msg
|
|
45
58
|
Requires-Dist: unstructured[msg]; extra == "msg"
|
|
59
|
+
Requires-Dist: numpy; extra == "msg"
|
|
60
|
+
Requires-Dist: pandas; extra == "msg"
|
|
46
61
|
Provides-Extra: odt
|
|
47
62
|
Requires-Dist: unstructured[odt]; extra == "odt"
|
|
63
|
+
Requires-Dist: numpy; extra == "odt"
|
|
64
|
+
Requires-Dist: pandas; extra == "odt"
|
|
48
65
|
Provides-Extra: org
|
|
49
66
|
Requires-Dist: unstructured[org]; extra == "org"
|
|
67
|
+
Requires-Dist: numpy; extra == "org"
|
|
68
|
+
Requires-Dist: pandas; extra == "org"
|
|
50
69
|
Provides-Extra: pdf
|
|
51
70
|
Requires-Dist: unstructured[pdf]; extra == "pdf"
|
|
71
|
+
Requires-Dist: numpy; extra == "pdf"
|
|
72
|
+
Requires-Dist: pandas; extra == "pdf"
|
|
52
73
|
Provides-Extra: ppt
|
|
53
74
|
Requires-Dist: unstructured[pptx]; extra == "ppt"
|
|
75
|
+
Requires-Dist: numpy; extra == "ppt"
|
|
76
|
+
Requires-Dist: pandas; extra == "ppt"
|
|
54
77
|
Provides-Extra: pptx
|
|
55
78
|
Requires-Dist: unstructured[pptx]; extra == "pptx"
|
|
79
|
+
Requires-Dist: numpy; extra == "pptx"
|
|
80
|
+
Requires-Dist: pandas; extra == "pptx"
|
|
56
81
|
Provides-Extra: rtf
|
|
57
82
|
Requires-Dist: unstructured[rtf]; extra == "rtf"
|
|
83
|
+
Requires-Dist: numpy; extra == "rtf"
|
|
84
|
+
Requires-Dist: pandas; extra == "rtf"
|
|
58
85
|
Provides-Extra: rst
|
|
59
86
|
Requires-Dist: unstructured[rst]; extra == "rst"
|
|
87
|
+
Requires-Dist: numpy; extra == "rst"
|
|
88
|
+
Requires-Dist: pandas; extra == "rst"
|
|
60
89
|
Provides-Extra: tsv
|
|
61
90
|
Requires-Dist: unstructured[tsv]; extra == "tsv"
|
|
91
|
+
Requires-Dist: numpy; extra == "tsv"
|
|
92
|
+
Requires-Dist: pandas; extra == "tsv"
|
|
62
93
|
Provides-Extra: xlsx
|
|
63
94
|
Requires-Dist: unstructured[xlsx]; extra == "xlsx"
|
|
95
|
+
Requires-Dist: numpy; extra == "xlsx"
|
|
96
|
+
Requires-Dist: pandas; extra == "xlsx"
|
|
64
97
|
Provides-Extra: airtable
|
|
65
98
|
Requires-Dist: pyairtable; extra == "airtable"
|
|
99
|
+
Requires-Dist: numpy; extra == "airtable"
|
|
100
|
+
Requires-Dist: pandas; extra == "airtable"
|
|
66
101
|
Provides-Extra: astradb
|
|
67
102
|
Requires-Dist: astrapy; extra == "astradb"
|
|
103
|
+
Requires-Dist: numpy; extra == "astradb"
|
|
104
|
+
Requires-Dist: pandas; extra == "astradb"
|
|
68
105
|
Provides-Extra: azure
|
|
69
106
|
Requires-Dist: adlfs; extra == "azure"
|
|
70
107
|
Requires-Dist: fsspec; extra == "azure"
|
|
108
|
+
Requires-Dist: numpy; extra == "azure"
|
|
109
|
+
Requires-Dist: pandas; extra == "azure"
|
|
71
110
|
Provides-Extra: azure-ai-search
|
|
72
111
|
Requires-Dist: azure-search-documents; extra == "azure-ai-search"
|
|
112
|
+
Requires-Dist: numpy; extra == "azure-ai-search"
|
|
113
|
+
Requires-Dist: pandas; extra == "azure-ai-search"
|
|
73
114
|
Provides-Extra: biomed
|
|
74
115
|
Requires-Dist: bs4; extra == "biomed"
|
|
75
116
|
Requires-Dist: requests; extra == "biomed"
|
|
117
|
+
Requires-Dist: numpy; extra == "biomed"
|
|
118
|
+
Requires-Dist: pandas; extra == "biomed"
|
|
76
119
|
Provides-Extra: box
|
|
77
120
|
Requires-Dist: boxfs; extra == "box"
|
|
78
121
|
Requires-Dist: fsspec; extra == "box"
|
|
122
|
+
Requires-Dist: numpy; extra == "box"
|
|
123
|
+
Requires-Dist: pandas; extra == "box"
|
|
79
124
|
Provides-Extra: chroma
|
|
80
125
|
Requires-Dist: chromadb; extra == "chroma"
|
|
126
|
+
Requires-Dist: numpy; extra == "chroma"
|
|
127
|
+
Requires-Dist: pandas; extra == "chroma"
|
|
81
128
|
Provides-Extra: clarifai
|
|
82
129
|
Requires-Dist: clarifai; extra == "clarifai"
|
|
130
|
+
Requires-Dist: numpy; extra == "clarifai"
|
|
131
|
+
Requires-Dist: pandas; extra == "clarifai"
|
|
83
132
|
Provides-Extra: confluence
|
|
84
|
-
Requires-Dist: requests; extra == "confluence"
|
|
85
133
|
Requires-Dist: atlassian-python-api; extra == "confluence"
|
|
134
|
+
Requires-Dist: requests; extra == "confluence"
|
|
135
|
+
Requires-Dist: numpy; extra == "confluence"
|
|
136
|
+
Requires-Dist: pandas; extra == "confluence"
|
|
86
137
|
Provides-Extra: couchbase
|
|
87
138
|
Requires-Dist: couchbase; extra == "couchbase"
|
|
139
|
+
Requires-Dist: numpy; extra == "couchbase"
|
|
140
|
+
Requires-Dist: pandas; extra == "couchbase"
|
|
88
141
|
Provides-Extra: delta-table
|
|
89
142
|
Requires-Dist: boto3; extra == "delta-table"
|
|
90
143
|
Requires-Dist: deltalake; extra == "delta-table"
|
|
144
|
+
Requires-Dist: numpy; extra == "delta-table"
|
|
145
|
+
Requires-Dist: pandas; extra == "delta-table"
|
|
91
146
|
Provides-Extra: discord
|
|
92
147
|
Requires-Dist: discord.py; extra == "discord"
|
|
148
|
+
Requires-Dist: numpy; extra == "discord"
|
|
149
|
+
Requires-Dist: pandas; extra == "discord"
|
|
93
150
|
Provides-Extra: dropbox
|
|
94
|
-
Requires-Dist: fsspec; extra == "dropbox"
|
|
95
151
|
Requires-Dist: dropboxdrivefs; extra == "dropbox"
|
|
152
|
+
Requires-Dist: fsspec; extra == "dropbox"
|
|
153
|
+
Requires-Dist: numpy; extra == "dropbox"
|
|
154
|
+
Requires-Dist: pandas; extra == "dropbox"
|
|
96
155
|
Provides-Extra: duckdb
|
|
97
156
|
Requires-Dist: duckdb; extra == "duckdb"
|
|
157
|
+
Requires-Dist: numpy; extra == "duckdb"
|
|
158
|
+
Requires-Dist: pandas; extra == "duckdb"
|
|
98
159
|
Provides-Extra: elasticsearch
|
|
99
160
|
Requires-Dist: elasticsearch[async]; extra == "elasticsearch"
|
|
161
|
+
Requires-Dist: numpy; extra == "elasticsearch"
|
|
162
|
+
Requires-Dist: pandas; extra == "elasticsearch"
|
|
100
163
|
Provides-Extra: gcs
|
|
101
|
-
Requires-Dist: bs4; extra == "gcs"
|
|
102
164
|
Requires-Dist: gcsfs; extra == "gcs"
|
|
103
165
|
Requires-Dist: fsspec; extra == "gcs"
|
|
166
|
+
Requires-Dist: bs4; extra == "gcs"
|
|
167
|
+
Requires-Dist: numpy; extra == "gcs"
|
|
168
|
+
Requires-Dist: pandas; extra == "gcs"
|
|
104
169
|
Provides-Extra: github
|
|
105
170
|
Requires-Dist: pygithub>1.58.0; extra == "github"
|
|
106
171
|
Requires-Dist: requests; extra == "github"
|
|
172
|
+
Requires-Dist: numpy; extra == "github"
|
|
173
|
+
Requires-Dist: pandas; extra == "github"
|
|
107
174
|
Provides-Extra: gitlab
|
|
108
175
|
Requires-Dist: python-gitlab; extra == "gitlab"
|
|
176
|
+
Requires-Dist: numpy; extra == "gitlab"
|
|
177
|
+
Requires-Dist: pandas; extra == "gitlab"
|
|
109
178
|
Provides-Extra: google-drive
|
|
110
179
|
Requires-Dist: google-api-python-client; extra == "google-drive"
|
|
180
|
+
Requires-Dist: numpy; extra == "google-drive"
|
|
181
|
+
Requires-Dist: pandas; extra == "google-drive"
|
|
111
182
|
Provides-Extra: hubspot
|
|
112
|
-
Requires-Dist: hubspot-api-client; extra == "hubspot"
|
|
113
183
|
Requires-Dist: urllib3; extra == "hubspot"
|
|
184
|
+
Requires-Dist: hubspot-api-client; extra == "hubspot"
|
|
185
|
+
Requires-Dist: numpy; extra == "hubspot"
|
|
186
|
+
Requires-Dist: pandas; extra == "hubspot"
|
|
114
187
|
Provides-Extra: ibm-watsonx-s3
|
|
115
|
-
Requires-Dist: httpx; extra == "ibm-watsonx-s3"
|
|
116
188
|
Requires-Dist: pyarrow; extra == "ibm-watsonx-s3"
|
|
117
189
|
Requires-Dist: tenacity; extra == "ibm-watsonx-s3"
|
|
118
190
|
Requires-Dist: pyiceberg; extra == "ibm-watsonx-s3"
|
|
191
|
+
Requires-Dist: httpx; extra == "ibm-watsonx-s3"
|
|
192
|
+
Requires-Dist: numpy; extra == "ibm-watsonx-s3"
|
|
193
|
+
Requires-Dist: pandas; extra == "ibm-watsonx-s3"
|
|
119
194
|
Provides-Extra: jira
|
|
120
195
|
Requires-Dist: atlassian-python-api; extra == "jira"
|
|
196
|
+
Requires-Dist: numpy; extra == "jira"
|
|
197
|
+
Requires-Dist: pandas; extra == "jira"
|
|
121
198
|
Provides-Extra: kafka
|
|
122
199
|
Requires-Dist: confluent-kafka; extra == "kafka"
|
|
200
|
+
Requires-Dist: numpy; extra == "kafka"
|
|
201
|
+
Requires-Dist: pandas; extra == "kafka"
|
|
123
202
|
Provides-Extra: kdbai
|
|
124
203
|
Requires-Dist: kdbai-client>=1.4.0; extra == "kdbai"
|
|
204
|
+
Requires-Dist: numpy; extra == "kdbai"
|
|
205
|
+
Requires-Dist: pandas; extra == "kdbai"
|
|
125
206
|
Provides-Extra: lancedb
|
|
126
207
|
Requires-Dist: lancedb; extra == "lancedb"
|
|
208
|
+
Requires-Dist: numpy; extra == "lancedb"
|
|
209
|
+
Requires-Dist: pandas; extra == "lancedb"
|
|
127
210
|
Provides-Extra: milvus
|
|
128
211
|
Requires-Dist: pymilvus; extra == "milvus"
|
|
212
|
+
Requires-Dist: numpy; extra == "milvus"
|
|
213
|
+
Requires-Dist: pandas; extra == "milvus"
|
|
129
214
|
Provides-Extra: mongodb
|
|
130
215
|
Requires-Dist: pymongo; extra == "mongodb"
|
|
216
|
+
Requires-Dist: numpy; extra == "mongodb"
|
|
217
|
+
Requires-Dist: pandas; extra == "mongodb"
|
|
131
218
|
Provides-Extra: neo4j
|
|
219
|
+
Requires-Dist: neo4j-rust-ext; extra == "neo4j"
|
|
132
220
|
Requires-Dist: networkx; extra == "neo4j"
|
|
133
221
|
Requires-Dist: cymple; extra == "neo4j"
|
|
134
|
-
Requires-Dist:
|
|
222
|
+
Requires-Dist: numpy; extra == "neo4j"
|
|
223
|
+
Requires-Dist: pandas; extra == "neo4j"
|
|
135
224
|
Provides-Extra: notion
|
|
225
|
+
Requires-Dist: backoff; extra == "notion"
|
|
136
226
|
Requires-Dist: htmlBuilder; extra == "notion"
|
|
137
227
|
Requires-Dist: notion-client; extra == "notion"
|
|
138
228
|
Requires-Dist: httpx; extra == "notion"
|
|
139
|
-
Requires-Dist:
|
|
229
|
+
Requires-Dist: numpy; extra == "notion"
|
|
230
|
+
Requires-Dist: pandas; extra == "notion"
|
|
140
231
|
Provides-Extra: onedrive
|
|
141
|
-
Requires-Dist: bs4; extra == "onedrive"
|
|
142
232
|
Requires-Dist: Office365-REST-Python-Client; extra == "onedrive"
|
|
143
233
|
Requires-Dist: msal; extra == "onedrive"
|
|
234
|
+
Requires-Dist: bs4; extra == "onedrive"
|
|
235
|
+
Requires-Dist: numpy; extra == "onedrive"
|
|
236
|
+
Requires-Dist: pandas; extra == "onedrive"
|
|
144
237
|
Provides-Extra: opensearch
|
|
145
238
|
Requires-Dist: opensearch-py; extra == "opensearch"
|
|
239
|
+
Requires-Dist: numpy; extra == "opensearch"
|
|
240
|
+
Requires-Dist: pandas; extra == "opensearch"
|
|
146
241
|
Provides-Extra: outlook
|
|
147
242
|
Requires-Dist: Office365-REST-Python-Client; extra == "outlook"
|
|
148
243
|
Requires-Dist: msal; extra == "outlook"
|
|
244
|
+
Requires-Dist: numpy; extra == "outlook"
|
|
245
|
+
Requires-Dist: pandas; extra == "outlook"
|
|
149
246
|
Provides-Extra: pinecone
|
|
150
247
|
Requires-Dist: pinecone-client>=3.7.1; extra == "pinecone"
|
|
248
|
+
Requires-Dist: numpy; extra == "pinecone"
|
|
249
|
+
Requires-Dist: pandas; extra == "pinecone"
|
|
151
250
|
Provides-Extra: postgres
|
|
152
251
|
Requires-Dist: psycopg2-binary; extra == "postgres"
|
|
252
|
+
Requires-Dist: numpy; extra == "postgres"
|
|
253
|
+
Requires-Dist: pandas; extra == "postgres"
|
|
153
254
|
Provides-Extra: qdrant
|
|
154
255
|
Requires-Dist: qdrant-client; extra == "qdrant"
|
|
256
|
+
Requires-Dist: numpy; extra == "qdrant"
|
|
257
|
+
Requires-Dist: pandas; extra == "qdrant"
|
|
155
258
|
Provides-Extra: reddit
|
|
156
259
|
Requires-Dist: praw; extra == "reddit"
|
|
260
|
+
Requires-Dist: numpy; extra == "reddit"
|
|
261
|
+
Requires-Dist: pandas; extra == "reddit"
|
|
157
262
|
Provides-Extra: redis
|
|
158
263
|
Requires-Dist: redis; extra == "redis"
|
|
264
|
+
Requires-Dist: numpy; extra == "redis"
|
|
265
|
+
Requires-Dist: pandas; extra == "redis"
|
|
159
266
|
Provides-Extra: s3
|
|
160
267
|
Requires-Dist: s3fs; extra == "s3"
|
|
161
268
|
Requires-Dist: fsspec; extra == "s3"
|
|
269
|
+
Requires-Dist: numpy; extra == "s3"
|
|
270
|
+
Requires-Dist: pandas; extra == "s3"
|
|
162
271
|
Provides-Extra: sharepoint
|
|
163
272
|
Requires-Dist: Office365-REST-Python-Client; extra == "sharepoint"
|
|
164
273
|
Requires-Dist: msal; extra == "sharepoint"
|
|
274
|
+
Requires-Dist: numpy; extra == "sharepoint"
|
|
275
|
+
Requires-Dist: pandas; extra == "sharepoint"
|
|
165
276
|
Provides-Extra: salesforce
|
|
166
277
|
Requires-Dist: simple-salesforce; extra == "salesforce"
|
|
278
|
+
Requires-Dist: numpy; extra == "salesforce"
|
|
279
|
+
Requires-Dist: pandas; extra == "salesforce"
|
|
167
280
|
Provides-Extra: sftp
|
|
168
|
-
Requires-Dist: paramiko; extra == "sftp"
|
|
169
281
|
Requires-Dist: fsspec; extra == "sftp"
|
|
282
|
+
Requires-Dist: paramiko; extra == "sftp"
|
|
283
|
+
Requires-Dist: numpy; extra == "sftp"
|
|
284
|
+
Requires-Dist: pandas; extra == "sftp"
|
|
170
285
|
Provides-Extra: slack
|
|
171
286
|
Requires-Dist: slack_sdk[optional]; extra == "slack"
|
|
287
|
+
Requires-Dist: numpy; extra == "slack"
|
|
288
|
+
Requires-Dist: pandas; extra == "slack"
|
|
172
289
|
Provides-Extra: snowflake
|
|
173
290
|
Requires-Dist: snowflake-connector-python; extra == "snowflake"
|
|
174
291
|
Requires-Dist: psycopg2-binary; extra == "snowflake"
|
|
292
|
+
Requires-Dist: numpy; extra == "snowflake"
|
|
293
|
+
Requires-Dist: pandas; extra == "snowflake"
|
|
175
294
|
Provides-Extra: wikipedia
|
|
176
295
|
Requires-Dist: wikipedia; extra == "wikipedia"
|
|
296
|
+
Requires-Dist: numpy; extra == "wikipedia"
|
|
297
|
+
Requires-Dist: pandas; extra == "wikipedia"
|
|
177
298
|
Provides-Extra: weaviate
|
|
178
299
|
Requires-Dist: weaviate-client; extra == "weaviate"
|
|
300
|
+
Requires-Dist: numpy; extra == "weaviate"
|
|
301
|
+
Requires-Dist: pandas; extra == "weaviate"
|
|
179
302
|
Provides-Extra: databricks-volumes
|
|
180
303
|
Requires-Dist: databricks-sdk; extra == "databricks-volumes"
|
|
304
|
+
Requires-Dist: numpy; extra == "databricks-volumes"
|
|
305
|
+
Requires-Dist: pandas; extra == "databricks-volumes"
|
|
181
306
|
Provides-Extra: databricks-delta-tables
|
|
182
307
|
Requires-Dist: databricks-sql-connector; extra == "databricks-delta-tables"
|
|
308
|
+
Requires-Dist: numpy; extra == "databricks-delta-tables"
|
|
309
|
+
Requires-Dist: pandas; extra == "databricks-delta-tables"
|
|
183
310
|
Provides-Extra: singlestore
|
|
184
311
|
Requires-Dist: singlestoredb; extra == "singlestore"
|
|
312
|
+
Requires-Dist: numpy; extra == "singlestore"
|
|
313
|
+
Requires-Dist: pandas; extra == "singlestore"
|
|
185
314
|
Provides-Extra: vectara
|
|
186
|
-
Requires-Dist: httpx; extra == "vectara"
|
|
187
315
|
Requires-Dist: aiofiles; extra == "vectara"
|
|
188
316
|
Requires-Dist: requests; extra == "vectara"
|
|
317
|
+
Requires-Dist: httpx; extra == "vectara"
|
|
318
|
+
Requires-Dist: numpy; extra == "vectara"
|
|
319
|
+
Requires-Dist: pandas; extra == "vectara"
|
|
189
320
|
Provides-Extra: vastdb
|
|
190
|
-
Requires-Dist: pyarrow; extra == "vastdb"
|
|
191
321
|
Requires-Dist: vastdb; extra == "vastdb"
|
|
322
|
+
Requires-Dist: pyarrow; extra == "vastdb"
|
|
192
323
|
Requires-Dist: ibis; extra == "vastdb"
|
|
324
|
+
Requires-Dist: numpy; extra == "vastdb"
|
|
325
|
+
Requires-Dist: pandas; extra == "vastdb"
|
|
193
326
|
Provides-Extra: zendesk
|
|
194
327
|
Requires-Dist: bs4; extra == "zendesk"
|
|
195
328
|
Requires-Dist: aiofiles; extra == "zendesk"
|
|
196
329
|
Requires-Dist: httpx; extra == "zendesk"
|
|
330
|
+
Requires-Dist: numpy; extra == "zendesk"
|
|
331
|
+
Requires-Dist: pandas; extra == "zendesk"
|
|
197
332
|
Provides-Extra: embed-huggingface
|
|
198
333
|
Requires-Dist: sentence-transformers; extra == "embed-huggingface"
|
|
334
|
+
Requires-Dist: numpy; extra == "embed-huggingface"
|
|
335
|
+
Requires-Dist: pandas; extra == "embed-huggingface"
|
|
199
336
|
Provides-Extra: embed-octoai
|
|
200
337
|
Requires-Dist: openai; extra == "embed-octoai"
|
|
201
338
|
Requires-Dist: tiktoken; extra == "embed-octoai"
|
|
339
|
+
Requires-Dist: numpy; extra == "embed-octoai"
|
|
340
|
+
Requires-Dist: pandas; extra == "embed-octoai"
|
|
202
341
|
Provides-Extra: embed-vertexai
|
|
203
342
|
Requires-Dist: vertexai; extra == "embed-vertexai"
|
|
343
|
+
Requires-Dist: numpy; extra == "embed-vertexai"
|
|
344
|
+
Requires-Dist: pandas; extra == "embed-vertexai"
|
|
204
345
|
Provides-Extra: embed-voyageai
|
|
205
346
|
Requires-Dist: voyageai; extra == "embed-voyageai"
|
|
347
|
+
Requires-Dist: numpy; extra == "embed-voyageai"
|
|
348
|
+
Requires-Dist: pandas; extra == "embed-voyageai"
|
|
206
349
|
Provides-Extra: embed-mixedbreadai
|
|
207
350
|
Requires-Dist: mixedbread-ai; extra == "embed-mixedbreadai"
|
|
351
|
+
Requires-Dist: numpy; extra == "embed-mixedbreadai"
|
|
352
|
+
Requires-Dist: pandas; extra == "embed-mixedbreadai"
|
|
208
353
|
Provides-Extra: openai
|
|
209
354
|
Requires-Dist: openai; extra == "openai"
|
|
210
355
|
Requires-Dist: tiktoken; extra == "openai"
|
|
356
|
+
Requires-Dist: numpy; extra == "openai"
|
|
357
|
+
Requires-Dist: pandas; extra == "openai"
|
|
211
358
|
Provides-Extra: bedrock
|
|
212
|
-
Requires-Dist: aioboto3; extra == "bedrock"
|
|
213
359
|
Requires-Dist: boto3; extra == "bedrock"
|
|
360
|
+
Requires-Dist: aioboto3; extra == "bedrock"
|
|
361
|
+
Requires-Dist: numpy; extra == "bedrock"
|
|
362
|
+
Requires-Dist: pandas; extra == "bedrock"
|
|
214
363
|
Provides-Extra: togetherai
|
|
215
364
|
Requires-Dist: together; extra == "togetherai"
|
|
365
|
+
Requires-Dist: numpy; extra == "togetherai"
|
|
366
|
+
Requires-Dist: pandas; extra == "togetherai"
|
|
216
367
|
Dynamic: author
|
|
217
368
|
Dynamic: author-email
|
|
218
369
|
Dynamic: classifier
|
|
@@ -5,7 +5,7 @@ test/integration/chunkers/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJW
|
|
|
5
5
|
test/integration/chunkers/test_chunkers.py,sha256=USkltQN_mVVCxI0FkJsrS1gnLXlVr-fvsc0tPaK2sWI,1062
|
|
6
6
|
test/integration/connectors/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
7
7
|
test/integration/connectors/conftest.py,sha256=vYs4WDlCuieAwwErkJxCk4a1lGvr3qpeiAm-YaDznSo,1018
|
|
8
|
-
test/integration/connectors/test_astradb.py,sha256=
|
|
8
|
+
test/integration/connectors/test_astradb.py,sha256=hQyxvnbvN1UN-oDOBkXyniAs6GLb0rstQOoLT4LcBNI,9921
|
|
9
9
|
test/integration/connectors/test_azure_ai_search.py,sha256=MxFwk84vI_HT4taQTGrNpJ8ewGPqHSGrx626j8hC_Pw,9695
|
|
10
10
|
test/integration/connectors/test_chroma.py,sha256=1uGHbZXkXKGb8wl3p7c9G-L1MViUe283Hw5u3dg8OgI,4532
|
|
11
11
|
test/integration/connectors/test_confluence.py,sha256=W93znOusdvFXta8q0dqQ1rKhLafRVIqrfaFqk2FY-fo,3590
|
|
@@ -113,7 +113,7 @@ test/unit/v2/partitioners/test_partitioner.py,sha256=iIYg7IpftV3LusoO4H8tr1IHY1U
|
|
|
113
113
|
test/unit/v2/utils/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
114
114
|
test/unit/v2/utils/data_generator.py,sha256=UoYVNjG4S4wlaA9gceQ82HIpF9_6I1UTHD1_GrQBHp0,973
|
|
115
115
|
unstructured_ingest/__init__.py,sha256=U4S_2y3zgLZVfMenHRaJFBW8yqh2mUBuI291LGQVOJ8,35
|
|
116
|
-
unstructured_ingest/__version__.py,sha256=
|
|
116
|
+
unstructured_ingest/__version__.py,sha256=zwHqD3LgpFA-cY-rrS_2n5Kv-NY8b8mUJsGrAiSe2kA,43
|
|
117
117
|
unstructured_ingest/error.py,sha256=qDncnJgbf5ils956RcO2CGlAKYDT5OaEM9Clv1JVTNc,1448
|
|
118
118
|
unstructured_ingest/interfaces.py,sha256=7DOnDpGvUNlCoFR7UPRGmOarqH5sFtuUOO5vf8X3oTM,31489
|
|
119
119
|
unstructured_ingest/logger.py,sha256=S5nSqGcABoQyeicgRnBQFjDScCaTvFVivOCvbo-laL0,4479
|
|
@@ -284,7 +284,7 @@ unstructured_ingest/embed/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJW
|
|
|
284
284
|
unstructured_ingest/embed/azure_openai.py,sha256=_-I-nwd-wdCiKkSdYBL4UKrTZ2UPWsM_0T69fcObs_I,1707
|
|
285
285
|
unstructured_ingest/embed/bedrock.py,sha256=tZumLLXafSr1zIFVjckapRoiiY-7u65GPuWmwsdhY0I,7726
|
|
286
286
|
unstructured_ingest/embed/huggingface.py,sha256=-ZD17O_H_UnK80fqig6y6wNKJckjx0HuAkY5vgPvk8M,2259
|
|
287
|
-
unstructured_ingest/embed/interfaces.py,sha256=
|
|
287
|
+
unstructured_ingest/embed/interfaces.py,sha256=SdB3t8eMPB8CbXzOYBpgwjzTvyb4T19L61Sr6Jy3_rw,5099
|
|
288
288
|
unstructured_ingest/embed/mixedbreadai.py,sha256=-Y0J27G9CL1t3ZTIeNjTjRviErSMAzJRf2zgDgMHUmg,4499
|
|
289
289
|
unstructured_ingest/embed/octoai.py,sha256=hNLEskDEP-2qWExUgVz2Eyw3KTIFwdUE9elbJ5qp4Ao,3855
|
|
290
290
|
unstructured_ingest/embed/openai.py,sha256=EindGUouvP8wolOBNbWQhAkaI6WGyPN4Hh2xyKuR6L8,3372
|
|
@@ -372,13 +372,13 @@ unstructured_ingest/runner/writers/fsspec/s3.py,sha256=kHJq2O3864QBd_tL2SKb0mdyw
|
|
|
372
372
|
unstructured_ingest/utils/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
373
373
|
unstructured_ingest/utils/chunking.py,sha256=9b3sXMA6L8RW5xAkKQbwdtVudGLAcj_sgT6Grh5tyYM,1870
|
|
374
374
|
unstructured_ingest/utils/compression.py,sha256=NNiY-2S2Gf3at7zC1PYxMijaEza9vVSzRn5mdFf6mHo,4434
|
|
375
|
-
unstructured_ingest/utils/data_prep.py,sha256
|
|
375
|
+
unstructured_ingest/utils/data_prep.py,sha256=-hhGbWm1Sev57t9z20JJLW0vS6kdhArCbb_xmIlKGaY,7826
|
|
376
376
|
unstructured_ingest/utils/dep_check.py,sha256=SXXcUna2H0RtxA6j1S2NGkvQa9JP2DujWhmyBa7776Y,2400
|
|
377
377
|
unstructured_ingest/utils/google_filetype.py,sha256=YVspEkiiBrRUSGVeVbsavvLvTmizdy2e6TsjigXTSRU,468
|
|
378
378
|
unstructured_ingest/utils/html.py,sha256=DGRDMqGbwH8RiF94Qh6NiqVkbbjZfe1h26dIehC-X7M,6340
|
|
379
379
|
unstructured_ingest/utils/ndjson.py,sha256=nz8VUOPEgAFdhaDOpuveknvCU4x82fVwqE01qAbElH0,1201
|
|
380
380
|
unstructured_ingest/utils/string_and_date_utils.py,sha256=54tzuqmhPN0uWnPLrzAWAsDGU9s6mQE_KSVywMDwTBk,2522
|
|
381
|
-
unstructured_ingest/utils/table.py,sha256=
|
|
381
|
+
unstructured_ingest/utils/table.py,sha256=WZechczgVFvlodUWFcsnCGvBNh1xRm6hr0VbJTPxKAc,3669
|
|
382
382
|
unstructured_ingest/v2/__init__.py,sha256=U4S_2y3zgLZVfMenHRaJFBW8yqh2mUBuI291LGQVOJ8,35
|
|
383
383
|
unstructured_ingest/v2/constants.py,sha256=pDspTYz-nEojHBqrZNfssGEiujmVa02pIWL63PQP9sU,103
|
|
384
384
|
unstructured_ingest/v2/errors.py,sha256=9RuRCi7lbDxCguDz07y5RiHoQiFIOWwOD7xqzJ2B3Yw,436
|
|
@@ -398,10 +398,10 @@ unstructured_ingest/v2/cli/base/src.py,sha256=cpQ43qQju4e5s_YSaPxUtA70BaisRkTBdj
|
|
|
398
398
|
unstructured_ingest/v2/cli/utils/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
399
399
|
unstructured_ingest/v2/cli/utils/click.py,sha256=1_eJgrwS2DFBl1jZPLsj1vgVgR7agFBIEBe4A_n7mH4,7827
|
|
400
400
|
unstructured_ingest/v2/cli/utils/model_conversion.py,sha256=7eEIkk1KU51-ZNiIfI1KRxlwITNW1xl1YxMAG8BcTk0,7604
|
|
401
|
-
unstructured_ingest/v2/interfaces/__init__.py,sha256=
|
|
401
|
+
unstructured_ingest/v2/interfaces/__init__.py,sha256=Jn5qtWOnmBZzsb2PoQYN3Xj5xHa9thSVc0BEoIN0Pw0,1059
|
|
402
402
|
unstructured_ingest/v2/interfaces/connector.py,sha256=qUFFJ3qgDMenTCZMtVRjq1DIwsVak6pxNjQOH2eVkMw,1623
|
|
403
403
|
unstructured_ingest/v2/interfaces/downloader.py,sha256=Qi_wISgUACZKEPu5p1kUaG3uiCXcr3zWg9z9uRDwoOk,2927
|
|
404
|
-
unstructured_ingest/v2/interfaces/file_data.py,sha256=
|
|
404
|
+
unstructured_ingest/v2/interfaces/file_data.py,sha256=DQYzXr8yjlm6VkGuwQLGJ1sia4Gr0d__POAFLrow1PE,525
|
|
405
405
|
unstructured_ingest/v2/interfaces/indexer.py,sha256=i0oftyifXefxfKa4a3sCfSwkzWGSPE6EvC9sg6fwZgk,833
|
|
406
406
|
unstructured_ingest/v2/interfaces/process.py,sha256=S3A_9gkwwGC-iQxvnpj3Er6IJAjAT5npzpSgxuFAzUM,449
|
|
407
407
|
unstructured_ingest/v2/interfaces/processor.py,sha256=VX7JqXlbG1plxMK8THWhWINPbTICaaUEk4XUXhnOixY,3303
|
|
@@ -435,12 +435,12 @@ unstructured_ingest/v2/processes/connectors/azure_ai_search.py,sha256=ngPDpU0oZ6
|
|
|
435
435
|
unstructured_ingest/v2/processes/connectors/chroma.py,sha256=VHCnM56qNXuHzovJihrNfJnZbWLJShOe8j12PJFrbL0,7219
|
|
436
436
|
unstructured_ingest/v2/processes/connectors/confluence.py,sha256=gSs4-AxL0gfeWdJfP7JfCrQSQNLoJRkvHquKK9RJvpQ,12043
|
|
437
437
|
unstructured_ingest/v2/processes/connectors/couchbase.py,sha256=i7vuNKsUkN93JRVmg4--MO0ZgbjvhIqt46oYqk9zFSQ,12250
|
|
438
|
-
unstructured_ingest/v2/processes/connectors/delta_table.py,sha256=
|
|
438
|
+
unstructured_ingest/v2/processes/connectors/delta_table.py,sha256=Jx2EUqchJDqfPsyw4Ks-HaLSq2rIwXc1l1YFqjh_BbM,7240
|
|
439
439
|
unstructured_ingest/v2/processes/connectors/discord.py,sha256=-e4-cBK4TnHkknK1qIb86AIVMy81lBgC288_iLpTzM8,5246
|
|
440
440
|
unstructured_ingest/v2/processes/connectors/gitlab.py,sha256=ufE65Z8q_tC4oppGg5BsGXwSaL7RbEXcaagJQYsylNo,9984
|
|
441
441
|
unstructured_ingest/v2/processes/connectors/google_drive.py,sha256=QzcHNelUbnubsDtanFIgDCRzmYTuP-GjJ_g9y8fButE,19623
|
|
442
442
|
unstructured_ingest/v2/processes/connectors/jira.py,sha256=-f_vIWNw6Xr8rMNdAcfCC2cmhB-QndnZk5XymHo60FU,17094
|
|
443
|
-
unstructured_ingest/v2/processes/connectors/kdbai.py,sha256=
|
|
443
|
+
unstructured_ingest/v2/processes/connectors/kdbai.py,sha256=1dXfNb3qaV669-_BjCQdznmfuWLPGjmdkv2ybmkAHjQ,5099
|
|
444
444
|
unstructured_ingest/v2/processes/connectors/local.py,sha256=FWPRjjUsnQjyZMChuZGuMU04AB5X0sFEOcAXhx1r9sk,7381
|
|
445
445
|
unstructured_ingest/v2/processes/connectors/milvus.py,sha256=wmcu9NVy3gYlQGT25inN5w_QrhFoL8-hRq0pJFSNw8g,8866
|
|
446
446
|
unstructured_ingest/v2/processes/connectors/mongodb.py,sha256=cL0QUQZF_s2brh3nNNeAywXVpaIiND4b5JTAFlYjLjw,14273
|
|
@@ -464,12 +464,12 @@ unstructured_ingest/v2/processes/connectors/databricks/volumes_gcp.py,sha256=Uss
|
|
|
464
464
|
unstructured_ingest/v2/processes/connectors/databricks/volumes_native.py,sha256=g1qYnIrML4TjN7rmC0MGrD5JzAprb6SymBHlEdOumz0,3113
|
|
465
465
|
unstructured_ingest/v2/processes/connectors/databricks/volumes_table.py,sha256=FZhjrMYBr_je6mWYp7MUUvyKR9YwGD2HiNljeT7U5ws,5044
|
|
466
466
|
unstructured_ingest/v2/processes/connectors/duckdb/__init__.py,sha256=5sVvJCWhU-YkjHIwk4W6BZCanFYK5W4xTpWtQ8xzeB4,561
|
|
467
|
-
unstructured_ingest/v2/processes/connectors/duckdb/base.py,sha256=
|
|
468
|
-
unstructured_ingest/v2/processes/connectors/duckdb/duckdb.py,sha256=
|
|
469
|
-
unstructured_ingest/v2/processes/connectors/duckdb/motherduck.py,sha256=
|
|
467
|
+
unstructured_ingest/v2/processes/connectors/duckdb/base.py,sha256=o3J81DnSwt3lmAh19jXVPAYRZLJ3VyGhaEVO2SIjksQ,2926
|
|
468
|
+
unstructured_ingest/v2/processes/connectors/duckdb/duckdb.py,sha256=NIo2CCiPiuTFotNC891Mbelzg01knItryYGUtOM96xg,4393
|
|
469
|
+
unstructured_ingest/v2/processes/connectors/duckdb/motherduck.py,sha256=RW-Cw94Hs3ZsN8Kb4ciSh_N-Qkp0cqkw_xkJbt8CDNU,4656
|
|
470
470
|
unstructured_ingest/v2/processes/connectors/elasticsearch/__init__.py,sha256=Zzc0JNPP-eFqpwWw1Gp-XC8H-s__IgkYKzoagECycZY,829
|
|
471
|
-
unstructured_ingest/v2/processes/connectors/elasticsearch/elasticsearch.py,sha256=
|
|
472
|
-
unstructured_ingest/v2/processes/connectors/elasticsearch/opensearch.py,sha256=
|
|
471
|
+
unstructured_ingest/v2/processes/connectors/elasticsearch/elasticsearch.py,sha256=KmlQCA7LXppxhL9e27LBBqNT999nUcc39qe2IkZsUJ8,18988
|
|
472
|
+
unstructured_ingest/v2/processes/connectors/elasticsearch/opensearch.py,sha256=tzOV0eNMyVHMXE5nedp6u0yyWC0Gn_blklg2ZdoOa4c,6956
|
|
473
473
|
unstructured_ingest/v2/processes/connectors/fsspec/__init__.py,sha256=TtdeImM7Ypl_n6sl7I1JqX6bGSG0t_FqvCqE3Cy24og,1846
|
|
474
474
|
unstructured_ingest/v2/processes/connectors/fsspec/azure.py,sha256=kw0UfGI2fx3oQ8jVpzF45pH8Qg_QP_que5C_VXgnktc,7156
|
|
475
475
|
unstructured_ingest/v2/processes/connectors/fsspec/box.py,sha256=aJCtCHRBAauLwdWEQe704Cm4UHv-ukTXV2bT3SBENVk,5881
|
|
@@ -490,7 +490,7 @@ unstructured_ingest/v2/processes/connectors/lancedb/aws.py,sha256=eeXWsh8UeVm1Ur
|
|
|
490
490
|
unstructured_ingest/v2/processes/connectors/lancedb/azure.py,sha256=Ms5vQVRIpTF1Q2qBl_bET9wbgaf4diPaH-iR8kJlr4E,1461
|
|
491
491
|
unstructured_ingest/v2/processes/connectors/lancedb/cloud.py,sha256=BFy0gW2OZ_qaZJM97m-tNsFaJPi9zOKrrd2y4thcNP0,1341
|
|
492
492
|
unstructured_ingest/v2/processes/connectors/lancedb/gcp.py,sha256=p5BPaFtS3y3Yh8PIr3tUqsAXrUYu4QYYAWQNh5W2ucE,1361
|
|
493
|
-
unstructured_ingest/v2/processes/connectors/lancedb/lancedb.py,sha256=
|
|
493
|
+
unstructured_ingest/v2/processes/connectors/lancedb/lancedb.py,sha256=Y4waCOrtlz5Eyf3Me6rInzt_Ory0woseLe_hfSD1nDM,5926
|
|
494
494
|
unstructured_ingest/v2/processes/connectors/lancedb/local.py,sha256=_7-6iO6B60gAWwJUUrmlsRzYMFIBeZgu_QT3mhw5L0I,1272
|
|
495
495
|
unstructured_ingest/v2/processes/connectors/notion/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
496
496
|
unstructured_ingest/v2/processes/connectors/notion/client.py,sha256=8_K6x1Z4bkvSer1NicQeqpX8Y275OUS65kfqTWRU09g,13120
|
|
@@ -564,13 +564,13 @@ unstructured_ingest/v2/processes/connectors/qdrant/local.py,sha256=cGEyv3Oy6y4BQ
|
|
|
564
564
|
unstructured_ingest/v2/processes/connectors/qdrant/qdrant.py,sha256=BHI7HYSdbS05j2vrjyDvLzVG1WfsM8osKeq-lttlybQ,5437
|
|
565
565
|
unstructured_ingest/v2/processes/connectors/qdrant/server.py,sha256=odvCZWZp8DmRxLXMR7tHhW-c7UQbix1_zpFdfXfCvKI,1613
|
|
566
566
|
unstructured_ingest/v2/processes/connectors/sql/__init__.py,sha256=NSEZwJDHh_9kFc31LnG14iRtYF3meK2UfUlQfYnwYEQ,2059
|
|
567
|
-
unstructured_ingest/v2/processes/connectors/sql/databricks_delta_tables.py,sha256=
|
|
567
|
+
unstructured_ingest/v2/processes/connectors/sql/databricks_delta_tables.py,sha256=Ys-pRLiYtdvNRdDnWYwhMqteLQPekRFHrqsrr9jQVpo,9049
|
|
568
568
|
unstructured_ingest/v2/processes/connectors/sql/postgres.py,sha256=BATfX1PQGT2kl8jAbdNKXTojYKJxh3pJV9-h3OBnHGo,5124
|
|
569
|
-
unstructured_ingest/v2/processes/connectors/sql/singlestore.py,sha256=
|
|
570
|
-
unstructured_ingest/v2/processes/connectors/sql/snowflake.py,sha256=
|
|
571
|
-
unstructured_ingest/v2/processes/connectors/sql/sql.py,sha256=
|
|
572
|
-
unstructured_ingest/v2/processes/connectors/sql/sqlite.py,sha256=
|
|
573
|
-
unstructured_ingest/v2/processes/connectors/sql/vastdb.py,sha256=
|
|
569
|
+
unstructured_ingest/v2/processes/connectors/sql/singlestore.py,sha256=am2d87kDkpTTB0VbPSX3ce9o6oM9KUQu5y9T_p1kgJw,5711
|
|
570
|
+
unstructured_ingest/v2/processes/connectors/sql/snowflake.py,sha256=r2qgoEF3bUugzgSr3hMJyIm8DKmxsO53ZHXJSNxOsvE,9379
|
|
571
|
+
unstructured_ingest/v2/processes/connectors/sql/sql.py,sha256=G28VUR0zaMVmQtbdZG6TRpkWFHvXJqFrr7SBuyM-fME,15608
|
|
572
|
+
unstructured_ingest/v2/processes/connectors/sql/sqlite.py,sha256=6RoBUxMbeuhduvTFlBKMgEH1NKJg7doQjXF_R5cUuX0,5319
|
|
573
|
+
unstructured_ingest/v2/processes/connectors/sql/vastdb.py,sha256=wklJ8p3eMb81FTjS6ukPoILuWN0_KQBfuYGXfE0XrqY,9644
|
|
574
574
|
unstructured_ingest/v2/processes/connectors/weaviate/__init__.py,sha256=NMiwnVWan69KnzVELvaqX34tMhCytIa-C8EDsXVKsEo,856
|
|
575
575
|
unstructured_ingest/v2/processes/connectors/weaviate/cloud.py,sha256=bXtfEYLquR-BszZ5S_lQ4JbETNs9Vozgpfm8x9egAmE,6251
|
|
576
576
|
unstructured_ingest/v2/processes/connectors/weaviate/embedded.py,sha256=S8Zg8StuZT-k7tCg1D5YShO1-vJYYk9-M1bE1fIqx64,3014
|
|
@@ -581,9 +581,11 @@ unstructured_ingest/v2/processes/connectors/zendesk/client.py,sha256=DDAYQB7catK
|
|
|
581
581
|
unstructured_ingest/v2/processes/connectors/zendesk/zendesk.py,sha256=R8SXYkRhVUoWEHdGCt2CzcTxxuFundw_0GlGZ34YmbM,8987
|
|
582
582
|
unstructured_ingest/v2/processes/utils/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
583
583
|
unstructured_ingest/v2/processes/utils/blob_storage.py,sha256=EWvK4HRYubr9i1UyMhv5cU9u0UzVkCDC_BIm4Uxab7Y,964
|
|
584
|
-
unstructured_ingest
|
|
585
|
-
unstructured_ingest
|
|
586
|
-
unstructured_ingest-0.5.
|
|
587
|
-
unstructured_ingest-0.5.
|
|
588
|
-
unstructured_ingest-0.5.
|
|
589
|
-
unstructured_ingest-0.5.
|
|
584
|
+
unstructured_ingest/v2/types/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
585
|
+
unstructured_ingest/v2/types/file_data.py,sha256=kowOhvYy0q_-khX3IuR111AfjkdQezEfxjzK6QDH7oA,3836
|
|
586
|
+
unstructured_ingest-0.5.23.dist-info/LICENSE.md,sha256=SxkKP_62uIAKb9mb1eH7FH4Kn2aYT09fgjKpJt5PyTk,11360
|
|
587
|
+
unstructured_ingest-0.5.23.dist-info/METADATA,sha256=yEHUhxSR1EF-2IoXViunb9iiNlEy9p0LgMTngzwtjLM,14999
|
|
588
|
+
unstructured_ingest-0.5.23.dist-info/WHEEL,sha256=In9FTNxeP60KnTkGw7wk6mJPYd_dQSjEZmXdBdMCI-8,91
|
|
589
|
+
unstructured_ingest-0.5.23.dist-info/entry_points.txt,sha256=gUAAFnjFPnBgThJSEbw0N5ZjxtaKlT1s9e05_arQrNw,70
|
|
590
|
+
unstructured_ingest-0.5.23.dist-info/top_level.txt,sha256=DMuDMHZRMdeay8v8Kdi855muIv92F0OkutvBCaBEW6M,25
|
|
591
|
+
unstructured_ingest-0.5.23.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
{unstructured_ingest-0.5.20.dist-info → unstructured_ingest-0.5.23.dist-info}/entry_points.txt
RENAMED
|
File without changes
|
|
File without changes
|