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

Uploaded CPython 3.14tmusllinux: musl 1.2+ riscv64

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

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.14tmacOS 11.0+ ARM64

dbus_fast-5.0.18-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.18-cp314-cp314-musllinux_1_2_riscv64.whl (833.5 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ riscv64

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

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.14macOS 11.0+ ARM64

dbus_fast-5.0.18-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.18-cp313-cp313-musllinux_1_2_riscv64.whl (828.3 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ riscv64

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

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

dbus_fast-5.0.18-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.18-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.18-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.18-cp313-cp313-macosx_11_0_arm64.whl (685.9 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

dbus_fast-5.0.18-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.18-cp312-cp312-musllinux_1_2_riscv64.whl (830.8 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ riscv64

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

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

dbus_fast-5.0.18-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.18-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.18-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.18-cp312-cp312-macosx_11_0_arm64.whl (690.1 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

dbus_fast-5.0.18-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.18-cp311-cp311-musllinux_1_2_riscv64.whl (882.2 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ riscv64

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

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

dbus_fast-5.0.18-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.18-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.18-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.18-cp311-cp311-macosx_11_0_arm64.whl (693.1 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

dbus_fast-5.0.18-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.18-cp310-cp310-musllinux_1_2_riscv64.whl (882.7 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ riscv64

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

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

dbus_fast-5.0.18-cp310-cp310-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl (885.1 kB view details)

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

dbus_fast-5.0.18-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.18-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.18-cp310-cp310-macosx_11_0_arm64.whl (694.6 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

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

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

dbus_fast-5.0.18-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.18-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.18-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.18.tar.gz.

File metadata

  • Download URL: dbus_fast-5.0.18.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.18.tar.gz
Algorithm Hash digest
SHA256 6a83c7c543de19f13237ac28dfecc583192046c9dec0e976c205dfa49624348e
MD5 591646194642f6247fbd95ef6638d0c2
BLAKE2b-256 8d11d4d3b9fafd44bf1ac2587574e55d461f46dd432a0c6795b074336418127b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.18-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 64da1856bf88e0b4aa764d00b5dcd090722359571bb2a59141ae1647b6ff7d49
MD5 669b259625bca9a80a8d569bbf3871dd
BLAKE2b-256 71aa8cbac330d6a36266f6b5f6d7b0722055000dc7618ba5902a3e1c1f6e6447

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.18-cp314-cp314t-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 4e7c439e6f968b8893a5ea72998927749899c175452ff05d407e8132d2e08232
MD5 22a90939fb5725a6f4b8fc32cb1a167d
BLAKE2b-256 dc4da4310bed717558cc9e1ff3157c4ad4e2de4abe4d87963ac82ee8e07e34cc

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.18-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 d2fcbe9379854e954a8c7f7a576c97051da1b0cef54ba91b34601c1b3112060b
MD5 c29c973946e64f96a6ea54e6732b218d
BLAKE2b-256 c55700f2fd5b3d206fef95102310f9e8b593a8492d2cbcee8b892726361d548b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.18-cp314-cp314t-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 76b7971797da144754a5b2a42225124d11bf586064dbbeab902bfc07a3ce19f3
MD5 b0f06df5167619cbb5f8cc98e96279e9
BLAKE2b-256 595fd8183bce360f19a4b8500790635a33c72c2d252b30796da573377e432ff0

See more details on using hashes here.

Provenance

The following attestation bundles were made for dbus_fast-5.0.18-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.18-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.18-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 d1d2d45a088c9f0a26effe3dcc2cde7cbf46d8a5cff4fea100815f686f0da385
MD5 c70ed36945c99d75692713dc09142e28
BLAKE2b-256 0b5f97149041b61876ee4020c72800906052d2a491ee06f8c333be2f7d9aec5a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.18-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 0008c1f9238089af2203a1f5f507358d12d705b7f56bdd22d714f53caf67424f
MD5 cb092c35a7f332a31a10dc9ad2eb3a22
BLAKE2b-256 ed4e19ae48ee0ea1469eb043b48d18b01b5a635c6256f2b903f5ebdc1c0214dc

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.18-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 a7f9c0f34f16d1aee30e8b66a5cc60812f6820fc96eb44790b1222e388709179
MD5 4867fed90f6faa91767756bde3d36114
BLAKE2b-256 6becbb17ea9eaa55787f49a123f705257ca90ffaaa05800c32e09eb59fcfa7e2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.18-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 28b9841ede3a64ad6d43cb9b83f1516b1d1707631f9ecb03865338cfbf782143
MD5 fc590ac40a4f968e8c1475f92d9079f2
BLAKE2b-256 4f77573316e6fa570f1864440b185945e59a186dcf770422137e793f01f11bb9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.18-cp314-cp314-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 65fe52231e07283ab6a4fbf2eda555d6d323f10168175b1de4d2c426cf26a3a1
MD5 ef176dc1b8445f462deda24e79d8964b
BLAKE2b-256 b463437451c1a040181f1f9dff7bee0123cf5030d462add99a1333eaf740a124

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.18-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 882c366b2ea1b677093aedfd03cb46c3a67d2c2ce54726bbc2eaae535c5c6f3f
MD5 d1ea61a8456bfb0e36e379d18d4d418a
BLAKE2b-256 d6b5007aa1d7928e29a474d87da138b345585d079ae5469cc5d2c0621557d5d4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.18-cp314-cp314-manylinux_2_41_x86_64.whl
Algorithm Hash digest
SHA256 ae409e2fd13dccdbd9f3bf66e9eab58cc23dfa4d1be0ff3d9ed4b9168608b2df
MD5 a48ba0f2a9a1adc3b22756910e86cbd3
BLAKE2b-256 295210cee73b9b7208c14b74f408cc3b559ee008553a5c2da5182e4283b5b7bc

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.18-cp314-cp314-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 642c5227e138e25845fc1cd29f4a8ea50e6fafa5239f39971e9581bcf80316c0
MD5 e840c451690b564ebc2d29d176c311b5
BLAKE2b-256 5ffb9a667e50c5d2244a06e78fe96899aef46b076ba68a01f2fdb72f03fc4d9c

See more details on using hashes here.

Provenance

The following attestation bundles were made for dbus_fast-5.0.18-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.18-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.18-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 1b6603329c1e2b3129692cf6d3f5d49f5f469ac83cee839e87bc25e079f01f51
MD5 73c53be57831c5ded267d62325ec1931
BLAKE2b-256 a0a9dbfedd7c3a90394793919427378dd05b4d83f4778ad015124c068995eca5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.18-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 32c521089cc82bb6c1bc1e6b9f5200344a4b73194fca6067d1f23e59ff0d6e0b
MD5 534aa0aa104ec2dc43be1b211a2ea5d6
BLAKE2b-256 75ace1616dde5cc07e95d457ca81000cbbde899c0da54421721ab017205cb225

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.18-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 0c6cf86bde5fea013c4642745e81c51d02696949d1c12e33f9882421b7472c5d
MD5 c3844a80c851d43a63b3613af9e87bda
BLAKE2b-256 3df6ecab1d64c8a06310f45a58e08f009e7e0c460e8681faf52703c10c1c7007

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.18-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 cd1512471df995b48878fd9a178c092bdb35d2a5e1b68a175b2a3880eff56fbc
MD5 e50e1c3833aac833e0997161eb1e34c1
BLAKE2b-256 a9475ddb161a129cb462fa68f2cd258c0c7aa11a67eb99ab9b6f2a6215381ead

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.18-cp313-cp313-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 1e30669a686bccf43f53edaf5725ebd1ede85e834c8d700b90ba5a3f67418859
MD5 597ccce558586c865c4c1408857cf61d
BLAKE2b-256 b7362028ab21fde5cad1a169bf367ef41372f9ba1f1e55cbf6319b36027052cc

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.18-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 6f44da61f3553af77c7f9890790a67cc56fee22eb18b82e336d49e475ca73186
MD5 d7f4140f601beb74d96da776dfeb3a4e
BLAKE2b-256 2af34ca696e05d4c7c1d3b77ad6e6ee61e48fcd244612b77136ac332f763dcd1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.18-cp313-cp313-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 4542e62fac1f72c02ef4c6b9c0ff2c164ed607bdc8ef49cb6560203f0da74eed
MD5 dd9447e99229597f61eacd72c99b2fe4
BLAKE2b-256 6cd39dc716eae99bae1460d6921ba8a3abd52b100088fb26ce13cf5802fc744a

See more details on using hashes here.

Provenance

The following attestation bundles were made for dbus_fast-5.0.18-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.18-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.18-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 2ec2de8c4be3314f88292ca5aa78d2d06781bc8e53a0245a2a9e562d3f4df4de
MD5 481e8279988fe0ccffbb461724c3083e
BLAKE2b-256 4b56784f5491d75c1bcacc390448395e8ad90477310effbe0c7098cc66712d1a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.18-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 792d5bf31f9ac5d2214d60675442d4887572b56fed12419c36a97b8ae492f2d6
MD5 4a1b2077b6337ed2f0f4c90716d2f5df
BLAKE2b-256 81cf3b9c9f5d1aa8704e00db2928a8d0facf5ce8f08cb1b372c460b3cb7e08b4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.18-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 71e5052c280865317d02bca81c3f2442013e3ecb645dd2f68d831fe4baf52330
MD5 003e45a721f59b0fed4df552cb02ddab
BLAKE2b-256 51587e57f13edbdd32a4729820a1a39ba9d850674e4599c1cecfe8156b5f58f6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.18-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 340dbf9e044c588fd5558aa4098e1520af6eb786b325db658081b521ec932ac5
MD5 86ee1853143c27606f31a3ffea4ff8e5
BLAKE2b-256 6054c49b30bda645b475bf794af4e176ef558a2018b7549d6b0387a3de10e656

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.18-cp312-cp312-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 ecb0f98dc823c803a4e8b4dc867a12e6aeadf15821923c2897a5285aa5c8d636
MD5 a6ff09cc707275fe10c35b562b4e7e77
BLAKE2b-256 3b79a85416f5d3549ae9c955cf92f2b51bfc5843b954f6bca43d4240332a592b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.18-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 775787959652e1b5c82bf0b0dcf2f5e5677180aeb7db7b759209bc9e94bba203
MD5 2c892d12789b33d04287f7fcf40754db
BLAKE2b-256 b8821ef40af15a78c726ed2ad7d366fa00be5bdf77e4b0abe565a5121ee696e1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.18-cp312-cp312-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 a3d5fb750022b62eac2fd93a195d1bfa9efb9aea987cc70db4047e811ec1beb1
MD5 2a9cbe142f7565e5860372cda39ea952
BLAKE2b-256 64635811baefb150eb7e3a83b192f23c22a342b63fb9a68da587a564a347ff72

See more details on using hashes here.

Provenance

The following attestation bundles were made for dbus_fast-5.0.18-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.18-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.18-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 10ac5028027430bf594acbafc4a60b7b64c0dcb16760ee9e00f0ba63cec59257
MD5 9de3024d7fbecd7f324db6a8a317e6d1
BLAKE2b-256 a86f1e2448f22ea641582714fe9385d9b1e29eac2045e4b7fc906789f42dfb47

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.18-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 4380c788b22b9bca4b01b576801332b9eb95f023a3cac91186e3236977248bc6
MD5 4326ba6c45ea1b5a2afbd8b958579cd9
BLAKE2b-256 e957f653f678e338ed2cb33c1e8835ba644c3fb8c9eb0dcf55325c21d23ceebe

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.18-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 767408bc4fdd045e985f88bdd9275014f115da84add9c94e9535a95cd292dfbd
MD5 c10209075340bfad4a2e19451190116e
BLAKE2b-256 1d8cd248f25c5171dcd7bb179cb5de8c124119998f1ca970c6b24ea53ba41fd7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.18-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 32332d6a9e0ad45ccc7429054b65bc8ffcb5f6e4bd095ef57cf51df591271342
MD5 3bbb13bcda47de103765413129c94111
BLAKE2b-256 9f1a9dacbecff0f35e21cb7d8f118b17a827d71aa89d8df3bf17e7f1130e4024

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.18-cp311-cp311-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 4167c258e477d51950b5b555c642fdf08b7244194d8cbe289e629f994ef7e2e9
MD5 7e4e6f8a6dd086d21aae96c4f38889f6
BLAKE2b-256 2b95917f266b6ac5a6f1f21d3aacb581e998bbd0c7ad5ad6eec75de078373d62

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.18-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 4884384248bffaa459fdcafd13fa77f0646be69329b7381cda8daf87998dfc05
MD5 cda301438ab03ac2bda9b6a3ac29fd87
BLAKE2b-256 6a099482d1a47f1c0cc349e04e3cef5d5393a32eb7d5d573d0e1f846d87bfbfe

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.18-cp311-cp311-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 d401de9e9890899fed57fccf6a96144bb7726344fc5fe4de8317e894e6f7941c
MD5 7a9d77786f65c0f6bc5565076b45bce3
BLAKE2b-256 a8d1f4c9bf13e0bbe0e1ed9d0777ac3650af02490cbbbb27c30b568db5811deb

See more details on using hashes here.

Provenance

The following attestation bundles were made for dbus_fast-5.0.18-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.18-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.18-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 50d33ff2a674fde90d7ca37a2a811fe54905d22dc9eb0aa1d825b833f7389bad
MD5 dca168cc1b7c49beda0b38bc475bfbc9
BLAKE2b-256 b6c30e3069fbf703ea2b47a5cd24716e7e64d8ccdec46cc37fb9d11b59ead521

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.18-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 9a2f034518fc264023475d31081cfb907ccb77459cae3bbede616cd905d8dfb6
MD5 593a6159b9fa757430c971c4d431e931
BLAKE2b-256 c257d4f886714acc5d872c1360efe326297316142b274c3a7cf2aaac32b5d15a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.18-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 c7e52b26dfd3762136d93edec62b23242d3ceaf24a6853f747e3b12274e1e8a9
MD5 eda19fa0d7ec514ddb33e0a29bac5bf6
BLAKE2b-256 ec1fa8c0b87bd4f3c9e200e4bb8343dc75e4dab4e35f3d6ca19617987b332492

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.18-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 51ba1cf5018eaa22080015628301a363757f7180833fb3d045d46456cce31e2c
MD5 ec978b9ea47990972227c7913ae24c2f
BLAKE2b-256 2f7f3e98b92346bd8255bd07a7a62c74b5f4b5715fcc72d13b93eb65e242df58

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.18-cp310-cp310-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 1087a3390309e3127a1de0162da93f78e115aca3bee656ada0ecf11404bfe116
MD5 12c797ca85e830f3d97375bfff208a42
BLAKE2b-256 3aadf446c79d2b65759dfd00b2644aa2c425830c9ae39fb2c553512962d06316

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.18-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 e3298ae16176651bee1319f86b61ea841807e6b58cbdff5a84afa1d6c89a774b
MD5 f0035866f6c8b897935ab4341b01429d
BLAKE2b-256 766db6b8ec1ccdd40df85c0a3c4cc68851db3b834cbdc4d7c0800dfb01c9dc67

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.18-cp310-cp310-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 057a4fefedece5390138928d9a9bd0606abed7bae5bdc947d42ab38e5bd931f8
MD5 5e580e76c926c303dcc0c9c5a5711134
BLAKE2b-256 2db25bee5ea0e29467dd9076fe1e89f5403e383f097fc8a67d464488765d6156

See more details on using hashes here.

Provenance

The following attestation bundles were made for dbus_fast-5.0.18-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.18-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.18-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 52274f297c59ec923160475f04eed9e7e543106f83ae841bdbf91ca87edff1cf
MD5 cfb00507216400487c0d0e5696b101bf
BLAKE2b-256 f4d3ea54fba8df25ad3bac074aa8777e04bfd1debdfa5e523fcd0e20c87dae19

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.18-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 7711ff6d197e47119cfb636751ac56252d92f891dc85a2cda16173800ef788ea
MD5 e489ca1515f84cc5914eb00c790c38d9
BLAKE2b-256 bba4e47eb5a356bbfac5b2736fcf6b5a1d827fc959ccd51651b8998c75dfdae9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.18-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 0fb5ee8638ba49150d45780f4027b50229315f9bb77880f3ea9708db4f5cf4ed
MD5 be2e32509522940a36fa23715f122572
BLAKE2b-256 e524f720d77822db8482607915216f7a51a7f52931fce3dd80b36f01ea75ad34

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.18-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 578b0be3b13ed166bc8f4f036e884fa1b09e950a1e7054cdedd4f072690b877b
MD5 7cfe5fe268da1622a0c7d7caedab2aed
BLAKE2b-256 9248d5924f8109d8890b01fa33eef8af928729c5247db29b342e0fdc005246b7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.18-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 5c9d6eff3b8f6fdd8304ec39ae7296ad26013a361b4775388980dc5239b15a3a
MD5 f39d822788b8dc89e1e441089f82516b
BLAKE2b-256 d454d88ad31df723079e7a281c1f453bdc773d1e8c440c735b5b587a1b502f27

See more details on using hashes here.

Provenance

The following attestation bundles were made for dbus_fast-5.0.18-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.18-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.18-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 13f90845f36dc216bc0b6053d586d4d20179f29cc29c00aeeffdb39b004d7a21
MD5 fa46f1cc156895dd439496b111b797ed
BLAKE2b-256 edeade39da00220ccd7fd2ddb1d8a3047fdf6ea00dde6fb64a887393031dc4eb

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.18-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 428e161d77afee708767c81900701e94ae21e8bcdbaa07552706f2b74e67b7d9
MD5 019bae83452ae9cdf53ec56659a9d5ae
BLAKE2b-256 39ecce9f035b013d7d3222752ab164de1ebae8debccaa043f822cd173a3466f3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.18-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 57577c92eaaa0fd933d1324d983a4c863499ddf707810718619614bfb5cb0f03
MD5 048591f3ed487d9f38a2a0f62c9f0495
BLAKE2b-256 179ea0d08a09b198adbf4d00023d7f95d9d29554ff9c6c7489f1dd1f200e2bd8

See more details on using hashes here.

Provenance

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