Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
29 changes: 24 additions & 5 deletions scripts/__init__.py
Original file line number Diff line number Diff line change
@@ -1,11 +1,30 @@
"""
scripts package - AdGuard Home Blocklist Compiler

A high-performance blocklist compiler that merges 80+ DNS blocklists into a single,
deduplicated output optimized for AdGuard Home.

Modules:
downloader: Download blocklists with ETag/Last-Modified caching
cleaner: Clean and validate rules for AGH compatibility
compiler: Modifier-aware deduplication
pipeline: Main processing pipeline
downloader: Async blocklist downloader with ETag/Last-Modified caching
cleaner: Rule filtering and validation for AdGuard Home compatibility
compiler: Format compression and modifier-aware deduplication engine
pipeline: Main processing pipeline orchestrator

Example:
>>> from scripts.pipeline import process_files
>>> stats = process_files("lists/_raw", "lists/merged.txt")
"""

__version__ = "1.0.0"
from typing import Final

__version__: Final[str] = "1.4.0"
__author__: Final[str] = "MissionWAR"

__all__ = [
"__version__",
"__author__",
"downloader",
"cleaner",
"compiler",
"pipeline",
]
Loading