unstructured-ingest 0.5.13__py3-none-any.whl → 0.5.14__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_zendesk.py +1 -1
- unstructured_ingest/__version__.py +1 -1
- unstructured_ingest/v2/processes/connectors/__init__.py +3 -0
- unstructured_ingest/v2/processes/connectors/zendesk/__init__.py +0 -31
- {unstructured_ingest-0.5.13.dist-info → unstructured_ingest-0.5.14.dist-info}/METADATA +20 -20
- {unstructured_ingest-0.5.13.dist-info → unstructured_ingest-0.5.14.dist-info}/RECORD +10 -10
- {unstructured_ingest-0.5.13.dist-info → unstructured_ingest-0.5.14.dist-info}/LICENSE.md +0 -0
- {unstructured_ingest-0.5.13.dist-info → unstructured_ingest-0.5.14.dist-info}/WHEEL +0 -0
- {unstructured_ingest-0.5.13.dist-info → unstructured_ingest-0.5.14.dist-info}/entry_points.txt +0 -0
- {unstructured_ingest-0.5.13.dist-info → unstructured_ingest-0.5.14.dist-info}/top_level.txt +0 -0
|
@@ -11,7 +11,7 @@ from test.integration.connectors.utils.validation.source import (
|
|
|
11
11
|
)
|
|
12
12
|
from test.integration.utils import requires_env
|
|
13
13
|
from unstructured_ingest.v2.errors import UserAuthError
|
|
14
|
-
from unstructured_ingest.v2.processes.connectors.zendesk import (
|
|
14
|
+
from unstructured_ingest.v2.processes.connectors.zendesk.zendesk import (
|
|
15
15
|
CONNECTOR_TYPE,
|
|
16
16
|
ZendeskAccessConfig,
|
|
17
17
|
ZendeskConnectionConfig,
|
|
@@ -1 +1 @@
|
|
|
1
|
-
__version__ = "0.5.
|
|
1
|
+
__version__ = "0.5.14" # pragma: no cover
|
|
@@ -64,6 +64,8 @@ from .slack import CONNECTOR_TYPE as SLACK_CONNECTOR_TYPE
|
|
|
64
64
|
from .slack import slack_source_entry
|
|
65
65
|
from .vectara import CONNECTOR_TYPE as VECTARA_CONNECTOR_TYPE
|
|
66
66
|
from .vectara import vectara_destination_entry
|
|
67
|
+
from .zendesk.zendesk import CONNECTOR_TYPE as ZENDESK_CONNECTOR_TYPE
|
|
68
|
+
from .zendesk.zendesk import zendesk_source_entry
|
|
67
69
|
|
|
68
70
|
add_source_entry(source_type=ASTRA_DB_CONNECTOR_TYPE, entry=astra_db_source_entry)
|
|
69
71
|
add_destination_entry(destination_type=ASTRA_DB_CONNECTOR_TYPE, entry=astra_db_destination_entry)
|
|
@@ -119,3 +121,4 @@ add_source_entry(source_type=DISCORD_CONNECTOR_TYPE, entry=discord_source_entry)
|
|
|
119
121
|
add_destination_entry(destination_type=REDIS_CONNECTOR_TYPE, entry=redis_destination_entry)
|
|
120
122
|
|
|
121
123
|
add_source_entry(source_type=JIRA_CONNECTOR_TYPE, entry=jira_source_entry)
|
|
124
|
+
add_source_entry(source_type=ZENDESK_CONNECTOR_TYPE, entry=zendesk_source_entry)
|
|
@@ -1,31 +0,0 @@
|
|
|
1
|
-
from unstructured_ingest.v2.processes.connector_registry import (
|
|
2
|
-
add_source_entry,
|
|
3
|
-
)
|
|
4
|
-
|
|
5
|
-
from .zendesk import (
|
|
6
|
-
CONNECTOR_TYPE,
|
|
7
|
-
ZendeskAccessConfig,
|
|
8
|
-
ZendeskClient,
|
|
9
|
-
ZendeskConnectionConfig,
|
|
10
|
-
ZendeskDownloader,
|
|
11
|
-
ZendeskDownloaderConfig,
|
|
12
|
-
ZendeskIndexer,
|
|
13
|
-
ZendeskIndexerConfig,
|
|
14
|
-
ZendeskTicket,
|
|
15
|
-
zendesk_source_entry,
|
|
16
|
-
)
|
|
17
|
-
|
|
18
|
-
__all__ = [
|
|
19
|
-
"add_source_entry",
|
|
20
|
-
"zendesk_source_entry",
|
|
21
|
-
"ZendeskAccessConfig",
|
|
22
|
-
"ZendeskClient",
|
|
23
|
-
"ZendeskConnectionConfig",
|
|
24
|
-
"ZendeskDownloader",
|
|
25
|
-
"ZendeskDownloaderConfig",
|
|
26
|
-
"ZendeskIndexer",
|
|
27
|
-
"ZendeskIndexerConfig",
|
|
28
|
-
"ZendeskTicket",
|
|
29
|
-
]
|
|
30
|
-
|
|
31
|
-
add_source_entry(source_type=CONNECTOR_TYPE, entry=zendesk_source_entry)
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.2
|
|
2
2
|
Name: unstructured-ingest
|
|
3
|
-
Version: 0.5.
|
|
3
|
+
Version: 0.5.14
|
|
4
4
|
Summary: A library that prepares raw documents for downstream ML tasks.
|
|
5
5
|
Home-page: https://github.com/Unstructured-IO/unstructured-ingest
|
|
6
6
|
Author: Unstructured Technologies
|
|
@@ -22,13 +22,13 @@ Classifier: Topic :: Scientific/Engineering :: Artificial Intelligence
|
|
|
22
22
|
Requires-Python: >=3.9.0,<3.14
|
|
23
23
|
Description-Content-Type: text/markdown
|
|
24
24
|
License-File: LICENSE.md
|
|
25
|
-
Requires-Dist: python-dateutil
|
|
26
|
-
Requires-Dist: dataclasses_json
|
|
27
25
|
Requires-Dist: pandas
|
|
26
|
+
Requires-Dist: opentelemetry-sdk
|
|
27
|
+
Requires-Dist: python-dateutil
|
|
28
28
|
Requires-Dist: pydantic>=2.7
|
|
29
29
|
Requires-Dist: click
|
|
30
|
-
Requires-Dist: opentelemetry-sdk
|
|
31
30
|
Requires-Dist: tqdm
|
|
31
|
+
Requires-Dist: dataclasses_json
|
|
32
32
|
Provides-Extra: remote
|
|
33
33
|
Requires-Dist: unstructured-client>=0.30.0; extra == "remote"
|
|
34
34
|
Provides-Extra: csv
|
|
@@ -86,8 +86,8 @@ 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
|
|
89
|
-
Requires-Dist: deltalake; extra == "delta-table"
|
|
90
89
|
Requires-Dist: boto3; extra == "delta-table"
|
|
90
|
+
Requires-Dist: deltalake; extra == "delta-table"
|
|
91
91
|
Provides-Extra: discord
|
|
92
92
|
Requires-Dist: discord.py; extra == "discord"
|
|
93
93
|
Provides-Extra: dropbox
|
|
@@ -124,23 +124,23 @@ 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: cymple; extra == "neo4j"
|
|
128
127
|
Requires-Dist: neo4j-rust-ext; extra == "neo4j"
|
|
129
128
|
Requires-Dist: networkx; extra == "neo4j"
|
|
129
|
+
Requires-Dist: cymple; extra == "neo4j"
|
|
130
130
|
Provides-Extra: notion
|
|
131
|
+
Requires-Dist: httpx; extra == "notion"
|
|
132
|
+
Requires-Dist: backoff; extra == "notion"
|
|
131
133
|
Requires-Dist: notion-client; extra == "notion"
|
|
132
134
|
Requires-Dist: htmlBuilder; extra == "notion"
|
|
133
|
-
Requires-Dist: backoff; extra == "notion"
|
|
134
|
-
Requires-Dist: httpx; extra == "notion"
|
|
135
135
|
Provides-Extra: onedrive
|
|
136
|
-
Requires-Dist: Office365-REST-Python-Client; extra == "onedrive"
|
|
137
136
|
Requires-Dist: msal; extra == "onedrive"
|
|
138
137
|
Requires-Dist: bs4; extra == "onedrive"
|
|
138
|
+
Requires-Dist: Office365-REST-Python-Client; extra == "onedrive"
|
|
139
139
|
Provides-Extra: opensearch
|
|
140
140
|
Requires-Dist: opensearch-py; extra == "opensearch"
|
|
141
141
|
Provides-Extra: outlook
|
|
142
|
-
Requires-Dist: Office365-REST-Python-Client; extra == "outlook"
|
|
143
142
|
Requires-Dist: msal; extra == "outlook"
|
|
143
|
+
Requires-Dist: Office365-REST-Python-Client; extra == "outlook"
|
|
144
144
|
Provides-Extra: pinecone
|
|
145
145
|
Requires-Dist: pinecone-client>=3.7.1; extra == "pinecone"
|
|
146
146
|
Provides-Extra: postgres
|
|
@@ -152,11 +152,11 @@ Requires-Dist: praw; extra == "reddit"
|
|
|
152
152
|
Provides-Extra: redis
|
|
153
153
|
Requires-Dist: redis; extra == "redis"
|
|
154
154
|
Provides-Extra: s3
|
|
155
|
-
Requires-Dist: fsspec; extra == "s3"
|
|
156
155
|
Requires-Dist: s3fs; extra == "s3"
|
|
156
|
+
Requires-Dist: fsspec; extra == "s3"
|
|
157
157
|
Provides-Extra: sharepoint
|
|
158
|
-
Requires-Dist: Office365-REST-Python-Client; extra == "sharepoint"
|
|
159
158
|
Requires-Dist: msal; extra == "sharepoint"
|
|
159
|
+
Requires-Dist: Office365-REST-Python-Client; extra == "sharepoint"
|
|
160
160
|
Provides-Extra: salesforce
|
|
161
161
|
Requires-Dist: simple-salesforce; extra == "salesforce"
|
|
162
162
|
Provides-Extra: sftp
|
|
@@ -165,8 +165,8 @@ Requires-Dist: fsspec; extra == "sftp"
|
|
|
165
165
|
Provides-Extra: slack
|
|
166
166
|
Requires-Dist: slack_sdk[optional]; extra == "slack"
|
|
167
167
|
Provides-Extra: snowflake
|
|
168
|
-
Requires-Dist: snowflake-connector-python; extra == "snowflake"
|
|
169
168
|
Requires-Dist: psycopg2-binary; extra == "snowflake"
|
|
169
|
+
Requires-Dist: snowflake-connector-python; extra == "snowflake"
|
|
170
170
|
Provides-Extra: wikipedia
|
|
171
171
|
Requires-Dist: wikipedia; extra == "wikipedia"
|
|
172
172
|
Provides-Extra: weaviate
|
|
@@ -178,22 +178,22 @@ Requires-Dist: databricks-sql-connector; extra == "databricks-delta-tables"
|
|
|
178
178
|
Provides-Extra: singlestore
|
|
179
179
|
Requires-Dist: singlestoredb; extra == "singlestore"
|
|
180
180
|
Provides-Extra: vectara
|
|
181
|
+
Requires-Dist: httpx; extra == "vectara"
|
|
181
182
|
Requires-Dist: requests; extra == "vectara"
|
|
182
183
|
Requires-Dist: aiofiles; extra == "vectara"
|
|
183
|
-
Requires-Dist: httpx; extra == "vectara"
|
|
184
184
|
Provides-Extra: vastdb
|
|
185
185
|
Requires-Dist: ibis; extra == "vastdb"
|
|
186
|
-
Requires-Dist: vastdb; extra == "vastdb"
|
|
187
186
|
Requires-Dist: pyarrow; extra == "vastdb"
|
|
187
|
+
Requires-Dist: vastdb; extra == "vastdb"
|
|
188
188
|
Provides-Extra: zendesk
|
|
189
|
-
Requires-Dist: bs4; extra == "zendesk"
|
|
190
|
-
Requires-Dist: aiofiles; extra == "zendesk"
|
|
191
189
|
Requires-Dist: httpx; extra == "zendesk"
|
|
190
|
+
Requires-Dist: aiofiles; extra == "zendesk"
|
|
191
|
+
Requires-Dist: bs4; extra == "zendesk"
|
|
192
192
|
Provides-Extra: embed-huggingface
|
|
193
193
|
Requires-Dist: sentence-transformers; extra == "embed-huggingface"
|
|
194
194
|
Provides-Extra: embed-octoai
|
|
195
|
-
Requires-Dist: tiktoken; extra == "embed-octoai"
|
|
196
195
|
Requires-Dist: openai; extra == "embed-octoai"
|
|
196
|
+
Requires-Dist: tiktoken; extra == "embed-octoai"
|
|
197
197
|
Provides-Extra: embed-vertexai
|
|
198
198
|
Requires-Dist: vertexai; extra == "embed-vertexai"
|
|
199
199
|
Provides-Extra: embed-voyageai
|
|
@@ -201,11 +201,11 @@ Requires-Dist: voyageai; extra == "embed-voyageai"
|
|
|
201
201
|
Provides-Extra: embed-mixedbreadai
|
|
202
202
|
Requires-Dist: mixedbread-ai; extra == "embed-mixedbreadai"
|
|
203
203
|
Provides-Extra: openai
|
|
204
|
-
Requires-Dist: tiktoken; extra == "openai"
|
|
205
204
|
Requires-Dist: openai; extra == "openai"
|
|
205
|
+
Requires-Dist: tiktoken; extra == "openai"
|
|
206
206
|
Provides-Extra: bedrock
|
|
207
|
-
Requires-Dist: boto3; extra == "bedrock"
|
|
208
207
|
Requires-Dist: aioboto3; extra == "bedrock"
|
|
208
|
+
Requires-Dist: boto3; extra == "bedrock"
|
|
209
209
|
Provides-Extra: togetherai
|
|
210
210
|
Requires-Dist: together; extra == "togetherai"
|
|
211
211
|
Dynamic: author
|
|
@@ -25,7 +25,7 @@ test/integration/connectors/test_redis.py,sha256=1aKwOb-K4zCxZwHmgW_WzGJwqLntbWT
|
|
|
25
25
|
test/integration/connectors/test_s3.py,sha256=E1dypeag_E3OIfpQWIz3jb7ctRHRD63UtyTrzyvJzpc,7473
|
|
26
26
|
test/integration/connectors/test_sharepoint.py,sha256=weGby5YD6se7R7KLEq96hxUZYPzwoqZqXXTPhtQWZsQ,7646
|
|
27
27
|
test/integration/connectors/test_vectara.py,sha256=4kKOOTGUjeZw2jKRcgVDI7ifbRPRZfjjVO4d_7H5C6I,8710
|
|
28
|
-
test/integration/connectors/test_zendesk.py,sha256=
|
|
28
|
+
test/integration/connectors/test_zendesk.py,sha256=Jc1GcMBnCrpzm6_6tJi-FdYxSs15xnp94a7kVwrObMc,4167
|
|
29
29
|
test/integration/connectors/databricks/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
30
30
|
test/integration/connectors/databricks/test_volumes_native.py,sha256=KqiapQAV0s_Zv0CO8BwYoiCk30dwrSZzuigUWNRIem0,9559
|
|
31
31
|
test/integration/connectors/discord/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
@@ -111,7 +111,7 @@ test/unit/v2/partitioners/test_partitioner.py,sha256=iIYg7IpftV3LusoO4H8tr1IHY1U
|
|
|
111
111
|
test/unit/v2/utils/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
112
112
|
test/unit/v2/utils/data_generator.py,sha256=UoYVNjG4S4wlaA9gceQ82HIpF9_6I1UTHD1_GrQBHp0,973
|
|
113
113
|
unstructured_ingest/__init__.py,sha256=U4S_2y3zgLZVfMenHRaJFBW8yqh2mUBuI291LGQVOJ8,35
|
|
114
|
-
unstructured_ingest/__version__.py,sha256
|
|
114
|
+
unstructured_ingest/__version__.py,sha256=-WADymCsmQMFkVZ96tUEJfzNLFjyNrB26q5Or_LtNJs,43
|
|
115
115
|
unstructured_ingest/error.py,sha256=qDncnJgbf5ils956RcO2CGlAKYDT5OaEM9Clv1JVTNc,1448
|
|
116
116
|
unstructured_ingest/interfaces.py,sha256=7DOnDpGvUNlCoFR7UPRGmOarqH5sFtuUOO5vf8X3oTM,31489
|
|
117
117
|
unstructured_ingest/logger.py,sha256=S5nSqGcABoQyeicgRnBQFjDScCaTvFVivOCvbo-laL0,4479
|
|
@@ -426,7 +426,7 @@ unstructured_ingest/v2/processes/embedder.py,sha256=4x-Rt5UCvwdgihDAr24hvTGDEd1C
|
|
|
426
426
|
unstructured_ingest/v2/processes/filter.py,sha256=kjUmMw2SDq2bme0JCAOxs6cJriIG6Ty09KOznS-xz08,2145
|
|
427
427
|
unstructured_ingest/v2/processes/partitioner.py,sha256=HxopDSbovLh_1epeGeVtuWEX7v5KG35BowwKIJ_y4e8,9910
|
|
428
428
|
unstructured_ingest/v2/processes/uncompress.py,sha256=Z_XfsITGdyaRwhtNUc7bMj5Y2jLuBge8KoK4nxhqKag,2425
|
|
429
|
-
unstructured_ingest/v2/processes/connectors/__init__.py,sha256=
|
|
429
|
+
unstructured_ingest/v2/processes/connectors/__init__.py,sha256=ebLvZes84qRx4eS20SkvlVH6WIIM76hifyUgkUJ-dfg,6588
|
|
430
430
|
unstructured_ingest/v2/processes/connectors/airtable.py,sha256=eeZJe-bBNxt5Sa-XEFCdcGeJCguJU5WN2Mv9kLp5dVQ,8917
|
|
431
431
|
unstructured_ingest/v2/processes/connectors/astradb.py,sha256=E6fB4anCd_gtSzVUsZ5pDrfdxs5AWERQM_NEfeenfEs,18202
|
|
432
432
|
unstructured_ingest/v2/processes/connectors/azure_ai_search.py,sha256=ngPDpU0oZ6m5sxIlB6u5ebQpqCS_SJ-_amCC1KQ03EQ,11529
|
|
@@ -572,12 +572,12 @@ unstructured_ingest/v2/processes/connectors/weaviate/cloud.py,sha256=bXtfEYLquR-
|
|
|
572
572
|
unstructured_ingest/v2/processes/connectors/weaviate/embedded.py,sha256=S8Zg8StuZT-k7tCg1D5YShO1-vJYYk9-M1bE1fIqx64,3014
|
|
573
573
|
unstructured_ingest/v2/processes/connectors/weaviate/local.py,sha256=LuTBKPseVewsz8VqxRPRLfGEm3BeI9nBZxpy7ZU5tOA,2201
|
|
574
574
|
unstructured_ingest/v2/processes/connectors/weaviate/weaviate.py,sha256=UZ_s8dnVNx9BWFG2fPah4VbQbgEDF4nP78bQeU3jg08,12821
|
|
575
|
-
unstructured_ingest/v2/processes/connectors/zendesk/__init__.py,sha256=
|
|
575
|
+
unstructured_ingest/v2/processes/connectors/zendesk/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
576
576
|
unstructured_ingest/v2/processes/connectors/zendesk/client.py,sha256=MNyI6SUuxZHf_6zONoC6jR2f9BvyTYoMyGKDOhl4kgs,7897
|
|
577
577
|
unstructured_ingest/v2/processes/connectors/zendesk/zendesk.py,sha256=vQHZa5YYiDPXXPRAPMnPXhh0QzXeiBVx_YIWskZBQIc,15465
|
|
578
|
-
unstructured_ingest-0.5.
|
|
579
|
-
unstructured_ingest-0.5.
|
|
580
|
-
unstructured_ingest-0.5.
|
|
581
|
-
unstructured_ingest-0.5.
|
|
582
|
-
unstructured_ingest-0.5.
|
|
583
|
-
unstructured_ingest-0.5.
|
|
578
|
+
unstructured_ingest-0.5.14.dist-info/LICENSE.md,sha256=SxkKP_62uIAKb9mb1eH7FH4Kn2aYT09fgjKpJt5PyTk,11360
|
|
579
|
+
unstructured_ingest-0.5.14.dist-info/METADATA,sha256=MWLSj6JZslpZjjlZhvn34zn_AJdlVHZibG2RPEbaMjE,8465
|
|
580
|
+
unstructured_ingest-0.5.14.dist-info/WHEEL,sha256=In9FTNxeP60KnTkGw7wk6mJPYd_dQSjEZmXdBdMCI-8,91
|
|
581
|
+
unstructured_ingest-0.5.14.dist-info/entry_points.txt,sha256=gUAAFnjFPnBgThJSEbw0N5ZjxtaKlT1s9e05_arQrNw,70
|
|
582
|
+
unstructured_ingest-0.5.14.dist-info/top_level.txt,sha256=DMuDMHZRMdeay8v8Kdi855muIv92F0OkutvBCaBEW6M,25
|
|
583
|
+
unstructured_ingest-0.5.14.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
{unstructured_ingest-0.5.13.dist-info → unstructured_ingest-0.5.14.dist-info}/entry_points.txt
RENAMED
|
File without changes
|
|
File without changes
|