The "main" method of every hoster plugin, you **have to** overwrite it
(self, pyfile)
| 294 | return self._process(*args, **kwargs) |
| 295 | |
| 296 | def process(self, pyfile): |
| 297 | """ |
| 298 | The "main" method of every hoster plugin, you **have to** overwrite it |
| 299 | """ |
| 300 | raise NotImplementedError |
| 301 | |
| 302 | def set_reconnect(self, reconnect): |
| 303 | if self.pyload.config.get('reconnect', 'activated'): |