unstructured-ingest 0.0.3__py3-none-any.whl → 0.0.4__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.

Potentially problematic release.


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

Files changed (123) hide show
  1. unstructured_ingest/__version__.py +1 -1
  2. unstructured_ingest/cli/cli.py +6 -1
  3. unstructured_ingest/cli/cmds/__init__.py +4 -4
  4. unstructured_ingest/cli/cmds/{astra.py → astradb.py} +9 -9
  5. unstructured_ingest/cli/interfaces.py +13 -6
  6. unstructured_ingest/connector/{astra.py → astradb.py} +29 -29
  7. unstructured_ingest/connector/biomed.py +12 -5
  8. unstructured_ingest/connector/confluence.py +3 -3
  9. unstructured_ingest/connector/github.py +3 -2
  10. unstructured_ingest/connector/google_drive.py +1 -2
  11. unstructured_ingest/connector/mongodb.py +1 -2
  12. unstructured_ingest/connector/notion/client.py +31 -16
  13. unstructured_ingest/connector/notion/connector.py +3 -2
  14. unstructured_ingest/connector/registry.py +2 -2
  15. unstructured_ingest/connector/vectara.py +7 -2
  16. unstructured_ingest/interfaces.py +13 -9
  17. unstructured_ingest/pipeline/interfaces.py +8 -3
  18. unstructured_ingest/pipeline/reformat/chunking.py +13 -9
  19. unstructured_ingest/pipeline/reformat/embedding.py +3 -3
  20. unstructured_ingest/runner/__init__.py +2 -2
  21. unstructured_ingest/runner/{astra.py → astradb.py} +7 -7
  22. unstructured_ingest/runner/writers/__init__.py +2 -2
  23. unstructured_ingest/runner/writers/{astra.py → astradb.py} +7 -7
  24. unstructured_ingest/utils/chunking.py +45 -0
  25. unstructured_ingest/utils/dep_check.py +1 -1
  26. unstructured_ingest/utils/google_filetype.py +9 -0
  27. unstructured_ingest/v2/cli/base/cmd.py +57 -13
  28. unstructured_ingest/v2/cli/base/dest.py +21 -12
  29. unstructured_ingest/v2/cli/base/src.py +35 -23
  30. unstructured_ingest/v2/cli/cmds.py +14 -0
  31. unstructured_ingest/v2/cli/{utils.py → utils/click.py} +36 -89
  32. unstructured_ingest/v2/cli/utils/model_conversion.py +199 -0
  33. unstructured_ingest/v2/interfaces/connector.py +5 -7
  34. unstructured_ingest/v2/interfaces/downloader.py +8 -5
  35. unstructured_ingest/v2/interfaces/file_data.py +8 -2
  36. unstructured_ingest/v2/interfaces/indexer.py +3 -4
  37. unstructured_ingest/v2/interfaces/processor.py +10 -10
  38. unstructured_ingest/v2/interfaces/upload_stager.py +3 -3
  39. unstructured_ingest/v2/interfaces/uploader.py +3 -3
  40. unstructured_ingest/v2/pipeline/pipeline.py +1 -5
  41. unstructured_ingest/v2/pipeline/steps/chunk.py +5 -11
  42. unstructured_ingest/v2/pipeline/steps/download.py +13 -11
  43. unstructured_ingest/v2/pipeline/steps/embed.py +5 -11
  44. unstructured_ingest/v2/pipeline/steps/filter.py +1 -6
  45. unstructured_ingest/v2/pipeline/steps/index.py +14 -10
  46. unstructured_ingest/v2/pipeline/steps/partition.py +5 -5
  47. unstructured_ingest/v2/pipeline/steps/stage.py +4 -7
  48. unstructured_ingest/v2/pipeline/steps/uncompress.py +1 -6
  49. unstructured_ingest/v2/pipeline/steps/upload.py +2 -9
  50. unstructured_ingest/v2/processes/__init__.py +18 -0
  51. unstructured_ingest/v2/processes/chunker.py +74 -28
  52. unstructured_ingest/v2/processes/connector_registry.py +8 -2
  53. unstructured_ingest/v2/processes/connectors/__init__.py +13 -3
  54. unstructured_ingest/v2/processes/connectors/{astra.py → astradb.py} +45 -35
  55. unstructured_ingest/v2/processes/connectors/azure_cognitive_search.py +30 -27
  56. unstructured_ingest/v2/processes/connectors/chroma.py +30 -21
  57. unstructured_ingest/v2/processes/connectors/couchbase.py +151 -0
  58. unstructured_ingest/v2/processes/connectors/databricks_volumes.py +87 -32
  59. unstructured_ingest/v2/processes/connectors/elasticsearch.py +70 -45
  60. unstructured_ingest/v2/processes/connectors/fsspec/azure.py +39 -16
  61. unstructured_ingest/v2/processes/connectors/fsspec/box.py +15 -13
  62. unstructured_ingest/v2/processes/connectors/fsspec/dropbox.py +10 -11
  63. unstructured_ingest/v2/processes/connectors/fsspec/fsspec.py +20 -34
  64. unstructured_ingest/v2/processes/connectors/fsspec/gcs.py +38 -13
  65. unstructured_ingest/v2/processes/connectors/fsspec/s3.py +31 -17
  66. unstructured_ingest/v2/processes/connectors/fsspec/sftp.py +19 -28
  67. unstructured_ingest/v2/processes/connectors/google_drive.py +40 -34
  68. unstructured_ingest/v2/processes/connectors/local.py +22 -14
  69. unstructured_ingest/v2/processes/connectors/milvus.py +22 -18
  70. unstructured_ingest/v2/processes/connectors/mongodb.py +22 -18
  71. unstructured_ingest/v2/processes/connectors/onedrive.py +17 -14
  72. unstructured_ingest/v2/processes/connectors/opensearch.py +66 -56
  73. unstructured_ingest/v2/processes/connectors/pinecone.py +23 -20
  74. unstructured_ingest/v2/processes/connectors/salesforce.py +26 -18
  75. unstructured_ingest/v2/processes/connectors/sharepoint.py +51 -26
  76. unstructured_ingest/v2/processes/connectors/singlestore.py +11 -15
  77. unstructured_ingest/v2/processes/connectors/sql.py +29 -31
  78. unstructured_ingest/v2/processes/connectors/weaviate.py +22 -13
  79. unstructured_ingest/v2/processes/embedder.py +106 -47
  80. unstructured_ingest/v2/processes/filter.py +11 -5
  81. unstructured_ingest/v2/processes/partitioner.py +79 -33
  82. unstructured_ingest/v2/processes/uncompress.py +3 -3
  83. unstructured_ingest/v2/utils.py +45 -0
  84. unstructured_ingest-0.0.4.dist-info/METADATA +571 -0
  85. {unstructured_ingest-0.0.3.dist-info → unstructured_ingest-0.0.4.dist-info}/RECORD +89 -116
  86. {unstructured_ingest-0.0.3.dist-info → unstructured_ingest-0.0.4.dist-info}/WHEEL +1 -1
  87. unstructured_ingest/v2/cli/cmds/__init__.py +0 -89
  88. unstructured_ingest/v2/cli/cmds/astra.py +0 -85
  89. unstructured_ingest/v2/cli/cmds/azure_cognitive_search.py +0 -72
  90. unstructured_ingest/v2/cli/cmds/chroma.py +0 -108
  91. unstructured_ingest/v2/cli/cmds/databricks_volumes.py +0 -161
  92. unstructured_ingest/v2/cli/cmds/elasticsearch.py +0 -159
  93. unstructured_ingest/v2/cli/cmds/fsspec/azure.py +0 -84
  94. unstructured_ingest/v2/cli/cmds/fsspec/box.py +0 -58
  95. unstructured_ingest/v2/cli/cmds/fsspec/dropbox.py +0 -58
  96. unstructured_ingest/v2/cli/cmds/fsspec/fsspec.py +0 -69
  97. unstructured_ingest/v2/cli/cmds/fsspec/gcs.py +0 -81
  98. unstructured_ingest/v2/cli/cmds/fsspec/s3.py +0 -84
  99. unstructured_ingest/v2/cli/cmds/fsspec/sftp.py +0 -80
  100. unstructured_ingest/v2/cli/cmds/google_drive.py +0 -74
  101. unstructured_ingest/v2/cli/cmds/local.py +0 -52
  102. unstructured_ingest/v2/cli/cmds/milvus.py +0 -72
  103. unstructured_ingest/v2/cli/cmds/mongodb.py +0 -62
  104. unstructured_ingest/v2/cli/cmds/onedrive.py +0 -91
  105. unstructured_ingest/v2/cli/cmds/opensearch.py +0 -93
  106. unstructured_ingest/v2/cli/cmds/pinecone.py +0 -62
  107. unstructured_ingest/v2/cli/cmds/salesforce.py +0 -79
  108. unstructured_ingest/v2/cli/cmds/sharepoint.py +0 -112
  109. unstructured_ingest/v2/cli/cmds/singlestore.py +0 -96
  110. unstructured_ingest/v2/cli/cmds/sql.py +0 -84
  111. unstructured_ingest/v2/cli/cmds/weaviate.py +0 -100
  112. unstructured_ingest/v2/cli/configs/__init__.py +0 -13
  113. unstructured_ingest/v2/cli/configs/chunk.py +0 -89
  114. unstructured_ingest/v2/cli/configs/embed.py +0 -74
  115. unstructured_ingest/v2/cli/configs/filter.py +0 -28
  116. unstructured_ingest/v2/cli/configs/partition.py +0 -99
  117. unstructured_ingest/v2/cli/configs/processor.py +0 -88
  118. unstructured_ingest/v2/cli/interfaces.py +0 -27
  119. unstructured_ingest/v2/pipeline/utils.py +0 -15
  120. unstructured_ingest-0.0.3.dist-info/METADATA +0 -175
  121. /unstructured_ingest/v2/cli/{cmds/fsspec → utils}/__init__.py +0 -0
  122. {unstructured_ingest-0.0.3.dist-info → unstructured_ingest-0.0.4.dist-info}/entry_points.txt +0 -0
  123. {unstructured_ingest-0.0.3.dist-info → unstructured_ingest-0.0.4.dist-info}/top_level.txt +0 -0
