Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 1 addition & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -64,8 +64,7 @@ jobs:
run: uv run ruff format --check parallel_web_tools/ tests/

- name: Type check with pyrefly
run: uv run pyrefly check parallel_web_tools/
continue-on-error: true
run: uv run pyrefly check

cli-test:
runs-on: ubuntu-latest
Expand Down
6 changes: 4 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,14 +20,16 @@ CLI and data enrichment utilities for the [Parallel API](https://docs.parallel.a

### Standalone CLI (Recommended)

Install the standalone `parallel-cli` binary with everything bundled (no Python required):
Install the standalone `parallel-cli` binary for search, extract, enrichment, and deep research (no Python required):

```bash
curl -fsSL https://raw.githubusercontent.com/parallel-web/parallel-web-tools/main/install-cli.sh | bash
```

This automatically detects your platform (macOS/Linux, x64/arm64) and installs to `~/.local/bin`.

> **Note:** The standalone binary includes core CLI features. For deployment commands (`enrich deploy`), use pip: `pip install parallel-web-tools[snowflake]` or `[bigquery]`.

### Python Package

For programmatic usage or data enrichment integrations:
Expand Down Expand Up @@ -60,7 +62,7 @@ parallel-cli
├── run # Run enrichment
├── plan # Create YAML config
├── suggest # AI suggests output columns
└── deploy # Deploy to cloud systems (BigQuery, etc.)
└── deploy # Deploy to cloud systems (requires pip install)
```

## Quick Start
Expand Down
4 changes: 3 additions & 1 deletion docs/bigquery-setup.md
Original file line number Diff line number Diff line change
Expand Up @@ -33,9 +33,11 @@ Parallel Task API
## Installation

```bash
pip install parallel-web-tools[bigquery]
pip install parallel-web-tools
```

> **Note:** The standalone `parallel-cli` binary does not include deployment commands. You must install via pip to use `parallel-cli enrich deploy --system bigquery`.

## Quick Start Deployment

### Option 1: CLI (Recommended)
Expand Down
Loading