(self, name, pluginlist=("hoster", "crypter", "container"))
| 260 | return res |
| 261 | |
| 262 | def findPlugin(self, name, pluginlist=("hoster", "crypter", "container")): |
| 263 | for ptype in pluginlist: |
| 264 | if name in self.plugins[ptype]: |
| 265 | return self.plugins[ptype][name], ptype |
| 266 | return None, None |
| 267 | |
| 268 | def getPlugin(self, name, original=False): |
| 269 | """return plugin module from hoster|decrypter|container""" |
no outgoing calls
no test coverage detected