Token导航 LogoToken导航TokenDH.com
研究检索敏感数据github未标认证来源可访问许可证需确认审计提醒

scraplingscrapling 命令行

Agent Skill

scrapling 用于处理浏览器自动化、网页检查和页面信息提取,适合在 Codex、Claude、Cursor、Gemini CLI 中需要让 Agent 打开页面、读取网页或验证前端流程时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

4,015

周安装

169

GitHub Stars

2

下载量

1,406
CodexClaudeCursorGemini CLI

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:scrapling(scrapling 命令行)
来源仓库:https://github.com/hyperpuncher/dotagents
仓库路径:skills/scrapling
安装命令:
npx skills add https://github.com/hyperpuncher/dotagents --skill scrapling
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 npx skills 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

skills.shnpx skills
npx skills add https://github.com/hyperpuncher/dotagents --skill scrapling

简介

scrapling 用于处理浏览器自动化、网页检查和页面信息提取,适合在 Codex、Claude、Cursor、Gemini CLI 中需要让 Agent 打开页面、读取网页或验证前端流程时使用。

  • 适用于网页数据整理、自动化测试和前端验证等场景,帮助 Agent 高效处理网页内容。
  • 通过 npx skills add 命令从指定 GitHub 仓库安装,需结合原始 README 核验具体用法和功能细节。
  • 安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写操作。
  • 可结合来源仓库和 SKILL.md 继续核验具体用法,确保与当前宿主环境兼容。

SKILL.md

scrapling

Scrapling is a powerful Python web scraping library with a comprehensive CLI for extracting data from websites directly from the terminal without writing code. The primary use case is the extract command group for quick data extraction.

Installation

Install with the shell extras using uv:

uv tool install "scrapling[shell]"

Then install fetcher dependencies (browsers, system dependencies, fingerprint manipulation):

scrapling install

Update to the latest version:

uv tool update "scrapling[shell]"

Extract Commands (Primary Usage)

The scrapling extract command group allows you to download and extract content from websites without writing any code. Output format is determined by file extension:

Note: All examples use --ai-targeted by default. This flag extracts only main body content, strips noise tags (script, style, noscript, svg), removes hidden elements, strips zero-width unicode characters, and removes HTML comments - ideal when output is destined for an AI model.
  • .md - Convert HTML to Markdown
  • .html - Save raw HTML
  • .txt - Extract clean text content

Quick Start

# Basic website download as text
scrapling extract get "https://example.com" page_content.txt --ai-targeted

# Download as markdown
scrapling extract get "https://blog.example.com" article.md --ai-targeted

# Save raw HTML
scrapling extract get "https://example.com" page.html --ai-targeted

Decision Guide: Which Command to Use?

Use CaseCommand
Simple websites, blogs, news articlesget
Modern web apps, dynamic content (JavaScript)fetch
Protected sites, Cloudflare, anti-botstealthy-fetch
Form submissions, APIspost, put, delete

HTTP Request Commands

GET Request

Most common command for downloading website content:

# Basic download
scrapling extract get "https://news.site.com" news.md --ai-targeted

# Download with custom timeout
scrapling extract get "https://example.com" content.txt --timeout 60 --ai-targeted

# Extract specific content using CSS selectors
scrapling extract get "https://blog.example.com" articles.md --css-selector "article" --ai-targeted

# Send request with cookies
scrapling extract get "https://scrapling.requestcatcher.com" content.md \
    --cookies "session=abc123; user=john" --ai-targeted

# Add user agent
scrapling extract get "https://api.site.com" data.json \
    -H "User-Agent: MyBot 1.0" --ai-targeted

# Add multiple headers
scrapling extract get "https://site.com" page.html \
    -H "Accept: text/html" \
    -H "Accept-Language: en-US" --ai-targeted

# With query parameters
scrapling extract get "https://api.example.com" data.json \
    -p "page=1" -p "limit=10" --ai-targeted

GET options:

-H, --headers TEXT              HTTP headers "Key: Value" (multiple allowed)
--cookies TEXT                  Cookies "name1=value1;name2=value2"
--timeout INTEGER               Request timeout in seconds (default: 30)
--proxy TEXT                    Proxy URL from $PROXY_URL env variable
-s, --css-selector TEXT         Extract specific content with CSS selector
-p, --params TEXT               Query parameters "key=value" (multiple)
--follow-redirects / --no-follow-redirects  (default: True)
--verify / --no-verify          SSL verification (default: True)
--impersonate TEXT              Browser to impersonate (chrome, firefox)
--stealthy-headers / --no-stealthy-headers  (default: True)
--ai-targeted                   Extract main content and sanitize for AI

POST Request

# Submit form data
scrapling extract post "https://api.site.com/search" results.html \
    --data "query=python&type=tutorial" --ai-targeted

# Send JSON data
scrapling extract post "https://api.site.com" response.json \
    --json '{"username": "test", "action": "search"}' --ai-targeted

