summaryrefslogtreecommitdiffstats
path: root/module/captcha/MegauploadCom.py
diff options
context:
space:
mode:
Diffstat (limited to 'module/captcha/MegauploadCom.py')
-rw-r--r--module/captcha/MegauploadCom.py14
1 files changed, 14 insertions, 0 deletions
diff --git a/module/captcha/MegauploadCom.py b/module/captcha/MegauploadCom.py
new file mode 100644
index 000000000..40939c792
--- /dev/null
+++ b/module/captcha/MegauploadCom.py
@@ -0,0 +1,14 @@
+from captcha import OCR
+
+class MegauploadCom(OCR):
+ def __init__(self):
+ OCR.__init__(self)
+
+ def get_captcha(self, image):
+ self.load_image(image)
+ self.threshold(2.8)
+ self.run_tesser()
+ return self.result_captcha
+
+if __name__ == '__main__':
+ ocr = MegauploadCom()