Tagged Questions
1
vote
2answers
130 views
Where can I find the Python bindings for GIO's 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?
1
vote
1answer
421 views
Async HTTP request using GIO
I would appreciate an example on how to perform an async HTTP POST request using Python's GIO binding.
Edit: Example sought without using Twisted.
1
vote
1answer
847 views
Accessing samba shares with gio in python
I am trying to make a simple commandline client for accessing shares via the python bindings of gio (yes, the main requirement is to use gio).
I can see that comparing with it's predecessor ...
1
vote
4answers
909 views
Watching sockets with Glib on Windows puts them in non-blocking mode
The following code does not work correctly on Windows (but does on Linux):
sock = socket.socket(socket.AF_INET, socket.SOCK_STREAM)
sock.setblocking(True)
sock.connect(address)
...
0
votes
2answers
226 views
gio: check if volume is mounted
I'm doing something like:
mo = gio.MountOperation()
mo.connect('ask-password', ask_password_cb)
location = gio.File("ssh://leon@concepts.tim-online.nl/home/leon/test.txt")
...
0
votes
2answers
127 views
how to get dirname of a GFile?
When using GIO and GVFS, how do I best get the directory name of a GFile object? There is a get_basename() function but no get_dirname().
The function should work for remote URIs as well. Also, it ...
0
votes
1answer
132 views
gnomevfs or gio?
For async IO using Python, is it preferable to rely on gio or gnomevfs?
Also, which one is more "cross-platform"?