artwist-polyakov/scrapedo-web-scraper
| Веб-скрапинг через Scrape.do. Обходит блокировки и CAPTCHA. timeout, access denied, Cloudflare block.
npx skills add https://github.com/artwist-polyakov/polyakov-claude-skills --skill scrapedo-web-scraper
Скрапинг веб-страниц через Scrape.do API. Используй когда обычный fetch не работает (блокировка, JavaScript).
# Получить текст страницы
python scripts/scrape.py https://example.com
# Получить HTML
python scripts/scrape.py --html https://example.com
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)Если вернулась ошибка — страница недоступна через этот метод.
Take artwist-polyakov/scrapedo-web-scraper from the repository into ~/.claude/skills for personal
use, or into .claude/skills inside a project.
The agent identifies a skill by the name field in its header. Two skills with the
same name cannot sit side by side — one of them will be ignored.