Files
crawl4ai/crawl4ai/scraper/scorers/url_scorer.py

6 lines
131 B
Python

from abc import ABC, abstractmethod
class URLScorer(ABC):
@abstractmethod
def score(self, url: str) -> float:
pass