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.21.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.21-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.21-cp314-cp314t-musllinux_1_2_riscv64.whl (823.0 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ riscv64

dbus_fast-5.0.21-cp314-cp314t-musllinux_1_2_aarch64.whl (1.6 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

dbus_fast-5.0.21-cp314-cp314t-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl (822.1 kB view details)

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

dbus_fast-5.0.21-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.21-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.21-cp314-cp314t-macosx_11_0_arm64.whl (1.4 MB view details)

Uploaded CPython 3.14tmacOS 11.0+ ARM64

dbus_fast-5.0.21-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.21-cp314-cp314-musllinux_1_2_riscv64.whl (833.6 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ riscv64

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

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

dbus_fast-5.0.21-cp314-cp314-manylinux_2_41_x86_64.whl (853.7 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.41+ x86-64

dbus_fast-5.0.21-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.21-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.21-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.21-cp314-cp314-macosx_11_0_arm64.whl (693.0 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

dbus_fast-5.0.21-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.21-cp313-cp313-musllinux_1_2_riscv64.whl (828.4 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ riscv64

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

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

dbus_fast-5.0.21-cp313-cp313-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl (828.4 kB view details)

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

dbus_fast-5.0.21-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.21-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (798.5 kB view details)

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

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

Uploaded CPython 3.13macOS 11.0+ ARM64

dbus_fast-5.0.21-cp312-cp312-musllinux_1_2_x86_64.whl (860.7 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

dbus_fast-5.0.21-cp312-cp312-musllinux_1_2_riscv64.whl (830.9 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ riscv64

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

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

dbus_fast-5.0.21-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.21-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.21-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (799.5 kB view details)

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

dbus_fast-5.0.21-cp312-cp312-macosx_11_0_arm64.whl (690.2 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

dbus_fast-5.0.21-cp311-cp311-musllinux_1_2_x86_64.whl (890.6 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.11musllinux: musl 1.2+ riscv64

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

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

dbus_fast-5.0.21-cp311-cp311-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl (886.9 kB view details)

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

dbus_fast-5.0.21-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (883.2 kB view details)

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

dbus_fast-5.0.21-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.21-cp311-cp311-macosx_11_0_arm64.whl (693.2 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

dbus_fast-5.0.21-cp310-cp310-musllinux_1_2_x86_64.whl (891.6 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

dbus_fast-5.0.21-cp310-cp310-musllinux_1_2_riscv64.whl (882.8 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ riscv64

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

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

dbus_fast-5.0.21-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.21-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.21-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.21-cp310-cp310-macosx_11_0_arm64.whl (694.7 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

dbus_fast-5.0.21-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.21-cp39-cp39-musllinux_1_2_aarch64.whl (851.2 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

dbus_fast-5.0.21-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.21-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.21-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.21.tar.gz.

File metadata

  • Download URL: dbus_fast-5.0.21.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.21.tar.gz
Algorithm Hash digest
SHA256 270a694a484c0888fe4b9e3d5dc779b31c9335a8c496623993aecca4c568397f
MD5 4b3d44f87c57128b3033276bf69b78bc
BLAKE2b-256 d350fb08e6d434d385d0791cdb5b321235da9eefb00eede1b58414e1c7d8ea0a

See more details on using hashes here.

Provenance

The following attestation bundles were made for dbus_fast-5.0.21.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.21-cp314-cp314t-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for dbus_fast-5.0.21-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 aae08d342970bc63a5664533e42d387699eb069a8dd9f94dfa0301a594e91e79
MD5 49e15a98362cd9ed9d2b3bdc2588958a
BLAKE2b-256 cd93a54fcff12dadbdab04fc9b4a9ca11d568e0416eeec56c082bb363d32339f

See more details on using hashes here.

Provenance

The following attestation bundles were made for dbus_fast-5.0.21-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.21-cp314-cp314t-musllinux_1_2_riscv64.whl.

File metadata

File hashes

Hashes for dbus_fast-5.0.21-cp314-cp314t-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 113dfac6cda9e7a81dda25fc58a0b17d47face082946777118f4639219561f1f
MD5 a8f775a1850fe9ea15ab7095adc10b75
BLAKE2b-256 40ebc3cf8a15638371cb93e80182b327663512d69e408a3715025ed62b35aee6

See more details on using hashes here.

Provenance

The following attestation bundles were made for dbus_fast-5.0.21-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.21-cp314-cp314t-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for dbus_fast-5.0.21-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 c4e6a3ffb2a0bc174a9285c1392a5084d406b6e1445cd1746ccfd57752544b3a
MD5 525416d1069bcb415fa8b34829c944f5
BLAKE2b-256 d7bf9a0e2fd1791ae500b0646c5efa971c2275ec495006e43d17007cb6ee38d1

See more details on using hashes here.

Provenance

The following attestation bundles were made for dbus_fast-5.0.21-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.21-cp314-cp314t-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl.

File metadata

File hashes

Hashes for dbus_fast-5.0.21-cp314-cp314t-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 a3aa17c44a04984e21810d5b820be56c1d4e98d9158f1c8e8e2b742d3e8f9d0f
MD5 28d1c5d6bf2e8f0000265a63ab41d779
BLAKE2b-256 1ce3a9fe98b870b17326b6ace4991a2ad5e8046ec4a0d4fec885213cbf1f431e

See more details on using hashes here.

Provenance

The following attestation bundles were made for dbus_fast-5.0.21-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.21-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.21-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 7138434f94cef4af49714f02c41e37835e203d6885d4554e3eb5f183f237b976
MD5 706aae33934b777bc5a3e05ff457d241
BLAKE2b-256 8777d7a4ee9ab00b2a7263786e7871feb0246fdd8751989da84b7296d13ba593

See more details on using hashes here.

Provenance

The following attestation bundles were made for dbus_fast-5.0.21-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.21-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for dbus_fast-5.0.21-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 3f31ab57476f995104d0e60ca574fb25d0effac4eaee46a1474435761a137650
MD5 ec26d09cdf755d265d7e34c06906c314
BLAKE2b-256 594c1acdd964a97af01af54da4daefd425f805379d3c2b158e3e10575b0c2fcf

See more details on using hashes here.

Provenance

The following attestation bundles were made for dbus_fast-5.0.21-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.21-cp314-cp314t-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for dbus_fast-5.0.21-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 980828c389614eff7f9b80734cd10d011a0bd17e1fc5c816c4e1cab7476e0bda
MD5 74e778ae6ea4ac058142b00735d76c8f
BLAKE2b-256 96d1cd52e28b88d0b19931b1f2a2f04340c27af7a90644a793d4c3cdaab5c39f

See more details on using hashes here.

Provenance

The following attestation bundles were made for dbus_fast-5.0.21-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.21-cp314-cp314-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for dbus_fast-5.0.21-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 21aa55dadafd1cbfc081152b94b144983af7575ab7e5b24ec2113df4e1956125
MD5 3e65cc0c0e05258f8062a6d7d7f5e999
BLAKE2b-256 410bf75baf509ddc275d10c3eb02e0ccc1a0b043b0e5f8afb5d9346f7f41d3e3

See more details on using hashes here.

Provenance

The following attestation bundles were made for dbus_fast-5.0.21-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.21-cp314-cp314-musllinux_1_2_riscv64.whl.

File metadata

File hashes

Hashes for dbus_fast-5.0.21-cp314-cp314-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 3e4fc7f2e4b8cee8d84628340cd42648850c90bff61348a65f373e136c5a3bf5
MD5 789338237b287913fa770afc534517a0
BLAKE2b-256 1e6e335d889ad51e7a202416a16a7c0b1c167cf87d4cc80f981d1be71ea5c3a7

See more details on using hashes here.

Provenance

The following attestation bundles were made for dbus_fast-5.0.21-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.21-cp314-cp314-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for dbus_fast-5.0.21-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 1a6cab0ee6699899588250e4bfad026578ad083e595dee1d23b95cdd1570b20d
MD5 9080348140cc961d85dbe91c6dbffb89
BLAKE2b-256 57e987529ca6067e291f6f60287338f6398a2b01e14e6cf330d49ac911e6d737

See more details on using hashes here.

Provenance

The following attestation bundles were made for dbus_fast-5.0.21-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.21-cp314-cp314-manylinux_2_41_x86_64.whl.

File metadata

File hashes

Hashes for dbus_fast-5.0.21-cp314-cp314-manylinux_2_41_x86_64.whl
Algorithm Hash digest
SHA256 69394aed7f4ca038748bfd357e3e122a1b9c733521b28cb1c5e7a6c9c7373092
MD5 7a54ef2bb465e0215f20310919780479
BLAKE2b-256 0c8c4b67d48b94b008fae94503103ce595dbbb824d92d33e5579b2d00cb64275

See more details on using hashes here.

Provenance

The following attestation bundles were made for dbus_fast-5.0.21-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.21-cp314-cp314-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl.

File metadata

File hashes

Hashes for dbus_fast-5.0.21-cp314-cp314-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 485ecd08e93e5df7186fac090de855438bc1e24279c6eeca764cd07184d7e169
MD5 6f6055c325543fa8b24da9578fca47cb
BLAKE2b-256 812779218e7f44eee6a2c96e47f455e0455d78c31e572277389e7806627160a9

See more details on using hashes here.

Provenance

The following attestation bundles were made for dbus_fast-5.0.21-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.21-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.21-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 867c1fc213421e431916c31e915c5c217bac7e88232373ccc06459b2605a097c
MD5 7513c9194b7bd3e123fcaa0f843c0fb1
BLAKE2b-256 b9279808e1bc9f019931a2979bcf9b4203b8aa74afd1eb686888db556c433c02

See more details on using hashes here.

Provenance

The following attestation bundles were made for dbus_fast-5.0.21-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.21-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for dbus_fast-5.0.21-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 fc68d4c7b5bfcb705175cb55c5fe3669b616c1692a2b4f971a3f2b4eda05b092
MD5 9c15888282535a54c549cc9d2023d840
BLAKE2b-256 25d7f91da359be5889a2a71f563c981209fec64631c6fe3391f994257903e8d9

See more details on using hashes here.

Provenance

The following attestation bundles were made for dbus_fast-5.0.21-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.21-cp314-cp314-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for dbus_fast-5.0.21-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 74b2f544b6d9ab80f694ac9d930bf35348fb0d0af1a750ef5866fdbc6ef1613e
MD5 c33b97f4d6ebdeab57b2faf640a823fc
BLAKE2b-256 9cd14b776dbf5b800d9cf2f32c91da70bfc52d2deea2ca63253321f5dcf1974e

See more details on using hashes here.

Provenance

The following attestation bundles were made for dbus_fast-5.0.21-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.21-cp313-cp313-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for dbus_fast-5.0.21-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 c5a41676ef05d600bde6783f3f01eb4c03dc9c141d734709797d93cf4eebd716
MD5 6455bd2bb244b522a4980158c60165db
BLAKE2b-256 a95a7b935f36c1c6453da0846de6f373a121d8af7bb997e690c8063b76ac47e3

See more details on using hashes here.

Provenance

The following attestation bundles were made for dbus_fast-5.0.21-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.21-cp313-cp313-musllinux_1_2_riscv64.whl.

File metadata

File hashes

Hashes for dbus_fast-5.0.21-cp313-cp313-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 a24ef0d2869e829e9e1c6b2871bcc601195994e1f50d72b90a2dbfb7d500c2e6
MD5 9c9ebab56b80f8b3c62b4daba6dbace2
BLAKE2b-256 f985c35eb0bc35a0b6fbd72740e9028b1e72f7238a02df4010bfeb0e3484cd8f

See more details on using hashes here.

Provenance

The following attestation bundles were made for dbus_fast-5.0.21-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.21-cp313-cp313-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for dbus_fast-5.0.21-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 da60e214466af4b1cea2314c9712d9b426e31fb4c4f4c046227be45b88fe396d
MD5 f4c313de2c8c57a5f36341befb8577cc
BLAKE2b-256 55df14aab915e76bdda0f4f30a49e12b88e965d141fb85a41ed2052a9a1e7893

See more details on using hashes here.

Provenance

The following attestation bundles were made for dbus_fast-5.0.21-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.21-cp313-cp313-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl.

File metadata

File hashes

Hashes for dbus_fast-5.0.21-cp313-cp313-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 a604f714a8d64320722b64c357e3c04ffe2b20a33b64467f221a7e0a993baaca
MD5 7722d921682d4baab695dbd9a192ae04
BLAKE2b-256 f5bfd5f78b2ff750c26665ef1177e6c081a4b3fe575a30c3dd5224fdbb7f1095

See more details on using hashes here.

Provenance

The following attestation bundles were made for dbus_fast-5.0.21-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.21-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.21-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 0abfd45d3ce20d39ddcacdac8ab2367d7716846901be28946a1aaad279c6e1d2
MD5 a26a847e81ac0164d00c29c973f547b5
BLAKE2b-256 fc496bc2d652447e46827f2970fcb3871b7927f471705828fc4f1a44f9d44ddd

See more details on using hashes here.

Provenance

The following attestation bundles were made for dbus_fast-5.0.21-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.21-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for dbus_fast-5.0.21-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 b96f71366bc2b0ee88309e295611a22f231230000e4604b5544c990fa16c846e
MD5 34ccc2371a230f697c4cbb5d8cf85bc6
BLAKE2b-256 733595b0e6559f65d432caf208c881ba58f14612c3ce3649633a8db5fc9e6f28

See more details on using hashes here.

Provenance

The following attestation bundles were made for dbus_fast-5.0.21-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.21-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for dbus_fast-5.0.21-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 3d4a2101753e5824ee9dbdcbd34c8049a09fec1b1913bd2fd476c137abf0c64d
MD5 b6cbaf0cdde3aac634266ae0a5c9dd00
BLAKE2b-256 2962c0a5df58f70f46a525d0698c3f4eb6edb47076efcee0130060079d9820c2

See more details on using hashes here.

Provenance

The following attestation bundles were made for dbus_fast-5.0.21-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.21-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for dbus_fast-5.0.21-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 7696a21b99d12e605a1bdd258c9233343a18d8cc46d8f0bba7c661f5ebfde0ad
MD5 c2b97e01842798f299b199ddd45ea562
BLAKE2b-256 b7bc2e18cc097694272d8806ec7a1a6871f18470fbd8999b85206cf1c8128a74

See more details on using hashes here.

Provenance

The following attestation bundles were made for dbus_fast-5.0.21-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.21-cp312-cp312-musllinux_1_2_riscv64.whl.

File metadata

File hashes

Hashes for dbus_fast-5.0.21-cp312-cp312-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 77e822a5b609d66cca57d06e3ae9407f6f7fcc063132b20d7304a2c7f83f25eb
MD5 4969d42e1ffc4bc2f24c2b32448030ea
BLAKE2b-256 d67a8e57aa11a93e6b7472ece2570a23f8fa19b0405da8494a549ba01f034511

See more details on using hashes here.

Provenance

The following attestation bundles were made for dbus_fast-5.0.21-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.21-cp312-cp312-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for dbus_fast-5.0.21-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 57fe4bc3e746fb63ab05fa5758107630d5caa8851e93f8d3d0bfee4a01e9f365
MD5 fc604e77b0226001e56d10f2b771c61d
BLAKE2b-256 f31287b51a7f59a05068ae248641e23897e6c4444da67d87cec796f5e3d9b3b6

See more details on using hashes here.

Provenance

The following attestation bundles were made for dbus_fast-5.0.21-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.21-cp312-cp312-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl.

File metadata

File hashes

Hashes for dbus_fast-5.0.21-cp312-cp312-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 2f3d5a9b4627c8580725019ec1e2dfb395c31322f771efe891e0d2ae3081d998
MD5 81a82228a0bc95166917d301e76164a3
BLAKE2b-256 62f800ffeecad8dcc7d2069b6bdf89d91b371a7bb43d947dbf8e546b5c222887

See more details on using hashes here.

Provenance

The following attestation bundles were made for dbus_fast-5.0.21-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.21-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.21-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 09504103704abe1d7282367d14e3e8498d696c303d151823b49b15a9030853ac
MD5 beaf2250dc5586f9a71ad5d4a08a5f1d
BLAKE2b-256 59ba2c179b6d27d38378ba3ebc988cdedbe6b5adb5f7f267f4da5225816c1d29

See more details on using hashes here.

Provenance

The following attestation bundles were made for dbus_fast-5.0.21-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.21-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for dbus_fast-5.0.21-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 33572835c906ba43b5895a41d508ab78492056956d5cc4261a3d528ac648793d
MD5 5a3b690748b3b39d51bb7a79e0b35c75
BLAKE2b-256 56022e3654e21697a2f7cfd652574ad65f0f4932b644bac0617a20a1b7434739

See more details on using hashes here.

Provenance

The following attestation bundles were made for dbus_fast-5.0.21-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.21-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for dbus_fast-5.0.21-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 3a2b94dd8659926a201c311609839eac25071d3958124081dec9e94110760b06
MD5 5b5468d59fe3b334af45268889e7d9a9
BLAKE2b-256 b575f531a58bc2b66b3d435cb325f02ba5e0a3134720df54c6a2f7a3fa76409a

See more details on using hashes here.

Provenance

The following attestation bundles were made for dbus_fast-5.0.21-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.21-cp311-cp311-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for dbus_fast-5.0.21-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 7db578ae3a8e9f65563af4a05b6684db331fe8bd2c3a98cd5cefbbaf1e6a8a12
MD5 b70bce12d93cc6c60778f3ee67a152ee
BLAKE2b-256 b73361a0acf9fa03d5cd5a989fb428cee86b9affe5dfec9693a97ead7184926b

See more details on using hashes here.

Provenance

The following attestation bundles were made for dbus_fast-5.0.21-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.21-cp311-cp311-musllinux_1_2_riscv64.whl.

File metadata

File hashes

Hashes for dbus_fast-5.0.21-cp311-cp311-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 22faeb04c49ca44a2c588462f51bbc86ca0d95bf989fcfcc9b9c72d07a1556e4
MD5 77cb7193f1e24d8b07dff1861a97e550
BLAKE2b-256 7eb19bf3dc59e58818caf7c155fcd6260442ecce877d19eaf09ba32dea61170e

See more details on using hashes here.

Provenance

The following attestation bundles were made for dbus_fast-5.0.21-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.21-cp311-cp311-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for dbus_fast-5.0.21-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 0969f12556cbae0e95d0692cee9c20a28dae8ddfb81be654c16063d3f5000b0b
MD5 6015ee25dc9dbcf02359d911408ac134
BLAKE2b-256 eebebd971212d4ce99f429c434e717d7b4b84d4ce96e041f63a5f24a500848a6

See more details on using hashes here.

Provenance

The following attestation bundles were made for dbus_fast-5.0.21-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.21-cp311-cp311-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl.

File metadata

File hashes

Hashes for dbus_fast-5.0.21-cp311-cp311-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 ddc30e986306e841b51d93350fa4c3dacf69fa838e4bf2fe44de4d1030f1cb1b
MD5 128b5e3ffe33a3d89602fe570f9882e1
BLAKE2b-256 e94d6175b1e2534bb9b34cedb9e994aa1f3e0c3f1d82ce58da1298d6af44b1ff

See more details on using hashes here.

Provenance

The following attestation bundles were made for dbus_fast-5.0.21-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.21-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.21-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 3138c14322c83a98f29e668d65edcb3a15eae36a869cafe2348567c0a851703f
MD5 c8285065f295a8009debf275d061236c
BLAKE2b-256 2a8e0abe3f6ae62ea4fe2e9ac4391d8b5a2ac6f04389c4d1eebf9b0ad3f765ec

See more details on using hashes here.

Provenance

The following attestation bundles were made for dbus_fast-5.0.21-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.21-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for dbus_fast-5.0.21-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 27c5c7ee3dc7397f8a31e9a40656ccea6357e915230033089e1c2649338bda71
MD5 5f2db6912712405a619d8e5f0d653d79
BLAKE2b-256 89a477fcbe6b1658cf6ae07e5f1b5a22e4f04c8175a13d9a1df59dbe653174e2

See more details on using hashes here.

Provenance

The following attestation bundles were made for dbus_fast-5.0.21-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.21-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for dbus_fast-5.0.21-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 04e9b6f49069363f3917bc5528b25063a94a34d084d4c9c18492811adea3c442
MD5 8b0eafeefe3399efe07826cd0c6ea4c9
BLAKE2b-256 a128ad0cec3ac15ace023d3d7409b80661728a0d0c51fb29a6356527a61241cf

See more details on using hashes here.

Provenance

The following attestation bundles were made for dbus_fast-5.0.21-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.21-cp310-cp310-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for dbus_fast-5.0.21-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 a604285e48e5999abe3e12c83e448360d5ba574f38fb66f5b949f863d2231e54
MD5 4c5ab67aded380803522bfd68bbd72ee
BLAKE2b-256 8ec54ad30e745fbb94d67ccaa416d297cefa48afd900185180d043d64d69d5b8

See more details on using hashes here.

Provenance

The following attestation bundles were made for dbus_fast-5.0.21-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.21-cp310-cp310-musllinux_1_2_riscv64.whl.

File metadata

File hashes

Hashes for dbus_fast-5.0.21-cp310-cp310-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 b592acb296a5fa4e5555ef556e3c4deab4a052edab93974657aee519ba4d71c2
MD5 637435e65f58ac031fb9b2e67db8f5e0
BLAKE2b-256 0558559404917b9ffabdca2db16491268539d8d93f22c379b5882e3cf165796f

See more details on using hashes here.

Provenance

The following attestation bundles were made for dbus_fast-5.0.21-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.21-cp310-cp310-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for dbus_fast-5.0.21-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 8642aaf99daea032b2e2e18585676779250e71d3ec9282980429cf50ef079235
MD5 0e9880840946e49c42328384a12e9191
BLAKE2b-256 534b4c82e6c45a818128484289b66455fcaff20f34de699dc1d3dcf0afc55fa8

See more details on using hashes here.

Provenance

The following attestation bundles were made for dbus_fast-5.0.21-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.21-cp310-cp310-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl.

File metadata

File hashes

Hashes for dbus_fast-5.0.21-cp310-cp310-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 84b09c74c91c9f2bf7c4507626c99077d24a100ee50669b118d779167508adeb
MD5 1440c38f2832a6ad58fbde0e8bafe8a1
BLAKE2b-256 6d8f63eaca91a97a0a95c0930b57fa6e565296a14e1c2de201a47773f737ddb5

See more details on using hashes here.

Provenance

The following attestation bundles were made for dbus_fast-5.0.21-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.21-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.21-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 c45cd28842327842def287d2c575ee876d556da79e54ca0803923c3c6141e330
MD5 32fb4328f5fa041135489f12b99af9ad
BLAKE2b-256 f3f4d5b5afdaa0be61ffebd7d13beb21110e23e16e45a7284079a3ad4626a92f

See more details on using hashes here.

Provenance

The following attestation bundles were made for dbus_fast-5.0.21-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.21-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for dbus_fast-5.0.21-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 5b795f6f60d096c66007ed5af94ab870dd5d40e94e06392c197d4f907e5a146d
MD5 4a8b31de9271b8b036728392c71477c4
BLAKE2b-256 117624998d5223070b6b0362e7d7e5af6007efbd576b1cdbaf983cf14def5789

See more details on using hashes here.

Provenance

The following attestation bundles were made for dbus_fast-5.0.21-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.21-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for dbus_fast-5.0.21-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 8c23341d4f6925c5fc8d1797c0d613028a5ea3fdc36889141a7460101aa860db
MD5 bc7c725d9d56bb69ae94393b488879cc
BLAKE2b-256 2fae1c2b4b5e593412c0cc4c6706f1dc40c7ee2ba46e3b88e2b314043e6627df

See more details on using hashes here.

Provenance

The following attestation bundles were made for dbus_fast-5.0.21-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.21-cp39-cp39-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for dbus_fast-5.0.21-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 c774ef03bb5470e78bc7340dfd848325553abbe13f3cc9408379aad71a69c4b9
MD5 84bfe172390effcbf52d3ff44dfbf9fd
BLAKE2b-256 0914d464915062874fcf82c731bc7897fdac29a906627231221df088a391267e

See more details on using hashes here.

Provenance

The following attestation bundles were made for dbus_fast-5.0.21-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.21-cp39-cp39-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for dbus_fast-5.0.21-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 d498c5aeb35cd67f34b5bcba351c35589081e10aa4d3d06000af18d3e768b727
MD5 b97e8be04e0c1ae9897c2c260f292ebe
BLAKE2b-256 945912624eb189e9803ba68f31190c75e9f246607943830bf679a79114544014

See more details on using hashes here.

Provenance

The following attestation bundles were made for dbus_fast-5.0.21-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.21-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.21-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 1a7953d58bc888ef10c6d26c99e2bdca8117d266f6a25e6cf2276f95d44410a9
MD5 df40edfef8cef6bc7a13ed5bbeff64b9
BLAKE2b-256 a79381f5b694469c068fe0d8faa89625e504d6d5bad7fb32a9855592baaacbb5

See more details on using hashes here.

Provenance

The following attestation bundles were made for dbus_fast-5.0.21-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.21-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for dbus_fast-5.0.21-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 3695070336fb1603ae010ffa50a3402076195f63bb06cfdac3ceb1b138b2c3c0
MD5 0063cff31984899d3d36d280bee81b2f
BLAKE2b-256 5c056f7129d5fcc39970c46478d7d0aac43f387f9fadc322e29e9ff28d58e015

See more details on using hashes here.

Provenance

The following attestation bundles were made for dbus_fast-5.0.21-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.21-cp39-cp39-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for dbus_fast-5.0.21-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 54397c156d0c1d922dabd24863dca099089c4036f4040afd840ce3da4623a389
MD5 c168d55719bd878e9ba649e6246c663f
BLAKE2b-256 503452ebfda1e273c1864d587363d5752d20d1deb9548c077fbddf6387135638

See more details on using hashes here.

Provenance

The following attestation bundles were made for dbus_fast-5.0.21-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