callback.py 185 Bytes
Newer Older
1 2
from abc import ABC, abstractmethod

陈正乐 committed
3

4 5
class BaseCallback(ABC):
    @abstractmethod
陈正乐 committed
6 7
    def filter(self, title: str, content: str) -> bool:  # return True舍弃当前段落
        pass