PyGi 的 gnome 密钥环 api 是什么?
有谁可以在 PyGi 中找到 gnome keyring api 吗?
我曾经这样做:
import gnomekeyring
现在我想使用新的 python/gobject 内省,所以它会是这样的:
from gi.repository import GnomeKeyring
但我找不到要加载的模块。有人知道我是否/如何可以使用 python gobject introspection 访问 Gnome Keyring api?
Does anyone where I can find the gnome keyring api in PyGi?
I used to do:
import gnomekeyring
Now I want to use the new python/gobject introspection so it would be something like:
from gi.repository import GnomeKeyring
But I can't find the module to load. Does someone know if/how I can access the Gnome Keyring api with python gobject introspection?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
要访问 Secret Service (gnome-keyring),您应该使用 libsecret(替换 libgnome-keyring 的新库)
它具有 内置 对 Gobject Introspection 的支持,所以这应该可以工作:
To access the Secret Service (gnome-keyring) you should use the libsecret (new library replacing libgnome-keyring)
It has builtin support for Gobject Introspection so this should work:
PyGI 仍在开发和适配中,因此它仍然没有任何官方文档或 API 参考。每次我需要尝试使用 PyGI 时,我都会检查 C Gnome 开发参考,您可以在那里找到 C 文档对于 gnome-keyring。它似乎与旧的 gnomekeyring 非常相似。
PyGI still under development and adaption so it still doesn't have any official documentation or API reference. Every time I need to try something with PyGI I check the C Gnome Development Reference there you can find the C documentation for gnome-keyring. It seems to be very similar to the old gnomekeyring.