commit cc6d8a3170c9bd778b0b10a315e7320100d419db Author: fighter Star <20444468@qq.com> Date: Wed Mar 18 00:06:11 2020 +0800 first commit diff --git a/src/step1/1.jpg b/src/step1/1.jpg new file mode 100644 index 0000000..71c1beb Binary files /dev/null and b/src/step1/1.jpg differ diff --git a/src/step1/2.png b/src/step1/2.png new file mode 100644 index 0000000..07c31cf Binary files /dev/null and b/src/step1/2.png differ diff --git a/src/step1/run.py b/src/step1/run.py new file mode 100644 index 0000000..01bad10 --- /dev/null +++ b/src/step1/run.py @@ -0,0 +1,4 @@ +import usr + +if __name__ == "__main__": + usr.Evidence(input()) \ No newline at end of file diff --git a/src/step1/usr.py b/src/step1/usr.py new file mode 100644 index 0000000..56bcf70 --- /dev/null +++ b/src/step1/usr.py @@ -0,0 +1,9 @@ +from PIL import Image +import pytesseract + +def Evidence(path): + # path为图片文件路径 + # 请在此添加实现代码 # + # ********** Begin *********# + + # ********** End **********# \ No newline at end of file diff --git a/src/step2/pictures.png b/src/step2/pictures.png new file mode 100644 index 0000000..57feb01 Binary files /dev/null and b/src/step2/pictures.png differ diff --git a/src/step2/pictures2.png b/src/step2/pictures2.png new file mode 100644 index 0000000..d138da7 Binary files /dev/null and b/src/step2/pictures2.png differ diff --git a/src/step2/run.py b/src/step2/run.py new file mode 100644 index 0000000..01bad10 --- /dev/null +++ b/src/step2/run.py @@ -0,0 +1,4 @@ +import usr + +if __name__ == "__main__": + usr.Evidence(input()) \ No newline at end of file diff --git a/src/step2/usr.py b/src/step2/usr.py new file mode 100644 index 0000000..f8ea0a1 --- /dev/null +++ b/src/step2/usr.py @@ -0,0 +1,12 @@ +import re # 用于正则 +from PIL import Image # 用于打开图片和对图片处理 +import pytesseract # 用于图片转文字 +from selenium import webdriver # 用于打开网站 +import time # 代码运行停顿 + +def Evidence(path): + # path为图片文件路径 + # 请在此添加实现代码 # + # ********** Begin *********# + + # ********** End **********# \ No newline at end of file