Skip to content

Commit

Permalink
realized hidden password
Browse files Browse the repository at this point in the history
  • Loading branch information
Sandro-Z committed Jan 10, 2025
1 parent 4479ff6 commit d3cd00b
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion pingjiao.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
import random
import re
import time
import getpass

from selenium import webdriver
from selenium.webdriver import ActionChains, Keys
Expand All @@ -12,7 +13,7 @@
options.add_argument("--disable-infobars")
print("说明:\n不喜欢的老师全部4星中好评~\n等待时间较长属于正常现象,一个页面最长可加载1分钟,请不要点击页面元素~\n如果出现意外,如报错退出,请重新运行~~")
name = input("学号:\n>>")
password = input("密码:\n>>")
password = getpass.getpass("密码:\n>>")
unfavoredTeacher = set()
s = input("在此输入你不喜欢的老师的名字,输入#结束\n>>")
while s != '#':
Expand Down

0 comments on commit d3cd00b

Please sign in to comment.