forked from andelf/fuck12306
-
Notifications
You must be signed in to change notification settings - Fork 0
/
fuck12306.py
160 lines (119 loc) · 4.09 KB
/
fuck12306.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
#!/usr/bin/python
# # FileName : fuck12306.py
# # Author : MaoMao Wang <[email protected]>
# # Created : Mon Mar 16 22:08:41 2015 by ShuYu Wang
# # Copyright : Feather (c) 2015
# # Description : fuck fuck 12306
# # Time-stamp: <2016-04-10 16:28:41 andelf>
from PIL import Image
from PIL import ImageFilter
import urllib
import urllib2
import requests
import re
import json
# hack CERTIFICATE_VERIFY_FAILED
# https://github.com/mtschirs/quizduellapi/issues/2
import ssl
if hasattr(ssl, '_create_unverified_context'):
ssl._create_default_https_context = ssl._create_unverified_context
UA = "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2272.89 Safari/537.36"
pic_url = "https://kyfw.12306.cn/otn/passcodeNew/getPassCodeNew?module=login&rand=sjrand&0.21191171556711197"
def get_img():
resp = urllib.urlopen(pic_url)
raw = resp.read()
with open("./tmp.jpg", 'wb') as fp:
fp.write(raw)
return Image.open("./tmp.jpg")
def get_sub_img(im, x, y):
assert 0 <= x <= 3
assert 0 <= y <= 2
WITH = HEIGHT = 68
left = 5 + (67 + 5) * x
top = 41 + (67 + 5) * y
right = left + 67
bottom = top + 67
return im.crop((left, top, right, bottom))
def baidu_image_upload(im):
url = "http://image.baidu.com/pictureup/uploadshitu?fr=flash&fm=index&pos=upload"
im.save("./query_temp_img.png")
raw = open("./query_temp_img.png", 'rb').read()
files = {
'fileheight' : "0",
'newfilesize' : str(len(raw)),
'compresstime' : "0",
'Filename' : "image.png",
'filewidth' : "0",
'filesize' : str(len(raw)),
'filetype' : 'image/png',
'Upload' : "Submit Query",
'filedata' : ("image.png", raw)
}
resp = requests.post(url, files=files, headers={'User-Agent':UA})
# resp.url
redirect_url = "http://image.baidu.com" + resp.text
return redirect_url
def baidu_stu_lookup(im):
redirect_url = baidu_image_upload(im)
#print redirect_url
resp = requests.get(redirect_url)
html = resp.text
return baidu_stu_html_extract(html)
def baidu_stu_html_extract(html):
pattern = re.compile(r"'multitags':\s*'(.*?)'")
matches = pattern.findall(html)
if not matches:
return '[ERROR?]'
tags_str = matches[0]
result = list(filter(None, tags_str.replace('\t', ' ').split()))
return '|'.join(result) if result else '[UNKOWN]'
def ocr_question_extract(im):
# [email protected]:madmaze/pytesseract.git
global pytesseract
try:
import pytesseract
except:
print "[ERROR] pytesseract not installed"
return
im = im.crop((127, 3, 260, 22))
im = pre_ocr_processing(im)
# im.show()
return pytesseract.image_to_string(im, lang='chi_sim').strip()
def pre_ocr_processing(im):
im = im.convert("RGB")
width, height = im.size
white = im.filter(ImageFilter.BLUR).filter(ImageFilter.MaxFilter(23))
grey = im.convert('L')
impix = im.load()
whitepix = white.load()
greypix = grey.load()
for y in range(height):
for x in range(width):
greypix[x,y] = min(255, max(255 + impix[x,y][0] - whitepix[x,y][0],
255 + impix[x,y][1] - whitepix[x,y][1],
255 + impix[x,y][2] - whitepix[x,y][2]))
new_im = grey.copy()
binarize(new_im, 150)
return new_im
def binarize(im, thresh=120):
assert 0 < thresh < 255
assert im.mode == 'L'
w, h = im.size
for y in xrange(0, h):
for x in xrange(0, w):
if im.getpixel((x,y)) < thresh:
im.putpixel((x,y), 0)
else:
im.putpixel((x,y), 255)
if __name__ == '__main__':
im = get_img()
#im = Image.open("./tmp.jpg")
try:
print 'OCR Question:', ocr_question_extract(im)
except Exception as e:
print '<OCR failed>', e
for y in range(2):
for x in range(4):
im2 = get_sub_img(im, x, y)
result = baidu_stu_lookup(im2)
print (y,x), result