Spaces:
Running
Running
| class BaseAdapter: | |
| def fetch_articles(self): | |
| raise NotImplementedError("Subclasses must implement this method.") | |
| def parse_article(self, raw_data): | |
| raise NotImplementedError("Subclasses must implement this method.") | |
| def analyze_article(self, article): | |
| raise NotImplementedError("Subclasses must implement this method.") |