Installation¶
Hyper-Extract requires Python 3.11+.
Install as CLI Tool¶
If you want to use the he command from anywhere:
Install uv first (if you haven't):
Then install Hyper-Extract:
Install as Python Library¶
If you want to use Hyper-Extract in your Python code:
Verify Installation¶
Development Installation¶
If you want to contribute or modify the source code:
git clone https://github.com/yifanfeng97/hyper-extract.git
cd hyper-extract
# Install with uv (recommended)
uv sync --extra dev
# Or with pip
pip install -e ".[dev]"
What's Next?¶
- CLI Quickstart β Your first extraction from the terminal
- Python Quickstart β Your first extraction with Python