Скрапинг веб-страниц через Scrape.do API. Используй когда обычный fetch не работает (блокировка, JavaScript).
Использование
# Получить текст страницы
python scripts/scrape.py https://example.com
# Получить HTML
python scripts/scrape.py --html https://example.com
Из Python
from scripts.scrape import fetch_via_scrapedo
result = fetch_via_scrapedo('https://example.com')
if result['success']:
print(result['content']) # текст
# result['html'] — оригинальный HTML
else:
print(result['content']) # описание ошибки
Результат
Успех: текст страницы (или HTML с --html)
Ошибка: понятное сообщение (нет токена / лимит / недоступно)
Если вернулась ошибка — страница недоступна через этот метод.
Converted and distributed by TomeVault — claim your Tome and manage your conversions.
1---2name: artwist-polyakov-polyakov-claude-skills-scrapedo-web-scraper3description: Scrape.do Web Scraper4---56# Scrape.do Web Scraper78Скрапинг веб-страниц через Scrape.do API. Используй когда обычный fetch не работает (блокировка, JavaScript).910## Использование1112```bash13# Получить текст страницы14python scripts/scrape.py https://example.com1516# Получить HTML17python scripts/scrape.py --html https://example.com18```1920## Из Python2122```python23from scripts.scrape import fetch_via_scrapedo2425result = fetch_via_scrapedo('https://example.com')26if result['success']:27 print(result['content']) # текст28 # result['html'] — оригинальный HTML29else:30 print(result['content']) # описание ошибки31```3233## Результат3435- **Успех**: текст страницы (или HTML с `--html`)36- **Ошибка**: понятное сообщение (нет токена / лимит / недоступно)3738Если вернулась ошибка — страница недоступна через этот метод.3940---41> Converted and distributed by [TomeVault](https://tomevault.io/claim/artwist-polyakov) — claim your Tome and manage your conversions.42<!-- tomevault:4.0:skill_md:2026-04-11 -->
Run npx skillmds@latest add tomevault-io/artwist-polyakov-polyakov-claude-skills-scrapedo-web-scraper in your terminal (requires Node.js), paste this page's agent-chat prompt into Claude, Cursor, or any MCP-connected agent, or download the SKILL.md file and copy it into your agent's skills directory.
Scrape.do Web Scraper It is listed under Coding & Dev Tools on SkillMD.
This skill has not completed SkillMD's automated safety review yet. Independent scanners report: SkillSpector: PASS, Skill Scanner: PASS. SkillMD never runs a skill's scripts for you; review the SKILL.md before installing.
This skill is tagged as working with Claude Code, Claude.ai, OpenAI Codex. SKILL.md is an open format, so most agents that read a skills directory can load it too.
Yes. Installing skills from SkillMD is free, and the skill stays under its author's original license.
tomevault-io (@tomevault-io) published this skill. Their other Agent Skills are listed on their SkillMD profile.