Papaflessas's picture
Deploy Signal Generator app
3fe0726
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.")