| 20 | |
| 21 | |
| 22 | class LinkNode(Node): |
| 23 | def __init__(self, title: str, url: str, status: int, classification: str, accuracy: float, |
| 24 | numbers: list[str], emails: list[str]): |
| 25 | super().__init__() |
| 26 | self.identifier = url |
| 27 | self.tag = title |
| 28 | self.status = status |
| 29 | self.classification = classification |
| 30 | self.accuracy = accuracy |
| 31 | self.numbers = numbers |
| 32 | self.emails = emails |
| 33 | |
| 34 | |
| 35 | class LinkTree(Tree): |