python-dbus-next icon indicating copy to clipboard operation
python-dbus-next copied to clipboard

🚌 The next great DBus library for Python with asyncio support

Results 80 python-dbus-next issues
Sort by recently updated
recently updated
newest added

Hi – I’m developing an app that interfaces with the Pidgin IM/chat client over Dbus. When I try to listen to the ReceivedImMsg signal, I get the following WARNING message,...

I've got two issues related to mypy: 1) The `py.typed` file is not included in the pip package so mypy reports errors like `Skipping analyzing 'dbus_next.service': found module but no...

I am trying to register one generic handler to a couple of DBus signals with different signatures. This should be not a big deal in the world of duck typing...

I'm not too proficient with D-Bus and maybe missing something. I was trying to use this library to communicate with pulseaudio as described here. It seems that pulseaudio only exposes...

Right now it's not possible to define methods on a single class that map to different interfaces. An example of how this is useful is how a ServiceInterface also implements...

enhancement

running the following code: ``` from dbus_next.aio import MessageBus from dbus_next import BusType, Message import asyncio loop = asyncio.get_event_loop() async def main(): bus = await MessageBus(bus_type=BusType.SYSTEM).connect() introspection = await bus.introspect('org.bluez',...

support

#57 What is the use case for tcp address connections? Are people using dbus config or some kind of network forwarding? @M-Bab

I recently tried to replace `python-dbus` with `python-dbus-next` in one of my projects and realized that it is not possible to register a signal handler for the specific combination of...

enhancement
help wanted

Hi, the bluez interface has a property `UUIDs`. The corresponding getter method is called `get_uui_ds()`. It would be nice if it would be called `get_uuids()`. Thanks

Handle method and property annotations in the service and the client. * org.freedesktop.DBus.Method.NoReply * org.freedesktop.DBus.Property.EmitsChangedSignal * org.freedesktop.DBus.Deprecated

enhancement
help wanted