mirror of
https://github.com/Unstructured-IO/unstructured.git
synced 2025-10-29 00:50:28 +00:00
The connector can process a Wikipedia page and output the HTML, the plain text contents, and the summary. No API key required Also add test case verifying that 3 files are indeed created (one for HTML, one for text, one for the summary).
11 lines
300 B
Bash
Executable File
11 lines
300 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
set -eux -o pipefail
|
|
|
|
SCRIPT_DIR=$( cd -- "$( dirname -- "${BASH_SOURCE[0]}" )" &> /dev/null && pwd )
|
|
cd "$SCRIPT_DIR"/.. || exit 1
|
|
|
|
./test_unstructured_ingest/test-ingest-s3.sh
|
|
./test_unstructured_ingest/test-ingest-github.sh
|
|
./test_unstructured_ingest/test-ingest-wikipedia.sh
|