with one click
webscraping
Always use this skill when writing or editing webscrapers!
Install with Codex or Claude Copy this prompt, paste it into Codex, Claude, or another assistant, and let it review the skill page and install it for you.
Menu
Always use this skill when writing or editing webscrapers!
Install with Codex or Claude Copy this prompt, paste it into Codex, Claude, or another assistant, and let it review the skill page and install it for you.
Based on SOC occupation classification
| name | webscraping |
| description | Always use this skill when writing or editing webscrapers! |
Knowledge about writing good webscrapers.
<source-name>_<dataset-name>.py, e.g.: instagram_short-videos.py.Do not make up IDs when scraping.
try:
rule_id = int(rule_id_str)
except ValueError:
logger.warning(f"Could not parse rule_id from {rule_number!r}.")
rule_id = hash(rule_number)
If one can't be scraped and the field is required, raise an error.
except ValueError as e:
logger.error(f"Could not parse rule_id from {rule_number!r}.")
raise MissingRequiredFieldError("rule_id") from e
Explore and search previous Claude Code conversations stored in ~/.claude/projects/
Always use this skill when writing or editing python code!
Use this skill when working with software installed or run from local source checkouts that use git worktree hubs.
Always use this skill when writing or editing markdown files!
Extracting text and tables, merging/splitting documents. Use when needing to convert PDFs while preserving structure.
Always use this skill when writing or editing software tests!