Skip to content

Commit 2f7820a

Browse files
committed
Change password input to getpass
1 parent 7254dbb commit 2f7820a

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

print_exams_as_table.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,9 @@
11
import CampusNet
22
from tabulate import tabulate
3+
from getpass import getpass
34

45
username = input("Username (mit @!): ")
5-
password = input("Password: ")
6+
password = getpass()
67

78
s = CampusNet.CampusNetSession(username, password)
89

0 commit comments

Comments
 (0)