We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 26f842f commit 9210bbaCopy full SHA for 9210bba
1 file changed
Github/login.py
@@ -4,6 +4,7 @@
4
5
import re
6
import requests
7
+from getpass import getpass
8
9
10
class GithubLogin(object):
@@ -61,7 +62,7 @@ def get_token(self):
61
62
63
if __name__ == '__main__':
64
email = input('Account:')
- password = input('Password:')
65
+ password = getpass('Password:')
66
67
login = GithubLogin(email, password)
68
login.login_GitHub()
0 commit comments