diff options
| author | 2014-07-10 03:26:45 +0200 | |
|---|---|---|
| committer | 2014-07-10 03:26:45 +0200 | |
| commit | c1abc13d4dccb20f3845594c28952667573b7d0b (patch) | |
| tree | da8a8678bd804bec77ef16e864bfe2bf2e561eaf /module/plugins/captcha/GigasizeCom.py | |
| parent | Improved filename sanitation removing non-ascii chars. (diff) | |
| download | pyload-c1abc13d4dccb20f3845594c28952667573b7d0b.tar.xz | |
Move captcha to ocr
Diffstat (limited to 'module/plugins/captcha/GigasizeCom.py')
| -rw-r--r-- | module/plugins/captcha/GigasizeCom.py | 20 |
1 files changed, 0 insertions, 20 deletions
diff --git a/module/plugins/captcha/GigasizeCom.py b/module/plugins/captcha/GigasizeCom.py deleted file mode 100644 index 2d0837257..000000000 --- a/module/plugins/captcha/GigasizeCom.py +++ /dev/null @@ -1,20 +0,0 @@ -# -*- coding: utf-8 -*- - -from captcha import OCR - -class GigasizeCom(OCR): - def __init__(self): - OCR.__init__(self) - - def get_captcha(self, image): - self.load_image(image) - self.threshold(2.8) - self.run_tesser(True, False, False, True) - return self.result_captcha - -if __name__ == '__main__': - ocr = GigasizeCom() - import urllib - urllib.urlretrieve('http://www.gigasize.com/randomImage.php', "gigasize_tmp.jpg") - - print ocr.get_captcha('gigasize_tmp.jpg') |
