Skip to main content

AI-powered web scraping library that generates Python code to extract structured data into Pydantic schemas

Project description

Hikugen - minimalistic AI-powered web scraping

PyPI License

AI-powered web scraping library that generates Python code to extract structured data into Pydantic-compliant objects.

Overview

Hikugen uses LLMs (via OpenRouter) to generate extraction code for any website. Given a URL and a Pydantic schema, Hikugen:

  1. Generates extraction code via LLM
  2. Validates code (AST-based, whitelist imports)
  3. Executes with timeout protection
  4. Validates extracted data against your schema
  5. Caches generated code for reuse

No manual parsing code needed just define your schema, and Hikugen handles the rest.

Quick Start

Installation

uv add hikugen

Basic Usage

from hikugen import HikuExtractor
from pydantic import BaseModel, Field
from typing import List

# Define nested extraction schema
class Article(BaseModel):
    title: str = Field(description="Article title")
    author: str = Field(description="Author name")
    published_date: str = Field(description="Publication date")
    content: str = Field(description="Article body content")

class ArticlePage(BaseModel):
    articles: List[Article] = Field(description="List of articles on the page")

# Initialize extractor
extractor = HikuExtractor(
    api_key="your-openrouter-api-key",
    model="google/gemini-2.5-flash"  # Optional, this is default
)

# Extract data from a URL
result = extractor.extract(
    url="https://example.com/articles",
    schema=ArticlePage,
    cache_key="articles-page"  # Optional: custom cache key
)

for article in result.articles:
    print(f"{article.title} by {article.author}")

Working with Pre-fetched HTML

# Extract from HTML you already have
html_content = """
<div class="articles">
    <article>
        <h2>First Article</h2>
        <span class="author">Jane Smith</span>
        <time>2024-01-15</time>
        <p>Article content here...</p>
    </article>
    <article>
        <h2>Second Article</h2>
        <span class="author">John Doe</span>
        <time>2024-01-14</time>
        <p>More article content...</p>
    </article>
</div>
"""

result = extractor.extract_from_html(
    html_content=html_content,
    cache_key="articles-page",  # Unique identifier for caching
    schema=ArticlePage
)

for article in result.articles:
    print(f"{article.title} by {article.author}")

Parameters

  • url - URL to extract from
  • schema - Pydantic BaseModel defining the extraction structure
  • use_cached_code - Use cached extraction code if available (default: True)
  • cookies_path - Path to cookies.txt for authenticated requests (optional)
  • max_regenerate_attempts - Max regeneration attempts on failure (default: 1)
  • validate_quality - Run LLM quality check on fresh code (default: True)

Key Features

  • LLM-powered extraction - Automatically generates extraction code via OpenRouter LLMs
  • Security validated - AST-based validation ensures no dangerous imports or code patterns
  • Intelligent caching - Generated code cached by URL + schema hash for reuse
  • Auto-regeneration - Automatically regenerates on extraction failures
  • Quality validation - Optional LLM quality check for extracted data
  • Timeout protected - 30-second execution timeout prevents infinite loops
  • Type safe - Full Pydantic integration for schema validation

Development

Running Tests

# All tests
uv run pytest

# Specific test file
uv run pytest tests/test_code_generator.py

# With coverage
uv run pytest --cov=hikugen --cov-report=term-missing

Code Quality

# Lint and format
uv run ruff check src/hikugen/
uv run ruff format src/hikugen/

# Run all checks
uv run ruff check src/hikugen/ && uv run ruff format --check src/hiku/

Architecture

Layered Design

  • Layer 1 (Foundation) - Database caching and HTTP client
  • Layer 2 (CodeGen) - Prompts, validation, and generation
  • Layer 3 (Main API) - HikuExtractor with auto-regeneration and quality validation

Workflow

URL + Schema
    |
Cache Check
    |
[Cache Hit] -> Cached Code
[Cache Miss] -> LLM generates code
    |
AST Validation
    |
Execute with Timeout
    |
Pydantic Validation
    |
LLM Quality Check (optional)
    |
Return Result or Regenerate

Constraints

Generated Code Requirements

Generated extraction functions must:

  • Have exact signature: def extract_data(html_content):
  • Return a dict (validated against schema afterward)
  • Only import from allowed modules (stdlib + requests + bs4 + pydantic)
  • NOT import system modules (os, subprocess, sys, etc.)

Execution

  • 30-second timeout per extraction
  • Runs in isolated namespace
  • Returns data as dict (not BaseModel instance)

See Also

  • CLAUDE.md - Development guide for AI contributors

License

See LICENSE file for details.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

hikugen-0.2.1.tar.gz (29.2 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

hikugen-0.2.1-py3-none-any.whl (17.6 kB view details)

Uploaded Python 3

File details

Details for the file hikugen-0.2.1.tar.gz.

File metadata

  • Download URL: hikugen-0.2.1.tar.gz
  • Upload date:
  • Size: 29.2 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.8.4

File hashes

Hashes for hikugen-0.2.1.tar.gz
Algorithm Hash digest
SHA256 89ee85557e76928059e8d173b18bcd132a4f3caeed0c42dc05d768f82b940b11
MD5 355725d63124822f3e5dbfccf11793a7
BLAKE2b-256 be52de4c19a8486e63cd68cbd950559d07c244b2d5ba314b50bfbfb17f23beb5

See more details on using hashes here.

File details

Details for the file hikugen-0.2.1-py3-none-any.whl.

File metadata

  • Download URL: hikugen-0.2.1-py3-none-any.whl
  • Upload date:
  • Size: 17.6 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.8.4

File hashes

Hashes for hikugen-0.2.1-py3-none-any.whl
Algorithm Hash digest
SHA256 b953bec47bac05b1f6b4e67aaf57d4616482488da8d0d4dea648135253daeaf1
MD5 678480e14636ce7cdd9a605e9dddd15f
BLAKE2b-256 dccfb6d12192f4f746a712cf8826e7d9063380feeaa0fd8ddfbf983b609003be

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page