Command Line Tools (CLI)
For quick testing you can use the integrated CLI tools that ship with the Client Libraries.
# Install the library
pip install mindee
# General help
mindeeV2 --help
# Help for extraction models
mindeeV2 extraction --help
# Run extraction on a file
# --key: API key, you can instead `export MINDEE_V2_API_KEY=md_XXXXXXXXXXXX`
# --model: Your model ID
# Positional arg: Absolute path to the file
mindeeV2 extraction \
--key md_XXXXXXXXXXXX \
--model abcd1234-aa11-bb22-cc33-abcdef1234567 \
/path/to/the/file.pdf# Install the library
npm install mindee
# General help
./node_modules/.bin/mindeeV2 --help
# Help for extraction models
./node_modules/.bin/mindeeV2 extraction --help
# Run extraction on a file
# --api-key: API key, you can instead `export MINDEE_V2_API_KEY=md_XXXXXXXXXXXX`
# --model: Your model ID
# Positional arg: Absolute path to the file
./node_modules/.bin/mindeeV2 extraction \
--api-key md_XXXXXXXXXXXX \
--model abcd1234-aa11-bb22-cc33-abcdef1234567 \
/path/to/the/file.pdfLast updated
Was this helpful?

