0
我想使用Python GNUPG庫加密文件,它不工作!gnupg.GPG:對不起,根本沒有終端請求 - 無法獲得輸入
這裏是我的代碼片段:
import gnupg
gpg=gnupg.GPG(homedir='/home/datadev/')
recipients=['[email protected]']
f = open('/home/datadev/filename','rb')
status = gpg.encrypt(f,recipients)
/home/datadev
是在那裏我有我的.asc
文件和相關gpg
所有.pubring
文件的文件夾。
閱讀後gpg: Sorry, no terminal at all requested - can't get input
後,我嘗試了以下選項:
gpg=gnupg.GPG(options='')
但錯誤總是「GPG:對不起,沒有終端的所有請求 - 不能讓輸入」
如果有人能告訴我什麼是錯的,這將是有幫助的。
** **如何不工作? – martineau