Skip to main content

A faster version of dbus-next

Project description

dbus-fast

CI Status Documentation Status Test coverage percentage

Poetry Ruff pre-commit CodSpeed Badge

PyPI Version Supported Python versions License

A faster version of dbus-next originally from the great DBus next library ❤️

Installation

Install this via pip (or your favourite package manager):

pip install dbus-fast

Documentation

dbus-fast is a Python library for DBus that aims to be a performant fully featured high level library primarily geared towards integration of applications into Linux desktop and mobile environments.

Desktop application developers can use this library for integrating their applications into desktop environments by implementing common DBus standard interfaces or creating custom plugin interfaces.

Desktop users can use this library to create their own scripts and utilities to interact with those interfaces for customization of their desktop environment.

dbus-fast plans to improve over other DBus libraries for Python in the following ways:

  • Zero dependencies and pure Python 3
  • An optional cython extension is available to speed up (un)marshalling
  • Focus on performance
  • Support for multiple IO backends including asyncio and the GLib main loop.
  • Nonblocking IO suitable for GUI development.
  • Target the latest language features of Python for beautiful services and clients.
  • Complete implementation of the DBus type system without ever guessing types.
  • Integration tests for all features of the library.
  • Completely documented public API.

Installing

This library is available on PyPi as dbus-fast.

pip3 install dbus-fast

Installing without the Cython extension

The PyPI wheels bundle an optional Cython extension that speeds up the marshalling/unmarshalling hot paths but adds a few MB to the installed size. If you're bundling dbus-fast into a size-sensitive application and don't need the extra performance, install the pure-Python version by forcing a source build with SKIP_CYTHON=1:

SKIP_CYTHON=1 pip3 install --no-binary dbus-fast dbus-fast

See the installation docs for details.

The Client Interface

To use a service on the bus, the library constructs a proxy object you can use to call methods, get and set properties, and listen to signals.

For more information, see the overview for the high-level client.

This example connects to a media player and controls it with the MPRIS DBus interface.

from dbus_fast.aio import MessageBus

import asyncio


async def main():
    bus = await MessageBus().connect()
    # the introspection xml would normally be included in your project, but
    # this is convenient for development
    introspection = await bus.introspect('org.mpris.MediaPlayer2.vlc', '/org/mpris/MediaPlayer2')

    obj = bus.get_proxy_object('org.mpris.MediaPlayer2.vlc', '/org/mpris/MediaPlayer2', introspection)
    player = obj.get_interface('org.mpris.MediaPlayer2.Player')
    properties = obj.get_interface('org.freedesktop.DBus.Properties')

    # call methods on the interface (this causes the media player to play)
    await player.call_play()

    volume = await player.get_volume()
    print(f'current volume: {volume}, setting to 0.5')

    await player.set_volume(0.5)

    # listen to signals
    def on_properties_changed(interface_name, changed_properties, invalidated_properties):
        for changed, variant in changed_properties.items():
            print(f'property changed: {changed} - {variant.value}')

    properties.on_properties_changed(on_properties_changed)

    await asyncio.Event().wait()

asyncio.run(main())

The Service Interface

To define a service on the bus, use the ServiceInterface class and decorate class methods to specify DBus methods, properties, and signals with their type signatures.

For more information, see the overview for the high-level service.

from dbus_fast.annotations import DBusStr, DBusDict
from dbus_fast.service import ServiceInterface, dbus_method, dbus_property, dbus_signal
from dbus_fast import Variant
from dbus_fast.aio import MessageBus

import asyncio

class ExampleInterface(ServiceInterface):
    def __init__(self, name):
        super().__init__(name)
        self._string_prop = 'kevin'

    @dbus_method()
    def Echo(self, what: DBusStr) -> DBusStr:
        return what

    @dbus_method()
    def GetVariantDict(self) -> DBusDict:
        return {
            'foo': Variant('s', 'bar'),
            'bat': Variant('x', -55),
            'a_list': Variant('as', ['hello', 'world'])
        }

    @dbus_property()
    def string_prop(self) -> DBusStr:
        return self._string_prop

    @string_prop.setter
    def string_prop_setter(self, val: DBusStr):
        self._string_prop = val

    @dbus_signal()
    def signal_simple(self) -> DBusStr:
        return 'hello'

async def main():
    bus = await MessageBus().connect()
    interface = ExampleInterface('test.interface')
    bus.export('/test/path', interface)
    # now that we are ready to handle requests, we can request name from D-Bus
    await bus.request_name('test.name')
    # wait indefinitely
    await asyncio.Event().wait()

asyncio.run(main())

The Low-Level Interface

The low-level interface works with DBus messages directly.

For more information, see the overview for the low-level interface.

from dbus_fast.message import Message, MessageType
from dbus_fast.aio import MessageBus

import asyncio
import json


async def main():
    bus = await MessageBus().connect()

    reply = await bus.call(
        Message(destination='org.freedesktop.DBus',
                path='/org/freedesktop/DBus',
                interface='org.freedesktop.DBus',
                member='ListNames'))

    if reply.message_type == MessageType.ERROR:
        raise Exception(reply.body[0])

    print(json.dumps(reply.body[0], indent=2))


asyncio.run(main())

Projects that use dbus-fast

Contributing

Contributions are welcome. Development happens on Github.

Before you commit, run pre-commit run --all-files to run the linter, code formatter, and the test suite.

Copyright

