beautifulsoup4

beautifulsoup4 is a cursor rule for Cursor from sanjeed5/awesome-cursor-rules-mdc. It costs 1,660 tokens per session, scanned A, original, CC0-1.0.

A set of rules for using Beautiful Soup 4, a Python library for reading and searching HTML or XML documents. It covers parser selection and how to combine the library with a responsible scraping process.

In plain words
What is it for?
Use it to parse downloaded web pages, find elements and attributes, extract text, and build Python scraping pipelines with tools such as lxml and requests.
Why use it?
It helps extract page data more reliably and efficiently while avoiding unnecessary load on websites. The guide also recommends respecting robots.txt, limiting request rates, and identifying the scraper.

Cursor rule for Cursor

Written for Cursor: a Cursor rule (.mdc).

Good fit Use it to parse downloaded web pages, find elements and attributes, extract text, and build Python scraping pipelines with tools such as lxml and requests.

Compare 6 cursor rules from other repositories ↓
Install with agentmods
npx agentmods add rules/sanjeed5/awesome-cursor-rules-mdc/beautifulsoup4
About the project

awesome-cursor-rules-mdc is a generator that creates Cursor MDC rule files from structured library information, using semantic search and language models to gather and organize guidance. Developers use it to produce reusable rules for libraries in Cursor, and the catalogue includes 200 of those rules.

sanjeed5/awesome-cursor-rules-mdc · 3,570 stars · on GitHub

Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

Clone the repo
git clone --depth 1 https://github.com/sanjeed5/awesome-cursor-rules-mdc

Made for: Cursor.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for beautifulsoup4

README.md
[![agentmods](https://agentmods.dev/badge/rules/sanjeed5/awesome-cursor-rules-mdc/beautifulsoup4/github.svg)](https://agentmods.dev/rules/sanjeed5/awesome-cursor-rules-mdc/beautifulsoup4)
Your own site
<a href="https://agentmods.dev/rules/sanjeed5/awesome-cursor-rules-mdc/beautifulsoup4"><img src="https://agentmods.dev/badge/rules/sanjeed5/awesome-cursor-rules-mdc/beautifulsoup4/github.svg" alt="Measured on agentmods" height="20"></a>

Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.

agentmods 80×15 button for beautifulsoup4

Your own site · 80×15
<a href="https://agentmods.dev/rules/sanjeed5/awesome-cursor-rules-mdc/beautifulsoup4"><img src="https://agentmods.dev/badge/rules/sanjeed5/awesome-cursor-rules-mdc/beautifulsoup4.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 1,660 This file is loaded in full into every session.
When invoked 1,660 The same file — it is already loaded in full.
Security scan A 1 finding. A grade says what 26 rules found in the file — not that it is safe.
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5.1 $0.01660 $0.01660
Opus 5 $0.00830 $0.00830
Sonnet 5 $0.00332 $0.00332
Haiku 4.5 $0.00166 $0.00166

Measured 9d ago against content hash 459a0c35fe86, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-09, from the pricing page.

Security

Grade A, and why

beautifulsoup4 scanned grade A with 1 finding against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 9d ago.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Makes network callslowCapability

Not a fault in itself. Listed so you know the mod talks to something, and to what.

response = requests.get(url, headers=headers, timeout=10)
rules-mdc/beautifulsoup4.mdc · 180 lines

How it starts

The opening of the file, as written. The whole thing — 180 lines — stays where its author put it; the contents beside it link to each section on GitHub.

beautifulsoup4 Best Practices

Beautiful Soup 4 (BS4) is the definitive library for parsing static HTML/XML. Use it as a robust component within a well-structured scraping pipeline.

1. Installation & Parser Selection

Always install beautifulsoup4 alongside lxml for optimal performance. lxml is significantly faster than Python's built-in html.parser. html5lib is a useful fallback for extremely malformed HTML.

pip install beautifulsoup4 lxml requests html5lib

✅ GOOD: Explicitly specify lxml as the parser.

from bs4 import BeautifulSoup

# Always use lxml for speed
soup = BeautifulSoup(html_content, 'lxml')

❌ BAD: Relying on default html.parser or html5lib unnecessarily.

# Slower, less efficient
soup = BeautifulSoup(html_content, 'html.parser')
# Only use html5lib if lxml fails on malformed HTML
soup = BeautifulSoup(html_content, 'html5lib')

2. Ethical Scraping Fundamentals

Respect robots.txt, implement rate limiting, and use a User-Agent. This is non-negotiable for responsible scraping.

✅ GOOD: Respect robots.txt and use a User-Agent with delays.

import requests
import time
from typing import Dict

def fetch_page_ethically(url: str, headers: Dict[str, str], delay_seconds: float = 2.0) -> str:
    """Fetches HTML content with ethical considerations."""
    # In a real app, check robots.txt programmatically
    # e.g., using 'robotexclusionrulesparser' library
    print(f"Fetching {url}...")
    response = requests.get(url, headers=headers, timeout=10)
    response.raise_for_status() # Raise HTTPError for bad responses (4xx or 5xx)
    time.sleep(delay_seconds) # Rate limiting
    return response.text

# Example usage
HEADERS = {
    'User-Agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36 MyScraper/1.0'
}
# html_content = fetch_page_ethically("https://example.com/products", HEADERS)

❌ BAD: Blindly hitting endpoints without identification or delays.

# Will likely get blocked or cause issues
response = requests.get("https://example.com/products")
html_content = response.text

Read the full file on GitHub · 180 lines

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 9d ago First seen · 180 lines · 0 tokens per session scan A 459a0c35fe86

Subscribe to this mod's changes

beautifulsoup4 is a cursor rule published in the GitHub repository sanjeed5/awesome-cursor-rules-mdc (3,570 stars, last pushed 3mo ago), licensed CC0-1.0. It adds 1,660 tokens to every session, about $0.0083 per session on Opus 5. A static security scan graded it A with 1 finding (makes network calls). No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-30.