Spaces:
Runtime error
Runtime error
File size: 379 Bytes
105b369 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 |
class ResponseIterator:
def __init__(self):
self.items = []
self.index = 0
def add(self, item):
self.items.append(item)
def __iter__(self):
return self
def __next__(self):
if self.index >= len(self.items):
raise StopIteration
item = self.items[self.index]
self.index += 1
return item
|