Re-license Pry from full Proprietary to a dual-license model: - Core engine, extraction, templates (80+), MCP server, x402 payment rail, CLI, SDK, browser extension, WordPress plugin, Shopify app, and llm_providers: MIT (see LICENSE) - Anti-detection / stealth subset (15 files): BSL 1.1 with Change Date 2029-01-01 (see LICENSE-BSL-STEALTH) BSL files (anti-detection moat): ultimate_scraper.py, stealth_engine.py, stealth_scripts/*.js (6), camoufox_integration.py, tls_fingerprint.py, cookie_warmer.py, behavioral_biometrics.py, adaptive.py, browser_pool.py, network.py, captcha_solver.py, shadow_dom.py, lazy_load.py, signup_automator.py, auth_connector.py This enables community contributions to the core engine (templates, integrations, MCP tools) while protecting the anti-detection techniques that constitute the actual competitive moat. BSL Additional Use Grant permits free non-production use; production deployment requires a commercial license from enterprise@rugmunch.io. Changes: - Replace proprietary LICENSE with MIT LICENSE + new LICENSE-BSL-STEALTH - Add SPDX-License-Identifier headers to 300+ source files - Add docs/adr/0002-dual-licensing.md (ADR documenting the decision) - Update README.md: new License section with BSL Additional Use Grant - Update LICENSING_PRICING_STRATEGY.md: Section 3 (PryScraper) for dual license - Update AGENTS.md: license line in header + new rule 8 (PRs touching BSL rejected) - Update pyproject.toml: license = "MIT AND BSL-1.1" + classifiers + license-files - Update DECISIONS.md index with ADR-0002 - Update STATUS.md (2026-07-03) and PLAN.md sprint goals Refs: ADR-0002
102 lines
3.3 KiB
Python
102 lines
3.3 KiB
Python
# SPDX-License-Identifier: BSL-1.1
|
|
# Copyright (c) 2026 Rug Munch Media LLC
|
|
#
|
|
# Part of Pry — Stealth / Anti-Detection Module
|
|
# Licensed under Business Source License 1.1 — see LICENSE-BSL-STEALTH.
|
|
# Change Date: 2029-01-01 (converts to MIT).
|
|
"""Pry — lazy load and infinite scroll handling."""
|
|
|
|
import logging
|
|
import re
|
|
from typing import Any
|
|
|
|
logger = logging.getLogger(__name__)
|
|
|
|
|
|
def detect_lazy_loading(html: str) -> dict[str, Any]:
|
|
"""Detect lazy loading patterns in HTML."""
|
|
result: dict[str, Any] = {
|
|
"lazy_images": False,
|
|
"lazy_frames": False,
|
|
"infinite_scroll": False,
|
|
"load_more": False,
|
|
"intersection_observer": False,
|
|
}
|
|
|
|
# Check for lazy loading images
|
|
if re.search(r'loading=["\']lazy["\']', html, re.IGNORECASE):
|
|
result["lazy_images"] = True
|
|
|
|
# Check for lazy loading iframes
|
|
if re.search(r'<iframe[^>]*loading=["\']lazy["\']', html, re.IGNORECASE):
|
|
result["lazy_frames"] = True
|
|
|
|
# Check for infinite scroll
|
|
if re.search(r"infinite[_-]?scroll|infinitescroll", html, re.IGNORECASE):
|
|
result["infinite_scroll"] = True
|
|
|
|
# Check for "load more" buttons
|
|
if re.search(r"load[_-]?more|show[_-]?more|see[_-]?more", html, re.IGNORECASE):
|
|
result["load_more"] = True
|
|
|
|
# Intersection Observer API
|
|
if re.search(r"IntersectionObserver", html):
|
|
result["intersection_observer"] = True
|
|
|
|
return result
|
|
|
|
|
|
def generate_scroll_script(max_scrolls: int = 5, delay_ms: int = 1000) -> str:
|
|
"""Generate JavaScript to scroll through lazy-loaded content.
|
|
|
|
Returns JS that scrolls the page in steps, waiting for content to load.
|
|
"""
|
|
return f"""
|
|
(async () => {{
|
|
const delay = ms => new Promise(r => setTimeout(r, ms));
|
|
let prevHeight = document.body.scrollHeight;
|
|
let scrolls = 0;
|
|
while (scrolls < {max_scrolls}) {{
|
|
window.scrollTo(0, document.body.scrollHeight);
|
|
await delay({delay_ms});
|
|
const newHeight = document.body.scrollHeight;
|
|
if (newHeight === prevHeight) break;
|
|
prevHeight = newHeight;
|
|
scrolls++;
|
|
}}
|
|
// Scroll back to top
|
|
window.scrollTo(0, 0);
|
|
await delay(200);
|
|
}})();
|
|
"""
|
|
|
|
|
|
def generate_load_more_script(max_clicks: int = 10, delay_ms: int = 1500) -> str:
|
|
"""Generate JavaScript to click 'Load More' buttons.
|
|
|
|
Finds buttons with text containing 'load more', 'show more', etc.
|
|
"""
|
|
return f"""
|
|
(async () => {{
|
|
const delay = ms => new Promise(r => setTimeout(r, ms));
|
|
const patterns = ['load more', 'show more', 'see more', 'view more', 'load additional'];
|
|
let clicks = 0;
|
|
while (clicks < {max_clicks}) {{
|
|
let clicked = false;
|
|
for (const pattern of patterns) {{
|
|
const buttons = Array.from(document.querySelectorAll('button, a, [role="button"]'));
|
|
for (const btn of buttons) {{
|
|
if (btn.textContent.toLowerCase().includes(pattern)) {{
|
|
btn.click();
|
|
clicked = true;
|
|
await delay({delay_ms});
|
|
break;
|
|
}}
|
|
}}
|
|
if (clicked) break;
|
|
}}
|
|
if (!clicked) break;
|
|
clicks++;
|
|
}}
|
|
}})();
|
|
"""
|