에코없이 Windows에서 IDLE 터미널에 비밀번호를 입력하고 싶습니다.IDLE에서 getpass.getpass()의 에코 꺼짐
일반적으로 입력하는 암호는 기능 getpass.getpass()를 사용하여 파이썬으로 가능하지만, IDLE에서 다음과 같은 경고 메시지가 온다 : IDLE는 SYS를 대체하기 때문에 내가 발견
GetPassWarning: Can not control echo on the terminal.
Warning: Password input may be echoed.
, 이것은이다. 다른 객체를 가진 stdin :
if sys.stdin is not sys.__stdin__:
return fallback_getpass(prompt, stream)
그러나 해결책을 찾지 못했습니다. 에코없이 IDLE 단말기에 비밀번호를 입력하는 방법은 누구에게 있습니까?