Did I find the right examples for you? yes no Crawl my project Python Jobs
All Samples(30) | Call(30) | Derive(0) | Import(0)
Get a client object using the best availible data
src/b/3/b3-1.9.2/b3/parsers/cod.py b3(Download)
def OnK(self, action, data, match=None): victim = self.getClient(victim=match) if not victim: self.debug('No victim') self.OnJ(action, data, match) return None attacker = self.getClient(attacker=match)
def OnD(self, action, data, match=None): victim = self.getClient(victim=match) if not victim: self.debug('No victim - attempt join') self.OnJ(action, data, match) return None attacker = self.getClient(attacker=match)
def OnQ(self, action, data, match=None): client = self.getClient(match) if client: client.disconnect() else:
src/b/i/big-brother-bot-HEAD/b3/parsers/cod.py big-brother-bot(Download)
def OnK(self, action, data, match=None): victim = self.getClient(victim=match) if not victim: self.debug('No victim') self.OnJ(action, data, match) return None attacker = self.getClient(attacker=match)
def OnD(self, action, data, match=None): victim = self.getClient(victim=match) if not victim: self.debug('No victim - attempt join') self.OnJ(action, data, match) return None attacker = self.getClient(attacker=match)
def OnQ(self, action, data, match=None): client = self.getClient(match) if client: client.disconnect() else: