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
23 changes: 11 additions & 12 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -97,14 +97,13 @@ parallel-cli
│ ├── schema # Get the schema for a FindAll run
│ └── cancel # Cancel a running FindAll
└── monitor # Continuous web change tracking
├── create # Create a new web monitor
├── list # List all monitors
├── create # Create a new web monitor (event_stream or snapshot)
├── list # List monitors (cursor paginated)
├── get # Get monitor details
├── update # Update monitor configuration
├── delete # Delete a monitor
├── update # Update frequency, webhook, metadata
├── cancel # Cancel a monitor (irreversible)
├── events # List events for a monitor
├── event-group # Get event group details
└── simulate # Simulate webhook event for testing
└── trigger # Trigger an immediate one-off run
```

## Quick Start
Expand Down Expand Up @@ -260,7 +259,7 @@ parallel-cli enrich suggest "Find CEO" --json
parallel-cli findall run "AI startups in healthcare" --json

# Monitor: track web changes
parallel-cli monitor create "Track Tesla SEC filings" --cadence daily --json
parallel-cli monitor create "Track Tesla SEC filings" --frequency 1d --json

# Plan without prompts (provide all args)
parallel-cli enrich plan -o config.yaml \
Expand Down Expand Up @@ -389,14 +388,14 @@ Track web changes programmatically:
```python
from parallel_web_tools import create_monitor, list_monitors, get_monitor

# Create a monitor
monitor = create_monitor(query="Track Tesla SEC filings", cadence="daily")
# Create an event_stream monitor (the default)
monitor = create_monitor(query="Track Tesla SEC filings", frequency="1d")

# List all monitors
# List all monitors (cursor paginated)
monitors = list_monitors()

# Get monitor details and events
details = get_monitor(monitor.monitor_id)
# Get monitor details
details = get_monitor(monitor["monitor_id"])
```

## YAML Configuration Format
Expand Down
2 changes: 1 addition & 1 deletion npm/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ npm install -g parallel-cli
parallel-cli --help
parallel-cli search "your query"
parallel-cli enrich input.csv --recipe company-info
parallel-cli monitor watch https://example.com
parallel-cli monitor create "Track price changes for iPhone 16" --frequency 1d
```

## How it works
Expand Down
12 changes: 12 additions & 0 deletions parallel_web_tools/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,13 +9,17 @@
ParseError,
ProcessorType,
SourceType,
cancel_monitor,
create_monitor,
enrich_batch,
enrich_single,
get_api_key,
get_async_client,
get_auth_status,
get_client,
get_monitor,
list_monitor_events,
list_monitors,
load_schema,
logout,
parse_input_and_output_models,
Expand All @@ -27,6 +31,8 @@
run_findall,
run_research,
run_tasks,
trigger_monitor,
update_monitor,
)

__version__ = "0.3.0"
Expand Down Expand Up @@ -61,7 +67,13 @@
# FindAll
"run_findall",
# Monitor
"cancel_monitor",
"create_monitor",
"get_monitor",
"list_monitor_events",
"list_monitors",
"trigger_monitor",
"update_monitor",
# Research
"run_research",
]
Loading
Loading