원클릭으로
parse-html
Extract and clean readable text content from HTML pages, including financial tables, earnings reports, and news articles.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Extract and clean readable text content from HTML pages, including financial tables, earnings reports, and news articles.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
This skill outlines two methods to change the root password in Linux: one when you have the current password, and another when you need to reset it without the current password.
This skill outlines the workflow for generating a Know Your Customer (KYC) report, encompassing company website research, GLEIF/LEI lookup, and adverse media/news screening to build a foundational client profile.
This skill describes how to perform an LEI search on the GLEIF website to find a company's LEI number for KYC analysis.
This skill describes how to reset a forgotten Linux root password by booting into single-user mode through the Grub menu.
This skill summarizes the "Social Media Manager Confidential" podcast, which offers realistic, positive, and insightful resources for social media managers. It covers strategies, content tips, and transparent advice for building ethical and profitable businesses that support their lifestyle goals. The podcast also extends an invitation to an exclusive, free private community for social media managers.
Understand the basic structure of an Excel file, differentiating between a workbook and its constituent worksheets, and how to navigate between them. It is foundational for anyone new to Excel or needing a refresher on its basic organization.
| name | parse-html |
| description | Extract and clean readable text content from HTML pages, including financial tables, earnings reports, and news articles. |
Use this skill for:
def parse_html(url: str, extract_tables: bool = True) -> dict:
"""Fetch and parse an HTML page into structured content.
Args:
url: The URL to fetch and parse
extract_tables: Whether to extract HTML tables as structured data
Returns:
Dict with text content and optionally extracted tables
"""
response = http_client.get(url)
soup = BeautifulSoup(response.text, 'html.parser')
text = soup.get_text(separator='\n', strip=True)
result = {'text': text[:5000]}
if extract_tables:
result['tables'] = extract_html_tables(soup)
return result
web-search or edgar-search to get URLs first.extract_tables=True when the target page has financial statements.result['text'] length — truncation occurs at 5000 characters.