def get_data(self): return Blob(self.content)
def feed(self): return Blob("")
def get_data(self): return Blob(self.content.encode("UTF-8"))
def feed(self): if self.called: return Blob("") self.called = True return Blob("1")
def get_data(self) -> Blob: return Blob("")