unstructured-ingest 0.0.0__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.
- unstructured_ingest/__init__.py +1 -0
- unstructured_ingest/__version__.py +1 -0
- unstructured_ingest/cli/__init__.py +14 -0
- unstructured_ingest/cli/base/__init__.py +0 -0
- unstructured_ingest/cli/base/cmd.py +19 -0
- unstructured_ingest/cli/base/dest.py +87 -0
- unstructured_ingest/cli/base/src.py +57 -0
- unstructured_ingest/cli/cli.py +32 -0
- unstructured_ingest/cli/cmd_factory.py +12 -0
- unstructured_ingest/cli/cmds/__init__.py +145 -0
- unstructured_ingest/cli/cmds/airtable.py +69 -0
- unstructured_ingest/cli/cmds/astra.py +99 -0
- unstructured_ingest/cli/cmds/azure_cognitive_search.py +65 -0
- unstructured_ingest/cli/cmds/biomed.py +52 -0
- unstructured_ingest/cli/cmds/chroma.py +104 -0
- unstructured_ingest/cli/cmds/clarifai.py +71 -0
- unstructured_ingest/cli/cmds/confluence.py +69 -0
- unstructured_ingest/cli/cmds/databricks_volumes.py +163 -0
- unstructured_ingest/cli/cmds/delta_table.py +94 -0
- unstructured_ingest/cli/cmds/discord.py +47 -0
- unstructured_ingest/cli/cmds/elasticsearch.py +133 -0
- unstructured_ingest/cli/cmds/fsspec/__init__.py +0 -0
- unstructured_ingest/cli/cmds/fsspec/azure.py +94 -0
- unstructured_ingest/cli/cmds/fsspec/box.py +48 -0
- unstructured_ingest/cli/cmds/fsspec/dropbox.py +51 -0
- unstructured_ingest/cli/cmds/fsspec/fsspec.py +15 -0
- unstructured_ingest/cli/cmds/fsspec/gcs.py +71 -0
- unstructured_ingest/cli/cmds/fsspec/s3.py +74 -0
- unstructured_ingest/cli/cmds/fsspec/sftp.py +58 -0
- unstructured_ingest/cli/cmds/github.py +54 -0
- unstructured_ingest/cli/cmds/gitlab.py +54 -0
- unstructured_ingest/cli/cmds/google_drive.py +49 -0
- unstructured_ingest/cli/cmds/hubspot.py +70 -0
- unstructured_ingest/cli/cmds/jira.py +71 -0
- unstructured_ingest/cli/cmds/kafka.py +102 -0
- unstructured_ingest/cli/cmds/local.py +43 -0
- unstructured_ingest/cli/cmds/mongodb.py +72 -0
- unstructured_ingest/cli/cmds/notion.py +48 -0
- unstructured_ingest/cli/cmds/onedrive.py +66 -0
- unstructured_ingest/cli/cmds/opensearch.py +117 -0
- unstructured_ingest/cli/cmds/outlook.py +67 -0
- unstructured_ingest/cli/cmds/pinecone.py +71 -0
- unstructured_ingest/cli/cmds/qdrant.py +124 -0
- unstructured_ingest/cli/cmds/reddit.py +67 -0
- unstructured_ingest/cli/cmds/salesforce.py +58 -0
- unstructured_ingest/cli/cmds/sharepoint.py +66 -0
- unstructured_ingest/cli/cmds/slack.py +56 -0
- unstructured_ingest/cli/cmds/sql.py +66 -0
- unstructured_ingest/cli/cmds/vectara.py +66 -0
- unstructured_ingest/cli/cmds/weaviate.py +98 -0
- unstructured_ingest/cli/cmds/wikipedia.py +40 -0
- unstructured_ingest/cli/common.py +7 -0
- unstructured_ingest/cli/interfaces.py +656 -0
- unstructured_ingest/cli/utils.py +205 -0
- unstructured_ingest/connector/__init__.py +0 -0
- unstructured_ingest/connector/airtable.py +309 -0
- unstructured_ingest/connector/astra.py +237 -0
- unstructured_ingest/connector/azure_cognitive_search.py +144 -0
- unstructured_ingest/connector/biomed.py +313 -0
- unstructured_ingest/connector/chroma.py +158 -0
- unstructured_ingest/connector/clarifai.py +122 -0
- unstructured_ingest/connector/confluence.py +285 -0
- unstructured_ingest/connector/databricks_volumes.py +137 -0
- unstructured_ingest/connector/delta_table.py +203 -0
- unstructured_ingest/connector/discord.py +180 -0
- unstructured_ingest/connector/elasticsearch.py +396 -0
- unstructured_ingest/connector/fsspec/__init__.py +0 -0
- unstructured_ingest/connector/fsspec/azure.py +78 -0
- unstructured_ingest/connector/fsspec/box.py +109 -0
- unstructured_ingest/connector/fsspec/dropbox.py +160 -0
- unstructured_ingest/connector/fsspec/fsspec.py +359 -0
- unstructured_ingest/connector/fsspec/gcs.py +82 -0
- unstructured_ingest/connector/fsspec/s3.py +62 -0
- unstructured_ingest/connector/fsspec/sftp.py +81 -0
- unstructured_ingest/connector/git.py +124 -0
- unstructured_ingest/connector/github.py +173 -0
- unstructured_ingest/connector/gitlab.py +142 -0
- unstructured_ingest/connector/google_drive.py +349 -0
- unstructured_ingest/connector/hubspot.py +278 -0
- unstructured_ingest/connector/jira.py +469 -0
- unstructured_ingest/connector/kafka.py +294 -0
- unstructured_ingest/connector/local.py +139 -0
- unstructured_ingest/connector/mongodb.py +285 -0
- unstructured_ingest/connector/notion/__init__.py +0 -0
- unstructured_ingest/connector/notion/client.py +233 -0
- unstructured_ingest/connector/notion/connector.py +468 -0
- unstructured_ingest/connector/notion/helpers.py +584 -0
- unstructured_ingest/connector/notion/interfaces.py +32 -0
- unstructured_ingest/connector/notion/types/__init__.py +0 -0
- unstructured_ingest/connector/notion/types/block.py +95 -0
- unstructured_ingest/connector/notion/types/blocks/__init__.py +63 -0
- unstructured_ingest/connector/notion/types/blocks/bookmark.py +40 -0
- unstructured_ingest/connector/notion/types/blocks/breadcrumb.py +21 -0
- unstructured_ingest/connector/notion/types/blocks/bulleted_list_item.py +31 -0
- unstructured_ingest/connector/notion/types/blocks/callout.py +94 -0
- unstructured_ingest/connector/notion/types/blocks/child_database.py +23 -0
- unstructured_ingest/connector/notion/types/blocks/child_page.py +23 -0
- unstructured_ingest/connector/notion/types/blocks/code.py +43 -0
- unstructured_ingest/connector/notion/types/blocks/column_list.py +35 -0
- unstructured_ingest/connector/notion/types/blocks/divider.py +22 -0
- unstructured_ingest/connector/notion/types/blocks/embed.py +36 -0
- unstructured_ingest/connector/notion/types/blocks/equation.py +23 -0
- unstructured_ingest/connector/notion/types/blocks/file.py +49 -0
- unstructured_ingest/connector/notion/types/blocks/heading.py +37 -0
- unstructured_ingest/connector/notion/types/blocks/image.py +21 -0
- unstructured_ingest/connector/notion/types/blocks/link_preview.py +24 -0
- unstructured_ingest/connector/notion/types/blocks/link_to_page.py +29 -0
- unstructured_ingest/connector/notion/types/blocks/numbered_list.py +29 -0
- unstructured_ingest/connector/notion/types/blocks/paragraph.py +31 -0
- unstructured_ingest/connector/notion/types/blocks/pdf.py +49 -0
- unstructured_ingest/connector/notion/types/blocks/quote.py +37 -0
- unstructured_ingest/connector/notion/types/blocks/synced_block.py +57 -0
- unstructured_ingest/connector/notion/types/blocks/table.py +63 -0
- unstructured_ingest/connector/notion/types/blocks/table_of_contents.py +23 -0
- unstructured_ingest/connector/notion/types/blocks/template.py +30 -0
- unstructured_ingest/connector/notion/types/blocks/todo.py +42 -0
- unstructured_ingest/connector/notion/types/blocks/toggle.py +37 -0
- unstructured_ingest/connector/notion/types/blocks/unsupported.py +20 -0
- unstructured_ingest/connector/notion/types/blocks/video.py +22 -0
- unstructured_ingest/connector/notion/types/database.py +72 -0
- unstructured_ingest/connector/notion/types/database_properties/__init__.py +106 -0
- unstructured_ingest/connector/notion/types/database_properties/checkbox.py +38 -0
- unstructured_ingest/connector/notion/types/database_properties/created_by.py +35 -0
- unstructured_ingest/connector/notion/types/database_properties/created_time.py +34 -0
- unstructured_ingest/connector/notion/types/database_properties/date.py +41 -0
- unstructured_ingest/connector/notion/types/database_properties/email.py +36 -0
- unstructured_ingest/connector/notion/types/database_properties/files.py +37 -0
- unstructured_ingest/connector/notion/types/database_properties/formula.py +49 -0
- unstructured_ingest/connector/notion/types/database_properties/last_edited_by.py +34 -0
- unstructured_ingest/connector/notion/types/database_properties/last_edited_time.py +34 -0
- unstructured_ingest/connector/notion/types/database_properties/multiselect.py +73 -0
- unstructured_ingest/connector/notion/types/database_properties/number.py +49 -0
- unstructured_ingest/connector/notion/types/database_properties/people.py +40 -0
- unstructured_ingest/connector/notion/types/database_properties/phone_number.py +36 -0
- unstructured_ingest/connector/notion/types/database_properties/relation.py +67 -0
- unstructured_ingest/connector/notion/types/database_properties/rich_text.py +43 -0
- unstructured_ingest/connector/notion/types/database_properties/rollup.py +56 -0
- unstructured_ingest/connector/notion/types/database_properties/select.py +68 -0
- unstructured_ingest/connector/notion/types/database_properties/status.py +80 -0
- unstructured_ingest/connector/notion/types/database_properties/title.py +37 -0
- unstructured_ingest/connector/notion/types/database_properties/unique_id.py +50 -0
- unstructured_ingest/connector/notion/types/database_properties/url.py +37 -0
- unstructured_ingest/connector/notion/types/database_properties/verification.py +78 -0
- unstructured_ingest/connector/notion/types/date.py +26 -0
- unstructured_ingest/connector/notion/types/file.py +51 -0
- unstructured_ingest/connector/notion/types/page.py +44 -0
- unstructured_ingest/connector/notion/types/parent.py +66 -0
- unstructured_ingest/connector/notion/types/rich_text.py +189 -0
- unstructured_ingest/connector/notion/types/user.py +76 -0
- unstructured_ingest/connector/onedrive.py +232 -0
- unstructured_ingest/connector/opensearch.py +218 -0
- unstructured_ingest/connector/outlook.py +285 -0
- unstructured_ingest/connector/pinecone.py +140 -0
- unstructured_ingest/connector/qdrant.py +144 -0
- unstructured_ingest/connector/reddit.py +166 -0
- unstructured_ingest/connector/registry.py +109 -0
- unstructured_ingest/connector/salesforce.py +301 -0
- unstructured_ingest/connector/sharepoint.py +573 -0
- unstructured_ingest/connector/slack.py +224 -0
- unstructured_ingest/connector/sql.py +199 -0
- unstructured_ingest/connector/vectara.py +248 -0
- unstructured_ingest/connector/weaviate.py +190 -0
- unstructured_ingest/connector/wikipedia.py +208 -0
- unstructured_ingest/enhanced_dataclass/__init__.py +4 -0
- unstructured_ingest/enhanced_dataclass/core.py +99 -0
- unstructured_ingest/enhanced_dataclass/dataclasses.py +54 -0
- unstructured_ingest/enhanced_dataclass/json_mixin.py +125 -0
- unstructured_ingest/error.py +49 -0
- unstructured_ingest/evaluate.py +338 -0
- unstructured_ingest/ingest_backoff/__init__.py +3 -0
- unstructured_ingest/ingest_backoff/_common.py +102 -0
- unstructured_ingest/ingest_backoff/_wrapper.py +122 -0
- unstructured_ingest/interfaces.py +838 -0
- unstructured_ingest/logger.py +130 -0
- unstructured_ingest/main.py +11 -0
- unstructured_ingest/pipeline/__init__.py +22 -0
- unstructured_ingest/pipeline/copy.py +19 -0
- unstructured_ingest/pipeline/doc_factory.py +12 -0
- unstructured_ingest/pipeline/interfaces.py +265 -0
- unstructured_ingest/pipeline/partition.py +60 -0
- unstructured_ingest/pipeline/permissions.py +12 -0
- unstructured_ingest/pipeline/pipeline.py +117 -0
- unstructured_ingest/pipeline/reformat/__init__.py +0 -0
- unstructured_ingest/pipeline/reformat/chunking.py +130 -0
- unstructured_ingest/pipeline/reformat/embedding.py +66 -0
- unstructured_ingest/pipeline/source.py +77 -0
- unstructured_ingest/pipeline/utils.py +6 -0
- unstructured_ingest/pipeline/write.py +18 -0
- unstructured_ingest/processor.py +93 -0
- unstructured_ingest/runner/__init__.py +104 -0
- unstructured_ingest/runner/airtable.py +35 -0
- unstructured_ingest/runner/astra.py +34 -0
- unstructured_ingest/runner/base_runner.py +89 -0
- unstructured_ingest/runner/biomed.py +45 -0
- unstructured_ingest/runner/confluence.py +35 -0
- unstructured_ingest/runner/delta_table.py +34 -0
- unstructured_ingest/runner/discord.py +35 -0
- unstructured_ingest/runner/elasticsearch.py +40 -0
- unstructured_ingest/runner/fsspec/__init__.py +0 -0
- unstructured_ingest/runner/fsspec/azure.py +30 -0
- unstructured_ingest/runner/fsspec/box.py +28 -0
- unstructured_ingest/runner/fsspec/dropbox.py +30 -0
- unstructured_ingest/runner/fsspec/fsspec.py +40 -0
- unstructured_ingest/runner/fsspec/gcs.py +28 -0
- unstructured_ingest/runner/fsspec/s3.py +28 -0
- unstructured_ingest/runner/fsspec/sftp.py +28 -0
- unstructured_ingest/runner/github.py +37 -0
- unstructured_ingest/runner/gitlab.py +37 -0
- unstructured_ingest/runner/google_drive.py +35 -0
- unstructured_ingest/runner/hubspot.py +35 -0
- unstructured_ingest/runner/jira.py +35 -0
- unstructured_ingest/runner/kafka.py +34 -0
- unstructured_ingest/runner/local.py +23 -0
- unstructured_ingest/runner/mongodb.py +34 -0
- unstructured_ingest/runner/notion.py +61 -0
- unstructured_ingest/runner/onedrive.py +35 -0
- unstructured_ingest/runner/opensearch.py +40 -0
- unstructured_ingest/runner/outlook.py +33 -0
- unstructured_ingest/runner/reddit.py +35 -0
- unstructured_ingest/runner/salesforce.py +33 -0
- unstructured_ingest/runner/sharepoint.py +35 -0
- unstructured_ingest/runner/slack.py +33 -0
- unstructured_ingest/runner/utils.py +47 -0
- unstructured_ingest/runner/wikipedia.py +35 -0
- unstructured_ingest/runner/writers/__init__.py +48 -0
- unstructured_ingest/runner/writers/astra.py +22 -0
- unstructured_ingest/runner/writers/azure_cognitive_search.py +24 -0
- unstructured_ingest/runner/writers/base_writer.py +26 -0
- unstructured_ingest/runner/writers/chroma.py +22 -0
- unstructured_ingest/runner/writers/clarifai.py +19 -0
- unstructured_ingest/runner/writers/databricks_volumes.py +25 -0
- unstructured_ingest/runner/writers/delta_table.py +24 -0
- unstructured_ingest/runner/writers/elasticsearch.py +24 -0
- unstructured_ingest/runner/writers/fsspec/__init__.py +0 -0
- unstructured_ingest/runner/writers/fsspec/azure.py +24 -0
- unstructured_ingest/runner/writers/fsspec/box.py +21 -0
- unstructured_ingest/runner/writers/fsspec/dropbox.py +21 -0
- unstructured_ingest/runner/writers/fsspec/gcs.py +19 -0
- unstructured_ingest/runner/writers/fsspec/s3.py +21 -0
- unstructured_ingest/runner/writers/kafka.py +21 -0
- unstructured_ingest/runner/writers/mongodb.py +21 -0
- unstructured_ingest/runner/writers/opensearch.py +26 -0
- unstructured_ingest/runner/writers/pinecone.py +21 -0
- unstructured_ingest/runner/writers/qdrant.py +19 -0
- unstructured_ingest/runner/writers/sql.py +22 -0
- unstructured_ingest/runner/writers/vectara.py +22 -0
- unstructured_ingest/runner/writers/weaviate.py +21 -0
- unstructured_ingest/utils/__init__.py +0 -0
- unstructured_ingest/utils/compression.py +117 -0
- unstructured_ingest/utils/data_prep.py +112 -0
- unstructured_ingest/utils/dep_check.py +66 -0
- unstructured_ingest/utils/string_and_date_utils.py +39 -0
- unstructured_ingest/utils/table.py +73 -0
- unstructured_ingest/v2/__init__.py +1 -0
- unstructured_ingest/v2/cli/__init__.py +0 -0
- unstructured_ingest/v2/cli/base/__init__.py +4 -0
- unstructured_ingest/v2/cli/base/cmd.py +215 -0
- unstructured_ingest/v2/cli/base/dest.py +76 -0
- unstructured_ingest/v2/cli/base/importer.py +34 -0
- unstructured_ingest/v2/cli/base/src.py +70 -0
- unstructured_ingest/v2/cli/cli.py +24 -0
- unstructured_ingest/v2/cli/cmds/__init__.py +87 -0
- unstructured_ingest/v2/cli/cmds/astra.py +85 -0
- unstructured_ingest/v2/cli/cmds/azure_cognitive_search.py +72 -0
- unstructured_ingest/v2/cli/cmds/chroma.py +108 -0
- unstructured_ingest/v2/cli/cmds/databricks_volumes.py +161 -0
- unstructured_ingest/v2/cli/cmds/elasticsearch.py +159 -0
- unstructured_ingest/v2/cli/cmds/fsspec/__init__.py +0 -0
- unstructured_ingest/v2/cli/cmds/fsspec/azure.py +84 -0
- unstructured_ingest/v2/cli/cmds/fsspec/box.py +58 -0
- unstructured_ingest/v2/cli/cmds/fsspec/dropbox.py +58 -0
- unstructured_ingest/v2/cli/cmds/fsspec/fsspec.py +77 -0
- unstructured_ingest/v2/cli/cmds/fsspec/gcs.py +81 -0
- unstructured_ingest/v2/cli/cmds/fsspec/s3.py +84 -0
- unstructured_ingest/v2/cli/cmds/fsspec/sftp.py +80 -0
- unstructured_ingest/v2/cli/cmds/google_drive.py +74 -0
- unstructured_ingest/v2/cli/cmds/local.py +60 -0
- unstructured_ingest/v2/cli/cmds/mongodb.py +62 -0
- unstructured_ingest/v2/cli/cmds/onedrive.py +91 -0
- unstructured_ingest/v2/cli/cmds/opensearch.py +93 -0
- unstructured_ingest/v2/cli/cmds/pinecone.py +62 -0
- unstructured_ingest/v2/cli/cmds/salesforce.py +79 -0
- unstructured_ingest/v2/cli/cmds/sharepoint.py +112 -0
- unstructured_ingest/v2/cli/cmds/singlestore.py +96 -0
- unstructured_ingest/v2/cli/cmds/sql.py +84 -0
- unstructured_ingest/v2/cli/cmds/weaviate.py +100 -0
- unstructured_ingest/v2/cli/configs/__init__.py +6 -0
- unstructured_ingest/v2/cli/configs/chunk.py +89 -0
- unstructured_ingest/v2/cli/configs/embed.py +74 -0
- unstructured_ingest/v2/cli/configs/partition.py +99 -0
- unstructured_ingest/v2/cli/configs/processor.py +88 -0
- unstructured_ingest/v2/cli/interfaces.py +27 -0
- unstructured_ingest/v2/cli/utils.py +240 -0
- unstructured_ingest/v2/example.py +37 -0
- unstructured_ingest/v2/interfaces/__init__.py +29 -0
- unstructured_ingest/v2/interfaces/connector.py +32 -0
- unstructured_ingest/v2/interfaces/downloader.py +79 -0
- unstructured_ingest/v2/interfaces/file_data.py +49 -0
- unstructured_ingest/v2/interfaces/indexer.py +28 -0
- unstructured_ingest/v2/interfaces/process.py +20 -0
- unstructured_ingest/v2/interfaces/processor.py +48 -0
- unstructured_ingest/v2/interfaces/upload_stager.py +48 -0
- unstructured_ingest/v2/interfaces/uploader.py +39 -0
- unstructured_ingest/v2/logger.py +126 -0
- unstructured_ingest/v2/main.py +11 -0
- unstructured_ingest/v2/pipeline/__init__.py +0 -0
- unstructured_ingest/v2/pipeline/interfaces.py +167 -0
- unstructured_ingest/v2/pipeline/pipeline.py +284 -0
- unstructured_ingest/v2/pipeline/steps/__init__.py +0 -0
- unstructured_ingest/v2/pipeline/steps/chunk.py +85 -0
- unstructured_ingest/v2/pipeline/steps/download.py +124 -0
- unstructured_ingest/v2/pipeline/steps/embed.py +84 -0
- unstructured_ingest/v2/pipeline/steps/index.py +61 -0
- unstructured_ingest/v2/pipeline/steps/partition.py +78 -0
- unstructured_ingest/v2/pipeline/steps/stage.py +64 -0
- unstructured_ingest/v2/pipeline/steps/uncompress.py +68 -0
- unstructured_ingest/v2/pipeline/steps/upload.py +73 -0
- unstructured_ingest/v2/pipeline/utils.py +15 -0
- unstructured_ingest/v2/processes/__init__.py +0 -0
- unstructured_ingest/v2/processes/chunker.py +97 -0
- unstructured_ingest/v2/processes/connector_registry.py +63 -0
- unstructured_ingest/v2/processes/connectors/__init__.py +77 -0
- unstructured_ingest/v2/processes/connectors/astra.py +152 -0
- unstructured_ingest/v2/processes/connectors/azure_cognitive_search.py +211 -0
- unstructured_ingest/v2/processes/connectors/chroma.py +204 -0
- unstructured_ingest/v2/processes/connectors/databricks_volumes.py +96 -0
- unstructured_ingest/v2/processes/connectors/elasticsearch.py +401 -0
- unstructured_ingest/v2/processes/connectors/fsspec/__init__.py +37 -0
- unstructured_ingest/v2/processes/connectors/fsspec/azure.py +144 -0
- unstructured_ingest/v2/processes/connectors/fsspec/box.py +131 -0
- unstructured_ingest/v2/processes/connectors/fsspec/dropbox.py +130 -0
- unstructured_ingest/v2/processes/connectors/fsspec/fsspec.py +342 -0
- unstructured_ingest/v2/processes/connectors/fsspec/gcs.py +141 -0
- unstructured_ingest/v2/processes/connectors/fsspec/s3.py +164 -0
- unstructured_ingest/v2/processes/connectors/fsspec/sftp.py +166 -0
- unstructured_ingest/v2/processes/connectors/fsspec/utils.py +17 -0
- unstructured_ingest/v2/processes/connectors/google_drive.py +335 -0
- unstructured_ingest/v2/processes/connectors/local.py +204 -0
- unstructured_ingest/v2/processes/connectors/mongodb.py +138 -0
- unstructured_ingest/v2/processes/connectors/onedrive.py +216 -0
- unstructured_ingest/v2/processes/connectors/opensearch.py +155 -0
- unstructured_ingest/v2/processes/connectors/pinecone.py +178 -0
- unstructured_ingest/v2/processes/connectors/salesforce.py +293 -0
- unstructured_ingest/v2/processes/connectors/sharepoint.py +412 -0
- unstructured_ingest/v2/processes/connectors/singlestore.py +160 -0
- unstructured_ingest/v2/processes/connectors/sql.py +269 -0
- unstructured_ingest/v2/processes/connectors/utils.py +19 -0
- unstructured_ingest/v2/processes/connectors/weaviate.py +235 -0
- unstructured_ingest/v2/processes/embedder.py +76 -0
- unstructured_ingest/v2/processes/partitioner.py +166 -0
- unstructured_ingest/v2/processes/uncompress.py +43 -0
- unstructured_ingest-0.0.0.dist-info/METADATA +319 -0
- unstructured_ingest-0.0.0.dist-info/RECORD +356 -0
- unstructured_ingest-0.0.0.dist-info/WHEEL +5 -0
- unstructured_ingest-0.0.0.dist-info/entry_points.txt +2 -0
- unstructured_ingest-0.0.0.dist-info/top_level.txt +1 -0
|
@@ -0,0 +1,356 @@
|
|
|
1
|
+
unstructured_ingest/__init__.py,sha256=U4S_2y3zgLZVfMenHRaJFBW8yqh2mUBuI291LGQVOJ8,35
|
|
2
|
+
unstructured_ingest/__version__.py,sha256=Q49HKCptFgT2OeWLy_cQ73sq2sMFreeYIt3GaSMpXf8,42
|
|
3
|
+
unstructured_ingest/error.py,sha256=qDncnJgbf5ils956RcO2CGlAKYDT5OaEM9Clv1JVTNc,1448
|
|
4
|
+
unstructured_ingest/evaluate.py,sha256=R-mKLFXbVX1xQ1tjGsLHjdP-TbSSV-925IHzggW_bIg,9793
|
|
5
|
+
unstructured_ingest/interfaces.py,sha256=uS8L5mS0mXD8I4XTfVlKZxAwqnpJ4yrRqn4vxWVRhQI,31107
|
|
6
|
+
unstructured_ingest/logger.py,sha256=P5KVgFSRN4uSSNmf5S00zr_TdlL7uAhjxn_26tcNWxI,4480
|
|
7
|
+
unstructured_ingest/main.py,sha256=82G_7eG4PNhc_xIqj4Y_sFbDV9VI-nwSfsfJQMzovMk,169
|
|
8
|
+
unstructured_ingest/processor.py,sha256=XKKrvbxsb--5cDzz4hB3-GfWZYyIjJ2ah8FpzQKF_DM,2760
|
|
9
|
+
unstructured_ingest/cli/__init__.py,sha256=9kNcBOHuXON5lB1MJU9QewEhwPmId56vXqB29-kqEAA,302
|
|
10
|
+
unstructured_ingest/cli/cli.py,sha256=EMo9hBNXEF8jdK1Pw0FmsOg_Z0ankJx1BDV-GftsNew,970
|
|
11
|
+
unstructured_ingest/cli/cmd_factory.py,sha256=UdHm1KacTombpF6DxyTSwTCuApsKHUYw_kVu5Nhcy3Y,364
|
|
12
|
+
unstructured_ingest/cli/common.py,sha256=I0El08FHz5kxw7iz0VWOWPrvcJD1rBgXJSwVIpVmmwU,204
|
|
13
|
+
unstructured_ingest/cli/interfaces.py,sha256=bH8kFqoZ8HreiPqjGyKn0_Mq9nIVdUoar90UMPysAkU,24075
|
|
14
|
+
unstructured_ingest/cli/utils.py,sha256=l7dmDf_KUO3SP4dcVDHjxYAU2b28yR-n-a8xoYVPmw4,7981
|
|
15
|
+
unstructured_ingest/cli/base/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
16
|
+
unstructured_ingest/cli/base/cmd.py,sha256=BbfjA2v203Jh-7DL6bzxQ7fOeNixd5BsBMuzXz6h5IQ,583
|
|
17
|
+
unstructured_ingest/cli/base/dest.py,sha256=uN44l7kPErm_BQqKFUgaiz_Xu6UKk-mnB1B8c0cb4lQ,3416
|
|
18
|
+
unstructured_ingest/cli/base/src.py,sha256=gDLZlBuOCEGMAAFCLkoURFQKmrmE34WQ5DbT0w1ssy4,2179
|
|
19
|
+
unstructured_ingest/cli/cmds/__init__.py,sha256=yk8UN28YerM3i2rVavgs0ik_7ZdiPfbAI8b9IWG9kPI,5920
|
|
20
|
+
unstructured_ingest/cli/cmds/airtable.py,sha256=SgdUztUCFbabWP3K937TwdYlhrdY2PUtE4TXUHfBGtw,2629
|
|
21
|
+
unstructured_ingest/cli/cmds/astra.py,sha256=SmwDAQbh0_2aOxpw3vEpYeogkNfFzKo0KzkPXXFCHc4,2905
|
|
22
|
+
unstructured_ingest/cli/cmds/azure_cognitive_search.py,sha256=PcM55PtpRMHbP69trW0JCTz-gx6tKMLUaMU4GGXv0g8,1927
|
|
23
|
+
unstructured_ingest/cli/cmds/biomed.py,sha256=M2jc7_-EvbAeDtDwtZNrPI48QJ1Tm401LcSUD0Ayd20,1442
|
|
24
|
+
unstructured_ingest/cli/cmds/chroma.py,sha256=zO17L7LgUaDfKutfQjSE-QjZJcREyeSpWZetja243lE,3267
|
|
25
|
+
unstructured_ingest/cli/cmds/clarifai.py,sha256=akkES1Z0xomd1LPGnxWNhNKbCBiRZgl-gEOzhg8t8To,1921
|
|
26
|
+
unstructured_ingest/cli/cmds/confluence.py,sha256=8fjO6BGwbsFKZeqtlKK3KH42UV0y70xElax2McdmR08,2552
|
|
27
|
+
unstructured_ingest/cli/cmds/databricks_volumes.py,sha256=BlCIDLqAghll2MH1t7lhkyfb5Dx2U3YOTyG16WUsrkI,5938
|
|
28
|
+
unstructured_ingest/cli/cmds/delta_table.py,sha256=Cmb7vCdNrRtA5OXdvLXB2HSbhg5tLabyPDV6Tk8MATQ,2930
|
|
29
|
+
unstructured_ingest/cli/cmds/discord.py,sha256=iGv4Gee5S9lF2q4MDH4fDJwlOxmL-mH8RLRyZuX44VM,1355
|
|
30
|
+
unstructured_ingest/cli/cmds/elasticsearch.py,sha256=pfnMTnH-hApWuxaMbHQ0id2z2_dnDlnqs6_bT7x40CM,4445
|
|
31
|
+
unstructured_ingest/cli/cmds/github.py,sha256=SQwcJKz1iAXmOkdd9gUido2g8IZr0Zdid0tkApTMf1g,1845
|
|
32
|
+
unstructured_ingest/cli/cmds/gitlab.py,sha256=G2PyrgTL6kL2cKDhCp5jeX7wYa965gZZAzVrN_qkwjU,1845
|
|
33
|
+
unstructured_ingest/cli/cmds/google_drive.py,sha256=Fjyo_WzpFA_OQl0ilvLUeWD4jreOeB1k1WucXItSHkc,1446
|
|
34
|
+
unstructured_ingest/cli/cmds/hubspot.py,sha256=8gPZ0jv-VVF_aDr0dRsx0EKkY2XYCvVqwuQ1KqC7GF0,2498
|
|
35
|
+
unstructured_ingest/cli/cmds/jira.py,sha256=WtqyMmYKHzcU7xwaz7qE_Ye4iCD8JYvx1O0_voBQnrM,2322
|
|
36
|
+
unstructured_ingest/cli/cmds/kafka.py,sha256=cgxSTacVSpDezeHOcZYbf8Z04y8PxYZ9uGckUL4eB8o,2842
|
|
37
|
+
unstructured_ingest/cli/cmds/local.py,sha256=_ffA2acrCYxdNH5aY0bs7q6tBoxXxqHWnss6zYhFIow,1264
|
|
38
|
+
unstructured_ingest/cli/cmds/mongodb.py,sha256=eNZwSg9Fa2DLcilN04wha8G1wFfAxJ4W2Z8Dxw8xAtE,2121
|
|
39
|
+
unstructured_ingest/cli/cmds/notion.py,sha256=KkkpN57qNQdbTtepuFZzZq31U1BfBKyhcGhUE7aGrec,1302
|
|
40
|
+
unstructured_ingest/cli/cmds/onedrive.py,sha256=QKEmXcJkOzbUxJJUTDXqkKSw_QwarpP6OpAdxmsdYtM,1963
|
|
41
|
+
unstructured_ingest/cli/cmds/opensearch.py,sha256=CkIassv6dPlKKmSALv1_7H40BliuonuWgneQjvDJIAA,3794
|
|
42
|
+
unstructured_ingest/cli/cmds/outlook.py,sha256=q6VFtwR0hBHyThesMu9S8CBgcBgDUmJm4I6QU9dG5fo,2053
|
|
43
|
+
unstructured_ingest/cli/cmds/pinecone.py,sha256=MK9Wc8LrAE4w4kIvBYJLjHFKwAsID_rHjcoBY4Kr5YE,2040
|
|
44
|
+
unstructured_ingest/cli/cmds/qdrant.py,sha256=_jIR1AEts13epJf8GajhrFRTdfu_Af8Asal_vgikHsk,3797
|
|
45
|
+
unstructured_ingest/cli/cmds/reddit.py,sha256=r-eoqdoRgexJZq8J65YzxAuxABRzFLV2H_Zzi-Aybvw,2153
|
|
46
|
+
unstructured_ingest/cli/cmds/salesforce.py,sha256=dkQ4SBx4ZyavvayvOW11BghbW_PdzE4Pj5M6JDhwQbc,1864
|
|
47
|
+
unstructured_ingest/cli/cmds/sharepoint.py,sha256=MAzPvS8T4ylOwjwKf9uKOLDmHzSkqbLBB83GZ5qgfL8,2189
|
|
48
|
+
unstructured_ingest/cli/cmds/slack.py,sha256=KuiGu_W9RL0UHzA4KWZji8Z6OFJzhWv9KX7deu09NX4,1721
|
|
49
|
+
unstructured_ingest/cli/cmds/sql.py,sha256=DSguf-KGoJq0Eqc3t31tFQyIMQYvljVhLm7Tm7dkNt4,1786
|
|
50
|
+
unstructured_ingest/cli/cmds/vectara.py,sha256=_wGM30oqQJ_PC7LJjCO3jIREN5p_upTa4sw_WnzRZ3I,2023
|
|
51
|
+
unstructured_ingest/cli/cmds/weaviate.py,sha256=upiSbV6lbQz9gAmMw5quVfTfG4_qRSzgKO_iSVIUA40,2840
|
|
52
|
+
unstructured_ingest/cli/cmds/wikipedia.py,sha256=KUW__Nyb_VR7geWDBgIqEz-I9Ujt-7Mxw6NyDDRQ8fY,1137
|
|
53
|
+
unstructured_ingest/cli/cmds/fsspec/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
54
|
+
unstructured_ingest/cli/cmds/fsspec/azure.py,sha256=1UMrDSjJVU-0PGdQF7sFc0sWBKYQfoxJqjH24AVHzyc,3097
|
|
55
|
+
unstructured_ingest/cli/cmds/fsspec/box.py,sha256=-sRL7ll4ZMsRCuVDLvMQIFPH-O5C3hEpoYMjOeTnPys,1124
|
|
56
|
+
unstructured_ingest/cli/cmds/fsspec/dropbox.py,sha256=J1P9d3Ty9TfVd6fk1C6Nc2SuvSrswKZO4Tn355H1B6U,1136
|
|
57
|
+
unstructured_ingest/cli/cmds/fsspec/fsspec.py,sha256=Qq2h36xp90QoSj19bKS-CZ1DYNRVdxqcxvtV0dZUqSU,366
|
|
58
|
+
unstructured_ingest/cli/cmds/fsspec/gcs.py,sha256=fmBpGZRxDUaiUm2zWGn3Kla2OfYvCj08gyoW5oh2XgA,2441
|
|
59
|
+
unstructured_ingest/cli/cmds/fsspec/s3.py,sha256=v-24oFxhabdShryK2dhP4cDBvVyoQ-8VjcaScVJ1Noc,2054
|
|
60
|
+
unstructured_ingest/cli/cmds/fsspec/sftp.py,sha256=TCB7sf_GYoifryQbbttknYSt9Q1kRCPtu8B8QgXl3lw,1537
|
|
61
|
+
unstructured_ingest/connector/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
62
|
+
unstructured_ingest/connector/airtable.py,sha256=KcLt-FEabO9D5ev5E4xUf06VYHpYpypP-adTVyhGcb8,10585
|
|
63
|
+
unstructured_ingest/connector/astra.py,sha256=CUxfxT3Ssh6SmFYxT0fSus5aQyrJI52JHeal954bOBQ,8575
|
|
64
|
+
unstructured_ingest/connector/azure_cognitive_search.py,sha256=cqQdAaEzt4coU7sxnl4GY8Em4a6azFLyAKM6enkmjBA,5850
|
|
65
|
+
unstructured_ingest/connector/biomed.py,sha256=jEk8-zqmr9rPGKIJ4B7kS7Cpe02bzGGrH9oHubqD-lo,10567
|
|
66
|
+
unstructured_ingest/connector/chroma.py,sha256=DgAe5xxDiV1BzAbKusL7JmkCGyEJ9lWTdoyy0txXoTw,5713
|
|
67
|
+
unstructured_ingest/connector/clarifai.py,sha256=kAtPGrjOps_aYdlhHkTtQc46Rfc0woNor6VY1UGEKZI,4211
|
|
68
|
+
unstructured_ingest/connector/confluence.py,sha256=LvwxCk602vdfboQensDD7yc_jN5QMsKGXF5VsBCy2lw,10131
|
|
69
|
+
unstructured_ingest/connector/databricks_volumes.py,sha256=zEJZFO2Uq-eQ5k62_SmNsKC4NZ-ykmtQY5XacLWrr0I,4948
|
|
70
|
+
unstructured_ingest/connector/delta_table.py,sha256=fHUkZ8v3a20k_r64j-i6ulm4_Zi6eYGdiGKWj4q3BAs,7191
|
|
71
|
+
unstructured_ingest/connector/discord.py,sha256=SelvVGEF2SThdf8FSSVXGrIBgQoOcNgdKFUfEvpIcg0,6153
|
|
72
|
+
unstructured_ingest/connector/elasticsearch.py,sha256=UIqTQbXVhHprApfBCXBVBBmPMnWccjoaFgV6shrKG-U,14157
|
|
73
|
+
unstructured_ingest/connector/git.py,sha256=Hjf22SrJ_oFn4llxTa_54zW3jnZ6JVYB9tYWhCsrr1o,3817
|
|
74
|
+
unstructured_ingest/connector/github.py,sha256=eCV2tChtRBacE_Q9SNPp8ftGJ-TW4OpnOhQMTxV3t7E,6512
|
|
75
|
+
unstructured_ingest/connector/gitlab.py,sha256=OEilnSFabWT3XY0riNxVTXc9tS3f1lMyHI6oZzb3Cw0,4926
|
|
76
|
+
unstructured_ingest/connector/google_drive.py,sha256=fH4-RA1m12MdxHLUheE3acM4oagFcqRhDvIHVPeXASE,13053
|
|
77
|
+
unstructured_ingest/connector/hubspot.py,sha256=teIvVsX1sSf2vILX9sri8ohpC0SA3yHA5sc-moKqls0,9271
|
|
78
|
+
unstructured_ingest/connector/jira.py,sha256=kxjGhbVSH8FJNPMGJbnpZEV5zZRfGFckVJFiOzExphQ,15690
|
|
79
|
+
unstructured_ingest/connector/kafka.py,sha256=cVEX_yn_9Vdvz6lujf1GdThsJfxJnVsdjfTnqhx7p1A,10053
|
|
80
|
+
unstructured_ingest/connector/local.py,sha256=OyGedubpn39bLs5Z4EeZqsb1Q-M-cJkWcrUV8eQ9yec,4479
|
|
81
|
+
unstructured_ingest/connector/mongodb.py,sha256=Cj3BhqyGXgiE4thuBR6YZhxdOR_3i5zETDByB9-GKa0,9765
|
|
82
|
+
unstructured_ingest/connector/onedrive.py,sha256=hvVuC-Kup88ZMbJpXG8AxRiuQyscZw6nOVLOjlF_pK4,8911
|
|
83
|
+
unstructured_ingest/connector/opensearch.py,sha256=kvzqEqanP6nGHjxCJ2e2CAz9iK8na3yYBX1l4ZuVq0A,7937
|
|
84
|
+
unstructured_ingest/connector/outlook.py,sha256=Qbxrt_2ZSz329MxK5hb1_MYndPvPSXxCSfD0dMCy0Gs,10443
|
|
85
|
+
unstructured_ingest/connector/pinecone.py,sha256=hh4hbW7P8ebXf9n4S7ilvcL3Qzt9XEeZwA6_BkPnFEY,4796
|
|
86
|
+
unstructured_ingest/connector/qdrant.py,sha256=Y1PAW6ueAzkTxoeViZ7JjkErFJNJlSYvzaRU1c-hcJA,4964
|
|
87
|
+
unstructured_ingest/connector/reddit.py,sha256=8pyVSXXKGS9vOlNBeXw1ev5oqu-uWka5hzgUI8CFRos,5457
|
|
88
|
+
unstructured_ingest/connector/registry.py,sha256=oQDfgB3SRL2GUspQWTXu5e8fKLSpnE7YAcAdO3waZK8,4838
|
|
89
|
+
unstructured_ingest/connector/salesforce.py,sha256=FrzevH1xB9deXdgt1ph7xa8BRFI8qC2sxGR4KsUHWSY,10941
|
|
90
|
+
unstructured_ingest/connector/sharepoint.py,sha256=4Ex4_rCOvA_7g2YmtsZd_mISjfCD_jRFtk_-JmC4lUc,22159
|
|
91
|
+
unstructured_ingest/connector/slack.py,sha256=1CJ19N2yWrAF1viUrqa4Yb-BUbCrUHmGMkUHhFEe6m4,7617
|
|
92
|
+
unstructured_ingest/connector/sql.py,sha256=YWJIuNtXkhwW_h7nlxkmzZhzMcICkZc1ezZ1CTzcf54,7625
|
|
93
|
+
unstructured_ingest/connector/vectara.py,sha256=b1WlTCPhCe9-IIx2NsLY8JdKpmiHdtQX5PDuy6BG1wo,9318
|
|
94
|
+
unstructured_ingest/connector/weaviate.py,sha256=Pi0bqyTJhXk_1zdbmJCYvW1inHNTBa0i3cYKRRPcXO0,7291
|
|
95
|
+
unstructured_ingest/connector/wikipedia.py,sha256=lGccBwl2JlFJNIWqKj3SmUyTrC4xpmeFliCfahFrXRs,5992
|
|
96
|
+
unstructured_ingest/connector/fsspec/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
97
|
+
unstructured_ingest/connector/fsspec/azure.py,sha256=6rBbH3TtbMF4KxP5oNLADvu2HDLc8VgIaAJoWx8ukeA,2580
|
|
98
|
+
unstructured_ingest/connector/fsspec/box.py,sha256=rFoyDy_xplMFrqpPpee_cSI0P0FgejGaLK_8BxhA6kY,3429
|
|
99
|
+
unstructured_ingest/connector/fsspec/dropbox.py,sha256=W46bpTDvw5AGqM9GMpzXpjqumJgt5SxVSaRW7jNBUa0,5911
|
|
100
|
+
unstructured_ingest/connector/fsspec/fsspec.py,sha256=k9Olxy7PzFW6d2Kcujqf7IvqsdxzYmwaTkGIPoIKBFs,13084
|
|
101
|
+
unstructured_ingest/connector/fsspec/gcs.py,sha256=2PH5jBn09d3ZoM2j0RR-HSOjM0n1HR4XIPSiTmwCT0s,2257
|
|
102
|
+
unstructured_ingest/connector/fsspec/s3.py,sha256=iMsdTzy2KYqkxQJ57UyuZAahtvE21iMT5SsgD4DC7RU,1723
|
|
103
|
+
unstructured_ingest/connector/fsspec/sftp.py,sha256=x2w8JGM81S_HXww7Aa-bTY1LjZSis56aOpCinga_bok,2653
|
|
104
|
+
unstructured_ingest/connector/notion/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
105
|
+
unstructured_ingest/connector/notion/client.py,sha256=vU1GE64ktEAM4b-jo8UnMAwz60KSiQ6iRI3De3ixNdI,8689
|
|
106
|
+
unstructured_ingest/connector/notion/connector.py,sha256=E-t7q5XAiYP9xk-1aqIqcGwdJOH8UNgiE0HcH9Oc4i4,17475
|
|
107
|
+
unstructured_ingest/connector/notion/helpers.py,sha256=5SbQbNxIenMHyxEAMfrsVsXpNcAKPHo3gwWQVi1NUOc,20702
|
|
108
|
+
unstructured_ingest/connector/notion/interfaces.py,sha256=SrTT-9c0nvk0fMqVgudYF647r04AdMKi6wkIkMy7Szw,563
|
|
109
|
+
unstructured_ingest/connector/notion/types/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
110
|
+
unstructured_ingest/connector/notion/types/block.py,sha256=AKOY-o6CTFC-caWlkLfKskMuFemH4-Vdrhv7HnRkS8w,3009
|
|
111
|
+
unstructured_ingest/connector/notion/types/database.py,sha256=UvrxuCd62wIYtgDKSkyGEBZHwfqvPKq1U3qr3w-zLAI,2551
|
|
112
|
+
unstructured_ingest/connector/notion/types/date.py,sha256=Ah0ekF18S_9xVDT2Ps1NGD1eOihtInGIYji_BDIalig,729
|
|
113
|
+
unstructured_ingest/connector/notion/types/file.py,sha256=xc5UQ46qWvVd3SkKJctRBqMVERCNc_UVVc21pu66IME,1291
|
|
114
|
+
unstructured_ingest/connector/notion/types/page.py,sha256=PR3xT7OdO31zHDpp3bhgc5GLdcFuk8F6jOqGlOu5xNg,1408
|
|
115
|
+
unstructured_ingest/connector/notion/types/parent.py,sha256=VTNyL5JNVLb5AqR5P-c658DC9bUgkRKPA9fI2CFZWoU,1695
|
|
116
|
+
unstructured_ingest/connector/notion/types/rich_text.py,sha256=V0fqXLAq7H5A6Av0IM8TqqhqW45VWD8K79sHdh1FyA8,5450
|
|
117
|
+
unstructured_ingest/connector/notion/types/user.py,sha256=VK-XYFt2WdtEqm_LGnmE22ms7xw84ia3pSBhpmy2IKg,1800
|
|
118
|
+
unstructured_ingest/connector/notion/types/blocks/__init__.py,sha256=mp-jlTLXntT94jdG3koguXTwQ4q_a-ZRR9M_yYew3Jc,1505
|
|
119
|
+
unstructured_ingest/connector/notion/types/blocks/bookmark.py,sha256=zOyOxnvbbBTi1j3kxaeHCwk2PxPsGnVlRw0aUHyBwrM,1169
|
|
120
|
+
unstructured_ingest/connector/notion/types/blocks/breadcrumb.py,sha256=ErmCXfxSTB7hIh_zhbF_ba8oMqTKjfEzx9BJUR27gG0,482
|
|
121
|
+
unstructured_ingest/connector/notion/types/blocks/bulleted_list_item.py,sha256=gEenzM5jARMLMwXfAtH5_dC7of_uHnk8aOjWG8xbEVA,971
|
|
122
|
+
unstructured_ingest/connector/notion/types/blocks/callout.py,sha256=9r0EyGfur2tmSoDAbVq8fKNKzXfPfrnMy1Whqpsu9sc,2597
|
|
123
|
+
unstructured_ingest/connector/notion/types/blocks/child_database.py,sha256=_rPd4aTW2f6MxRUpRoK8B9Azs15AEHbpughRxnxHtJI,533
|
|
124
|
+
unstructured_ingest/connector/notion/types/blocks/child_page.py,sha256=wZdffSjfSoZpne6Gr8veS3eBvAmRJ9Ah8p2S9mDrUXU,553
|
|
125
|
+
unstructured_ingest/connector/notion/types/blocks/code.py,sha256=SuvGM9dUxwLLm4wilIzASoz13YcvU4JgJBoHSM5Dpgc,1382
|
|
126
|
+
unstructured_ingest/connector/notion/types/blocks/column_list.py,sha256=Q-UZgfJ1U8NFl90MgPNEA8mJs4h38WAqBiGgmzd1UH4,754
|
|
127
|
+
unstructured_ingest/connector/notion/types/blocks/divider.py,sha256=_gbMd7uJFA84zR16vh06D7BZTYqllMZhZAmQjdNu_JY,565
|
|
128
|
+
unstructured_ingest/connector/notion/types/blocks/embed.py,sha256=vHWlqr8F5dkA0LoTFwOu-zlCdPULWWxYDiNuXSwzSFc,1091
|
|
129
|
+
unstructured_ingest/connector/notion/types/blocks/equation.py,sha256=DXqWPWNaWsAa_3cUynkMlJrN_5lG09eyr8gHJtZOIQU,537
|
|
130
|
+
unstructured_ingest/connector/notion/types/blocks/file.py,sha256=wgNR5TXLJbcp_Uac7cBaPv6GEahN__z9ZTkjHHQYKbE,1681
|
|
131
|
+
unstructured_ingest/connector/notion/types/blocks/heading.py,sha256=o8BXuHP_xjrCG2CeiBTv6CjBiV4fqXTjcmO7TOlg1Wg,1135
|
|
132
|
+
unstructured_ingest/connector/notion/types/blocks/image.py,sha256=f8TtX06g1YXascYL42SNOl84R09QD2vp6FPtw2XRmWo,636
|
|
133
|
+
unstructured_ingest/connector/notion/types/blocks/link_preview.py,sha256=n93UmTrwWerV58kl9IXAKXaMDz4m-WcaMIMTilpLhco,580
|
|
134
|
+
unstructured_ingest/connector/notion/types/blocks/link_to_page.py,sha256=HvUnWoQw0zmhyy7oJwtXNV1Rz3LhBlaa2wogcsrkKBg,745
|
|
135
|
+
unstructured_ingest/connector/notion/types/blocks/numbered_list.py,sha256=o7Yln27xiOxdk0jV2mIeM_BQ0YoPxnxzSDaUt6Zv6ao,937
|
|
136
|
+
unstructured_ingest/connector/notion/types/blocks/paragraph.py,sha256=t5YEVbWoL7ALgqRxdQV4ElMP8CTsJFz5WMDjZUN6Jkk,970
|
|
137
|
+
unstructured_ingest/connector/notion/types/blocks/pdf.py,sha256=9GbM3IhJCLwiPba-2NQKhMz9Cwuxo4pGL07nPbOsVwI,1628
|
|
138
|
+
unstructured_ingest/connector/notion/types/blocks/quote.py,sha256=iDfct7d0us7spLgNWjVHhMRznFs60-KgxJc-ZiJpkio,1154
|
|
139
|
+
unstructured_ingest/connector/notion/types/blocks/synced_block.py,sha256=h3htZvKsLmDrdNPbTFHqI2zrNmw2YxDTiY7K3Lqqswc,1322
|
|
140
|
+
unstructured_ingest/connector/notion/types/blocks/table.py,sha256=Scu5vOvwHj7t6XJ97LhnVLqF0-0T_it2zL099WIE1Nk,1715
|
|
141
|
+
unstructured_ingest/connector/notion/types/blocks/table_of_contents.py,sha256=4bnUU5K7Sv4HPDZjxIZthbHpP8Tv0c0Io4yevl4XD_w,523
|
|
142
|
+
unstructured_ingest/connector/notion/types/blocks/template.py,sha256=cs1XGGzNIx3SlBkr-LM2CWqMbcjc3Y-eY48dAe69d0s,946
|
|
143
|
+
unstructured_ingest/connector/notion/types/blocks/todo.py,sha256=3Xs4oBsOFjLRBOs-UHKQdqR0ux0ELDCnlqaZMJD_68Q,1364
|
|
144
|
+
unstructured_ingest/connector/notion/types/blocks/toggle.py,sha256=l2qx6LoIkBof_dRd_WNsUZH0y7R8aFJcpZI6bTR2VsU,1166
|
|
145
|
+
unstructured_ingest/connector/notion/types/blocks/unsupported.py,sha256=lfhSYS-dZqFLs4Lz-IgMuZkkS3HKTjIv0QL2lNYPcHE,431
|
|
146
|
+
unstructured_ingest/connector/notion/types/blocks/video.py,sha256=8qtmDK0jj-E56Rng11ApQH97tYPYFrUFgSPFK4ly9w0,757
|
|
147
|
+
unstructured_ingest/connector/notion/types/database_properties/__init__.py,sha256=00YGMfCmdRl6_nPuZCMo82sMxu_8sy3ZSj-uwAydCSg,3214
|
|
148
|
+
unstructured_ingest/connector/notion/types/database_properties/checkbox.py,sha256=mxM0R7JSFrQfDPomn9oQOnhem7YeuU1WP141kecOqZM,999
|
|
149
|
+
unstructured_ingest/connector/notion/types/database_properties/created_by.py,sha256=a3_PfkuLa1T4bre2OXLwbzzll1bfl_uXPQzCBKKgMKk,927
|
|
150
|
+
unstructured_ingest/connector/notion/types/database_properties/created_time.py,sha256=u2mABlRFqJ7E1acVHjYcfI9qsCg4Yho7TiXrkMM69gU,823
|
|
151
|
+
unstructured_ingest/connector/notion/types/database_properties/date.py,sha256=bErVoESUMlG69jom1sjMP5HBvngBUlqo6rzNgh8QyiA,1045
|
|
152
|
+
unstructured_ingest/connector/notion/types/database_properties/email.py,sha256=3RuNbPS-AIsTX7hCuGzdh7DqZs_2DdYTR8luDboBZ_0,820
|
|
153
|
+
unstructured_ingest/connector/notion/types/database_properties/files.py,sha256=7UE5bpTvuBQMrJuMwljLESH6BhZtXWgwCdRs5sLZOp8,998
|
|
154
|
+
unstructured_ingest/connector/notion/types/database_properties/formula.py,sha256=BsdYgf8RCFSxV0g3kE_0-iY5fZUz4MhGl-fq8Ouodf4,1058
|
|
155
|
+
unstructured_ingest/connector/notion/types/database_properties/last_edited_by.py,sha256=QNfUIDpVb1-O1M56ObU__iaPPlZSUHxFWsaM5PQBAuU,904
|
|
156
|
+
unstructured_ingest/connector/notion/types/database_properties/last_edited_time.py,sha256=MkVK5hSb28C97xH2JUybTsgTE4XndINTqXdSHdjW0Fc,853
|
|
157
|
+
unstructured_ingest/connector/notion/types/database_properties/multiselect.py,sha256=yKZXJDOrzKocFX5CsoJeZQrTVZzlx4nh1u1Wib3zVFk,1906
|
|
158
|
+
unstructured_ingest/connector/notion/types/database_properties/number.py,sha256=UWIP9EXsrsDC47i0yhaVZi9zZ5OMXpHVcm3iaFh72X0,1045
|
|
159
|
+
unstructured_ingest/connector/notion/types/database_properties/people.py,sha256=h6PkZLi5XrQiuCJCIIBDe8kOKHJRT9mGpiJepz34WlM,1124
|
|
160
|
+
unstructured_ingest/connector/notion/types/database_properties/phone_number.py,sha256=jhcol18oWbg3d4vXKsuyzr3Uzpxwz4u799lSal1p1p8,898
|
|
161
|
+
unstructured_ingest/connector/notion/types/database_properties/relation.py,sha256=Yv2W7ev0bDhrydX7x9Vnl0Joe3qu_zpfvqNV0lZz54M,1517
|
|
162
|
+
unstructured_ingest/connector/notion/types/database_properties/rich_text.py,sha256=_-G7-7RkZJnlLslozwdgb0Igl4zQ-G1apV1xgv9lvrs,1149
|
|
163
|
+
unstructured_ingest/connector/notion/types/database_properties/rollup.py,sha256=ieZ2I37Blg62hpt1hbu_1qK7h5t_vMGB57swzku2G8k,1266
|
|
164
|
+
unstructured_ingest/connector/notion/types/database_properties/select.py,sha256=EhfzirIwC0JP0xZIJKnIwrnGUZ-7MGcWn-swEbSbCE8,1707
|
|
165
|
+
unstructured_ingest/connector/notion/types/database_properties/status.py,sha256=ap4aEP8zuHjLU5fTnnM0uX26rpAnwyhWU84Fy_yScZI,1995
|
|
166
|
+
unstructured_ingest/connector/notion/types/database_properties/title.py,sha256=OhQ8sCWC6ponLX4jwolgoUvRF0MNOgddya4RfHCtM64,1001
|
|
167
|
+
unstructured_ingest/connector/notion/types/database_properties/unique_id.py,sha256=H9lKi8rCDPtKmuu7j9CnJoTUr6YmzIF4oXbv_OxuN9k,1162
|
|
168
|
+
unstructured_ingest/connector/notion/types/database_properties/url.py,sha256=iXQ2tVUm9UlKVtDA0NQiFIRJ5PHYW9wOaWt2vFfSVCg,862
|
|
169
|
+
unstructured_ingest/connector/notion/types/database_properties/verification.py,sha256=J_DLjY-v2T6xDGMQ7FkI0YMKMA6SG6Y3yYW7qUD1hKA,2334
|
|
170
|
+
unstructured_ingest/enhanced_dataclass/__init__.py,sha256=gDZOUsv5eo-8jm4Yu7DdDwi101aGbfG7JctTdOYnTOM,151
|
|
171
|
+
unstructured_ingest/enhanced_dataclass/core.py,sha256=d6aUkDynuKX87cHx9_N5UDUWrvISR4jYRFRTvd_avlI,3038
|
|
172
|
+
unstructured_ingest/enhanced_dataclass/dataclasses.py,sha256=aZMsoCzAGRb8Rmh3BTSBFtNr6FmFTY93KYGLk3gYJKQ,1949
|
|
173
|
+
unstructured_ingest/enhanced_dataclass/json_mixin.py,sha256=MZl2DutTQgktvBnJca6LK4beraHksogDHxjWBFnMrT4,4294
|
|
174
|
+
unstructured_ingest/ingest_backoff/__init__.py,sha256=cfdIJuZDFcF3w84sTyYqZ8vXnSMfMABXFc100r3g5kU,63
|
|
175
|
+
unstructured_ingest/ingest_backoff/_common.py,sha256=ey0PN6Hf7aEpQQau710EHlEmQ3hq4YyYzgNLhPzzK58,3724
|
|
176
|
+
unstructured_ingest/ingest_backoff/_wrapper.py,sha256=tukxuAYn-FbKTofluy9W16ah_6hrBbDAN4ufKEDzfdg,4136
|
|
177
|
+
unstructured_ingest/pipeline/__init__.py,sha256=5kFH21WHi6i1JZri5miY5tB5c9R8sGMBeweYiWH2fqw,537
|
|
178
|
+
unstructured_ingest/pipeline/copy.py,sha256=NwJGLrpP8r6WbWxp3epMYHbQycJUo81r6FjUOjrAlm0,768
|
|
179
|
+
unstructured_ingest/pipeline/doc_factory.py,sha256=Y66k-CoIpwWAD3vWwBeHzI2YESlIsPUhL2OQ8i9RRWE,360
|
|
180
|
+
unstructured_ingest/pipeline/interfaces.py,sha256=lNJpruCRQdehnOaeR4JgMglE9AmhpQ0OqFk3jFOpiJk,8023
|
|
181
|
+
unstructured_ingest/pipeline/partition.py,sha256=xp1Oj_oHZjukGBWrgW-ElJlQMNWASqjqqNSfbi3tFQE,2779
|
|
182
|
+
unstructured_ingest/pipeline/permissions.py,sha256=jTqiFYrOTPHEP79EmrgyzTi0SseqRCwYkcepH4HctLI,365
|
|
183
|
+
unstructured_ingest/pipeline/pipeline.py,sha256=JHsXPGLY129woBcvXMV7wbcstHu_OLB5LR0jIxreNKg,4806
|
|
184
|
+
unstructured_ingest/pipeline/source.py,sha256=YMRZkcdCwRWCiwhnDfTSYxdl9Vv5JH5ut3joijWjHOE,3096
|
|
185
|
+
unstructured_ingest/pipeline/utils.py,sha256=RNx4bv2FhKOhaK_YTiRubta7n9wmJwqzznFNlY25Dtw,168
|
|
186
|
+
unstructured_ingest/pipeline/write.py,sha256=xmDjmbieGRrcI342he7PkgxWaMoSJ5nWPmP5AM2xloU,669
|
|
187
|
+
unstructured_ingest/pipeline/reformat/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
188
|
+
unstructured_ingest/pipeline/reformat/chunking.py,sha256=TgeE2x8VDOJlv_Qyb7x8YNWZPRpNs4tAWWvR8G6i8fM,5921
|
|
189
|
+
unstructured_ingest/pipeline/reformat/embedding.py,sha256=5QBcCNzVt0pth8DKdvZGkFyGrPP_hUbIDaCLz0cbDwA,2651
|
|
190
|
+
unstructured_ingest/runner/__init__.py,sha256=AKlF0es449YleDS18n8aLHZva8kXY6X85QX62J_0DZM,2851
|
|
191
|
+
unstructured_ingest/runner/airtable.py,sha256=1ndJ6PKT63E0gZN3KYFBj4Yo94zQYsIvSjC6ro2nIPE,1115
|
|
192
|
+
unstructured_ingest/runner/astra.py,sha256=zjPIZXCmkyR34vPTyy805LYRCAheeNoGivyZkDbinWQ,1086
|
|
193
|
+
unstructured_ingest/runner/base_runner.py,sha256=DRiIRjHwZd0s7DIMZl_4vcDTrTEI-e_295B3UzTJe9M,3223
|
|
194
|
+
unstructured_ingest/runner/biomed.py,sha256=NaWTJmChYfTKkDHY_MVbDazX_KdP6GrmwJqc82WCuWI,1483
|
|
195
|
+
unstructured_ingest/runner/confluence.py,sha256=RlrupdeXvMf3c6XO0S43LQL9gW202knN0vZFwBjN0PM,1099
|
|
196
|
+
unstructured_ingest/runner/delta_table.py,sha256=dg_pRtgQiYwDcmBPhHnm2xOyak6J7chwKeEJMyN_RFg,1112
|
|
197
|
+
unstructured_ingest/runner/discord.py,sha256=HtntLQZW7RgUfQmd2FCUBM9-4ddmGoYndgv8wdcNQ1g,1090
|
|
198
|
+
unstructured_ingest/runner/elasticsearch.py,sha256=PDbKVs5PLjSqWcvCaLzSXd3Ovew3XSWZCjnz8ZsC81g,1277
|
|
199
|
+
unstructured_ingest/runner/github.py,sha256=UmSUqGjt9zoOfMEpGs6caxH_e3kQUplw5f4Dl3p5F_s,1134
|
|
200
|
+
unstructured_ingest/runner/gitlab.py,sha256=WhX8bhJWDUAMQSDYWQfKU6rR-kNjiWfp_gqF-ilRJwE,1134
|
|
201
|
+
unstructured_ingest/runner/google_drive.py,sha256=hXZohCSzq608ZY8kKcuebfUU8EZgQumKNGHg9In7-zU,1115
|
|
202
|
+
unstructured_ingest/runner/hubspot.py,sha256=VcIPSHCDY1jkReInwLnqS3JSuUWxbi74alWPeWxB43o,1095
|
|
203
|
+
unstructured_ingest/runner/jira.py,sha256=puSlEq_t4d9s7bMep8nDmPfVkupE2l81CFlVNdyabW8,1051
|
|
204
|
+
unstructured_ingest/runner/kafka.py,sha256=R_uNW_GPG0zTzqCHg1p_pkJMYmQ2Uvrd2oOEeWPk0yU,1076
|
|
205
|
+
unstructured_ingest/runner/local.py,sha256=H32v-pid5jE5ZQD-6DhK2M_z-3qr9Ft7_pJTYrrqu6A,607
|
|
206
|
+
unstructured_ingest/runner/mongodb.py,sha256=81ixR9q-1B3z37XGDSlTCrO8x9-HiRX2_beCdOhoKBw,1093
|
|
207
|
+
unstructured_ingest/runner/notion.py,sha256=RrKyAnORTreh1i4ur9B1CxDpATCJiLJupwRi_y5PMRg,2312
|
|
208
|
+
unstructured_ingest/runner/onedrive.py,sha256=XxqY5VjU4EiZHrA6sVmZjpY_IvW2TC_kx6SKyfZcO-w,1126
|
|
209
|
+
unstructured_ingest/runner/opensearch.py,sha256=luqYHXPk20DTGT_fNTcRO1nYFOSL9H38vcuO2_a30ag,1253
|
|
210
|
+
unstructured_ingest/runner/outlook.py,sha256=qY0e2I4NEahW0LZT-HGLlkR6ESqkmeUNEZZURq7ei-U,1059
|
|
211
|
+
unstructured_ingest/runner/reddit.py,sha256=T0yVx1prT4M12ULTENTKdwOuH3AQilFs2lrUsxw4LwA,1078
|
|
212
|
+
unstructured_ingest/runner/salesforce.py,sha256=9FQIW20MgJyHkS_Z0XXzPTEOEJfpV-fbWMOBv2h1geo,1081
|
|
213
|
+
unstructured_ingest/runner/sharepoint.py,sha256=qpCcfpHfXfDPQ4zBh4Pvkwk6NxYxxn0_XpSfuxetgik,1134
|
|
214
|
+
unstructured_ingest/runner/slack.py,sha256=Uu_gKaunVZdvSiBACa6DCVcVUXm1CH6FEJdGUogmVG8,1029
|
|
215
|
+
unstructured_ingest/runner/utils.py,sha256=8I-X8y_j7ufAoW7YyLYV-Gwh6S1kOsJE1Aj4LoUyRmw,1419
|
|
216
|
+
unstructured_ingest/runner/wikipedia.py,sha256=8yK-ssIuX_dlG1vMurJ1JzoJ265-qGf1lMU_qrhfUmI,1098
|
|
217
|
+
unstructured_ingest/runner/fsspec/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
218
|
+
unstructured_ingest/runner/fsspec/azure.py,sha256=EwH_DKYQ4Mh5CMQ64xyb3PA-AKHuFDINLD6OpOJOzRM,1034
|
|
219
|
+
unstructured_ingest/runner/fsspec/box.py,sha256=x8b4MYf2ypvOwp8aEETdmxOJANuZ8uzXQb-Cngu8-i4,949
|
|
220
|
+
unstructured_ingest/runner/fsspec/dropbox.py,sha256=1O2MwFQzRVoc2pPB0fFusCxnonIWsxopnODY4SPl0x4,1006
|
|
221
|
+
unstructured_ingest/runner/fsspec/fsspec.py,sha256=83LpsJAgPDJ3HzCKeaWXh7alO8duLKLlqqQ0jCuI1Yw,1419
|
|
222
|
+
unstructured_ingest/runner/fsspec/gcs.py,sha256=HZyQBoHdnLRA9pULopY7k3b9xLEviENwuDmDGpUoZmU,949
|
|
223
|
+
unstructured_ingest/runner/fsspec/s3.py,sha256=LPsm-Kz1XmrVHM5nj6OcADnI-K6rVbtGXGfSicN_g-A,941
|
|
224
|
+
unstructured_ingest/runner/fsspec/sftp.py,sha256=6vD_CVnxcdpHt4wSEQJ-tQvKL6BQJYxlw2g6OHzlTWw,957
|
|
225
|
+
unstructured_ingest/runner/writers/__init__.py,sha256=8VuDgrWIVHg_nPP53xsJQ92hKaiY2crarbuU_bthkH0,1520
|
|
226
|
+
unstructured_ingest/runner/writers/astra.py,sha256=bVO8P4fXlp6l9kWjylJv0gXINuR5VAYNI63MPo4UDHo,741
|
|
227
|
+
unstructured_ingest/runner/writers/azure_cognitive_search.py,sha256=_5nG3C4DMIwZ_y6I03DrvzhZ6HoeaNVzFWRzjRR6xAQ,813
|
|
228
|
+
unstructured_ingest/runner/writers/base_writer.py,sha256=S16pacw1HbAj9D5L8tWJbVjVJzv1Xp5RYTj3J9rtrHo,669
|
|
229
|
+
unstructured_ingest/runner/writers/chroma.py,sha256=VDeaZPkJjBl55l1ztMK1cW-72N8j5F4Ro5Oh8stYKPo,750
|
|
230
|
+
unstructured_ingest/runner/writers/clarifai.py,sha256=QM-sHIaL-hVXofZbCfYgg_-_ju0kBMlFDixzrZGA0Tg,637
|
|
231
|
+
unstructured_ingest/runner/writers/databricks_volumes.py,sha256=IOOLz-vJ3GbE8OMc6bVt8WwHVBBqPmenYXQbQXOdlQ0,876
|
|
232
|
+
unstructured_ingest/runner/writers/delta_table.py,sha256=v0PbsWOoT9L5NYCeyYgOpKbE8oUs2_P2rUC5H05ag6c,707
|
|
233
|
+
unstructured_ingest/runner/writers/elasticsearch.py,sha256=_mLLyFtaxDT7Otyk2cdsx_sjkItuhAqOniacMk6UwVw,724
|
|
234
|
+
unstructured_ingest/runner/writers/kafka.py,sha256=EASmNgAFU4DnLHryPjBdeQZVh9Ky4t_7skWtv_DmwPc,635
|
|
235
|
+
unstructured_ingest/runner/writers/mongodb.py,sha256=_3FuSrhdIpIyJHAMNU9Mfb8NbblHnDCbSf_zBC_0JfU,653
|
|
236
|
+
unstructured_ingest/runner/writers/opensearch.py,sha256=UToEHfHrBJQtEUZjINal5DuYd2Ki984ZCdeZ6V9A_MY,771
|
|
237
|
+
unstructured_ingest/runner/writers/pinecone.py,sha256=4DmjxNraZrdrztIoqmSbG5_aH7e4NPmEgK17ClkoUoc,662
|
|
238
|
+
unstructured_ingest/runner/writers/qdrant.py,sha256=0FUg44qX5TnMMCiIJcnJFrKgeSneWp4ib9N_pfbBSTI,619
|
|
239
|
+
unstructured_ingest/runner/writers/sql.py,sha256=36x9R5t9iYpf_4xGxyEvLeaHPwxqgbZTW2HTYONS-9s,657
|
|
240
|
+
unstructured_ingest/runner/writers/vectara.py,sha256=xktOaZRql5AosD1u7U72h1jbYqG9JmhDQEpQrHwRiKw,759
|
|
241
|
+
unstructured_ingest/runner/writers/weaviate.py,sha256=dnSKaqiH2OwnMFryX2fr3otz0PHZprVlHILJj9qyUxE,662
|
|
242
|
+
unstructured_ingest/runner/writers/fsspec/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
243
|
+
unstructured_ingest/runner/writers/fsspec/azure.py,sha256=GbaG6rSFVFCqeCtM8sO4nRnen9sq_ErUA3F0jouNoPo,718
|
|
244
|
+
unstructured_ingest/runner/writers/fsspec/box.py,sha256=Il6EkfymgcMrPqdAW1RuKhD5V7LR7S5XlqdvG2KgVQk,631
|
|
245
|
+
unstructured_ingest/runner/writers/fsspec/dropbox.py,sha256=y0kmx5Xjc9Ypfg6t6N_xWsM-U31uk1sKjGmIad7_QL4,667
|
|
246
|
+
unstructured_ingest/runner/writers/fsspec/gcs.py,sha256=ia-gconOz1kWI1jmYeB9NY6cwjWfofoZAydKfZsaFs0,606
|
|
247
|
+
unstructured_ingest/runner/writers/fsspec/s3.py,sha256=kHJq2O3864QBd_tL2SKb0mdywczOCr2VI5e_bVms-Vw,622
|
|
248
|
+
unstructured_ingest/utils/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
249
|
+
unstructured_ingest/utils/compression.py,sha256=ZzJQeNn1a6oseKo-oDwaLggBzi32oqPL5Z9I_Y-YYy8,4340
|
|
250
|
+
unstructured_ingest/utils/data_prep.py,sha256=oizt8xZ15hExZ_8xacMG0j1LSH4ILreQpXJUYm2Bb_M,3917
|
|
251
|
+
unstructured_ingest/utils/dep_check.py,sha256=jqMhbZlne1BpOJTnxEGbXEHTXlXa4CvbEKMKhT6mlhs,1893
|
|
252
|
+
unstructured_ingest/utils/string_and_date_utils.py,sha256=hnGglD8Z626vLhH_UV4QybF_P62vwWRcA8CLk2x-s40,1377
|
|
253
|
+
unstructured_ingest/utils/table.py,sha256=aWjcowDVSClNpEAdR6PY3H7khKu4T6T3QqQE6GjmQ_M,3469
|
|
254
|
+
unstructured_ingest/v2/__init__.py,sha256=U4S_2y3zgLZVfMenHRaJFBW8yqh2mUBuI291LGQVOJ8,35
|
|
255
|
+
unstructured_ingest/v2/example.py,sha256=qkwmpMxUlaJXdDNKQ4LlUt3XGxgTUU3CXGGO57eW5Gs,1644
|
|
256
|
+
unstructured_ingest/v2/logger.py,sha256=tI_PtlibnJmv1MMajHT5GSZhQ77dv30UADEWaXWgynA,4324
|
|
257
|
+
unstructured_ingest/v2/main.py,sha256=WFdLEqEXRy6E9_G-dF20MK2AtgX51Aan1sp_N67U2B8,172
|
|
258
|
+
unstructured_ingest/v2/cli/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
259
|
+
unstructured_ingest/v2/cli/cli.py,sha256=qHXIs-PcvMgDZhP1AR9iDMxh8FXBMJCEDksPBfiMULE,648
|
|
260
|
+
unstructured_ingest/v2/cli/interfaces.py,sha256=4Bbow6QHks2a1H56tmVQ4vG3sZy-577ZbwrPmDfizmE,829
|
|
261
|
+
unstructured_ingest/v2/cli/utils.py,sha256=QK-ee6FzxPf-IbaNXXWlH-GhvqeNnjK2m8ljBD1SusU,9075
|
|
262
|
+
unstructured_ingest/v2/cli/base/__init__.py,sha256=zXCa7F4FMqItmzxfUIVmyI-CeGh8X85yF8lRxwX_OYQ,83
|
|
263
|
+
unstructured_ingest/v2/cli/base/cmd.py,sha256=qVHmquVsVDoYyPByKdUTVCwAFfILMYBw5w6eTTVku-E,9308
|
|
264
|
+
unstructured_ingest/v2/cli/base/dest.py,sha256=YMbVIHmYDqvOtxZeEY93stmF2p2ImjuJts7-u-NznYw,2887
|
|
265
|
+
unstructured_ingest/v2/cli/base/importer.py,sha256=nRt0QQ3qpi264-n_mR0l55C2ddM8nowTNzT1jsWaam8,1128
|
|
266
|
+
unstructured_ingest/v2/cli/base/src.py,sha256=7LnZh9FgUX9rerBH6cizVtTWmM6R2sRkxatnGsxYHG0,2410
|
|
267
|
+
unstructured_ingest/v2/cli/cmds/__init__.py,sha256=aOcJb2FLQaUOU-vdu4xHr5_BJQme6ADlPaRjCSHL1Io,2590
|
|
268
|
+
unstructured_ingest/v2/cli/cmds/astra.py,sha256=L-GR2KSP_cFQkQm0aVcdiXmgYMJZCVKIAH794y8qT1M,2590
|
|
269
|
+
unstructured_ingest/v2/cli/cmds/azure_cognitive_search.py,sha256=VTCSUYeIYKnP60lC7DeBYqoqAJnWuBZrwevCXbeIEzw,2248
|
|
270
|
+
unstructured_ingest/v2/cli/cmds/chroma.py,sha256=RinNOPripk2zRYx1Rt-u-jywXbwh7JsidVia4F0-wyU,3359
|
|
271
|
+
unstructured_ingest/v2/cli/cmds/databricks_volumes.py,sha256=53d9A7UunJLYZFwwwHEraVshFc3gSzUbmKjMOiv7hn4,5920
|
|
272
|
+
unstructured_ingest/v2/cli/cmds/elasticsearch.py,sha256=joUfnV992fAwEDCtFVJaABwgpyQiWeDl1ZCBEudRtnk,5258
|
|
273
|
+
unstructured_ingest/v2/cli/cmds/google_drive.py,sha256=mXozabpi8kjRFb0S7kw-xMGtEuFoVUxnvefwL5ZIPHc,2334
|
|
274
|
+
unstructured_ingest/v2/cli/cmds/local.py,sha256=lGBFOVDRlrcCtPFjyk0IAYHLRWg95Kunu1Kli7t0ZK4,1899
|
|
275
|
+
unstructured_ingest/v2/cli/cmds/mongodb.py,sha256=oyV6tacuuxm3dN-AXQgbxvYJiDYo2OOWQKRSBCUGj0E,1823
|
|
276
|
+
unstructured_ingest/v2/cli/cmds/onedrive.py,sha256=DKqhQyyF-swZxs3C9G5W8ECleq8sWpDbpTuiAHXukXQ,2781
|
|
277
|
+
unstructured_ingest/v2/cli/cmds/opensearch.py,sha256=7zl8dUXzxs24MDRRASKfNc14IDM798qOXRl2FZdXG1I,3064
|
|
278
|
+
unstructured_ingest/v2/cli/cmds/pinecone.py,sha256=DFJ7vh5-BZ6ll4TKTDCWp9GuiOvVDlSs7OJtiJ5DRI8,1720
|
|
279
|
+
unstructured_ingest/v2/cli/cmds/salesforce.py,sha256=ejyYPOuh3APNUDC0vYynJQoUFTk7792B0eAP0TcVkkQ,2431
|
|
280
|
+
unstructured_ingest/v2/cli/cmds/sharepoint.py,sha256=EK1RVs8cNNIA60JrDvr7SciMeXpSluMzBiQod9hK-UU,3722
|
|
281
|
+
unstructured_ingest/v2/cli/cmds/singlestore.py,sha256=awyP4FlP20bBcPmEOntkJBk18UAY7iqwUmhaxelkiGQ,2667
|
|
282
|
+
unstructured_ingest/v2/cli/cmds/sql.py,sha256=gvxBlVCsrIF4_NHWABMtR4R6PqbgYeIPA1kDL4dt-yg,2228
|
|
283
|
+
unstructured_ingest/v2/cli/cmds/weaviate.py,sha256=3Ra6MFdVGV3iRXq3B1I1D50GMpKe9HOq93NA0aYCKpo,2906
|
|
284
|
+
unstructured_ingest/v2/cli/cmds/fsspec/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
285
|
+
unstructured_ingest/v2/cli/cmds/fsspec/azure.py,sha256=ZHfchzSpGkZ99Fq1050JvHP0-aG1pZsBZxxozcFfxwI,2784
|
|
286
|
+
unstructured_ingest/v2/cli/cmds/fsspec/box.py,sha256=kslkI-0-GyGSJOU7bKgrZeQRXh8HFexDq87ew8kT8kE,1338
|
|
287
|
+
unstructured_ingest/v2/cli/cmds/fsspec/dropbox.py,sha256=LtcR3rCQPgzJNbV3S90HlL0LPPbW9lYEfE8BG4F-dSI,1349
|
|
288
|
+
unstructured_ingest/v2/cli/cmds/fsspec/fsspec.py,sha256=Mgr_nto1FWxnGmbGdVlIfm-xuBGL0HEi8k3FEmQnZng,2414
|
|
289
|
+
unstructured_ingest/v2/cli/cmds/fsspec/gcs.py,sha256=3-0LYnDs0fgNrDqnHpNZKj_6rwNj9wQVaV0lGOhVFPE,2737
|
|
290
|
+
unstructured_ingest/v2/cli/cmds/fsspec/s3.py,sha256=EXQzYkDtkFli2sfcj4cRDRPFac7b7z1DfQqYlGQcE6o,2279
|
|
291
|
+
unstructured_ingest/v2/cli/cmds/fsspec/sftp.py,sha256=YY2xKguawMyLdcG0qDYKUgk7DT0KgyZJlV17MfwIhpo,2036
|
|
292
|
+
unstructured_ingest/v2/cli/configs/__init__.py,sha256=5NMXm872QQZTvUFZFS06c8c1b6K940K5gxs9lbp8W6M,258
|
|
293
|
+
unstructured_ingest/v2/cli/configs/chunk.py,sha256=KvIhmIRIZxazCumMztAKdWs-4MK7qzOb5h6Ned_2bdU,3547
|
|
294
|
+
unstructured_ingest/v2/cli/configs/embed.py,sha256=q_TwnkxKTKOsMgVYfW6xxbD8FWjU_Uh_X2BQ5-_VLGM,2725
|
|
295
|
+
unstructured_ingest/v2/cli/configs/partition.py,sha256=7wdI18V6c4kaXuf50Lh66n9LbtrYHYd8ffEgDQLqvSk,3931
|
|
296
|
+
unstructured_ingest/v2/cli/configs/processor.py,sha256=ZHu2DBIuE8VgL3mEt73yYimw2k_PaOEtdxxFqzHfk84,3350
|
|
297
|
+
unstructured_ingest/v2/interfaces/__init__.py,sha256=-CHWUlT4rISd-gSfcGKGYFqqSFhMY9lKsT5wxwmOThM,845
|
|
298
|
+
unstructured_ingest/v2/interfaces/connector.py,sha256=u4hE1DpTPDC04-n_IzYyn9w1gNCiPT81anrUoEh30Z8,855
|
|
299
|
+
unstructured_ingest/v2/interfaces/downloader.py,sha256=aWlacZZrI6SGw6retnRJtZbqT5voOYq_fb326ynNOhI,2506
|
|
300
|
+
unstructured_ingest/v2/interfaces/file_data.py,sha256=5TCMkblUW-Jvy-rS5FqRT22VzDmJqAiQRIWYarpAi64,1543
|
|
301
|
+
unstructured_ingest/v2/interfaces/indexer.py,sha256=pMw0abNHk_tEuA4BkXX1BdAfIwHdytxj7s6tGxMvYRE,821
|
|
302
|
+
unstructured_ingest/v2/interfaces/process.py,sha256=0ecz7mAjlY_DUi9-HhPc9zXphmGclispYwv37O8gvJ0,466
|
|
303
|
+
unstructured_ingest/v2/interfaces/processor.py,sha256=uHVHeKo5Gt_zFkaEXw7xgaCBDTEl2-Amh-ByA07258o,1620
|
|
304
|
+
unstructured_ingest/v2/interfaces/upload_stager.py,sha256=SylhDl9pK6qa7hvfrhpabCkjwE03yIlI6oM-mQnqtho,1220
|
|
305
|
+
unstructured_ingest/v2/interfaces/uploader.py,sha256=bzfx3Ei4poXKu-hsgjAB4sj4jKij9CoaRSadUM5LtGk,1083
|
|
306
|
+
unstructured_ingest/v2/pipeline/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
307
|
+
unstructured_ingest/v2/pipeline/interfaces.py,sha256=3zRcu6sc-2rnm3gALOzXA9mI39m2RUPrREZGTd9x77c,6352
|
|
308
|
+
unstructured_ingest/v2/pipeline/pipeline.py,sha256=r8jRMZI2RF8GQIuTcjIFBDeFtMnqpOJmKhEriy6Vo5Y,11616
|
|
309
|
+
unstructured_ingest/v2/pipeline/utils.py,sha256=oPAitfdnITqh2O8Z0uf6VOHg9BTJhitRzNmKXqTwPxg,422
|
|
310
|
+
unstructured_ingest/v2/pipeline/steps/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
311
|
+
unstructured_ingest/v2/pipeline/steps/chunk.py,sha256=lfCsBo6A9u1cT57YaEjvNI79gc29nW8c-2_WZNjiO5Y,3275
|
|
312
|
+
unstructured_ingest/v2/pipeline/steps/download.py,sha256=GA5-zTH4c7Ac8oBoc4AeDA8sQ0dYT-KUOZ4n31K3Jpg,4882
|
|
313
|
+
unstructured_ingest/v2/pipeline/steps/embed.py,sha256=VCdDBUXK6Yx8RTvRBpEFdFE7n0izvkP73w6s8Tv2sgg,3253
|
|
314
|
+
unstructured_ingest/v2/pipeline/steps/index.py,sha256=i4RcJ1oRqNp-rFdc6rvKVGcSzNhdB7woW7_W364uThQ,2269
|
|
315
|
+
unstructured_ingest/v2/pipeline/steps/partition.py,sha256=q7-rpCj5Vy4BXtd7T72gxGb3xg6lmVyNmTwUfHil7Rg,3199
|
|
316
|
+
unstructured_ingest/v2/pipeline/steps/stage.py,sha256=A8i6VAFY4_xFJR0uBEyBNJlQXmTMGaflXsa6Wa6U1wQ,2274
|
|
317
|
+
unstructured_ingest/v2/pipeline/steps/uncompress.py,sha256=GX60I4LAbFH57V2HexpX73I5Ljd1uCdkufYveNvdPQo,2542
|
|
318
|
+
unstructured_ingest/v2/pipeline/steps/upload.py,sha256=_IIF4e46wFabb6q-fIPwYApguQHNLwLLOhfG_8IZ9Gw,2495
|
|
319
|
+
unstructured_ingest/v2/processes/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
320
|
+
unstructured_ingest/v2/processes/chunker.py,sha256=U6zQhaUG_dii66zqL9iEEGodHENNxnpn6V3pC-e7MMI,4233
|
|
321
|
+
unstructured_ingest/v2/processes/connector_registry.py,sha256=KOrvJNNRdpBPyqFwmTm42kD1xXuo7fNS_5yXjtqAz-c,2100
|
|
322
|
+
unstructured_ingest/v2/processes/embedder.py,sha256=QjAsiXAjWtZzh6lJ4D5LsTMBD81zuMBkegXNWq-FZt0,3308
|
|
323
|
+
unstructured_ingest/v2/processes/partitioner.py,sha256=f6UQoQHVKjl8rmM5J9EcuP30RTFLSLrArGdC6qh-ffE,7645
|
|
324
|
+
unstructured_ingest/v2/processes/uncompress.py,sha256=x-JZYNs1zJOtRS7xNgiMyrYoAbzKM0p18O8NAl7avCA,1631
|
|
325
|
+
unstructured_ingest/v2/processes/connectors/__init__.py,sha256=cuPXXs7__tztof9Z8jE4b7UPQFc6p616hH1BECzBK1M,3762
|
|
326
|
+
unstructured_ingest/v2/processes/connectors/astra.py,sha256=TSI_3GHnEh3gYAC30RTG4b2eEB07agroEFmJ38GnQY4,4903
|
|
327
|
+
unstructured_ingest/v2/processes/connectors/azure_cognitive_search.py,sha256=PT02ZKiJuHMrmBClxqBsyDS0aXUQYLVg02Ns2qh1hD4,7935
|
|
328
|
+
unstructured_ingest/v2/processes/connectors/chroma.py,sha256=nYzNz-8oq-DN0Z4r7lHQFmlved76IaYeRvm7-EmbGUE,6998
|
|
329
|
+
unstructured_ingest/v2/processes/connectors/databricks_volumes.py,sha256=MTLK7SvQqWU-PXmEbGajM4f-CqGWlmlfeED6a5StEWw,3226
|
|
330
|
+
unstructured_ingest/v2/processes/connectors/elasticsearch.py,sha256=6QBvVzPk3mWj9ZqJZN7NvhcJaOO6nSLqLwU6zggP59A,14864
|
|
331
|
+
unstructured_ingest/v2/processes/connectors/google_drive.py,sha256=IkLVafUu280OOoqYmdfdfMB6zlpiWjs2Z5J31ZzJOj4,12681
|
|
332
|
+
unstructured_ingest/v2/processes/connectors/local.py,sha256=maAXVKpRRXj_jseC6EPLTosMgw6ll-0lnGsDdAFLWAE,6646
|
|
333
|
+
unstructured_ingest/v2/processes/connectors/mongodb.py,sha256=ErZWAD-su3OCRGv1h84X1PpAWleUPVZcFDEIYjtyP4E,4310
|
|
334
|
+
unstructured_ingest/v2/processes/connectors/onedrive.py,sha256=WDDoFEfd8M_QBTpkGNI2zZGZZ_CR1rQiCsBWYOO2JoA,8311
|
|
335
|
+
unstructured_ingest/v2/processes/connectors/opensearch.py,sha256=HNRZVQsWnjLLm0yAGiIyHRbhAsBnGSXBO_VkUfIdwdE,5463
|
|
336
|
+
unstructured_ingest/v2/processes/connectors/pinecone.py,sha256=VkPYmGmFKbgsmmrWV09roxztAv5LlTBVHizPeyPoFVc,5746
|
|
337
|
+
unstructured_ingest/v2/processes/connectors/salesforce.py,sha256=Cz4qEtnbsD9-m1DXANxnVRZTHX2ZaUUBPVFPu5wnFRk,10832
|
|
338
|
+
unstructured_ingest/v2/processes/connectors/sharepoint.py,sha256=SNovgGUE5tHdfX_lF5zwM_QRZK7mahHzLZKhnqfk6Tc,17696
|
|
339
|
+
unstructured_ingest/v2/processes/connectors/singlestore.py,sha256=upF2O4hJ2uiBhDRrpQ8CSJUvzmqu2j5H1b_QbReHJpw,5168
|
|
340
|
+
unstructured_ingest/v2/processes/connectors/sql.py,sha256=T0rpCbhEipWlezoJOMiUewcZuk6Had6TkmsDT-PeOL0,8360
|
|
341
|
+
unstructured_ingest/v2/processes/connectors/utils.py,sha256=nmpZZCeX0O7rGrwHSWM_heBgpZK9tKT6EV1Moer-z40,576
|
|
342
|
+
unstructured_ingest/v2/processes/connectors/weaviate.py,sha256=7H3s44zVKbN3_eR35sbKTKSDOt6ZIIQkX-4t65LuJ6c,8254
|
|
343
|
+
unstructured_ingest/v2/processes/connectors/fsspec/__init__.py,sha256=TtdeImM7Ypl_n6sl7I1JqX6bGSG0t_FqvCqE3Cy24og,1846
|
|
344
|
+
unstructured_ingest/v2/processes/connectors/fsspec/azure.py,sha256=RN7zoifocIWVgoP9aMDMz4TP-Z9KhE-HbCCBq33fY90,4674
|
|
345
|
+
unstructured_ingest/v2/processes/connectors/fsspec/box.py,sha256=UnD-F9g7yOOBStrAqeKq6GuQjEyHdwOA3jYLj8YZIRM,4088
|
|
346
|
+
unstructured_ingest/v2/processes/connectors/fsspec/dropbox.py,sha256=I6mPG9EIso9TcIczCw5Y14Yqd-EhTQ2CLw1MJx1V3dY,4420
|
|
347
|
+
unstructured_ingest/v2/processes/connectors/fsspec/fsspec.py,sha256=gNgrRqKqk9YpBRGqGPvBUuEcBv1jN59fmBBj6NrB4sA,12394
|
|
348
|
+
unstructured_ingest/v2/processes/connectors/fsspec/gcs.py,sha256=RYZq_8hKF7bRxuB5Gozv5AzB3_nTuuooE4UfRjXwEFU,4443
|
|
349
|
+
unstructured_ingest/v2/processes/connectors/fsspec/s3.py,sha256=7lOm5hjb0LBkbe-OWXnV3wDC-3mM_GWwwmdKW0xzh8c,5333
|
|
350
|
+
unstructured_ingest/v2/processes/connectors/fsspec/sftp.py,sha256=J7Ej-j7dtXAluHunwynUfHlNsYwymb-LsrGUFcljcsA,5700
|
|
351
|
+
unstructured_ingest/v2/processes/connectors/fsspec/utils.py,sha256=jec_Qfe2hbfahBuY-u8FnvHuv933AI5HwPFjOL3kEEY,456
|
|
352
|
+
unstructured_ingest-0.0.0.dist-info/METADATA,sha256=XkFXINFQaqCmpnfNfymilYFVadQCXgkbXUm236ko_so,21501
|
|
353
|
+
unstructured_ingest-0.0.0.dist-info/WHEEL,sha256=GJ7t_kWBFywbagK5eo9IoUwLW6oyOeTKmQ-9iHFVNxQ,92
|
|
354
|
+
unstructured_ingest-0.0.0.dist-info/entry_points.txt,sha256=gUAAFnjFPnBgThJSEbw0N5ZjxtaKlT1s9e05_arQrNw,70
|
|
355
|
+
unstructured_ingest-0.0.0.dist-info/top_level.txt,sha256=QaTxTcjfM5Hr9sZJ6weOJvSe5ESQc0F8AWkhHInTCf8,20
|
|
356
|
+
unstructured_ingest-0.0.0.dist-info/RECORD,,
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
unstructured_ingest
|