Typed Python SDK for Supacrawler API (scrape, jobs, screenshots, watch)
Project description
supacrawler-py
Typed Python SDK for Supacrawler API.
Install
- From PyPI (when published):
pip install supacrawler-py
- With uv (PEP 621 aware):
uv add supacrawler-py
# or for local dev
uv pip install -e .
- From local path (development):
pip install -e .
- From GitHub (direct):
pip install git+https://github.com/Supacrawler/supacrawler-py.git#subdirectory=sdk/supacrawler-py
Usage
from supacrawler import SupacrawlerClient, ScrapeParams, JobCreateRequest, ScreenshotRequest, WatchCreateRequest
client = SupacrawlerClient(api_key="YOUR_API_KEY")
# Scrape
scrape = client.scrape(ScrapeParams(url="https://example.com", format="markdown"))
print(scrape)
# Create crawl job
job = client.create_job(JobCreateRequest(url="https://supabase.com/docs", type="crawl", depth=2, link_limit=10, format="markdown"))
status = client.wait_for_job(job.job_id)
print(status.status)
# Screenshot job
sjob = client.create_screenshot_job(ScreenshotRequest(url="https://example.com", device="desktop", full_page=True))
print("job:", sjob.job_id)
# Wait and fetch a fresh signed URL (recommended)
signed = client.wait_for_screenshot(sjob.job_id)
print("screenshot:", signed.screenshot)
# Watch
watch = client.watch_create(WatchCreateRequest(url="https://example.com/pricing", frequency="daily", notify_email="me@example.com"))
print(watch.watch_id)
Advanced
- See
examples/*.ipynbfor full parameter coverage:- Scrape: format, render_js, wait, device, depth, max_links, fresh
- Jobs: format, link_limit, depth, include_subdomains, render_js, patterns
- Screenshots: device/full_page/format/quality/viewport/device_scale, waits, selectors, blocking, modes
- Watch: frequency, selector, include_html/image, full_page, quality, pause/resume/check/delete
API coverage
- GET
/v1/scrape(all params) - POST
/v1/crawl, GET/v1/crawl/{id} - POST
/v1/screenshots - POST
/v1/watch, GET/v1/watch, GET/v1/watch/{id}, DELETE/v1/watch/{id}, PATCH/v1/watch/{id}/pause, PATCH/v1/watch/{id}/resume, POST/v1/watch/{id}/check
Development
- Env var:
SUPACRAWLER_API_KEYfor examples. - Not needed:
requirements.txtfor end-users (deps declared inpyproject.toml). Optionalrequirements-dev.txtif you add tests or notebooks tooling.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
supacrawler_py-0.1.7.tar.gz
(40.9 kB
view details)
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file supacrawler_py-0.1.7.tar.gz.
File metadata
- Download URL: supacrawler_py-0.1.7.tar.gz
- Upload date:
- Size: 40.9 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.11.13
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
1947096c82b2d4cb0905b4a5db17deaf77d7e23fb979965ba9ba48c5fa50f5f2
|
|
| MD5 |
daf453d89706410f4ed4c986873d69d7
|
|
| BLAKE2b-256 |
84300df20f5e3f4ac724a5a88474a5c6ee0e1a1e95cd4f90934d983dc0c0e5ea
|
File details
Details for the file supacrawler_py-0.1.7-py3-none-any.whl.
File metadata
- Download URL: supacrawler_py-0.1.7-py3-none-any.whl
- Upload date:
- Size: 68.4 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.11.13
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
e97e636a9bac5a737489d9adfd83223b8ea1cc49cf47d4a946840e5df00f0957
|
|
| MD5 |
1006313239d7ce3d4a17ef2a9bed82e6
|
|
| BLAKE2b-256 |
43f7d9f570ec1557956cac050dd65265bfbffe4a44fb7a71349ff9354dc87473
|