(self)
| 15 | |
| 16 | |
| 17 | def ipCollection(self): |
| 18 | ip_list = [] |
| 19 | for value in Webinfo.result: |
| 20 | if value["iscdn"] == 0 and value["ip"] not in ip_list: |
| 21 | ip_list.append(value["ip"]) |
| 22 | return ip_list |
| 23 | |
| 24 | def getAttributable(self): |
| 25 | ips = self.ipCollection() |