mirror of
https://github.com/Unstructured-IO/unstructured.git
synced 2025-08-19 22:27:40 +00:00

* Pull out s3 code as subcommand * Pull out dropbox code as subcommand * Pull out azure code as subcommand * Pull out fsspec code as subcommand * Pull out github code as subcommand * Pull out gitlab code as subcommand * Pull out reddit code as subcommand * Pull out slack code as subcommand * Pull out discord code as subcommand * Pull out wikipedia code as subcommand * Pull out gdrive code as subcommand * Pull out biomed code as subcommand * rename parameters * Pull out onedrive code as subcommand * Pull out outlook code as subcommand * Pull out local code as subcommand * Pull out elasticsearch code as subcommand * Pull out confluence code as subcommand * Drop previous main file * update changelog * Add back in mp.Pool * Fix mypy issues with click * Make sure all tests run with verbose flag * refactor approach to dynamically add common options to each subcommand, scrub logging of options for sensitive data * Pull out some more shared options * Support running code via python as well as cli * update ingest readme and move it to the ingest folder * update usage in connector docs * move local command arg in test * Seperate out cli code from logic running unstructured * Make some cli fields required rather than optional * rename process -> processor * Improve logger to avoid duplicate handlers --------- Co-authored-by: Ryan Nikolaidis <1208590+ryannikolaidis@users.noreply.github.com>
31 lines
1.0 KiB
Bash
Executable File
31 lines
1.0 KiB
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
# Processes the Unstructured-IO/unstructured repository
|
|
# through Unstructured's library in 2 processes.
|
|
|
|
# Structured outputs are stored in reddit-ingest-output/
|
|
|
|
# NOTE, this script is not ready-to-run!
|
|
# You must enter a client ID and a client secret before running.
|
|
# You can find out how to get them here:
|
|
# https://github.com/reddit-archive/reddit/wiki/OAuth2-Quick-Start-Example#first-steps
|
|
# It is quite easy and very quick.
|
|
|
|
SCRIPT_DIR=$( cd -- "$( dirname -- "${BASH_SOURCE[0]}" )" &> /dev/null && pwd )
|
|
cd "$SCRIPT_DIR"/../../.. || exit 1
|
|
|
|
PYTHONPATH=. ./unstructured/ingest/main.py \
|
|
reddit \
|
|
--subreddit-name machinelearning \
|
|
--client-id "<client id here>" \
|
|
--client-secret "<client secret here>" \
|
|
--user-agent "Unstructured Ingest Subreddit fetcher by \u\..." \
|
|
--search-query "Unstructured" \
|
|
--num-posts 10 \
|
|
--structured-output-dir reddit-ingest-output \
|
|
--num-processes 2 \
|
|
--verbose
|
|
|
|
# Alternatively, you can call it using:
|
|
# unstructured-ingest reddit --subreddit-name ...
|