con un clic
webscraping
Always use this skill when writing or editing webscrapers!
Instalar con Codex o Claude Copia este prompt, pégalo en Codex, Claude u otro asistente, y deja que revise la página de la skill y la instale por ti.
Menú
Always use this skill when writing or editing webscrapers!
Instalar con Codex o Claude Copia este prompt, pégalo en Codex, Claude u otro asistente, y deja que revise la página de la skill y la instale por ti.
Basado en la clasificación ocupacional SOC
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!
| 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