PyGi 的 gnome 密钥环 api 是什么?

发布于 2024-11-14 01:27:25 字数 300 浏览 9 评论 0原文

有谁可以在 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

口干舌燥 2024-11-21 01:27:25

要访问 Secret Service (gnome-keyring),您应该使用 libsecret(替换 libgnome-keyring 的新库)

它具有 内置 对 Gobject Introspection 的支持,所以这应该可以工作:

from gi.repository import Secret

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:

from gi.repository import Secret
不爱素颜 2024-11-21 01:27:25

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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文