-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path28.py
38 lines (29 loc) · 947 Bytes
/
28.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
import download_file
from PIL import Image
def main():
url = "http://www.pythonchallenge.com/pc/ring/bell.png"
file_path = "ring/bell.png"
username = "repeat"
password = "switch"
# first_step(url, file_path, username, password)
second_step(file_path)
def first_step(url, file_path, username, password):
download_file.download_with_auth(url, file_path, username, password)
def second_step(file_path):
im = Image.open(file_path)
green_channel = 1
green_data = im.getdata(green_channel)
datas = list(green_data)
datas_len = len(datas)
assert datas_len % 2 == 0
message = ""
for i in range(int(datas_len / 2)):
index = 2 * i
left = datas[index]
right = datas[index + 1]
abs_left_min_right = abs(left - right)
if abs_left_min_right != 42:
message += chr(abs_left_min_right)
print(message)
if __name__ == "__main__":
main()