unstructured-ingest 0.3.8__py3-none-any.whl → 0.3.10__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/chunkers/test_chunkers.py +0 -11
- test/integration/connectors/conftest.py +11 -1
- test/integration/connectors/databricks_tests/test_volumes_native.py +4 -3
- test/integration/connectors/duckdb/conftest.py +14 -0
- test/integration/connectors/duckdb/test_duckdb.py +51 -44
- test/integration/connectors/duckdb/test_motherduck.py +37 -48
- test/integration/connectors/elasticsearch/test_elasticsearch.py +26 -4
- test/integration/connectors/elasticsearch/test_opensearch.py +26 -3
- test/integration/connectors/sql/test_postgres.py +103 -92
- test/integration/connectors/sql/test_singlestore.py +112 -100
- test/integration/connectors/sql/test_snowflake.py +142 -117
- test/integration/connectors/sql/test_sqlite.py +87 -76
- test/integration/connectors/test_astradb.py +62 -1
- test/integration/connectors/test_azure_ai_search.py +25 -3
- test/integration/connectors/test_chroma.py +120 -0
- test/integration/connectors/test_confluence.py +4 -4
- test/integration/connectors/test_delta_table.py +1 -0
- test/integration/connectors/test_kafka.py +6 -6
- test/integration/connectors/test_milvus.py +21 -0
- test/integration/connectors/test_mongodb.py +7 -4
- test/integration/connectors/test_neo4j.py +236 -0
- test/integration/connectors/test_pinecone.py +25 -1
- test/integration/connectors/test_qdrant.py +25 -2
- test/integration/connectors/test_s3.py +9 -6
- test/integration/connectors/utils/docker.py +6 -0
- test/integration/connectors/utils/validation/__init__.py +0 -0
- test/integration/connectors/utils/validation/destination.py +88 -0
- test/integration/connectors/utils/validation/equality.py +75 -0
- test/integration/connectors/utils/{validation.py → validation/source.py} +42 -98
- test/integration/connectors/utils/validation/utils.py +36 -0
- unstructured_ingest/__version__.py +1 -1
- unstructured_ingest/utils/chunking.py +11 -0
- unstructured_ingest/utils/data_prep.py +36 -0
- unstructured_ingest/v2/interfaces/__init__.py +3 -1
- unstructured_ingest/v2/interfaces/file_data.py +58 -14
- unstructured_ingest/v2/interfaces/upload_stager.py +70 -6
- unstructured_ingest/v2/interfaces/uploader.py +11 -2
- unstructured_ingest/v2/pipeline/steps/chunk.py +2 -1
- unstructured_ingest/v2/pipeline/steps/download.py +5 -4
- unstructured_ingest/v2/pipeline/steps/embed.py +2 -1
- unstructured_ingest/v2/pipeline/steps/filter.py +2 -2
- unstructured_ingest/v2/pipeline/steps/index.py +4 -4
- unstructured_ingest/v2/pipeline/steps/partition.py +3 -2
- unstructured_ingest/v2/pipeline/steps/stage.py +5 -3
- unstructured_ingest/v2/pipeline/steps/uncompress.py +2 -2
- unstructured_ingest/v2/pipeline/steps/upload.py +3 -3
- unstructured_ingest/v2/processes/connectors/__init__.py +3 -0
- unstructured_ingest/v2/processes/connectors/astradb.py +43 -63
- unstructured_ingest/v2/processes/connectors/azure_ai_search.py +16 -40
- unstructured_ingest/v2/processes/connectors/chroma.py +36 -59
- unstructured_ingest/v2/processes/connectors/couchbase.py +92 -93
- unstructured_ingest/v2/processes/connectors/delta_table.py +11 -33
- unstructured_ingest/v2/processes/connectors/duckdb/base.py +26 -26
- unstructured_ingest/v2/processes/connectors/duckdb/duckdb.py +29 -20
- unstructured_ingest/v2/processes/connectors/duckdb/motherduck.py +37 -44
- unstructured_ingest/v2/processes/connectors/elasticsearch/elasticsearch.py +46 -75
- unstructured_ingest/v2/processes/connectors/fsspec/azure.py +12 -35
- unstructured_ingest/v2/processes/connectors/fsspec/box.py +12 -35
- unstructured_ingest/v2/processes/connectors/fsspec/dropbox.py +15 -42
- unstructured_ingest/v2/processes/connectors/fsspec/fsspec.py +33 -29
- unstructured_ingest/v2/processes/connectors/fsspec/gcs.py +12 -34
- unstructured_ingest/v2/processes/connectors/fsspec/s3.py +13 -37
- unstructured_ingest/v2/processes/connectors/fsspec/sftp.py +19 -33
- unstructured_ingest/v2/processes/connectors/gitlab.py +32 -31
- unstructured_ingest/v2/processes/connectors/google_drive.py +32 -29
- unstructured_ingest/v2/processes/connectors/kafka/kafka.py +2 -4
- unstructured_ingest/v2/processes/connectors/kdbai.py +44 -70
- unstructured_ingest/v2/processes/connectors/lancedb/lancedb.py +8 -10
- unstructured_ingest/v2/processes/connectors/local.py +13 -2
- unstructured_ingest/v2/processes/connectors/milvus.py +16 -57
- unstructured_ingest/v2/processes/connectors/mongodb.py +99 -108
- unstructured_ingest/v2/processes/connectors/neo4j.py +383 -0
- unstructured_ingest/v2/processes/connectors/onedrive.py +1 -1
- unstructured_ingest/v2/processes/connectors/pinecone.py +3 -33
- unstructured_ingest/v2/processes/connectors/qdrant/qdrant.py +32 -41
- unstructured_ingest/v2/processes/connectors/sql/postgres.py +5 -5
- unstructured_ingest/v2/processes/connectors/sql/singlestore.py +5 -5
- unstructured_ingest/v2/processes/connectors/sql/snowflake.py +5 -5
- unstructured_ingest/v2/processes/connectors/sql/sql.py +72 -66
- unstructured_ingest/v2/processes/connectors/sql/sqlite.py +5 -5
- unstructured_ingest/v2/processes/connectors/weaviate/weaviate.py +9 -31
- {unstructured_ingest-0.3.8.dist-info → unstructured_ingest-0.3.10.dist-info}/METADATA +20 -15
- {unstructured_ingest-0.3.8.dist-info → unstructured_ingest-0.3.10.dist-info}/RECORD +87 -79
- {unstructured_ingest-0.3.8.dist-info → unstructured_ingest-0.3.10.dist-info}/LICENSE.md +0 -0
- {unstructured_ingest-0.3.8.dist-info → unstructured_ingest-0.3.10.dist-info}/WHEEL +0 -0
- {unstructured_ingest-0.3.8.dist-info → unstructured_ingest-0.3.10.dist-info}/entry_points.txt +0 -0
- {unstructured_ingest-0.3.8.dist-info → unstructured_ingest-0.3.10.dist-info}/top_level.txt +0 -0
|
@@ -3,7 +3,6 @@ from abc import ABC, abstractmethod
|
|
|
3
3
|
from contextlib import contextmanager
|
|
4
4
|
from dataclasses import dataclass, field
|
|
5
5
|
from datetime import date, datetime
|
|
6
|
-
from pathlib import Path
|
|
7
6
|
from typing import TYPE_CHECKING, Any, Generator, Optional
|
|
8
7
|
|
|
9
8
|
from dateutil import parser
|
|
@@ -74,11 +73,11 @@ class WeaviateUploadStager(UploadStager):
|
|
|
74
73
|
logger.debug(f"date {date_string} string not a timestamp: {e}")
|
|
75
74
|
return parser.parse(date_string)
|
|
76
75
|
|
|
77
|
-
|
|
78
|
-
def conform_dict(cls, data: dict, file_data: FileData) -> dict:
|
|
76
|
+
def conform_dict(self, element_dict: dict, file_data: FileData) -> dict:
|
|
79
77
|
"""
|
|
80
78
|
Updates the element dictionary to conform to the Weaviate schema
|
|
81
79
|
"""
|
|
80
|
+
data = element_dict.copy()
|
|
82
81
|
working_data = data.copy()
|
|
83
82
|
# Dict as string formatting
|
|
84
83
|
if (
|
|
@@ -111,7 +110,7 @@ class WeaviateUploadStager(UploadStager):
|
|
|
111
110
|
.get("data_source", {})
|
|
112
111
|
.get("date_created")
|
|
113
112
|
):
|
|
114
|
-
working_data["metadata"]["data_source"]["date_created"] =
|
|
113
|
+
working_data["metadata"]["data_source"]["date_created"] = self.parse_date_string(
|
|
115
114
|
date_created
|
|
116
115
|
).strftime(
|
|
117
116
|
"%Y-%m-%dT%H:%M:%S.%fZ",
|
|
@@ -122,7 +121,7 @@ class WeaviateUploadStager(UploadStager):
|
|
|
122
121
|
.get("data_source", {})
|
|
123
122
|
.get("date_modified")
|
|
124
123
|
):
|
|
125
|
-
working_data["metadata"]["data_source"]["date_modified"] =
|
|
124
|
+
working_data["metadata"]["data_source"]["date_modified"] = self.parse_date_string(
|
|
126
125
|
date_modified
|
|
127
126
|
).strftime(
|
|
128
127
|
"%Y-%m-%dT%H:%M:%S.%fZ",
|
|
@@ -133,14 +132,14 @@ class WeaviateUploadStager(UploadStager):
|
|
|
133
132
|
.get("data_source", {})
|
|
134
133
|
.get("date_processed")
|
|
135
134
|
):
|
|
136
|
-
working_data["metadata"]["data_source"]["date_processed"] =
|
|
135
|
+
working_data["metadata"]["data_source"]["date_processed"] = self.parse_date_string(
|
|
137
136
|
date_processed
|
|
138
137
|
).strftime(
|
|
139
138
|
"%Y-%m-%dT%H:%M:%S.%fZ",
|
|
140
139
|
)
|
|
141
140
|
|
|
142
141
|
if last_modified := working_data.get("metadata", {}).get("last_modified"):
|
|
143
|
-
working_data["metadata"]["last_modified"] =
|
|
142
|
+
working_data["metadata"]["last_modified"] = self.parse_date_string(
|
|
144
143
|
last_modified
|
|
145
144
|
).strftime(
|
|
146
145
|
"%Y-%m-%dT%H:%M:%S.%fZ",
|
|
@@ -159,25 +158,6 @@ class WeaviateUploadStager(UploadStager):
|
|
|
159
158
|
working_data[RECORD_ID_LABEL] = file_data.identifier
|
|
160
159
|
return working_data
|
|
161
160
|
|
|
162
|
-
def run(
|
|
163
|
-
self,
|
|
164
|
-
elements_filepath: Path,
|
|
165
|
-
file_data: FileData,
|
|
166
|
-
output_dir: Path,
|
|
167
|
-
output_filename: str,
|
|
168
|
-
**kwargs: Any,
|
|
169
|
-
) -> Path:
|
|
170
|
-
with open(elements_filepath) as elements_file:
|
|
171
|
-
elements_contents = json.load(elements_file)
|
|
172
|
-
updated_elements = [
|
|
173
|
-
self.conform_dict(data=element, file_data=file_data) for element in elements_contents
|
|
174
|
-
]
|
|
175
|
-
output_path = Path(output_dir) / Path(f"{output_filename}.json")
|
|
176
|
-
output_path.parent.mkdir(parents=True, exist_ok=True)
|
|
177
|
-
with open(output_path, "w") as output_file:
|
|
178
|
-
json.dump(updated_elements, output_file, indent=2)
|
|
179
|
-
return output_path
|
|
180
|
-
|
|
181
161
|
|
|
182
162
|
class WeaviateUploaderConfig(UploaderConfig):
|
|
183
163
|
collection: str = Field(description="The name of the collection this object belongs to")
|
|
@@ -268,18 +248,16 @@ class WeaviateUploader(Uploader, ABC):
|
|
|
268
248
|
if not resp.failed and not resp.successful:
|
|
269
249
|
break
|
|
270
250
|
|
|
271
|
-
def
|
|
272
|
-
with path.open("r") as file:
|
|
273
|
-
elements_dict = json.load(file)
|
|
251
|
+
def run_data(self, data: list[dict], file_data: FileData, **kwargs: Any) -> None:
|
|
274
252
|
logger.info(
|
|
275
|
-
f"writing {len(
|
|
253
|
+
f"writing {len(data)} objects to destination "
|
|
276
254
|
f"class {self.connection_config.access_config} "
|
|
277
255
|
)
|
|
278
256
|
|
|
279
257
|
with self.connection_config.get_client() as weaviate_client:
|
|
280
258
|
self.delete_by_record_id(client=weaviate_client, file_data=file_data)
|
|
281
259
|
with self.upload_config.get_batch_client(client=weaviate_client) as batch_client:
|
|
282
|
-
for e in
|
|
260
|
+
for e in data:
|
|
283
261
|
vector = e.pop("embeddings", None)
|
|
284
262
|
batch_client.add_object(
|
|
285
263
|
collection=self.upload_config.collection,
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: unstructured-ingest
|
|
3
|
-
Version: 0.3.
|
|
3
|
+
Version: 0.3.10
|
|
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,14 @@ Classifier: Topic :: Scientific/Engineering :: Artificial Intelligence
|
|
|
22
22
|
Requires-Python: >=3.9.0,<3.13
|
|
23
23
|
Description-Content-Type: text/markdown
|
|
24
24
|
License-File: LICENSE.md
|
|
25
|
+
Requires-Dist: opentelemetry-sdk
|
|
26
|
+
Requires-Dist: python-dateutil
|
|
25
27
|
Requires-Dist: click
|
|
26
|
-
Requires-Dist:
|
|
28
|
+
Requires-Dist: ndjson
|
|
27
29
|
Requires-Dist: pydantic>=2.7
|
|
28
|
-
Requires-Dist:
|
|
30
|
+
Requires-Dist: pandas
|
|
29
31
|
Requires-Dist: tqdm
|
|
30
32
|
Requires-Dist: dataclasses-json
|
|
31
|
-
Requires-Dist: python-dateutil
|
|
32
33
|
Provides-Extra: airtable
|
|
33
34
|
Requires-Dist: pyairtable; extra == "airtable"
|
|
34
35
|
Provides-Extra: astradb
|
|
@@ -41,8 +42,8 @@ Requires-Dist: azure-search-documents; extra == "azure-ai-search"
|
|
|
41
42
|
Provides-Extra: bedrock
|
|
42
43
|
Requires-Dist: boto3; extra == "bedrock"
|
|
43
44
|
Provides-Extra: biomed
|
|
44
|
-
Requires-Dist: requests; extra == "biomed"
|
|
45
45
|
Requires-Dist: bs4; extra == "biomed"
|
|
46
|
+
Requires-Dist: requests; extra == "biomed"
|
|
46
47
|
Provides-Extra: box
|
|
47
48
|
Requires-Dist: fsspec; extra == "box"
|
|
48
49
|
Requires-Dist: boxfs; extra == "box"
|
|
@@ -51,8 +52,8 @@ Requires-Dist: chromadb; extra == "chroma"
|
|
|
51
52
|
Provides-Extra: clarifai
|
|
52
53
|
Requires-Dist: clarifai; extra == "clarifai"
|
|
53
54
|
Provides-Extra: confluence
|
|
54
|
-
Requires-Dist: requests; extra == "confluence"
|
|
55
55
|
Requires-Dist: atlassian-python-api; extra == "confluence"
|
|
56
|
+
Requires-Dist: requests; extra == "confluence"
|
|
56
57
|
Provides-Extra: couchbase
|
|
57
58
|
Requires-Dist: couchbase; extra == "couchbase"
|
|
58
59
|
Provides-Extra: csv
|
|
@@ -69,8 +70,8 @@ Requires-Dist: unstructured[docx]; extra == "doc"
|
|
|
69
70
|
Provides-Extra: docx
|
|
70
71
|
Requires-Dist: unstructured[docx]; extra == "docx"
|
|
71
72
|
Provides-Extra: dropbox
|
|
72
|
-
Requires-Dist: fsspec; extra == "dropbox"
|
|
73
73
|
Requires-Dist: dropboxdrivefs; extra == "dropbox"
|
|
74
|
+
Requires-Dist: fsspec; extra == "dropbox"
|
|
74
75
|
Provides-Extra: duckdb
|
|
75
76
|
Requires-Dist: duckdb; extra == "duckdb"
|
|
76
77
|
Provides-Extra: elasticsearch
|
|
@@ -80,8 +81,8 @@ Requires-Dist: sentence-transformers; extra == "embed-huggingface"
|
|
|
80
81
|
Provides-Extra: embed-mixedbreadai
|
|
81
82
|
Requires-Dist: mixedbread-ai; extra == "embed-mixedbreadai"
|
|
82
83
|
Provides-Extra: embed-octoai
|
|
83
|
-
Requires-Dist: tiktoken; extra == "embed-octoai"
|
|
84
84
|
Requires-Dist: openai; extra == "embed-octoai"
|
|
85
|
+
Requires-Dist: tiktoken; extra == "embed-octoai"
|
|
85
86
|
Provides-Extra: embed-vertexai
|
|
86
87
|
Requires-Dist: vertexai; extra == "embed-vertexai"
|
|
87
88
|
Provides-Extra: embed-voyageai
|
|
@@ -89,12 +90,12 @@ Requires-Dist: voyageai; extra == "embed-voyageai"
|
|
|
89
90
|
Provides-Extra: epub
|
|
90
91
|
Requires-Dist: unstructured[epub]; extra == "epub"
|
|
91
92
|
Provides-Extra: gcs
|
|
92
|
-
Requires-Dist: fsspec; extra == "gcs"
|
|
93
93
|
Requires-Dist: bs4; extra == "gcs"
|
|
94
|
+
Requires-Dist: fsspec; extra == "gcs"
|
|
94
95
|
Requires-Dist: gcsfs; extra == "gcs"
|
|
95
96
|
Provides-Extra: github
|
|
96
|
-
Requires-Dist: requests; extra == "github"
|
|
97
97
|
Requires-Dist: pygithub>1.58.0; extra == "github"
|
|
98
|
+
Requires-Dist: requests; extra == "github"
|
|
98
99
|
Provides-Extra: gitlab
|
|
99
100
|
Requires-Dist: python-gitlab; extra == "gitlab"
|
|
100
101
|
Provides-Extra: google-drive
|
|
@@ -118,11 +119,15 @@ Provides-Extra: mongodb
|
|
|
118
119
|
Requires-Dist: pymongo; extra == "mongodb"
|
|
119
120
|
Provides-Extra: msg
|
|
120
121
|
Requires-Dist: unstructured[msg]; extra == "msg"
|
|
122
|
+
Provides-Extra: neo4j
|
|
123
|
+
Requires-Dist: cymple; extra == "neo4j"
|
|
124
|
+
Requires-Dist: neo4j; extra == "neo4j"
|
|
125
|
+
Requires-Dist: networkx; extra == "neo4j"
|
|
121
126
|
Provides-Extra: notion
|
|
122
|
-
Requires-Dist: httpx; extra == "notion"
|
|
123
|
-
Requires-Dist: backoff; extra == "notion"
|
|
124
127
|
Requires-Dist: htmlBuilder; extra == "notion"
|
|
128
|
+
Requires-Dist: backoff; extra == "notion"
|
|
125
129
|
Requires-Dist: notion-client; extra == "notion"
|
|
130
|
+
Requires-Dist: httpx; extra == "notion"
|
|
126
131
|
Provides-Extra: odt
|
|
127
132
|
Requires-Dist: unstructured[odt]; extra == "odt"
|
|
128
133
|
Provides-Extra: onedrive
|
|
@@ -130,8 +135,8 @@ Requires-Dist: Office365-REST-Python-Client; extra == "onedrive"
|
|
|
130
135
|
Requires-Dist: bs4; extra == "onedrive"
|
|
131
136
|
Requires-Dist: msal; extra == "onedrive"
|
|
132
137
|
Provides-Extra: openai
|
|
133
|
-
Requires-Dist: tiktoken; extra == "openai"
|
|
134
138
|
Requires-Dist: openai; extra == "openai"
|
|
139
|
+
Requires-Dist: tiktoken; extra == "openai"
|
|
135
140
|
Provides-Extra: opensearch
|
|
136
141
|
Requires-Dist: opensearch-py; extra == "opensearch"
|
|
137
142
|
Provides-Extra: org
|
|
@@ -160,13 +165,13 @@ Requires-Dist: unstructured[rst]; extra == "rst"
|
|
|
160
165
|
Provides-Extra: rtf
|
|
161
166
|
Requires-Dist: unstructured[rtf]; extra == "rtf"
|
|
162
167
|
Provides-Extra: s3
|
|
163
|
-
Requires-Dist: fsspec; extra == "s3"
|
|
164
168
|
Requires-Dist: s3fs; extra == "s3"
|
|
169
|
+
Requires-Dist: fsspec; extra == "s3"
|
|
165
170
|
Provides-Extra: salesforce
|
|
166
171
|
Requires-Dist: simple-salesforce; extra == "salesforce"
|
|
167
172
|
Provides-Extra: sftp
|
|
168
|
-
Requires-Dist: paramiko; extra == "sftp"
|
|
169
173
|
Requires-Dist: fsspec; extra == "sftp"
|
|
174
|
+
Requires-Dist: paramiko; extra == "sftp"
|
|
170
175
|
Provides-Extra: sharepoint
|
|
171
176
|
Requires-Dist: Office365-REST-Python-Client; extra == "sharepoint"
|
|
172
177
|
Requires-Dist: msal; extra == "sharepoint"
|
|
@@ -2,40 +2,47 @@ test/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
|
2
2
|
test/integration/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
3
3
|
test/integration/utils.py,sha256=CWqzEGw6TA_ZoP9hRUkW64TWYssooBbufcTRmbJvod8,401
|
|
4
4
|
test/integration/chunkers/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
5
|
-
test/integration/chunkers/test_chunkers.py,sha256=
|
|
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
|
-
test/integration/connectors/conftest.py,sha256=
|
|
8
|
-
test/integration/connectors/test_astradb.py,sha256=
|
|
9
|
-
test/integration/connectors/test_azure_ai_search.py,sha256=
|
|
10
|
-
test/integration/connectors/
|
|
11
|
-
test/integration/connectors/
|
|
12
|
-
test/integration/connectors/
|
|
7
|
+
test/integration/connectors/conftest.py,sha256=vYs4WDlCuieAwwErkJxCk4a1lGvr3qpeiAm-YaDznSo,1018
|
|
8
|
+
test/integration/connectors/test_astradb.py,sha256=D_M8DvfHi36sp4irPQ5tTRxf0ujYenn_q-h0DU_lkzU,7201
|
|
9
|
+
test/integration/connectors/test_azure_ai_search.py,sha256=EGV-G_Lq3h6pHhhmmQGWjIU1Mgsqg3ICZSgF0z3lZZs,9608
|
|
10
|
+
test/integration/connectors/test_chroma.py,sha256=KQCzBJsOHAOtg0Ehp0tNtuYchFtiSmhHDKyOju33kJg,3686
|
|
11
|
+
test/integration/connectors/test_confluence.py,sha256=adJxIggjuO-jgMimBZdv_AqWeBFlQoodELucIYwWC98,3546
|
|
12
|
+
test/integration/connectors/test_delta_table.py,sha256=xsnJmwlWVQrccYeAtpt2lm0DYm2jGxiKXeERQXqCDCM,6884
|
|
13
|
+
test/integration/connectors/test_kafka.py,sha256=FtHLptvS9V3Br7wCm2Xyh_ulz8_wWvCOKKEd0xD9LyM,10758
|
|
13
14
|
test/integration/connectors/test_lancedb.py,sha256=U2HfIrf6iJ7lYMn-vz0j-LesVyDY-jc9QrQhlJVhG9Q,9183
|
|
14
|
-
test/integration/connectors/test_milvus.py,sha256=
|
|
15
|
-
test/integration/connectors/test_mongodb.py,sha256=
|
|
15
|
+
test/integration/connectors/test_milvus.py,sha256=abYQOjF8grEFj3FB1_wQgFSbWPFWfZ2pEsgKarfKJE4,6574
|
|
16
|
+
test/integration/connectors/test_mongodb.py,sha256=UZ4eo61MisCw4s0p7HWaediN7M-lSddMDs71RFgdmJs,12347
|
|
17
|
+
test/integration/connectors/test_neo4j.py,sha256=Esiq_Z9k1JLrWNXPmLBsX3LLwyEozwKoxX7iwMEJjRM,8252
|
|
16
18
|
test/integration/connectors/test_onedrive.py,sha256=KIkBwKh1hnv203VCL2UABnDkS_bP4NxOFm1AL8EPGLA,3554
|
|
17
|
-
test/integration/connectors/test_pinecone.py,sha256=
|
|
18
|
-
test/integration/connectors/test_qdrant.py,sha256=
|
|
19
|
-
test/integration/connectors/test_s3.py,sha256=
|
|
19
|
+
test/integration/connectors/test_pinecone.py,sha256=suPFi40d6rHXurQQLIpCzW5XRTdgzlP-f-KLPhGCUHo,10208
|
|
20
|
+
test/integration/connectors/test_qdrant.py,sha256=hyuqSJDaylkQVxWh7byD8jo8bwPuBxSa8MWRD3sBu-Y,7906
|
|
21
|
+
test/integration/connectors/test_s3.py,sha256=PJaAwFRF2lXMQlkbv9JHpngPc6706ML7zowOlXT3TcY,7033
|
|
20
22
|
test/integration/connectors/databricks_tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
21
|
-
test/integration/connectors/databricks_tests/test_volumes_native.py,sha256=
|
|
23
|
+
test/integration/connectors/databricks_tests/test_volumes_native.py,sha256=9Ndo0Q8uzBGGOYYjmTV6EdZtaTRy97lHAXvJczTOJe4,5859
|
|
22
24
|
test/integration/connectors/duckdb/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
23
|
-
test/integration/connectors/duckdb/
|
|
24
|
-
test/integration/connectors/duckdb/
|
|
25
|
+
test/integration/connectors/duckdb/conftest.py,sha256=rlBHMJTiJ2a5xbvIxTOyhhcuTBc9DO-yTzD6Kf8X3hY,301
|
|
26
|
+
test/integration/connectors/duckdb/test_duckdb.py,sha256=tZfHJYNILVqwT20XD-aJUFZ67TnJvHLpfAxNvNiE51o,2891
|
|
27
|
+
test/integration/connectors/duckdb/test_motherduck.py,sha256=45anpo0bhbHJh84jOIoKULKrneCMSoq7GuFaBy-HS7g,3206
|
|
25
28
|
test/integration/connectors/elasticsearch/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
26
29
|
test/integration/connectors/elasticsearch/conftest.py,sha256=-i4_7MkIxSQENz7nuD2uHuhGU9mZ33vpeTPhHtRpQfs,989
|
|
27
|
-
test/integration/connectors/elasticsearch/test_elasticsearch.py,sha256=
|
|
28
|
-
test/integration/connectors/elasticsearch/test_opensearch.py,sha256=
|
|
30
|
+
test/integration/connectors/elasticsearch/test_elasticsearch.py,sha256=Lm8topVssTsqcI8H2Tzohuxb9j-CFHv9orM6WfAqCZw,11933
|
|
31
|
+
test/integration/connectors/elasticsearch/test_opensearch.py,sha256=fWpZrhzRiVpm9AOlZvgZRCjyXSYvWG7-8j06x-HR3PY,11311
|
|
29
32
|
test/integration/connectors/sql/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
30
|
-
test/integration/connectors/sql/test_postgres.py,sha256=
|
|
31
|
-
test/integration/connectors/sql/test_singlestore.py,sha256=
|
|
32
|
-
test/integration/connectors/sql/test_snowflake.py,sha256
|
|
33
|
-
test/integration/connectors/sql/test_sqlite.py,sha256=
|
|
33
|
+
test/integration/connectors/sql/test_postgres.py,sha256=BNoH1Ha3hdpxk--DqE5cg8zwnx14rN-1LzQ_YJ1U5us,6734
|
|
34
|
+
test/integration/connectors/sql/test_singlestore.py,sha256=W4bNc7HoVrtfHfDTdQF8rcwKdX-AdIDHV-phJeViSmU,5917
|
|
35
|
+
test/integration/connectors/sql/test_snowflake.py,sha256=-fzpaB1LlFOW2bZmJHQMbH6T0zU30dMypAHLRAbT4d0,7258
|
|
36
|
+
test/integration/connectors/sql/test_sqlite.py,sha256=NjIcAvujSiuqjTaitjjyLEsS3oazPyQzTnzCZ6QjIkM,5720
|
|
34
37
|
test/integration/connectors/utils/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
35
38
|
test/integration/connectors/utils/constants.py,sha256=0zSPnsZVqJuNhXduXvdXFQLZTRIQa5Fo_1qjBYVCfb8,209
|
|
36
|
-
test/integration/connectors/utils/docker.py,sha256=
|
|
39
|
+
test/integration/connectors/utils/docker.py,sha256=8uOTJ3AVG1dxK4OiLvOLfRxL_TsYQX2KKCID9TZ7-Ac,4995
|
|
37
40
|
test/integration/connectors/utils/docker_compose.py,sha256=GVTB6Cel05c0VQ2n4AwkQQx_cBfz13ZTs1HpbaYipNU,2223
|
|
38
|
-
test/integration/connectors/utils/validation.py,sha256=
|
|
41
|
+
test/integration/connectors/utils/validation/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
42
|
+
test/integration/connectors/utils/validation/destination.py,sha256=BG3161_T8aUMX2mYaDlcTneJPEWaqOM1bG3hCLiLiR4,3008
|
|
43
|
+
test/integration/connectors/utils/validation/equality.py,sha256=8riUASLHccqnRZLoEv4rz5_ba54PFEHcxfxuJaJy6X0,2570
|
|
44
|
+
test/integration/connectors/utils/validation/source.py,sha256=VALU5ms_JBu_eFkp2WQ7oZtJKozJ8MZSJ7h7ZA3Fz_Q,12296
|
|
45
|
+
test/integration/connectors/utils/validation/utils.py,sha256=xYYvAbqP6_lZyH09_JjB4w2Sf8aQPvDVT5vZTs05ILs,1428
|
|
39
46
|
test/integration/connectors/weaviate/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
40
47
|
test/integration/connectors/weaviate/conftest.py,sha256=6Q6QdrLJmGHowRFSmoVSzup2EX6qASfS2Z5tqlpTm9M,387
|
|
41
48
|
test/integration/connectors/weaviate/test_cloud.py,sha256=07VxNRxWWcgTstFfpoZ1FlVnEhcBnQlo5nosWKjKz_4,979
|
|
@@ -87,7 +94,7 @@ test/unit/v2/partitioners/test_partitioner.py,sha256=iIYg7IpftV3LusoO4H8tr1IHY1U
|
|
|
87
94
|
test/unit/v2/utils/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
88
95
|
test/unit/v2/utils/data_generator.py,sha256=UoYVNjG4S4wlaA9gceQ82HIpF9_6I1UTHD1_GrQBHp0,973
|
|
89
96
|
unstructured_ingest/__init__.py,sha256=U4S_2y3zgLZVfMenHRaJFBW8yqh2mUBuI291LGQVOJ8,35
|
|
90
|
-
unstructured_ingest/__version__.py,sha256=
|
|
97
|
+
unstructured_ingest/__version__.py,sha256=agVWTd6LRRiz8p3CAvwS6-Qb_jT60tZHXAK83ewMwL4,43
|
|
91
98
|
unstructured_ingest/error.py,sha256=qDncnJgbf5ils956RcO2CGlAKYDT5OaEM9Clv1JVTNc,1448
|
|
92
99
|
unstructured_ingest/interfaces.py,sha256=OYVUP0bzBJpT-Lz92BDyz_hLBvyfxkuSwWHhUdnUayA,31493
|
|
93
100
|
unstructured_ingest/logger.py,sha256=S5nSqGcABoQyeicgRnBQFjDScCaTvFVivOCvbo-laL0,4479
|
|
@@ -344,9 +351,9 @@ unstructured_ingest/runner/writers/fsspec/dropbox.py,sha256=y0kmx5Xjc9Ypfg6t6N_x
|
|
|
344
351
|
unstructured_ingest/runner/writers/fsspec/gcs.py,sha256=ia-gconOz1kWI1jmYeB9NY6cwjWfofoZAydKfZsaFs0,606
|
|
345
352
|
unstructured_ingest/runner/writers/fsspec/s3.py,sha256=kHJq2O3864QBd_tL2SKb0mdywczOCr2VI5e_bVms-Vw,622
|
|
346
353
|
unstructured_ingest/utils/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
347
|
-
unstructured_ingest/utils/chunking.py,sha256=
|
|
354
|
+
unstructured_ingest/utils/chunking.py,sha256=9b3sXMA6L8RW5xAkKQbwdtVudGLAcj_sgT6Grh5tyYM,1870
|
|
348
355
|
unstructured_ingest/utils/compression.py,sha256=NNiY-2S2Gf3at7zC1PYxMijaEza9vVSzRn5mdFf6mHo,4434
|
|
349
|
-
unstructured_ingest/utils/data_prep.py,sha256=
|
|
356
|
+
unstructured_ingest/utils/data_prep.py,sha256=K4Rfx2V6EiDVFHDAkt0bvcjDqc_rn6YFM5-O50YSx-U,5808
|
|
350
357
|
unstructured_ingest/utils/dep_check.py,sha256=SXXcUna2H0RtxA6j1S2NGkvQa9JP2DujWhmyBa7776Y,2400
|
|
351
358
|
unstructured_ingest/utils/google_filetype.py,sha256=YVspEkiiBrRUSGVeVbsavvLvTmizdy2e6TsjigXTSRU,468
|
|
352
359
|
unstructured_ingest/utils/string_and_date_utils.py,sha256=kijtPlGAbH376vVjFSo5H_ZhW-FEcMC2sCNsSNwDOjo,1729
|
|
@@ -369,29 +376,29 @@ unstructured_ingest/v2/cli/base/src.py,sha256=cpQ43qQju4e5s_YSaPxUtA70BaisRkTBdj
|
|
|
369
376
|
unstructured_ingest/v2/cli/utils/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
370
377
|
unstructured_ingest/v2/cli/utils/click.py,sha256=1_eJgrwS2DFBl1jZPLsj1vgVgR7agFBIEBe4A_n7mH4,7827
|
|
371
378
|
unstructured_ingest/v2/cli/utils/model_conversion.py,sha256=7eEIkk1KU51-ZNiIfI1KRxlwITNW1xl1YxMAG8BcTk0,7604
|
|
372
|
-
unstructured_ingest/v2/interfaces/__init__.py,sha256=
|
|
379
|
+
unstructured_ingest/v2/interfaces/__init__.py,sha256=9VO09XuTvyOcFF8ZDKN169fNb_uA5TAYzPsiPHOyxhQ,963
|
|
373
380
|
unstructured_ingest/v2/interfaces/connector.py,sha256=qUFFJ3qgDMenTCZMtVRjq1DIwsVak6pxNjQOH2eVkMw,1623
|
|
374
381
|
unstructured_ingest/v2/interfaces/downloader.py,sha256=Lj3nTY1hPA71GfNeedFVCdHdZsHLle8qrx5RtXAy9GY,2940
|
|
375
|
-
unstructured_ingest/v2/interfaces/file_data.py,sha256=
|
|
382
|
+
unstructured_ingest/v2/interfaces/file_data.py,sha256=weeCEp14QGEGjCBtJBByrAcAqA87Jx62qw3Ed7x-crU,3550
|
|
376
383
|
unstructured_ingest/v2/interfaces/indexer.py,sha256=gsa1MLhFa82BzD2h4Yb7ons0VxRwKINZOrzvHAahwVU,846
|
|
377
384
|
unstructured_ingest/v2/interfaces/process.py,sha256=BgglTu5K93FnDDopZKKr_rkK2LTZOguR6kcQjKHjF40,392
|
|
378
385
|
unstructured_ingest/v2/interfaces/processor.py,sha256=VX7JqXlbG1plxMK8THWhWINPbTICaaUEk4XUXhnOixY,3303
|
|
379
|
-
unstructured_ingest/v2/interfaces/upload_stager.py,sha256=
|
|
380
|
-
unstructured_ingest/v2/interfaces/uploader.py,sha256=
|
|
386
|
+
unstructured_ingest/v2/interfaces/upload_stager.py,sha256=dYZWDABbQ26_8X_e0QsAIgsXcXWPNAXh_hyNAEND1kI,3993
|
|
387
|
+
unstructured_ingest/v2/interfaces/uploader.py,sha256=T2oHbN-d4Px1w1oATKKYZA10aUssqytEpiaqBM92r0Q,1600
|
|
381
388
|
unstructured_ingest/v2/pipeline/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
382
389
|
unstructured_ingest/v2/pipeline/interfaces.py,sha256=-Y6gPnl-SbNxIx5-dQCmiYSPKUMjivrRlBLIKIUWVeM,8658
|
|
383
390
|
unstructured_ingest/v2/pipeline/otel.py,sha256=K3pQvWVgWzyOWMKCBUofsH7wTZPJ0Ysw5sLjMBLW41I,1088
|
|
384
391
|
unstructured_ingest/v2/pipeline/pipeline.py,sha256=7Yg8_xwlSX6lA-oPGlTcn6KXZ9kc51zsoJxME5TiUlw,15956
|
|
385
392
|
unstructured_ingest/v2/pipeline/steps/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
386
|
-
unstructured_ingest/v2/pipeline/steps/chunk.py,sha256=
|
|
387
|
-
unstructured_ingest/v2/pipeline/steps/download.py,sha256=
|
|
388
|
-
unstructured_ingest/v2/pipeline/steps/embed.py,sha256
|
|
389
|
-
unstructured_ingest/v2/pipeline/steps/filter.py,sha256=
|
|
390
|
-
unstructured_ingest/v2/pipeline/steps/index.py,sha256=
|
|
391
|
-
unstructured_ingest/v2/pipeline/steps/partition.py,sha256=
|
|
392
|
-
unstructured_ingest/v2/pipeline/steps/stage.py,sha256=
|
|
393
|
-
unstructured_ingest/v2/pipeline/steps/uncompress.py,sha256=
|
|
394
|
-
unstructured_ingest/v2/pipeline/steps/upload.py,sha256=
|
|
393
|
+
unstructured_ingest/v2/pipeline/steps/chunk.py,sha256=wmGYmydm3CfoaRd0vXzou-o9h7-3pc2OOeVbzH6QZAI,3212
|
|
394
|
+
unstructured_ingest/v2/pipeline/steps/download.py,sha256=nZ4B0d9p-6TgWqrBoKUQPlr8m6dz1RGNr_3OjUhRpWg,8259
|
|
395
|
+
unstructured_ingest/v2/pipeline/steps/embed.py,sha256=gafBvg-9CECHxxR0ptm00IwtJyLw1bTXL0yMDz13j0I,3190
|
|
396
|
+
unstructured_ingest/v2/pipeline/steps/filter.py,sha256=pju7knTSbB2ll1jC9DPePRDnHlOlvEcU1-sjk6xYGGc,1211
|
|
397
|
+
unstructured_ingest/v2/pipeline/steps/index.py,sha256=uIiGZeI9pFxkwS91IldXE37UUwAopsinfUgGNL7WJaw,3555
|
|
398
|
+
unstructured_ingest/v2/pipeline/steps/partition.py,sha256=5Rr1-J6iGnmFgd02P9v3ExYCqq7QlT0mWZaheuDG6Zk,3273
|
|
399
|
+
unstructured_ingest/v2/pipeline/steps/stage.py,sha256=VR8SLUJdVva61aieVKyxUHzupTCQbQeaMA0CKu4Fx7o,2347
|
|
400
|
+
unstructured_ingest/v2/pipeline/steps/uncompress.py,sha256=p2nPFGbcpivPAZO5jDogTfn0iaL5bCFsgBNMejxVbzE,1768
|
|
401
|
+
unstructured_ingest/v2/pipeline/steps/upload.py,sha256=We4OAtStuZwWKKBCOPhfeAz_vjQt5hgsy_jRCxPzxo4,2010
|
|
395
402
|
unstructured_ingest/v2/processes/__init__.py,sha256=FaHWSCGyc7GWVnAsNEUUj7L8hT8gCVY3_hUE2VzWtUg,462
|
|
396
403
|
unstructured_ingest/v2/processes/chunker.py,sha256=31-7ojsM2coIt2rMR0KOb82IxLVJfNHbqYUOsDkhxN8,5491
|
|
397
404
|
unstructured_ingest/v2/processes/connector_registry.py,sha256=vkEe6jpgdYtZCxMj59s5atWGgmPuxAEXRUoTt-MJ7wc,2198
|
|
@@ -399,23 +406,24 @@ unstructured_ingest/v2/processes/embedder.py,sha256=xCBpaL07WnVUOUW8SHktaf1vwBGZ
|
|
|
399
406
|
unstructured_ingest/v2/processes/filter.py,sha256=kjUmMw2SDq2bme0JCAOxs6cJriIG6Ty09KOznS-xz08,2145
|
|
400
407
|
unstructured_ingest/v2/processes/partitioner.py,sha256=agpHwB9FR8OZVQqE7zFEb0IcDPCOPA_BZjLzLF71nOY,8194
|
|
401
408
|
unstructured_ingest/v2/processes/uncompress.py,sha256=Z_XfsITGdyaRwhtNUc7bMj5Y2jLuBge8KoK4nxhqKag,2425
|
|
402
|
-
unstructured_ingest/v2/processes/connectors/__init__.py,sha256=
|
|
409
|
+
unstructured_ingest/v2/processes/connectors/__init__.py,sha256=CTWLEmaKLTjbqeUQGI0fxJobsqDOc1d2ZKJoXh98Lww,5432
|
|
403
410
|
unstructured_ingest/v2/processes/connectors/airtable.py,sha256=eeZJe-bBNxt5Sa-XEFCdcGeJCguJU5WN2Mv9kLp5dVQ,8917
|
|
404
|
-
unstructured_ingest/v2/processes/connectors/astradb.py,sha256=
|
|
405
|
-
unstructured_ingest/v2/processes/connectors/azure_ai_search.py,sha256=
|
|
406
|
-
unstructured_ingest/v2/processes/connectors/chroma.py,sha256=
|
|
411
|
+
unstructured_ingest/v2/processes/connectors/astradb.py,sha256=Y4rgEZZRMOLCVeC5jHbPWxnVtl1A-fPeU8BEibMZIlQ,14696
|
|
412
|
+
unstructured_ingest/v2/processes/connectors/azure_ai_search.py,sha256=ngPDpU0oZ6m5sxIlB6u5ebQpqCS_SJ-_amCC1KQ03EQ,11529
|
|
413
|
+
unstructured_ingest/v2/processes/connectors/chroma.py,sha256=G1DQHhhFQCS2RLF0cVvoUH9QO8KkVjIyNZ9nKh__aHw,7220
|
|
407
414
|
unstructured_ingest/v2/processes/connectors/confluence.py,sha256=-Y1OU_ZXhZQNj5NH3EN01CP8QKKZJaJ9xkXoAlSgnIk,7604
|
|
408
|
-
unstructured_ingest/v2/processes/connectors/couchbase.py,sha256=
|
|
409
|
-
unstructured_ingest/v2/processes/connectors/delta_table.py,sha256=
|
|
410
|
-
unstructured_ingest/v2/processes/connectors/gitlab.py,sha256=
|
|
411
|
-
unstructured_ingest/v2/processes/connectors/google_drive.py,sha256=
|
|
412
|
-
unstructured_ingest/v2/processes/connectors/kdbai.py,sha256=
|
|
413
|
-
unstructured_ingest/v2/processes/connectors/local.py,sha256=
|
|
414
|
-
unstructured_ingest/v2/processes/connectors/milvus.py,sha256=
|
|
415
|
-
unstructured_ingest/v2/processes/connectors/mongodb.py,sha256=
|
|
416
|
-
unstructured_ingest/v2/processes/connectors/
|
|
415
|
+
unstructured_ingest/v2/processes/connectors/couchbase.py,sha256=5Da-JWHXHcVcmJ_rqj4hZwURh_z7sJRcYpyx83Bc7zM,12132
|
|
416
|
+
unstructured_ingest/v2/processes/connectors/delta_table.py,sha256=SotSXZQ85_6TO906YvFi3yTml8jE9A_zV6nBJ4oTx8A,7075
|
|
417
|
+
unstructured_ingest/v2/processes/connectors/gitlab.py,sha256=ufE65Z8q_tC4oppGg5BsGXwSaL7RbEXcaagJQYsylNo,9984
|
|
418
|
+
unstructured_ingest/v2/processes/connectors/google_drive.py,sha256=5k7pdAzJGXSdyPCzW9vu2OaAjGVTo2JevDyGaXM1Hvk,13370
|
|
419
|
+
unstructured_ingest/v2/processes/connectors/kdbai.py,sha256=VRDAiou_7oWOIAgQTdOGQWxudzQEDopXM8XkfkQ2j6g,5004
|
|
420
|
+
unstructured_ingest/v2/processes/connectors/local.py,sha256=ZvWTj6ZYkwnvQMNFsZWoaQyp9zp0WVqAywMaHJ2kcAc,7153
|
|
421
|
+
unstructured_ingest/v2/processes/connectors/milvus.py,sha256=I57hyH5nz_p7utmUOkvt_6vCPxNIVQMoukplUgIyYi8,8503
|
|
422
|
+
unstructured_ingest/v2/processes/connectors/mongodb.py,sha256=yzcsHTJXVyuASeLr56OSratDQRiw5v68JSHPYpMEzzY,14309
|
|
423
|
+
unstructured_ingest/v2/processes/connectors/neo4j.py,sha256=lRtWe6xWYogT-y_r_o7HWvlFMf_OIPGQq_Z-5v7IOq0,14163
|
|
424
|
+
unstructured_ingest/v2/processes/connectors/onedrive.py,sha256=H8qk53YJXAPrPyISze0dybZdDFv5B7dVO3fIr10dVU8,15982
|
|
417
425
|
unstructured_ingest/v2/processes/connectors/outlook.py,sha256=KgNGM8hImRhy6_SpswRP2VwRD4VOrqqJoySgxf2oduI,9290
|
|
418
|
-
unstructured_ingest/v2/processes/connectors/pinecone.py,sha256=
|
|
426
|
+
unstructured_ingest/v2/processes/connectors/pinecone.py,sha256=cohF7gBj0opSGKXlENSdGfTtyIKMHd1pwu4ydeb7JAY,10605
|
|
419
427
|
unstructured_ingest/v2/processes/connectors/salesforce.py,sha256=2CiO2ZZiZ1Y1-nB7wcDlDVcpW2B7ut9wCj66rkkqho0,11616
|
|
420
428
|
unstructured_ingest/v2/processes/connectors/sharepoint.py,sha256=Ndn2Wm7RupfjAtlLxxQwJueeE0V8aGMbNVPuFq9nqdQ,19730
|
|
421
429
|
unstructured_ingest/v2/processes/connectors/slack.py,sha256=Z73VmQ3oUY09KoLEi5OBdQeDt4ONEY_02SglWQc6HXE,9252
|
|
@@ -427,51 +435,51 @@ unstructured_ingest/v2/processes/connectors/databricks/volumes_azure.py,sha256=P
|
|
|
427
435
|
unstructured_ingest/v2/processes/connectors/databricks/volumes_gcp.py,sha256=UUotY_-HpgSEJkvdQfZTlbxY7CRLZ4ctL8TlryeFvxk,2790
|
|
428
436
|
unstructured_ingest/v2/processes/connectors/databricks/volumes_native.py,sha256=Wk7s2_u5G0BOV5slvGc8IlUf7ivznY9PrgPqe6nlJKM,2897
|
|
429
437
|
unstructured_ingest/v2/processes/connectors/duckdb/__init__.py,sha256=5sVvJCWhU-YkjHIwk4W6BZCanFYK5W4xTpWtQ8xzeB4,561
|
|
430
|
-
unstructured_ingest/v2/processes/connectors/duckdb/base.py,sha256=
|
|
431
|
-
unstructured_ingest/v2/processes/connectors/duckdb/duckdb.py,sha256
|
|
432
|
-
unstructured_ingest/v2/processes/connectors/duckdb/motherduck.py,sha256=
|
|
438
|
+
unstructured_ingest/v2/processes/connectors/duckdb/base.py,sha256=FVblIddorGCh9D9GZ8zLVUm8n39PJA5JLoJeWd-tSy8,2610
|
|
439
|
+
unstructured_ingest/v2/processes/connectors/duckdb/duckdb.py,sha256=oUHHaLpO2pWW2Lu4Mc-XFjrA0ze97205WQ_xP95ua4M,4296
|
|
440
|
+
unstructured_ingest/v2/processes/connectors/duckdb/motherduck.py,sha256=mU5x6SnbFgRsVicNGh4y4gtR6ek7eQFinI0dQQmzMds,4481
|
|
433
441
|
unstructured_ingest/v2/processes/connectors/elasticsearch/__init__.py,sha256=Zzc0JNPP-eFqpwWw1Gp-XC8H-s__IgkYKzoagECycZY,829
|
|
434
|
-
unstructured_ingest/v2/processes/connectors/elasticsearch/elasticsearch.py,sha256=
|
|
442
|
+
unstructured_ingest/v2/processes/connectors/elasticsearch/elasticsearch.py,sha256=Ws6NoHvbXkxizbcvr1bKGkMMB7l_e-sfkQQGU6u7e0Y,18818
|
|
435
443
|
unstructured_ingest/v2/processes/connectors/elasticsearch/opensearch.py,sha256=qRz8Fyr2RSZIPZGkhPeme6AZxM0aX-c_xOa1ZtSr2Kg,6781
|
|
436
444
|
unstructured_ingest/v2/processes/connectors/fsspec/__init__.py,sha256=TtdeImM7Ypl_n6sl7I1JqX6bGSG0t_FqvCqE3Cy24og,1846
|
|
437
|
-
unstructured_ingest/v2/processes/connectors/fsspec/azure.py,sha256=
|
|
438
|
-
unstructured_ingest/v2/processes/connectors/fsspec/box.py,sha256=
|
|
439
|
-
unstructured_ingest/v2/processes/connectors/fsspec/dropbox.py,sha256=
|
|
440
|
-
unstructured_ingest/v2/processes/connectors/fsspec/fsspec.py,sha256=
|
|
441
|
-
unstructured_ingest/v2/processes/connectors/fsspec/gcs.py,sha256=
|
|
442
|
-
unstructured_ingest/v2/processes/connectors/fsspec/s3.py,sha256=
|
|
443
|
-
unstructured_ingest/v2/processes/connectors/fsspec/sftp.py,sha256=
|
|
445
|
+
unstructured_ingest/v2/processes/connectors/fsspec/azure.py,sha256=NWsouhaxeyxrS_WlZJ70X2YIdioFH5LSaRLhnCPYAH0,6034
|
|
446
|
+
unstructured_ingest/v2/processes/connectors/fsspec/box.py,sha256=B22aLjlr9n7xuw5Nma5qBENj3c164eZTZhf7dsQvPCs,4950
|
|
447
|
+
unstructured_ingest/v2/processes/connectors/fsspec/dropbox.py,sha256=ToPXjsmr6n7VObiiTjibxCZvit124sirIrQf4F07-0o,4500
|
|
448
|
+
unstructured_ingest/v2/processes/connectors/fsspec/fsspec.py,sha256=IAW6pXXKI2Jzj6dJsBcONNYGfTd3ur3xQ37P_2nMVjM,12978
|
|
449
|
+
unstructured_ingest/v2/processes/connectors/fsspec/gcs.py,sha256=TBppEqvWkkpUX8eUTL8lWgR0_9_oDsRfpiVmPlSAM24,6005
|
|
450
|
+
unstructured_ingest/v2/processes/connectors/fsspec/s3.py,sha256=l3TRKPEb0AJ7e0VS5w2SQAX8LkhylRs035CrjPjyx0I,5273
|
|
451
|
+
unstructured_ingest/v2/processes/connectors/fsspec/sftp.py,sha256=JsxXKXNI20mdgwR_A6Rnf4u8fsFwLe3AkJmIe_3NEKY,6150
|
|
444
452
|
unstructured_ingest/v2/processes/connectors/fsspec/utils.py,sha256=jec_Qfe2hbfahBuY-u8FnvHuv933AI5HwPFjOL3kEEY,456
|
|
445
453
|
unstructured_ingest/v2/processes/connectors/kafka/__init__.py,sha256=mQJ9Ex-QCfhz-BB5YWTfbPf7xGLd1i7FpjRr0ukbhNw,754
|
|
446
454
|
unstructured_ingest/v2/processes/connectors/kafka/cloud.py,sha256=1SqNdY8Q8JwwB57wk9efxKv_BCeUkxZJ2HJ526wuCMw,3294
|
|
447
|
-
unstructured_ingest/v2/processes/connectors/kafka/kafka.py,sha256=
|
|
455
|
+
unstructured_ingest/v2/processes/connectors/kafka/kafka.py,sha256=a-LWqYeJAK-g32UPgvvDt6W7dJp85N66aR_EKSR66RU,9685
|
|
448
456
|
unstructured_ingest/v2/processes/connectors/kafka/local.py,sha256=lUkmfbTxyQW87CXxbJaijIT6foV09Gi-IG9o08OgiEs,2581
|
|
449
457
|
unstructured_ingest/v2/processes/connectors/lancedb/__init__.py,sha256=LW37xZrn48JeHluRNulLTreUPdaF-ZU81F7MCUHcCv8,1253
|
|
450
458
|
unstructured_ingest/v2/processes/connectors/lancedb/aws.py,sha256=eeXWsh8UeVm1Ur53C4MEnpLplfO8U91KYgk--0kk5pE,1413
|
|
451
459
|
unstructured_ingest/v2/processes/connectors/lancedb/azure.py,sha256=Ms5vQVRIpTF1Q2qBl_bET9wbgaf4diPaH-iR8kJlr4E,1461
|
|
452
460
|
unstructured_ingest/v2/processes/connectors/lancedb/cloud.py,sha256=BFy0gW2OZ_qaZJM97m-tNsFaJPi9zOKrrd2y4thcNP0,1341
|
|
453
461
|
unstructured_ingest/v2/processes/connectors/lancedb/gcp.py,sha256=p5BPaFtS3y3Yh8PIr3tUqsAXrUYu4QYYAWQNh5W2ucE,1361
|
|
454
|
-
unstructured_ingest/v2/processes/connectors/lancedb/lancedb.py,sha256=
|
|
462
|
+
unstructured_ingest/v2/processes/connectors/lancedb/lancedb.py,sha256=oQbRZfocnRWqc9VIHgloYbEsfV0Ei_s1_-TKmRnTdYg,5714
|
|
455
463
|
unstructured_ingest/v2/processes/connectors/lancedb/local.py,sha256=_7-6iO6B60gAWwJUUrmlsRzYMFIBeZgu_QT3mhw5L0I,1272
|
|
456
464
|
unstructured_ingest/v2/processes/connectors/qdrant/__init__.py,sha256=xM19uYzAuGizVoZIM_hnVZ5AcBN69aOBGpqZcpWPtuE,760
|
|
457
465
|
unstructured_ingest/v2/processes/connectors/qdrant/cloud.py,sha256=accJ4sNWBVWV-KiVBDBDBYYx5A9CUoikP5NCErRmfik,1624
|
|
458
466
|
unstructured_ingest/v2/processes/connectors/qdrant/local.py,sha256=cGEyv3Oy6y4BQ4DU8yhJWMpL82QYwBVdPTxxNuV127U,1588
|
|
459
|
-
unstructured_ingest/v2/processes/connectors/qdrant/qdrant.py,sha256=
|
|
467
|
+
unstructured_ingest/v2/processes/connectors/qdrant/qdrant.py,sha256=ITRYXKYEFhlagSe-AKKGRvC8jzyWmhQLfHbFb0ax8o8,5438
|
|
460
468
|
unstructured_ingest/v2/processes/connectors/qdrant/server.py,sha256=odvCZWZp8DmRxLXMR7tHhW-c7UQbix1_zpFdfXfCvKI,1613
|
|
461
469
|
unstructured_ingest/v2/processes/connectors/sql/__init__.py,sha256=E16CXRBw8fZKTuXIECns5wif_I07oncBHskVxHC4p7w,1448
|
|
462
|
-
unstructured_ingest/v2/processes/connectors/sql/postgres.py,sha256=
|
|
463
|
-
unstructured_ingest/v2/processes/connectors/sql/singlestore.py,sha256
|
|
464
|
-
unstructured_ingest/v2/processes/connectors/sql/snowflake.py,sha256=
|
|
465
|
-
unstructured_ingest/v2/processes/connectors/sql/sql.py,sha256=
|
|
466
|
-
unstructured_ingest/v2/processes/connectors/sql/sqlite.py,sha256=
|
|
470
|
+
unstructured_ingest/v2/processes/connectors/sql/postgres.py,sha256=BATfX1PQGT2kl8jAbdNKXTojYKJxh3pJV9-h3OBnHGo,5124
|
|
471
|
+
unstructured_ingest/v2/processes/connectors/sql/singlestore.py,sha256=-2E9dsdNhjAiuzeSBytBbAhljOhvQ8kN8wvlUESvLo8,5465
|
|
472
|
+
unstructured_ingest/v2/processes/connectors/sql/snowflake.py,sha256=TApGi5G0W0TktJFmo4QWDR3X3R-MUQTKbIxjAX_M8ZI,7402
|
|
473
|
+
unstructured_ingest/v2/processes/connectors/sql/sql.py,sha256=LlhdBL_yPsPwNzDPwAblUDLBOsvorD6bB3OUrxPk_PQ,15112
|
|
474
|
+
unstructured_ingest/v2/processes/connectors/sql/sqlite.py,sha256=Q5RAqn5Ccw-pbeKZLkiMn5IVw6EemCMukXzLlS7pDhc,5162
|
|
467
475
|
unstructured_ingest/v2/processes/connectors/weaviate/__init__.py,sha256=NMiwnVWan69KnzVELvaqX34tMhCytIa-C8EDsXVKsEo,856
|
|
468
476
|
unstructured_ingest/v2/processes/connectors/weaviate/cloud.py,sha256=bXtfEYLquR-BszZ5S_lQ4JbETNs9Vozgpfm8x9egAmE,6251
|
|
469
477
|
unstructured_ingest/v2/processes/connectors/weaviate/embedded.py,sha256=S8Zg8StuZT-k7tCg1D5YShO1-vJYYk9-M1bE1fIqx64,3014
|
|
470
478
|
unstructured_ingest/v2/processes/connectors/weaviate/local.py,sha256=LuTBKPseVewsz8VqxRPRLfGEm3BeI9nBZxpy7ZU5tOA,2201
|
|
471
|
-
unstructured_ingest/v2/processes/connectors/weaviate/weaviate.py,sha256=
|
|
472
|
-
unstructured_ingest-0.3.
|
|
473
|
-
unstructured_ingest-0.3.
|
|
474
|
-
unstructured_ingest-0.3.
|
|
475
|
-
unstructured_ingest-0.3.
|
|
476
|
-
unstructured_ingest-0.3.
|
|
477
|
-
unstructured_ingest-0.3.
|
|
479
|
+
unstructured_ingest/v2/processes/connectors/weaviate/weaviate.py,sha256=X1yv1H_orDQ-J965EMXhR2XaURqe8vovSi9n1fk85B4,10499
|
|
480
|
+
unstructured_ingest-0.3.10.dist-info/LICENSE.md,sha256=SxkKP_62uIAKb9mb1eH7FH4Kn2aYT09fgjKpJt5PyTk,11360
|
|
481
|
+
unstructured_ingest-0.3.10.dist-info/METADATA,sha256=emdZRN3DNrVAwB6fUYQonLRpymZzh4ktHT73x2_vdxg,7623
|
|
482
|
+
unstructured_ingest-0.3.10.dist-info/WHEEL,sha256=GV9aMThwP_4oNCtvEC2ec3qUYutgWeAzklro_0m4WJQ,91
|
|
483
|
+
unstructured_ingest-0.3.10.dist-info/entry_points.txt,sha256=gUAAFnjFPnBgThJSEbw0N5ZjxtaKlT1s9e05_arQrNw,70
|
|
484
|
+
unstructured_ingest-0.3.10.dist-info/top_level.txt,sha256=DMuDMHZRMdeay8v8Kdi855muIv92F0OkutvBCaBEW6M,25
|
|
485
|
+
unstructured_ingest-0.3.10.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
{unstructured_ingest-0.3.8.dist-info → unstructured_ingest-0.3.10.dist-info}/entry_points.txt
RENAMED
|
File without changes
|
|
File without changes
|