(self)
| 76 | CUTCAPTCHA_CAPTCHA_PATTERN = r'<script src=["\'](https://cutcaptcha\.com/captcha/\w+?\.js)["\']>' |
| 77 | |
| 78 | def setup(self): |
| 79 | self.urls = [] |
| 80 | |
| 81 | try: |
| 82 | self.req.http.close() |
| 83 | except Exception: |
| 84 | pass |
| 85 | |
| 86 | self.req.http = BIGHTTPRequest( |
| 87 | cookies=CookieJar(None), |
| 88 | options=self.pyload.requestFactory.getOptions(), |
| 89 | limit=2000000) |
| 90 | |
| 91 | def decrypt(self, pyfile): |
| 92 | self.data = self._filecrypt_load_url(pyfile.url) |
nothing calls this directly
no test coverage detected