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

I have installed Python 3.8 on my Windows 10 computer. I installed successfully dbus-next with pip, but I wasn't able to run a working application. After launching dbus-daemon.exe and setting...

I have a dynamic list of properties as a variable, and I need to declare a property for each of the values. In other words: how can I create and...

Hi. The documentation is not clear and the example is not functional. How set a signal receiver without having to handle the "introspection" ? I'd like to have `def cb_on_tested(testid)`...

by https://github.com/altdesktop/python-dbus-next/issues/61, and changed `bus_type` to `BusType.SESSION`, but canot recv any message ```python3 import asyncio import signal import os from dbus_next.aio import MessageBus from dbus_next.message import Message from dbus_next.constants import...

I'm trying to add python 3.11 to run the tests for Qtile on github. A couple of our tests in qtile use the sync methods of dbus_next and these fail...

``` =================================== FAILURES =================================== _____________________ test_tcp_connection_with_forwarding ______________________ event_loop = @pytest.mark.asyncio async def test_tcp_connection_with_forwarding(event_loop): closables = [] host = '127.0.0.1' port = '55556' addr_info = parse_address(os.environ.get('DBUS_SESSION_BUS_ADDRESS')) assert addr_info > assert 'abstract'...

To better support static type checkers [PEP 593](https://peps.python.org/pep-0593/) introduced a new method for custom type annotations in Python 3.9 via [typing.Annotated](https://docs.python.org/3/library/typing.html#typing.Annotated). The addition has been backported to older Python versions...