Python 中是否有 RStudio 的“.rs.askForPassword”?

Is there an equivalent to RStudio's ".rs.askForPassword" in Python?

我想连接到我在 Python 中的数据库,但我不想向其他用户显示我的密码,例如 .rs.askForPassword 完全符合我在 RStudio 中的需要。这是一个例子:

library(RODBC)
conn = odbcConnect(dsn = "my_dsn", 
                   uid = "name.last_name",
                   pwd = .rs.askForPassword("my.password"))

在 Python 中有什么方法可以做到这一点吗?

您可以使用 getpass()

import getpass

p = getpass.getpass(prompt='What is your favorite person? ')
if p.lower() == 'gf':
    print 'Right.  Off you go.'
else:
    print 'Wrong!'