(self)
| 3 | |
| 4 | class Proxy(object): |
| 5 | def __init__(self): |
| 6 | self.id = 1 |
| 7 | self.ip = '' |
| 8 | self.port = '' |
| 9 | self.country = '' |
| 10 | self.anonymity = '' |
| 11 | self.https = '' |
| 12 | self.speed = '' |
| 13 | self.source = '' |
| 14 | self.vali_count = 0 |
| 15 | |
| 16 | def __str__(self): |
| 17 | data = { |
nothing calls this directly
no outgoing calls
no test coverage detected