@@ -1,74 +0,0 @@
1
- from dataclasses import dataclass
2
- from typing import Any
3
-
4
- import click
5
- from dataclasses_json.core import Json
6
- from unstructured.embed import EMBEDDING_PROVIDER_TO_CLASS_MAP
7
-
8
- from unstructured_ingest.v2.cli.interfaces import CliConfig
9
-
10
-
11
- @dataclass
12
- class EmbedderCliConfig(CliConfig):
13
- @staticmethod
14
- def get_cli_options() -> list[click.Option]:
15
- options = [
16
- click.Option(
17
- ["--embedding-provider"],
18
- help="Type of the embedding class to be used. Can be one of: "
19
- f"{list(EMBEDDING_PROVIDER_TO_CLASS_MAP)}",
20
- type=click.Choice(list(EMBEDDING_PROVIDER_TO_CLASS_MAP)),
21
- ),
22
- click.Option(
23
- ["--embedding-api-key"],
24
- help="API key for the embedding model, for the case an API key is needed.",
25
- type=str,
26
- default=None,
27
- ),
28
- click.Option(
29
- ["--embedding-model-name"],
30
- help="Embedding model name, if needed. "
31
- "Chooses a particular LLM between different options, to embed with it.",
32
- type=str,
33
- default=None,
34
- ),
35
- click.Option(
36
- ["--embedding-aws-access-key-id"],
37
- help="AWS access key used for AWS-based embedders, such as bedrock",
38
- type=str,
39
- default=None,
40
- ),
41
- click.Option(
42
- ["--embedding-aws-secret-access-key"],
43
- help="AWS secret key used for AWS-based embedders, such as bedrock",
44
- type=str,
45
- default=None,
46
- ),
47
- click.Option(
48
- ["--embedding-aws-region"],
49
- help="AWS region used for AWS-based embedders, such as bedrock",
50
- type=str,
51
- default="us-west-2",
52
- ),
53
- ]
54
- return options
55
-
56
- @classmethod
57
- def from_dict(cls, kvs: Json, **kwargs: Any):
58
- """
59
- Extension of the dataclass from_dict() to avoid a naming conflict with other CLI params.
60
- This allows CLI arguments to be prepended with embedding_ during CLI invocation but
61
- doesn't require that as part of the field names in this class
62
- """
63
- if isinstance(kvs, dict):
64
- new_kvs = {
65
- k[len("embedding_") :]: v # noqa: E203
66
- for k, v in kvs.items()
67
- if k.startswith("embedding_")
68
- }
69
- if len(new_kvs.keys()) == 0:
70
- return None
71
- if not new_kvs.get("provider"):
72
- return None
73
- return super().from_dict(new_kvs, **kwargs)
74
- return super().from_dict(kvs, **kwargs)
@@ -1,28 +0,0 @@
1
- from dataclasses import dataclass
2
-
3
- import click
4
-
5
- from unstructured_ingest.v2.cli.interfaces import CliConfig
6
- from unstructured_ingest.v2.cli.utils import DelimitedString
7
-
8
-
9
- @dataclass
10
- class FilterCliConfig(CliConfig):
11
- @staticmethod
12
- def get_cli_options() -> list[click.Option]:
13
- options = [
14
- click.Option(
15
- ["--file-glob"],
16
- default=None,
17
- type=DelimitedString(),
18
- help="A comma-separated list of file globs to limit which types of "
19
- "local files are accepted, e.g. '*.html,*.txt'",
20
- ),
21
- click.Option(
22
- ["--max-file-size"],
23
- default=None,
24
- type=click.IntRange(min=1),
25
- help="Max file size to process in bytes",
26
- ),
27
- ]
28
- return options
@@ -1,99 +0,0 @@
1
- from dataclasses import dataclass
2
-
3
- import click
4
-
5
- from unstructured_ingest.v2.cli.interfaces import CliConfig
6
- from unstructured_ingest.v2.cli.utils import DelimitedString, Dict
7
-
8
-
9
- @dataclass
10
- class PartitionerCliConfig(CliConfig):
11
- @staticmethod
12
- def get_cli_options() -> list[click.Option]:
13
- options = [
14
- click.Option(
15
- ["--strategy"],
16
- default="auto",
17
- help="The method that will be used to process the documents. "
18
- "Default: auto. Other strategies include `fast` and `hi_res`.",
19
- ),
20
- click.Option(
21
- ["--ocr-languages"],
22
- default=None,
23
- type=DelimitedString(delimiter="+"),
24
- help="A list of language packs to specify which languages to use for OCR, "
25
- "separated by '+' e.g. 'eng+deu' to use the English and German language packs. "
26
- "The appropriate Tesseract "
27
- "language pack needs to be installed.",
28
- ),
29
- click.Option(
30
- ["--encoding"],
31
- default=None,
32
- help="Text encoding to use when reading documents. By default the encoding is "
33
- "detected automatically.",
34
- ),
35
- click.Option(
36
- ["--skip-infer-table-types"],
37
- type=DelimitedString(),
38
- default=None,
39
- help="Optional list of document types to skip table extraction on",
40
- ),
41
- click.Option(
42
- ["--additional-partition-args"],
43
- type=Dict(),
44
- help="A json string representation of values to pass through to partition()",
45
- ),
46
- click.Option(
47
- ["--fields-include"],
48
- type=DelimitedString(),
49
- default=["element_id", "text", "type", "metadata", "embeddings"],
50
- help="Comma-delimited list. If set, include the specified top-level "
51
- "fields in an element.",
52
- ),
53
- click.Option(
54
- ["--flatten-metadata"],
55
- is_flag=True,
56
- default=False,
57
- help="Results in flattened json elements. "
58
- "Specifically, the metadata key values are brought to "
59
- "the top-level of the element, and the `metadata` key itself is removed.",
60
- ),
61
- click.Option(
62
- ["--metadata-include"],
63
- default=[],
64
- type=DelimitedString(),
65
- help="Comma-delimited list. If set, include the specified metadata "
66
- "fields if they exist and drop all other fields. ",
67
- ),
68
- click.Option(
69
- ["--metadata-exclude"],
70
- default=[],
71
- type=DelimitedString(),
72
- help="Comma-delimited list. If set, drop the specified metadata "
73
- "fields if they exist.",
74
- ),
75
- click.Option(
76
- ["--partition-by-api"],
77
- is_flag=True,
78
- default=False,
79
- help="Use a remote API to partition the files."
80
- " Otherwise, use the function from partition.auto",
81
- ),
82
- click.Option(
83
- ["--partition-endpoint"],
84
- default="https://api.unstructured.io/general/v0/general",
85
- help="If partitioning via api, use the following host. "
86
- "Default: https://api.unstructured.io/general/v0/general",
87
- ),
88
- click.Option(
89
- ["--api-key"],
90
- default=None,
91
- help="API Key for partition endpoint.",
92
- ),
93
- click.Option(
94
- ["--hi-res-model-name"],
95
- default=None,
96
- help="Model name for hi-res strategy.",
97
- ),
98
- ]
99
- return options
@@ -1,88 +0,0 @@
1
- from dataclasses import dataclass
2
-
3
- import click
4
-
5
- from unstructured_ingest.v2.cli.interfaces import CliConfig
6
- from unstructured_ingest.v2.interfaces.processor import DEFAULT_WORK_DIR
7
-
8
-
9
- @dataclass
10
- class ProcessorCliConfig(CliConfig):
11
- @staticmethod
12
- def get_cli_options() -> list[click.Option]:
13
- options = [
14
- click.Option(
15
- ["--reprocess"],
16
- is_flag=True,
17
- default=False,
18
- help="Reprocess a downloaded file even if the relevant structured "
19
- "output .json file in output directory already exists.",
20
- ),
21
- click.Option(
22
- ["--work-dir"],
23
- type=str,
24
- default=DEFAULT_WORK_DIR,
25
- show_default=True,
26
- help="Where to place working files when processing each step",
27
- ),
28
- click.Option(
29
- ["--num-processes"],
30
- default=2,
31
- show_default=True,
32
- type=click.IntRange(min=1),
33
- help="Number of parallel processes with which to process docs",
34
- ),
35
- click.Option(
36
- ["--max-connections"],
37
- default=None,
38
- show_default=True,
39
- type=click.IntRange(min=1),
40
- help="Max number of connections allowed when running an async step",
41
- ),
42
- click.Option(
43
- ["--raise-on-error"],
44
- is_flag=True,
45
- default=False,
46
- help="Is set, will raise error if any doc in the pipeline fail. Otherwise will "
47
- "log error and continue with other docs",
48
- ),
49
- click.Option(
50
- ["--re-download"],
51
- is_flag=True,
52
- default=False,
53
- help="Re-download files even if they are already present in download dir.",
54
- ),
55
- click.Option(
56
- ["--preserve-downloads"],
57
- is_flag=True,
58
- default=False,
59
- help="Preserve downloaded files. Otherwise each file is removed "
60
- "after being processed successfully.",
61
- ),
62
- click.Option(
63
- ["--download-only"],
64
- is_flag=True,
65
- default=False,
66
- help="Download any files that are not already present in either --download-dir or "
67
- "the default download ~/.cache/... location in case --download-dir "
68
- "is not specified and "
69
- "skip processing them through unstructured.",
70
- ),
71
- click.Option(
72
- ["--max-docs"],
73
- default=None,
74
- type=int,
75
- help="If specified, process at most the specified number of documents.",
76
- ),
77
- click.Option(
78
- ["--uncompress"],
79
- type=bool,
80
- default=False,
81
- is_flag=True,
82
- help="Uncompress any archived files. Currently supporting zip and tar "
83
- "files based on file extension.",
84
- ),
85
- click.Option(["--verbose"], is_flag=True, default=False),
86
- click.Option(["--tqdm"], is_flag=True, default=False, help="Show progress bar"),
87
- ]
88
- return options
@@ -1,27 +0,0 @@
1
- from abc import ABC, abstractmethod
2
-
3
- import click
4
-
5
-
6
- class CliConfig(ABC):
7
- @staticmethod
8
- @abstractmethod
9
- def get_cli_options() -> list[click.Option]:
10
- pass
11
-
12
- @classmethod
13
- def add_cli_options(cls, cmd: click.Command) -> None:
14
- options_to_add = cls.get_cli_options()
15
- CliConfig.add_params(cmd, params=options_to_add)
16
-
17
- @staticmethod
18
- def add_params(cmd: click.Command, params: list[click.Parameter]):
19
- existing_opts = []
20
- for param in cmd.params:
21
- existing_opts.extend(param.opts)
22
- for param in params:
23
- for opt in param.opts:
24
- if opt in existing_opts:
25
- raise ValueError(f"{opt} is already defined on the command {cmd.name}")
26
- existing_opts.append(opt)
27
- cmd.params.append(param)
@@ -1,15 +0,0 @@
1
- import json
2
- from datetime import datetime
3
- from pathlib import Path
4
-
5
-
6
- def sterilize_dict(data: dict) -> dict:
7
- def json_serial(obj):
8
- if isinstance(obj, Path):
9
- return obj.as_posix()
10
- if isinstance(obj, datetime):
11
- return obj.isoformat()
12
- raise TypeError("Type %s not serializable" % type(obj))
13
-
14
- data_s = json.dumps(data, default=json_serial)
15
- return json.loads(data_s)
@@ -1,175 +0,0 @@
1
- Metadata-Version: 2.1
2
- Name: unstructured-ingest
3
- Version: 0.0.3
4
- Summary: A library that prepares raw documents for downstream ML tasks.
5
- Home-page: https://github.com/Unstructured-IO/unstructured-ingest
6
- Author: Unstructured Technologies
7
- Author-email: devops@unstructuredai.io
8
- License: Apache-2.0
9
- Keywords: NLP PDF HTML CV XML parsing preprocessing
10
- Classifier: Development Status :: 4 - Beta
11
- Classifier: Intended Audience :: Developers
12
- Classifier: Intended Audience :: Education
13
- Classifier: Intended Audience :: Science/Research
14
- Classifier: License :: OSI Approved :: Apache Software License
15
- Classifier: Operating System :: OS Independent
16
- Classifier: Programming Language :: Python :: 3
17
- Classifier: Programming Language :: Python :: 3.9
18
- Classifier: Programming Language :: Python :: 3.10
19
- Classifier: Programming Language :: Python :: 3.11
20
- Classifier: Programming Language :: Python :: 3.12
21
- Classifier: Topic :: Scientific/Engineering :: Artificial Intelligence
22
- Requires-Python: >=3.9.0,<3.13
23
- Description-Content-Type: text/markdown
24
- Requires-Dist: unstructured
25
- Requires-Dist: python-dateutil
26
- Requires-Dist: pandas
27
- Provides-Extra: airtable
28
- Requires-Dist: pyairtable ; extra == 'airtable'
29
- Provides-Extra: astra
30
- Requires-Dist: astrapy ; extra == 'astra'
31
- Provides-Extra: azure
32
- Requires-Dist: fsspec ; extra == 'azure'
33
- Requires-Dist: adlfs ; extra == 'azure'
34
- Provides-Extra: azure-cognitive-search
35
- Requires-Dist: azure-search-documents ; extra == 'azure-cognitive-search'
36
- Provides-Extra: bedrock
37
- Requires-Dist: boto3 ; extra == 'bedrock'
38
- Requires-Dist: langchain-community ; extra == 'bedrock'
39
- Provides-Extra: biomed
40
- Requires-Dist: bs4 ; extra == 'biomed'
41
- Provides-Extra: box
42
- Requires-Dist: fsspec ; extra == 'box'
43
- Requires-Dist: boxfs ; extra == 'box'
44
- Provides-Extra: chroma
45
- Requires-Dist: typer <=0.9.0 ; extra == 'chroma'
46
- Requires-Dist: importlib-metadata >=7.1.0 ; extra == 'chroma'
47
- Requires-Dist: chromadb ; extra == 'chroma'
48
- Provides-Extra: clarifai
49
- Requires-Dist: clarifai ; extra == 'clarifai'
50
- Provides-Extra: confluence
51
- Requires-Dist: atlassian-python-api ; extra == 'confluence'
52
- Provides-Extra: csv
53
- Requires-Dist: unstructured[tsv] ; extra == 'csv'
54
- Provides-Extra: databricks-volumes
55
- Requires-Dist: databricks-sdk ; extra == 'databricks-volumes'
56
- Provides-Extra: delta-table
57
- Requires-Dist: fsspec ; extra == 'delta-table'
58
- Requires-Dist: deltalake ; extra == 'delta-table'
59
- Provides-Extra: discord
60
- Requires-Dist: discord-py ; extra == 'discord'
61
- Provides-Extra: doc
62
- Requires-Dist: unstructured[docx] ; extra == 'doc'
63
- Provides-Extra: docx
64
- Requires-Dist: unstructured[docx] ; extra == 'docx'
65
- Provides-Extra: dropbox
66
- Requires-Dist: dropboxdrivefs ; extra == 'dropbox'
67
- Requires-Dist: fsspec ; extra == 'dropbox'
68
- Provides-Extra: elasticsearch
69
- Requires-Dist: elasticsearch[async] ; extra == 'elasticsearch'
70
- Provides-Extra: embed-huggingface
71
- Requires-Dist: sentence-transformers ; extra == 'embed-huggingface'
72
- Requires-Dist: langchain-community ; extra == 'embed-huggingface'
73
- Requires-Dist: huggingface ; extra == 'embed-huggingface'
74
- Provides-Extra: embed-octoai
75
- Requires-Dist: tiktoken ; extra == 'embed-octoai'
76
- Requires-Dist: openai ; extra == 'embed-octoai'
77
- Provides-Extra: embed-vertexai
78
- Requires-Dist: langchain ; extra == 'embed-vertexai'
79
- Requires-Dist: langchain-community ; extra == 'embed-vertexai'
80
- Requires-Dist: langchain-google-vertexai ; extra == 'embed-vertexai'
81
- Provides-Extra: embed-voyageai
82
- Requires-Dist: langchain ; extra == 'embed-voyageai'
83
- Requires-Dist: langchain-voyageai ; extra == 'embed-voyageai'
84
- Provides-Extra: epub
85
- Requires-Dist: unstructured[epub] ; extra == 'epub'
86
- Provides-Extra: gcs
87
- Requires-Dist: fsspec ; extra == 'gcs'
88
- Requires-Dist: bs4 ; extra == 'gcs'
89
- Requires-Dist: gcsfs ; extra == 'gcs'
90
- Provides-Extra: github
91
- Requires-Dist: pygithub >1.58.0 ; extra == 'github'
92
- Provides-Extra: gitlab
93
- Requires-Dist: python-gitlab ; extra == 'gitlab'
94
- Provides-Extra: google-drive
95
- Requires-Dist: google-api-python-client ; extra == 'google-drive'
96
- Provides-Extra: hubspot
97
- Requires-Dist: urllib3 ; extra == 'hubspot'
98
- Requires-Dist: hubspot-api-client ; extra == 'hubspot'
99
- Provides-Extra: jira
100
- Requires-Dist: atlassian-python-api ; extra == 'jira'
101
- Provides-Extra: kafka
102
- Requires-Dist: confluent-kafka ; extra == 'kafka'
103
- Provides-Extra: md
104
- Requires-Dist: unstructured[md] ; extra == 'md'
105
- Provides-Extra: milvus
106
- Requires-Dist: pymilvus ; extra == 'milvus'
107
- Provides-Extra: mongodb
108
- Requires-Dist: pymongo ; extra == 'mongodb'
109
- Provides-Extra: msg
110
- Requires-Dist: unstructured[msg] ; extra == 'msg'
111
- Provides-Extra: notion
112
- Requires-Dist: notion-client ; extra == 'notion'
113
- Requires-Dist: htmlBuilder ; extra == 'notion'
114
- Provides-Extra: odt
115
- Requires-Dist: unstructured[odt] ; extra == 'odt'
116
- Provides-Extra: onedrive
117
- Requires-Dist: bs4 ; extra == 'onedrive'
118
- Requires-Dist: msal ; extra == 'onedrive'
119
- Requires-Dist: Office365-REST-Python-Client ; extra == 'onedrive'
120
- Provides-Extra: openai
121
- Requires-Dist: tiktoken ; extra == 'openai'
122
- Requires-Dist: langchain-community ; extra == 'openai'
123
- Requires-Dist: openai ; extra == 'openai'
124
- Provides-Extra: opensearch
125
- Requires-Dist: opensearch-py ; extra == 'opensearch'
126
- Provides-Extra: org
127
- Requires-Dist: unstructured[org] ; extra == 'org'
128
- Provides-Extra: outlook
129
- Requires-Dist: msal ; extra == 'outlook'
130
- Requires-Dist: Office365-REST-Python-Client ; extra == 'outlook'
131
- Provides-Extra: pdf
132
- Requires-Dist: unstructured[pdf] ; extra == 'pdf'
133
- Provides-Extra: pinecone
134
- Requires-Dist: pinecone-client >=3.7.1 ; extra == 'pinecone'
135
- Provides-Extra: postgres
136
- Requires-Dist: psycopg2-binary ; extra == 'postgres'
137
- Provides-Extra: ppt
138
- Requires-Dist: unstructured[pptx] ; extra == 'ppt'
139
- Provides-Extra: pptx
140
- Requires-Dist: unstructured[pptx] ; extra == 'pptx'
141
- Provides-Extra: qdrant
142
- Requires-Dist: qdrant-client ; extra == 'qdrant'
143
- Provides-Extra: reddit
144
- Requires-Dist: praw ; extra == 'reddit'
145
- Provides-Extra: rst
146
- Requires-Dist: unstructured[rst] ; extra == 'rst'
147
- Provides-Extra: rtf
148
- Requires-Dist: unstructured[rtf] ; extra == 'rtf'
149
- Provides-Extra: s3
150
- Requires-Dist: fsspec ; extra == 's3'
151
- Requires-Dist: s3fs ; extra == 's3'
152
- Provides-Extra: salesforce
153
- Requires-Dist: simple-salesforce ; extra == 'salesforce'
154
- Provides-Extra: sftp
155
- Requires-Dist: fsspec ; extra == 'sftp'
156
- Requires-Dist: paramiko ; extra == 'sftp'
157
- Provides-Extra: sharepoint
158
- Requires-Dist: msal ; extra == 'sharepoint'
159
- Requires-Dist: Office365-REST-Python-Client ; extra == 'sharepoint'
160
- Provides-Extra: singlestore
161
- Requires-Dist: singlestoredb ; extra == 'singlestore'
162
- Provides-Extra: slack
163
- Requires-Dist: slack-sdk ; extra == 'slack'
164
- Provides-Extra: tsv
165
- Requires-Dist: unstructured[tsv] ; extra == 'tsv'
166
- Provides-Extra: weaviate
167
- Requires-Dist: weaviate-client ; extra == 'weaviate'
168
- Provides-Extra: wikipedia
169
- Requires-Dist: wikipedia ; extra == 'wikipedia'
170
- Provides-Extra: xlsx
171
- Requires-Dist: unstructured[xlsx] ; extra == 'xlsx'
172
-
173
- # Unstructured Ingest
174
-
175
- For details, see the [Unstructured Ingest overview](https://docs.unstructured.io/ingestion/overview) in the Unstructured documentation.