pydbus icon indicating copy to clipboard operation
pydbus copied to clipboard

Pythonic DBus library

Results 41 pydbus issues
Sort by recently updated
recently updated
newest added

This patch enables the methods to receive the unix fd list with a keyword-only parameter `dbus_unix_fd_list`. The methods shall extract the fd handle from the parameters, and get fd through...

Closes https://github.com/LEW21/pydbus/issues/42, https://github.com/LEW21/pydbus/issues/54 (Maybe of interest to anyone: the branch https://github.com/molobrakos/pydbus/tree/master%2Basync%2Bunixfd contains support for both unix file descriptors as well as the support for asynchronous calls by @poncova in (https://github.com/poncovka/pydbus/commit/5e2b4d2e32db8b8842188d8915f3932bae594cd5...

Hey, I'm getting error trying to follow the [accessing exported object](https://github.com/LEW21/pydbus/blob/master/doc/tutorial.rst#accessing-exported-objects) guide. I get an `KeyError: 'object does not export any interfaces; you might need to pass object path as...

- `Disconnect` and `Autoconnect` don't seem to be names that are built in, but they look like it. Using metasyntactic variables now - timeout was not documented

```py import multiprocessing import gi gi.require_version('Gtk', '3.0') from gi.repository import Gtk from pydbus import SystemBus def bus(): print('SystemBus()...') bus = SystemBus() print(bus) multiprocessing.Process(target=bus).start() ``` Expected output: ``` SystemBus()... ``` Actual...

Hi, Is the pydbus component being maintained? It seems like it hasn't been updated for a long time. ^_^

I am working for IBM to port power on arch to travis build for the packages as CI. This is part of the Ubuntu distribution for ppc64le. This helps us...

Problem When using systemd1 on DBus, for asking change of service like EnableUnitFiles, we should ask that the request allow interactive authorization. Then the root password is asked through a...

This enables a class to generate automatic XML introspection data. This is probably not the final version, especially as I noticed that you use tab indentation while I use spaces...

Exceptions can be registered with decorators, raised in a remote method and recreated after return from the remote call.