MCPcopy
hub / github.com/DedSecInside/TorBot / LinkNode

Class LinkNode

torbot/modules/linktree.py:22–32  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

20
21
22class 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
35class LinkTree(Tree):

Callers 1

_append_nodeMethod · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected