在哪里可以找到 GIO 的 GSocket 的 Python 绑定?

发布于 2024-10-11 11:20:40 字数 408 浏览 2 评论 0原文

Python 绑定在哪里,或者 Python 绑定 的当前状态是什么 < a href="http://library.gnome.org/devel/gio/unstable/index.html" rel="nofollow">GIO 的 GSocket 和其他 低级网络支持

Where are the Python bindings, or what is the current status of the Python bindings for GIO's GSocket and other lowlevel network support?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(2

日裸衫吸 2024-10-18 11:20:40

众所周知,Gnome 文档有些不是最新的。人们可能会无休无止地说出诸如“社区”、“人力”、“时间”、“努力”等词语。

事实上,当您这样做时,

>>> import gio
>>> help(gio.Socket)

您会看到该类就在那里(还有其他类)。这只是文档缺少描述。

我建议在这种情况下最好的选择是依赖 python 的内联文档系统。

The Gnome documentation is known to be somewhat not up to date. One may endlessly say words like community, manpower, time, effort, et cetera.

The fact is that when you do

>>> import gio
>>> help(gio.Socket)

you will see that the class is there (and others too). That is just the doc missing its description.

I suggest in this case the best choice would be to rely on python's inline doc system.

没有伤那来痛 2024-10-18 11:20:40

Gio 是 GVFS 的 API。

Ubuntu 系统上的 Python 绑定可以这样安装:

sudo apt-get install python-gobject

然后,只需

>>> import gio
>>> 

Gio is an API for GVFS.

Python bindings on an Ubuntu system can be installed like this:

sudo apt-get install python-gobject

Then, just

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