You can use this code under an MIT license (see LICENSE).

  • © 2019, Tony Crisci
  • © 2022, Bluetooth Devices authors

Contributors ✨

Thanks goes to these wonderful people (emoji key):

This project follows the all-contributors specification. Contributions of any kind welcome!

Credits

This package was created with Cookiecutter and the browniebroke/cookiecutter-pypackage project template.

Project details


Release history Release notifications | RSS feed

Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

dbus_fast-5.0.20.tar.gz (83.2 kB view details)

Uploaded Source

Built Distributions

If you're not sure about the file name format, learn more about wheel file names.

dbus_fast-5.0.20-cp314-cp314t-musllinux_1_2_x86_64.whl (1.6 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

dbus_fast-5.0.20-cp314-cp314t-musllinux_1_2_riscv64.whl (823.0 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ riscv64

dbus_fast-5.0.20-cp314-cp314t-musllinux_1_2_aarch64.whl (1.5 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

dbus_fast-5.0.20-cp314-cp314t-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl (822.0 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.31+ riscv64manylinux: glibc 2.39+ riscv64

dbus_fast-5.0.20-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (1.6 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ x86-64manylinux: glibc 2.28+ x86-64

dbus_fast-5.0.20-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (1.5 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ARM64manylinux: glibc 2.28+ ARM64

dbus_fast-5.0.20-cp314-cp314t-macosx_11_0_arm64.whl (1.4 MB view details)

Uploaded CPython 3.14tmacOS 11.0+ ARM64

dbus_fast-5.0.20-cp314-cp314-musllinux_1_2_x86_64.whl (862.3 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

dbus_fast-5.0.20-cp314-cp314-musllinux_1_2_riscv64.whl (833.6 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ riscv64

dbus_fast-5.0.20-cp314-cp314-musllinux_1_2_aarch64.whl (818.5 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

dbus_fast-5.0.20-cp314-cp314-manylinux_2_41_x86_64.whl (853.6 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.41+ x86-64

dbus_fast-5.0.20-cp314-cp314-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl (833.5 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.31+ riscv64manylinux: glibc 2.39+ riscv64

dbus_fast-5.0.20-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (855.5 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ x86-64manylinux: glibc 2.28+ x86-64

dbus_fast-5.0.20-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (810.8 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARM64manylinux: glibc 2.28+ ARM64

dbus_fast-5.0.20-cp314-cp314-macosx_11_0_arm64.whl (693.0 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

dbus_fast-5.0.20-cp313-cp313-musllinux_1_2_x86_64.whl (857.7 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

dbus_fast-5.0.20-cp313-cp313-musllinux_1_2_riscv64.whl (828.3 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ riscv64

dbus_fast-5.0.20-cp313-cp313-musllinux_1_2_aarch64.whl (806.0 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

dbus_fast-5.0.20-cp313-cp313-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl (828.3 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.31+ riscv64manylinux: glibc 2.39+ riscv64

dbus_fast-5.0.20-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (850.3 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64manylinux: glibc 2.28+ x86-64

dbus_fast-5.0.20-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (798.4 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64manylinux: glibc 2.28+ ARM64

dbus_fast-5.0.20-cp313-cp313-macosx_11_0_arm64.whl (685.9 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

dbus_fast-5.0.20-cp312-cp312-musllinux_1_2_x86_64.whl (860.6 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

dbus_fast-5.0.20-cp312-cp312-musllinux_1_2_riscv64.whl (830.8 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ riscv64

dbus_fast-5.0.20-cp312-cp312-musllinux_1_2_aarch64.whl (806.9 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

dbus_fast-5.0.20-cp312-cp312-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl (833.8 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.31+ riscv64manylinux: glibc 2.39+ riscv64

dbus_fast-5.0.20-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (852.7 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64manylinux: glibc 2.28+ x86-64

dbus_fast-5.0.20-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (799.4 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64manylinux: glibc 2.28+ ARM64

dbus_fast-5.0.20-cp312-cp312-macosx_11_0_arm64.whl (690.1 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

dbus_fast-5.0.20-cp311-cp311-musllinux_1_2_x86_64.whl (890.5 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

dbus_fast-5.0.20-cp311-cp311-musllinux_1_2_riscv64.whl (882.3 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ riscv64

dbus_fast-5.0.20-cp311-cp311-musllinux_1_2_aarch64.whl (846.5 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

dbus_fast-5.0.20-cp311-cp311-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl (886.8 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.31+ riscv64manylinux: glibc 2.39+ riscv64

dbus_fast-5.0.20-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (883.1 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64manylinux: glibc 2.28+ x86-64

dbus_fast-5.0.20-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (838.8 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64manylinux: glibc 2.28+ ARM64

dbus_fast-5.0.20-cp311-cp311-macosx_11_0_arm64.whl (693.1 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

dbus_fast-5.0.20-cp310-cp310-musllinux_1_2_x86_64.whl (891.5 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

dbus_fast-5.0.20-cp310-cp310-musllinux_1_2_riscv64.whl (882.7 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ riscv64

dbus_fast-5.0.20-cp310-cp310-musllinux_1_2_aarch64.whl (847.7 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

dbus_fast-5.0.20-cp310-cp310-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl (885.2 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.31+ riscv64manylinux: glibc 2.39+ riscv64

dbus_fast-5.0.20-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (884.3 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64manylinux: glibc 2.28+ x86-64

dbus_fast-5.0.20-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (840.2 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64manylinux: glibc 2.28+ ARM64

dbus_fast-5.0.20-cp310-cp310-macosx_11_0_arm64.whl (694.7 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

dbus_fast-5.0.20-cp39-cp39-musllinux_1_2_x86_64.whl (896.3 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ x86-64

dbus_fast-5.0.20-cp39-cp39-musllinux_1_2_aarch64.whl (851.2 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

dbus_fast-5.0.20-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (888.9 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64manylinux: glibc 2.28+ x86-64

dbus_fast-5.0.20-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (843.9 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARM64manylinux: glibc 2.28+ ARM64

dbus_fast-5.0.20-cp39-cp39-macosx_11_0_arm64.whl (698.7 kB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

File details

Details for the file dbus_fast-5.0.20.tar.gz.

File metadata

  • Download URL: dbus_fast-5.0.20.tar.gz
  • Upload date:
  • Size: 83.2 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.13

File hashes

Hashes for dbus_fast-5.0.20.tar.gz
Algorithm Hash digest
SHA256 1c2c7d885c963b9840116c254562dacd1199d1369b5f0a6d5cd5303b0ac14b5d
MD5 fe6e081a6c16b67fd35f822e3fa8d371
BLAKE2b-256 8618d99fbba1e83f8eb1e3a0c19d59839ef92bd64da8c403751ebbec739bd48c

See more details on using hashes here.

Provenance

The following attestation bundles were made for dbus_fast-5.0.20.tar.gz:

Publisher: ci.yml on Bluetooth-Devices/dbus-fast

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file dbus_fast-5.0.20-cp314-cp314t-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for dbus_fast-5.0.20-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 a19c726769026171a9b616db5ff4fe887647f7f1c9e12cd1cb339588349dfd71
MD5 cd002edbd2f93cdbb0c4a8ebc0a15721
BLAKE2b-256 9f7c3a3d92d54a28b89d0266a7780f0238548f39706310844ef8bd9ebcafd605

See more details on using hashes here.

Provenance

The following attestation bundles were made for dbus_fast-5.0.20-cp314-cp314t-musllinux_1_2_x86_64.whl:

Publisher: ci.yml on Bluetooth-Devices/dbus-fast

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file dbus_fast-5.0.20-cp314-cp314t-musllinux_1_2_riscv64.whl.

File metadata

File hashes

Hashes for dbus_fast-5.0.20-cp314-cp314t-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 7cc863499e4dc8457abc9296507e6bce008c3ab31e3f0de516933755db036852
MD5 3f9770ef16144b6832ca88e3e3d1eefa
BLAKE2b-256 be9f4ed11253fcd9b047514ab3beeafe5d2cf1b08e1b77d6864403d3235666a0

See more details on using hashes here.

Provenance

The following attestation bundles were made for dbus_fast-5.0.20-cp314-cp314t-musllinux_1_2_riscv64.whl:

Publisher: ci.yml on Bluetooth-Devices/dbus-fast

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file dbus_fast-5.0.20-cp314-cp314t-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for dbus_fast-5.0.20-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 8fc25b8c740403f5ac5d935695e44c0e488699e3d411e1dc5c06c1ca8fbe9141
MD5 42626d9521e1846fb83218b09c2b956c
BLAKE2b-256 70e8f09e9e1f0ddff5888ff378c1a7f234051487731a2e6321d6c813fa332d30

See more details on using hashes here.

Provenance

The following attestation bundles were made for dbus_fast-5.0.20-cp314-cp314t-musllinux_1_2_aarch64.whl:

Publisher: ci.yml on Bluetooth-Devices/dbus-fast

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file dbus_fast-5.0.20-cp314-cp314t-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl.

File metadata

File hashes

Hashes for dbus_fast-5.0.20-cp314-cp314t-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 f5ce1a9d07d87e98e19e6d979b67f4eec21e2ec19eb371db8cd3dce45fbde334
MD5 63acdaa0ad7713e16caa54a955ea4e1d
BLAKE2b-256 af785e8031d0a8eeb1a8bde6843f4b73f4294d451859fa0d78622f8f1d085faf

See more details on using hashes here.

Provenance

The following attestation bundles were made for dbus_fast-5.0.20-cp314-cp314t-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl:

Publisher: ci.yml on Bluetooth-Devices/dbus-fast

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file dbus_fast-5.0.20-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for dbus_fast-5.0.20-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 7faed91e9f96a165d4cd7241b7a1e36466454178a5ed67c0efc6a657768021a8
MD5 a248a9c1b2bb0b80921fb21d8ce440d8
BLAKE2b-256 d524038181333c2565bc0f8b85bbd8fc939b47eab5cfbeb91c8374122020bb4e

See more details on using hashes here.

Provenance

The following attestation bundles were made for dbus_fast-5.0.20-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:

Publisher: ci.yml on Bluetooth-Devices/dbus-fast

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file dbus_fast-5.0.20-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for dbus_fast-5.0.20-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 a5bc6742fef8b9b8f42422ac7f620d7e42bf9e1ac824c5128410b6f73ffda652
MD5 223c13ca7f10872449e4545b1ef335cf
BLAKE2b-256 a0db0fe60ce099e233c67aaf244dd230b52fbc9c754c3b7c5da2c4c6e6ddeb6b

See more details on using hashes here.

Provenance

The following attestation bundles were made for dbus_fast-5.0.20-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:

Publisher: ci.yml on Bluetooth-Devices/dbus-fast

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file dbus_fast-5.0.20-cp314-cp314t-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for dbus_fast-5.0.20-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 3d43ffcf1dbc50109a367d08633b182de8b1983ba80420d16af2ec91a614320e
MD5 9e8e1d2f5993a6517e8eeefaea154bb6
BLAKE2b-256 d672b334dba9003b11b42bfc22e910e5eee1ab8d12a7b82058dc644fb2751943

See more details on using hashes here.

Provenance

The following attestation bundles were made for dbus_fast-5.0.20-cp314-cp314t-macosx_11_0_arm64.whl:

Publisher: ci.yml on Bluetooth-Devices/dbus-fast

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file dbus_fast-5.0.20-cp314-cp314-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for dbus_fast-5.0.20-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 5d755b7d7d27142ea6295389638144fcd16ce6a79528bc7fe359f98759d29f66
MD5 bf4c38e9c9ccfb05020353a0f7e89602
BLAKE2b-256 71dc55d595e340cce3ae3989818413c66f2422c5619979aac78338e0dca7aa53

See more details on using hashes here.

Provenance

The following attestation bundles were made for dbus_fast-5.0.20-cp314-cp314-musllinux_1_2_x86_64.whl:

Publisher: ci.yml on Bluetooth-Devices/dbus-fast

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file dbus_fast-5.0.20-cp314-cp314-musllinux_1_2_riscv64.whl.

File metadata

File hashes

Hashes for dbus_fast-5.0.20-cp314-cp314-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 d77c54e04865f3de875636803ef878bb381fc7eb63cee6b96a5af6c22f53ca3c
MD5 6dc39a4046d4b9901a8ac0129d9d501a
BLAKE2b-256 863fdd5c25a67e7532a769d237dbefd4c37e60694b1916ccfcaf10eb2ad5588a

See more details on using hashes here.

Provenance

The following attestation bundles were made for dbus_fast-5.0.20-cp314-cp314-musllinux_1_2_riscv64.whl:

Publisher: ci.yml on Bluetooth-Devices/dbus-fast

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file dbus_fast-5.0.20-cp314-cp314-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for dbus_fast-5.0.20-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 85e677de36f986550dcbccf8b65ab52d15e4912e5a1ea1b6aedda5d3c2bd1388
MD5 8e48ed1937a313ecafb63d62013dbca8
BLAKE2b-256 fd5d8f644f2574821274c9a4843b85a1352803f6b705351e69c4c7e40ebef31b

See more details on using hashes here.

Provenance

The following attestation bundles were made for dbus_fast-5.0.20-cp314-cp314-musllinux_1_2_aarch64.whl:

Publisher: ci.yml on Bluetooth-Devices/dbus-fast

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file dbus_fast-5.0.20-cp314-cp314-manylinux_2_41_x86_64.whl.

File metadata

File hashes

Hashes for dbus_fast-5.0.20-cp314-cp314-manylinux_2_41_x86_64.whl
Algorithm Hash digest
SHA256 d65dd4593a59f83b4ca6e642a838902e4e4b6ecb9db6b9b2cba4a7aa86d3f2df
MD5 52c6e8c053d786dd6b6a1e5278d5b698
BLAKE2b-256 20bda911b5707edbf52d0821e1587ff81d66c3069d627b662f1701b7907af184

See more details on using hashes here.

Provenance

The following attestation bundles were made for dbus_fast-5.0.20-cp314-cp314-manylinux_2_41_x86_64.whl:

Publisher: ci.yml on Bluetooth-Devices/dbus-fast

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file dbus_fast-5.0.20-cp314-cp314-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl.

File metadata

File hashes

Hashes for dbus_fast-5.0.20-cp314-cp314-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 c2468eeaa157d0a96c18bf81c3603be071ff07dc6378c706a20b56760c09b5d6
MD5 a3f05c94f9bb5d5ae6eebf34a02a457b
BLAKE2b-256 71b4a11f4f26ab7bb642e23d95726aa5b8f350c46f89621bd085834d6b10dd0f

See more details on using hashes here.

Provenance

The following attestation bundles were made for dbus_fast-5.0.20-cp314-cp314-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl:

Publisher: ci.yml on Bluetooth-Devices/dbus-fast

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file dbus_fast-5.0.20-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for dbus_fast-5.0.20-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 b8f967dd468129fbd7f875407f29a368fa93b4348d0b5ee00dc879bd6811a0c7
MD5 bfbcf2304a864821eff74851e6674582
BLAKE2b-256 13f1a9665c7f34432bcdfb0e018cce02efd22b30a8490e2f1aba7019bab820c1

See more details on using hashes here.

Provenance

The following attestation bundles were made for dbus_fast-5.0.20-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:

Publisher: ci.yml on Bluetooth-Devices/dbus-fast

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file dbus_fast-5.0.20-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for dbus_fast-5.0.20-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 491fe6295d586ed2d9af3fc1e3797d25f41ba901e8bae731848462ff960169e1
MD5 531ae3ce8324b94d7c1a23f4a4edd39a
BLAKE2b-256 0c8163bb5da5b589abd05868dfdb29cb515fa749b649924170465379dfa8eac5

See more details on using hashes here.

Provenance

The following attestation bundles were made for dbus_fast-5.0.20-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:

Publisher: ci.yml on Bluetooth-Devices/dbus-fast

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file dbus_fast-5.0.20-cp314-cp314-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for dbus_fast-5.0.20-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 108f642e89c0e1a75256074f80592e13269607d99c3a40fdd194f799e940a476
MD5 9d5cf4b2ed8bcbd12abdf9c76d71aac3
BLAKE2b-256 ad4fefbac6d7d5b38c828164096cb3287d17e9aa2c8253dd5f57d48fd12f29a6

See more details on using hashes here.

Provenance

The following attestation bundles were made for dbus_fast-5.0.20-cp314-cp314-macosx_11_0_arm64.whl:

Publisher: ci.yml on Bluetooth-Devices/dbus-fast

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file dbus_fast-5.0.20-cp313-cp313-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for dbus_fast-5.0.20-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 b98d33d4b2170beb137b067c859852f19d3bf040befa6af48905a709aa641664
MD5 448f379c170c3944f202bf4818429d0f
BLAKE2b-256 a96579ac4fc0003b9c918f78686e4d7710560785fb86c0110fcc3e3b60139cd5

See more details on using hashes here.

Provenance

The following attestation bundles were made for dbus_fast-5.0.20-cp313-cp313-musllinux_1_2_x86_64.whl:

Publisher: ci.yml on Bluetooth-Devices/dbus-fast

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file dbus_fast-5.0.20-cp313-cp313-musllinux_1_2_riscv64.whl.

File metadata

File hashes

Hashes for dbus_fast-5.0.20-cp313-cp313-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 4053c3f9f8d547182da1afa8eb6418fcf1e1e779b06c840f26bacc71c9bd1fe7
MD5 1d659332cba309290faa59e089fcdcaa
BLAKE2b-256 1122d9710c40a911e605522ebf7a13cdf9e6f06ff168fe0243095691f60d2b58

See more details on using hashes here.

Provenance

The following attestation bundles were made for dbus_fast-5.0.20-cp313-cp313-musllinux_1_2_riscv64.whl:

Publisher: ci.yml on Bluetooth-Devices/dbus-fast

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file dbus_fast-5.0.20-cp313-cp313-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for dbus_fast-5.0.20-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 1ae57baa5cd73756248522f9ca5b17c77d7b25e8928a167e4dbda3341805130a
MD5 12ee578727aae9a6ed1a0fd977cb446d
BLAKE2b-256 cc10dc09d9a52e0b42af303cf069407e86a2d9b1e5474eb075deb5752c82e2af

See more details on using hashes here.

Provenance

The following attestation bundles were made for dbus_fast-5.0.20-cp313-cp313-musllinux_1_2_aarch64.whl:

Publisher: ci.yml on Bluetooth-Devices/dbus-fast

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file dbus_fast-5.0.20-cp313-cp313-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl.

File metadata

File hashes

Hashes for dbus_fast-5.0.20-cp313-cp313-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 126d5c84e47029721550f444c50e87c8cbc70137796fae4e0b5020f97267193e
MD5 dfe3bdee008b56735b4f58b8a2eae625
BLAKE2b-256 0da077b5789aca0e3373247c1053a0ebb59a0768a934b2e61c183822b86ab724

See more details on using hashes here.

Provenance

The following attestation bundles were made for dbus_fast-5.0.20-cp313-cp313-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl:

Publisher: ci.yml on Bluetooth-Devices/dbus-fast

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file dbus_fast-5.0.20-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for dbus_fast-5.0.20-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 60aaf75ddcc407159022e01880123513034bf7ac608484e64ec617df44d296a7
MD5 7a151cc5ffc737b3b79626275b636ad9
BLAKE2b-256 9358d734b68ef80300a5803f97a91dcb20b3b2382751bc24c5330aee47f86c63

See more details on using hashes here.

Provenance

The following attestation bundles were made for dbus_fast-5.0.20-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:

Publisher: ci.yml on Bluetooth-Devices/dbus-fast

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file dbus_fast-5.0.20-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for dbus_fast-5.0.20-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 45d82737254432c49e1b3804ea1035cfafd1e701d1cd9fa9c99f41d250eed41f
MD5 12ed9595d6b4e2a2f19fa241374064af
BLAKE2b-256 09253b4a7f2c0327340a8e942df219c5040946f024a928d5a4c620d2812d9c55

See more details on using hashes here.

Provenance

The following attestation bundles were made for dbus_fast-5.0.20-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:

Publisher: ci.yml on Bluetooth-Devices/dbus-fast

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file dbus_fast-5.0.20-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for dbus_fast-5.0.20-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 3f2581a673d0f1cad257dccbd0a24ce334d5afbb3ed01817df610ea79f53a2e3
MD5 c38d21efe4c958afca6a8facd6f39f0a
BLAKE2b-256 3081b51f6470127f192dae5170ca1b84ebfb1238a12a636cdf3a4211f91787b5

See more details on using hashes here.

Provenance

The following attestation bundles were made for dbus_fast-5.0.20-cp313-cp313-macosx_11_0_arm64.whl:

Publisher: ci.yml on Bluetooth-Devices/dbus-fast

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file dbus_fast-5.0.20-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for dbus_fast-5.0.20-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 94b44a841d27e23f08a045be6ccf5db0fd618d4bfccb4d7157bf756a010a4865
MD5 c691ea71e84ef71e70a93ffee75ece30
BLAKE2b-256 c05a3dc8ddfd65fec5d331d6ed5ff02fa9f26d283ce7bb24b302490b6a17fff7

See more details on using hashes here.

Provenance

The following attestation bundles were made for dbus_fast-5.0.20-cp312-cp312-musllinux_1_2_x86_64.whl:

Publisher: ci.yml on Bluetooth-Devices/dbus-fast

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file dbus_fast-5.0.20-cp312-cp312-musllinux_1_2_riscv64.whl.

File metadata

File hashes

Hashes for dbus_fast-5.0.20-cp312-cp312-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 f5e7bd47973bb61e4598129bfd2fc24c3db739d863c1c198529ba59a78726e1f
MD5 9abd0d7c70b9a0aea02fab1e85711372
BLAKE2b-256 cc2dc681ad0b07e7d8ae3b5d7483cb23fb91ff6705a49e848c155e966e4b6d89

See more details on using hashes here.

Provenance

The following attestation bundles were made for dbus_fast-5.0.20-cp312-cp312-musllinux_1_2_riscv64.whl:

Publisher: ci.yml on Bluetooth-Devices/dbus-fast

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file dbus_fast-5.0.20-cp312-cp312-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for dbus_fast-5.0.20-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 c6efc208c77f1ced20b0c040e4d96f2630d585ee7d4a2027589427de56bfc9e9
MD5 e15bd2d56ce1a783a290cf1e2aea5309
BLAKE2b-256 230fee902467b3161c81b39e32cf99036b0d43399962e99620b1745c6a4f1d8a

See more details on using hashes here.

Provenance

The following attestation bundles were made for dbus_fast-5.0.20-cp312-cp312-musllinux_1_2_aarch64.whl:

Publisher: ci.yml on Bluetooth-Devices/dbus-fast

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file dbus_fast-5.0.20-cp312-cp312-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl.

File metadata

File hashes

Hashes for dbus_fast-5.0.20-cp312-cp312-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 e1d7c40e2b77a02200181442ed6015140310ad49c9bf2296b01b8d92ddc34810
MD5 cab6a8221a22abc9540e893a44f5af56
BLAKE2b-256 95167ce05a6f3232d62e0a2ac7d44cc9e3c329e751d91a22992606cd87f696dc

See more details on using hashes here.

Provenance

The following attestation bundles were made for dbus_fast-5.0.20-cp312-cp312-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl:

Publisher: ci.yml on Bluetooth-Devices/dbus-fast

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file dbus_fast-5.0.20-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for dbus_fast-5.0.20-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 3c62e82ab2b9e7bd530fc5d27c82f7070a0716054146b1867fb895c3589e4be9
MD5 54b3c93db560671c5cc5a881d3284636
BLAKE2b-256 b72689d04e68da70f5546b05f9f9081d8d52d13122f81a078299d03dc80fef55

See more details on using hashes here.

Provenance

The following attestation bundles were made for dbus_fast-5.0.20-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:

Publisher: ci.yml on Bluetooth-Devices/dbus-fast

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file dbus_fast-5.0.20-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for dbus_fast-5.0.20-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 481b5e0e6d23fb76e18dd2c50acb2508ec62dea84700f2ca66ff6707b3c6b648
MD5 2d2cd4153a653caaede6e0fd266f2496
BLAKE2b-256 a6faf96ddad9d7bb65f340f1bab009b6d985a99f5dbe92625f7feaefb8b8cfe1

See more details on using hashes here.

Provenance

The following attestation bundles were made for dbus_fast-5.0.20-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:

Publisher: ci.yml on Bluetooth-Devices/dbus-fast

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file dbus_fast-5.0.20-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for dbus_fast-5.0.20-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 73e4d62dfe24f81595614ae1d5bdd81d82ea49e0d851a7483c421c021463a21a
MD5 e23ccf8925d9361d14713d6f497071b0
BLAKE2b-256 ffc4203896e3449c8c6c36b9572bfdf84af5d2a7e18966cd314e74253756643f

See more details on using hashes here.

Provenance

The following attestation bundles were made for dbus_fast-5.0.20-cp312-cp312-macosx_11_0_arm64.whl:

Publisher: ci.yml on Bluetooth-Devices/dbus-fast

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file dbus_fast-5.0.20-cp311-cp311-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for dbus_fast-5.0.20-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 dfe329f4fc4e097868b725a7a960e2fe25f29876afdce93be3754827b1351d47
MD5 06c0320f2fb1ea9ccb0526d29f2edba6
BLAKE2b-256 b7b65926e9b54e5b9e725513551d0ebac3af912967ae38e47547adfae69237ae

See more details on using hashes here.

Provenance

The following attestation bundles were made for dbus_fast-5.0.20-cp311-cp311-musllinux_1_2_x86_64.whl:

Publisher: ci.yml on Bluetooth-Devices/dbus-fast

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file dbus_fast-5.0.20-cp311-cp311-musllinux_1_2_riscv64.whl.

File metadata

File hashes

Hashes for dbus_fast-5.0.20-cp311-cp311-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 c93a648d27c75264841ce57dd4f50ebde560899ef6a31ae1c066ff94c7565bbe
MD5 28095c4df6aaa93864b399b371cc12c5
BLAKE2b-256 ea8c66d306174680eb44cbe5bd2bc94145a1a518ecf4a301b580eeaec7fd37ca

See more details on using hashes here.

Provenance

The following attestation bundles were made for dbus_fast-5.0.20-cp311-cp311-musllinux_1_2_riscv64.whl:

Publisher: ci.yml on Bluetooth-Devices/dbus-fast

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file dbus_fast-5.0.20-cp311-cp311-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for dbus_fast-5.0.20-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 5c8d5be7ac13e3a71b2707b6b2a0ebf360fe2c3a76bcbde15cce10e6a4780a12
MD5 813803691dc500d361d7162ec68f57e0
BLAKE2b-256 075b6173c8c73d15d3985cce788ddcd38eed620276025fa23f7573dc5e7044b8

See more details on using hashes here.

Provenance

The following attestation bundles were made for dbus_fast-5.0.20-cp311-cp311-musllinux_1_2_aarch64.whl:

Publisher: ci.yml on Bluetooth-Devices/dbus-fast

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file dbus_fast-5.0.20-cp311-cp311-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl.

File metadata

File hashes

Hashes for dbus_fast-5.0.20-cp311-cp311-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 2dcdd353713ab1f3f5c10f5f410bf3d581b3e6feb656b05facc5db1da2f12570
MD5 e8ee2f5a5df08302fccc0fdd83751498
BLAKE2b-256 8368b4b3b36907b59c790ffd8925f89c2ef59ab8c47bba9de67706953d7a878e

See more details on using hashes here.

Provenance

The following attestation bundles were made for dbus_fast-5.0.20-cp311-cp311-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl:

Publisher: ci.yml on Bluetooth-Devices/dbus-fast

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file dbus_fast-5.0.20-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for dbus_fast-5.0.20-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 a347167def3d9cc1579c64dc99fbbd22cbb7a1e4174c95f62f319aee054a7a86
MD5 4eba4a7272ee9629f35cfb4e05c58313
BLAKE2b-256 1341ecbea669167004ddc58e741b249cdc796048a84573f0c687955fe87d246b

See more details on using hashes here.

Provenance

The following attestation bundles were made for dbus_fast-5.0.20-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:

Publisher: ci.yml on Bluetooth-Devices/dbus-fast

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file dbus_fast-5.0.20-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for dbus_fast-5.0.20-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 846b47be085b65b396afc80e76273b182c3272666e1a822588f7497d63cf5ef9
MD5 37bf7e8708dde7a878e89776c16181f9
BLAKE2b-256 7947b022498b6feca8abd89c111af6c99c9550c6702e727640e9317c035df6d8

See more details on using hashes here.

Provenance

The following attestation bundles were made for dbus_fast-5.0.20-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:

Publisher: ci.yml on Bluetooth-Devices/dbus-fast

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file dbus_fast-5.0.20-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for dbus_fast-5.0.20-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 27029113c59b87f9cee31cecc91f1a7fd4e1e11a9ded7fea5579bdefd2344a86
MD5 cf2dcbdd11f35943a7b8c431a9cf482b
BLAKE2b-256 6e2ca83d836d71d1b7c580ab2534e7e10633563e0838ca975e0ef1c88a35baac

See more details on using hashes here.

Provenance

The following attestation bundles were made for dbus_fast-5.0.20-cp311-cp311-macosx_11_0_arm64.whl:

Publisher: ci.yml on Bluetooth-Devices/dbus-fast

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file dbus_fast-5.0.20-cp310-cp310-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for dbus_fast-5.0.20-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 794a22590e026e754c21f4354d2b8d6a211432b87c34f71d98c6c1a03449bc34
MD5 8c9ddff46be6a12e618ccf02052abce2
BLAKE2b-256 104bbfb3f4232574d25946045230f1cb0087ebbbfe7556b20d873cd12a99ab44

See more details on using hashes here.

Provenance

The following attestation bundles were made for dbus_fast-5.0.20-cp310-cp310-musllinux_1_2_x86_64.whl:

Publisher: ci.yml on Bluetooth-Devices/dbus-fast

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file dbus_fast-5.0.20-cp310-cp310-musllinux_1_2_riscv64.whl.

File metadata

File hashes

Hashes for dbus_fast-5.0.20-cp310-cp310-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 ef8ecb529b8a3471029dc99c7ee1c2310322c805903b1bb30025a62e9f1939df
MD5 e58226a397030237474d99589b978f4b
BLAKE2b-256 f47c601fbe650284106650819c0a7c9f3bd8b9d73262825b170e0f1e920d6601

See more details on using hashes here.

Provenance

The following attestation bundles were made for dbus_fast-5.0.20-cp310-cp310-musllinux_1_2_riscv64.whl:

Publisher: ci.yml on Bluetooth-Devices/dbus-fast

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file dbus_fast-5.0.20-cp310-cp310-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for dbus_fast-5.0.20-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 b0864342d157102e282872de3e31c01a3b3da5e4afeda01c6ecca08be2bbb41c
MD5 012efd1ab6a061876fe7c24dc36fbcd8
BLAKE2b-256 87ca9a11e6245a3933786136490c751043596d7932ddfbedf7fb8c74114e5476

See more details on using hashes here.

Provenance

The following attestation bundles were made for dbus_fast-5.0.20-cp310-cp310-musllinux_1_2_aarch64.whl:

Publisher: ci.yml on Bluetooth-Devices/dbus-fast

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file dbus_fast-5.0.20-cp310-cp310-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl.

File metadata

File hashes

Hashes for dbus_fast-5.0.20-cp310-cp310-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 12926ffbf3defd4e6658d6792e48f8e981fe3b4359e84560b81b42682493b8b3
MD5 aabcaafd9098a58e4319adab7ef33113
BLAKE2b-256 1c752e780fa858d0ff31b329d3046c61dc245c07fb018291f41b15456d4b434d

See more details on using hashes here.

Provenance

The following attestation bundles were made for dbus_fast-5.0.20-cp310-cp310-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl:

Publisher: ci.yml on Bluetooth-Devices/dbus-fast

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file dbus_fast-5.0.20-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for dbus_fast-5.0.20-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 36e4c8f214c2a6cd5ace07cbdc1f2069a540793f0ef02f353f78ed237ebdb673
MD5 f5b873703be2f0c30b65524c6cc70fbb
BLAKE2b-256 23ad0f38b73f1ae5a03921ed11bb533214c669b040f8bbfbc09d3ac7cb17ec52

See more details on using hashes here.

Provenance

The following attestation bundles were made for dbus_fast-5.0.20-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:

Publisher: ci.yml on Bluetooth-Devices/dbus-fast

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file dbus_fast-5.0.20-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for dbus_fast-5.0.20-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 a4966781377ae5910234d185b783a225d85eca781fddc9a0ef5fa870881247d5
MD5 0769dc1eaf4f520c6240f5c71e0cd6e3
BLAKE2b-256 ac3eaa4cbf373cfd1649da3f1eb9054ae5c0c9aa12b3de241b709d6f43ed7214

See more details on using hashes here.

Provenance

The following attestation bundles were made for dbus_fast-5.0.20-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:

Publisher: ci.yml on Bluetooth-Devices/dbus-fast

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file dbus_fast-5.0.20-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for dbus_fast-5.0.20-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 c126b402f19778e6664cd51b8cde8806b4faaf563a73c1c4afd1131307c7d848
MD5 bbd5fd8b68d79268859b08cad980c89f
BLAKE2b-256 3e72c0d86bd90478dd2e6195348c07cec9494c3ea0bef7bebe121196e1e83af9

See more details on using hashes here.

Provenance

The following attestation bundles were made for dbus_fast-5.0.20-cp310-cp310-macosx_11_0_arm64.whl:

Publisher: ci.yml on Bluetooth-Devices/dbus-fast

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file dbus_fast-5.0.20-cp39-cp39-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for dbus_fast-5.0.20-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 547234fa90b573874f67893f10d45c3cd9c30a0b53b8c8d897d61424bf7a5c45
MD5 bc47e902f2196b7d1f4d5645a1c6e745
BLAKE2b-256 71fae2cdfe6f5da5c5b08b57b2c1b12e8ef677a39f1990cb4c2afee90f65e12f

See more details on using hashes here.

Provenance

The following attestation bundles were made for dbus_fast-5.0.20-cp39-cp39-musllinux_1_2_x86_64.whl:

Publisher: ci.yml on Bluetooth-Devices/dbus-fast

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file dbus_fast-5.0.20-cp39-cp39-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for dbus_fast-5.0.20-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 becbe054a780d375f40f8badb3eed0da1383fd618d0bcfe612bb6ebf71e17493
MD5 a55f62fed2ff8a4ede5385a8b4a9f9fb
BLAKE2b-256 78ba2440fb2e013c12e460f25d2456499b310f16be2d14c2fcce8fb948410cd0

See more details on using hashes here.

Provenance

The following attestation bundles were made for dbus_fast-5.0.20-cp39-cp39-musllinux_1_2_aarch64.whl:

Publisher: ci.yml on Bluetooth-Devices/dbus-fast

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file dbus_fast-5.0.20-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for dbus_fast-5.0.20-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 89f0998f33d7638bb04af5e02f715c27159e8ebffeed94047a3c4093652663b3
MD5 5804bdfa07b363834f2a4f08185e85ea
BLAKE2b-256 2611b504bc6ddf8cdc52667b31566f00741d0c304a2745d83b741967d04e3d76

See more details on using hashes here.

Provenance

The following attestation bundles were made for dbus_fast-5.0.20-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:

Publisher: ci.yml on Bluetooth-Devices/dbus-fast

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file dbus_fast-5.0.20-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for dbus_fast-5.0.20-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 acb4c5abb713ee96499bfcb8c52f14982458d3d9dac2b8dbb5b7e9c02a6f2d62
MD5 b658d78008cea141b96a5a70b280b1b9
BLAKE2b-256 1598cf8b57de8e118150939571af827debb3b43bc675316416d624aa931dcca0

See more details on using hashes here.

Provenance

The following attestation bundles were made for dbus_fast-5.0.20-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:

Publisher: ci.yml on Bluetooth-Devices/dbus-fast

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file dbus_fast-5.0.20-cp39-cp39-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for dbus_fast-5.0.20-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 8c7da3c7a88fb88c70ca65f1401f3f3ea1c48ce17092c731c3292466c4655e71
MD5 001c43931096c5bee96e48fc4f3d43b9
BLAKE2b-256 49455a870bac7b41db6c223752a8c674a14e2ec5bd554e88517ddde98ea79289

See more details on using hashes here.

Provenance

The following attestation bundles were made for dbus_fast-5.0.20-cp39-cp39-macosx_11_0_arm64.whl:

Publisher: ci.yml on Bluetooth-Devices/dbus-fast

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page