POST options: (same as GET plus)

-d, --data TEXT                 Form data "param1=value1&param2=value2"
-j, --json TEXT                 JSON data as string

PUT Request

# Send data
scrapling extract put "https://api.example.com" results.html \
    --data "update=info" \
    --impersonate "firefox" --ai-targeted

# Send JSON data
scrapling extract put "https://api.example.com" response.json \
    --json '{"username": "test", "action": "search"}' --ai-targeted

DELETE Request

scrapling extract delete "https://api.example.com/resource" response.txt --ai-targeted

# With impersonation
scrapling extract delete "https://api.example.com/" response.txt \
    --impersonate "chrome" --ai-targeted

Browser Fetching Commands

Use browser-based fetching for JavaScript-heavy sites or when HTTP requests fail.

fetch - Handle Dynamic Content

For websites that load content dynamically or have slight protection:

# Wait for JavaScript to load and network activity to finish
scrapling extract fetch "https://example.com" content.md --network-idle --ai-targeted

# Wait for specific element to appear
scrapling extract fetch "https://example.com" data.txt \
    --wait-selector ".content-loaded" --ai-targeted

# Visible browser mode for debugging
scrapling extract fetch "https://example.com" page.html \
    --no-headless --disable-resources --ai-targeted

# Use installed Chrome browser
scrapling extract fetch "https://example.com" content.md --real-chrome --ai-targeted

# With CSS selector extraction
scrapling extract fetch "https://example.com" articles.md \
    --css-selector "article" \
    --network-idle --ai-targeted

fetch options:

--headless / --no-headless      Run browser headless (default: True)
--disable-resources             Drop unnecessary resources for speed boost
--network-idle                  Wait for network idle
--timeout INTEGER               Timeout in milliseconds (default: 30000)
--wait INTEGER                  Additional wait time in ms (default: 0)
-s, --css-selector TEXT         Extract specific content
--wait-selector TEXT            Wait for selector before proceeding
--locale TEXT                   User locale (default: system)
--real-chrome                   Use installed Chrome browser
--proxy TEXT                    Proxy URL
-H, --extra-headers TEXT        Extra headers (multiple)
--ai-targeted                   Extract main content and sanitize for AI

stealthy-fetch - Bypass Protection

For websites with anti-bot protection or Cloudflare:

# Bypass basic protection
scrapling extract stealthy-fetch "https://example.com" content.md --ai-targeted

# Solve Cloudflare challenges
scrapling extract stealthy-fetch "https://nopecha.com/demo/cloudflare" data.txt \
    --solve-cloudflare \
    --css-selector "#padded_content a" --ai-targeted

# Use proxy for anonymity (set PROXY_URL environment variable)
scrapling extract stealthy-fetch "https://site.com" content.md \
    --proxy "$PROXY_URL" --ai-targeted

# Hide canvas fingerprint
scrapling extract stealthy-fetch "https://example.com" content.md \
    --hide-canvas \
    --block-webrtc --ai-targeted

stealthy-fetch options: (same as fetch plus)

--block-webrtc                  Block WebRTC entirely
--solve-cloudflare              Solve Cloudflare challenges
--allow-webgl / --block-webgl   Allow WebGL (default: True)
--hide-canvas                   Add noise to canvas operations
--ai-targeted                   Extract main content and sanitize for AI

CSS Selector Examples

Extract specific content with the -s or --css-selector flag:

# Extract all articles
scrapling extract get "https://blog.example.com" articles.md -s "article" --ai-targeted

# Extract specific class
scrapling extract get "https://example.com" titles.txt -s ".title" --ai-targeted

# Extract by ID
scrapling extract get "https://example.com" content.md -s "#main-content" --ai-targeted

# Extract links (href attributes)
scrapling extract get "https://example.com" links.txt -s "a::attr(href)" --ai-targeted

# Extract text only
scrapling extract get "https://example.com" titles.txt -s "h1::text" --ai-targeted

# Extract multiple elements with fetch
scrapling extract fetch "https://example.com" products.md \
    -s ".product-card" \
    --network-idle --ai-targeted

Help Commands

scrapling --help
scrapling extract --help
scrapling extract get --help
scrapling extract post --help
scrapling extract fetch --help
scrapling extract stealthy-fetch --help

Resources

适合场景

01

用户想查找某类 Agent Skill 时

02

需要根据任务场景推荐可安装能力包时

03

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

Codex

33.39%
按下载量换算469

Claude

31.65%
按下载量换算445

Cursor

19.87%
按下载量换算279

Gemini CLI

9.4%
按下载量换算132

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

可疑

权限和风险

敏感数据

该 Skill 可能接触密钥、Token、环境变量或敏感配置,应进入高风险复核队列,默认不自动发布。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。来源安全扫描存在 warning/failed 结果,不能写成本站确认安全。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills