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

Uploaded CPython 3.14tmusllinux: musl 1.2+ riscv64

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

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.14tmacOS 11.0+ ARM64

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

Uploaded CPython 3.14musllinux: musl 1.2+ riscv64

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

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.14macOS 11.0+ ARM64

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

Uploaded CPython 3.13musllinux: musl 1.2+ riscv64

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

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.13macOS 11.0+ ARM64

dbus_fast-5.0.22-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.22-cp312-cp312-musllinux_1_2_riscv64.whl (830.9 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ riscv64

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

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

dbus_fast-5.0.22-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.22-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.22-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.22-cp312-cp312-macosx_11_0_arm64.whl (690.2 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

dbus_fast-5.0.22-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.22-cp311-cp311-musllinux_1_2_riscv64.whl (882.3 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ riscv64

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

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.11macOS 11.0+ ARM64

dbus_fast-5.0.22-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.22-cp310-cp310-musllinux_1_2_riscv64.whl (882.8 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ riscv64

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

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.10macOS 11.0+ ARM64

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

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

dbus_fast-5.0.22-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.22-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.22-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.22.tar.gz.

File metadata

  • Download URL: dbus_fast-5.0.22.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.22.tar.gz
Algorithm Hash digest
SHA256 34dc67d7d21a12399828dd13e63b352750580beea54ea7c729e708f2d2905fef
MD5 fbd91b6fd272b75a26be4fb734c8be09
BLAKE2b-256 aadbb621610e50b1bc46ff63534d75239553c1bf33256de6096b58214fd9808a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.22-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 7be4271e38251f1ad726962dec60da887c8ed352d157352e4fc27f56aece5c5d
MD5 e43a5432d0af7f5982a9b0e95b854953
BLAKE2b-256 b88f77135ab8d690030cdb0ebeca879640b5945c4cbf5344ecbc507b4628da24

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.22-cp314-cp314t-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 92df9fb6d8adeb17b534621c2ee730295bbe1d0c2584d5c82b1db478e3f04e8f
MD5 4bbf087836530ad88d9fd3efaabee416
BLAKE2b-256 372b6e405ba92e87d78a689a387809d975f97f8c8748b98efccfacd2b4e1d9f5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.22-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 048f34299fbe82d7b87c56f47e8bd83f62339a4517685abc6671d603a55d2c89
MD5 d27d6b652913c3ba8fffcf0f08ef0cb9
BLAKE2b-256 40e4a3bb52185b8a8c76bd8aaba3ff4fa8395eea19fbc142122b43dc377b275c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.22-cp314-cp314t-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 de4d235d1282ebb3ab65b6cddab84e914c045d92ceb381ddcbdbaf66bf1fb132
MD5 f1a25b95ee3b4ebf013997a23a76e435
BLAKE2b-256 f394ea0db4c1aa6409cb16551b50aa8573e72f64407ca5281b042919ef81ca1c

See more details on using hashes here.

Provenance

The following attestation bundles were made for dbus_fast-5.0.22-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.22-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.22-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 3eb57d592d84b0bb90e0c077db7ecb61562f49cc9b86a3ef08cbe17243e9cc4f
MD5 b0e094fe5ee05fb295767023d564a8c3
BLAKE2b-256 24b7c00d01699dc87ffc35f143226d3b296372840e2e2bc15101d35df7c74949

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.22-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 04bac97d0cb754a4d13037d0132517f1df28192d6e0568a0bf6df06623062285
MD5 2d8bac87176a19eaafdfd6a4ce7a1636
BLAKE2b-256 26695b54654f598ef98e8f94fd5a40929668b1f8fcd76e7fb50de0db73d329da

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.22-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 69a077c296eaab8c30160e861b5514c33d99d67d41d17dbf02e89aae44543b11
MD5 5e502b1b5ea30909010d40d7f00d5b17
BLAKE2b-256 7cdd61086156a1c2d8ffd04d61a232debbaff8ca9fc1cf598476999e1f06164d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.22-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 595bd3ccfd8318cbafff79f33a15709fee3728724fd61d5fa220080d73b574cb
MD5 6f374056f0a09e627005579735ecc2a0
BLAKE2b-256 b01fe5f0dd28d07c4b3f7bafd3357bfa424c8dace355a3dad921fec05db4634b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.22-cp314-cp314-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 96d231d128c1f46f263790335897195dde9dac2f38571782db8ae1d8647bd548
MD5 36735a5d66dad74d8858bf79c74c010e
BLAKE2b-256 36e2de8b764fdb947314fb8c2e079b556510194fd100983776845e234a107cc9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.22-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 856f0543c593f3480e93e67bcd1aa4ddc1d94a6076cfd3ad4e0f5e2b01b33dc3
MD5 ae941f7f2b2c7b2033a646fe8f27516a
BLAKE2b-256 a6a1031cc4a89d947f1fe110f663f93dcce9230213b7accaf719790d813def04

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.22-cp314-cp314-manylinux_2_41_x86_64.whl
Algorithm Hash digest
SHA256 eb31c5ff339a7071b914617a69d5b7c6ba7d411da4b01a5f9b5b2fe51e9d1301
MD5 2552d3efc15d454b5be9148d50ba9176
BLAKE2b-256 b0fd89d7c34152900d986b9c78e39cc62aa73eefc22b57b3a8c946d945a85540

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.22-cp314-cp314-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 959fab6420897ab99410e67d6f9f9a7f6f4cedb6014700768f5e2d71dbff5dc6
MD5 bd9b5c8ef18daf9d52635cf0385731b4
BLAKE2b-256 56331709ebc16a4d353ddc4fcd29252e2b9d93bded6422a45fd6df170e0911c1

See more details on using hashes here.

Provenance

The following attestation bundles were made for dbus_fast-5.0.22-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.22-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.22-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 eb1d7e8e65561d0fd438004fd9e0f981c8a862912fed58dd4e29db1936c39d73
MD5 a68ecf57379b2b4d9a18595fbe9c8b67
BLAKE2b-256 f5cffd327dbb40ee67a9331fb587bf78aff2ab1500b35979978a5cacb10d7f8c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.22-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 703e0f8f9af52e8e053394ee2b578042be0c3d8ea2b1488f9db8cb14393cc13f
MD5 a66f4a66f3e7b3498015961e658673a5
BLAKE2b-256 b38c4eefaabdf538882528164060ae83d9a34f1172b019c32c3254436834e9b1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.22-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 511655d915692f55b8c5f5a535acf80cca9c6d1a35384db7fcfdabaae05dd837
MD5 fbbac7550b54c86636db7452393703c8
BLAKE2b-256 2bb6171f8e92775254e2f42afe9e7501a57ace47f32de2969cb694a375dc9dce

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.22-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 279d212e9fb262d595af2e4b5b9e951bc00c73a5c8eeb50f158caa13705b9c84
MD5 4107226beb06fc03088f1271a161556a
BLAKE2b-256 ea1d830b1569264780210d44898e5b0d95cffe2830b952c2ee21ea481274cd81

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.22-cp313-cp313-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 83940ea00d7ee2f0c5bcb5d19d7d05e7949e52d467616a0b735d72e7285402ec
MD5 506cc964082d9e8c499bfb481761473b
BLAKE2b-256 9ec6458728eb1caa26171e6a8ae1d0d99bd29aaeac67ad7824bbd95d7f854a41

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.22-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 b67a02037eb58bcf9e445df60ea0d9d7346fd334abde3aa62e03c75823b53979
MD5 1109c028316c72dacb0967f0a6b70d1c
BLAKE2b-256 a778ca6881442b8fa29edbe6d99bec4b535b0b2e2f423075d015ff5b719c4e2c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.22-cp313-cp313-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 fb73f1d8374253b7c17d69e902cf2ded1bfb089cb6ae67c10b4e0bdfe1b8fe08
MD5 8533260d008c1a204d0e786a23256f0c
BLAKE2b-256 d85c9045c3595ddcd4069e6b5d051df06bf11a2b022592f721c9acea1e0e4d22

See more details on using hashes here.

Provenance

The following attestation bundles were made for dbus_fast-5.0.22-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.22-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.22-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 979761985fe343c701f2b7575285d6e370123f7231d4656209ef7824bb686bbb
MD5 9ea43844e9f00c2ac01e2a425479bd67
BLAKE2b-256 6a346b272e6df60be1aa4d575aa30220175a52c002a649c951d9950bfa3a72d6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.22-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 de10ff3b3cb2acb1c09fe17158a470519000d37bb5ee5fd69c4075e81ce8dcf5
MD5 b7709e3a69698738582d25c40102d3f4
BLAKE2b-256 765afa81a6685c763ea488ad93228cb6e036adc9af6a560f4c31643691f4cfd8

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.22-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 26e26b409e1e6edf5e2a4df8d192625fb38876b074fb5c7d0a5b15c5792e549d
MD5 4d6b71920d1dca045c6bfed04500f939
BLAKE2b-256 251debd02ae707328286c24582ac9189e4ed9c344399bc3b6a4b74e9687088eb

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.22-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 7d1c42963235cfc015a2d2b8c5fe42b65387493b4ad4ce0ec122601c805e6742
MD5 604f9a6afb33b150129354406e963a20
BLAKE2b-256 be2bda036e9f4aeb776833139575fe0774544aa6cd13ba997eea7fbc4ab99852

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.22-cp312-cp312-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 855f15b7f7805171da2b82de1c317d01cfbb9fb8ac61fcc1e8dec54d8c69fab7
MD5 4aded3f05f2c9524d360ced1363edc68
BLAKE2b-256 f42557fe6ab509ad9da2e190498fa9c37f868e38ac521d940a9edb9ba6b6c657

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.22-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 b013437b66dc22b8d9aca5e0b0d46bf1980208a143409469fe482d9684a2a717
MD5 6786cbad1b33a4c44dce3e0b33e5215a
BLAKE2b-256 06ca964f0d39a3be03b12a98f39519d34ad95b74360c7e3adf4cd4907dc25fd6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.22-cp312-cp312-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 98de6d2c200d8182e1fd0bdde3206fa556b8fa14ebb752a044cd8daa87b4658c
MD5 9b56fb9e4cf0b23de3cd00603770d74e
BLAKE2b-256 ae0456769d0936d1273d1801ef574ec426ccb3f61f4b0a7a0eeb9eb2b8ccafa5

See more details on using hashes here.

Provenance

The following attestation bundles were made for dbus_fast-5.0.22-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.22-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.22-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 4ffcf16034f71a801bd2108aeffb6337d104c9459e8b1a218d16a917c8a2d2e9
MD5 851dae74a72722fc924130d42b761941
BLAKE2b-256 68e977bc23a6f5aebfb8f2c34489795e8517aed7eca31738438e1a4c4a4891d3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.22-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 8f0bcad7f71d2304a68a5b0bc0d24c3fcc14710a2ffcf5f2a27521e3aece71ca
MD5 ca68604be0de34012a2065524b24dce6
BLAKE2b-256 2406233b0bc13919474f70320bf389cb81ce02811956d6cf86c45e84679b63c3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.22-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 f72b77be63f7bb24cf42936ad10994d40f43fed691f857f7854b5882d6a5227c
MD5 a8a05b674169607fbdd1101783077878
BLAKE2b-256 5281ffc155f700c45191673e7f7620a28cbbbf5f116ff74a99f765895baa6f9c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.22-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 b7d90a52be79acbaef257f3a81d5b9b9dec40f1bad29429ac5c7802684fb9b84
MD5 80db1488fd4ff8b50ef390a4915ac495
BLAKE2b-256 d9a078800a172f4ca32e19a70a36e175f54831f33a497c9644f3a3fa4dce01ea

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.22-cp311-cp311-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 6c4dae5292a7924ec062815c34b49043d8386cd22e165f9fb4012de00997cdf1
MD5 a857d889992f91a026746f7c05bd9e13
BLAKE2b-256 4c32a981ef2305f1bf41e538e02fa0cd69614f9043fd00ca965bf3044416c79b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.22-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 9a5b05fd4973862042e5bee2c5e8c5a15297e0b33a975bf25b44becf7bcb3618
MD5 f8b9bf34e2db5d45df97deb5cb64d1ef
BLAKE2b-256 04f17c1aa53f25252a2317f21ad6e8eaa125246d2585ea4611f3f10a6feaeeb1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.22-cp311-cp311-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 3a699fca957acc845ddb12b47f741dba23ce147fdb93583e0c7e7bad3e9b2355
MD5 ab0735a8cf0702bf72aab150063354c5
BLAKE2b-256 17cf336c08f88fdd813a39fc1603a10a15aec67115e08a895e7c9840df54d4d7

See more details on using hashes here.

Provenance

The following attestation bundles were made for dbus_fast-5.0.22-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.22-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.22-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 886b43446b6fdc3986befbbb88db1365b14e49dd0a7edf84c2c67ac66c7160a4
MD5 8965aba064938e6fc6a2b591b7f3b647
BLAKE2b-256 70c2be41bcc678e97092d44ba22d09ce687f76c955b3367a7e6863377b1cfea5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.22-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 846f9a6602b4383f989201f7851459fb225a8912cd24b38e63894748545c3040
MD5 e74393d212adf52d77a1deb1d3530816
BLAKE2b-256 ec84dfb014de75a3a854dccaae1cce8f840e4312e3efc781768eedd60d25d9ef

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.22-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 f0926e4cf49989b4ec8233e8fd462eb35a640fcfe81bb75d91675dd47489022b
MD5 9d66cede5d0c8a9fc92aedaca292cfea
BLAKE2b-256 ab1df6020228675338b7184ce5491e4535fb64c7badc0197151b9776f345a1a1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.22-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 d8ca39f3f2ab34f88bb343db87c7cf8b07eefa046b23d8c38b3387f150ac609e
MD5 8dff897e23647ec045865e590a770bce
BLAKE2b-256 aae7e068899c1d9a034ed9d5fc8519b8e2247aa8c28a6a67229162db64163b59

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.22-cp310-cp310-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 58e4d41f9fea22cfd6dacdf03d53b932bbe15a825af5abad3ca79b91493a15c3
MD5 4b149d28d9a7c53b9bbce316293706c4
BLAKE2b-256 c4cca5322fbc172ee099f98186224cf7e3bf48fc8bcb08270951da8006b556ba

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.22-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 246780dcda59d26dd2fb1d9a15991bc8483e9c241cee8713920a39a363ad4d39
MD5 91a60954a78cb540fbb190d69d257ee7
BLAKE2b-256 e9794958c807e59106558a4415212e6be019775f5be9775ffc79c6bc7248b388

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.22-cp310-cp310-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 f74700b1b4fd58acb76f8790e2cd475084d0e59149e0cc035abd239435a339b7
MD5 7810e54bfeaefa328416f7c86a262dcf
BLAKE2b-256 34ed02458af54460e55cf26fdf0a778aa9b3217ac8d37e6280aa68e19f176650

See more details on using hashes here.

Provenance

The following attestation bundles were made for dbus_fast-5.0.22-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.22-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.22-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 c32869678240f233ece5a1137960c0337699dbb39acc02c155929f52543f03fb
MD5 a3139d0e31863cae04d8bec0298e94ec
BLAKE2b-256 1bd108ed17331dd23a8b91b80db9acca48301c4879352024dc7882e2c5893fa2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.22-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 f8244561e503cffcd5e6b1ff6544a44aa0b65b6856f2f64d04345ebf82f8ac48
MD5 f4717fd4cd5480960a487569c91af06b
BLAKE2b-256 4b699235af850e2ee0cec23b4e863612492964a9c40b65f3002e4a9f32e1ffa2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.22-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 027b358d55164f722d7432d6734506751c89b5cee8d516e7282eff3eaa763f05
MD5 a8ceb3d7514f3b5c1cb0f77e7e3e1d17
BLAKE2b-256 e55cfa3b060e06e0322ddd5c21a4f63e6c3e59a427a92db1553b930816d40e97

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.22-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 7f2af2fc27f3f188387befad5901953863fc8fa6451202083c2b9ec9f970028f
MD5 3ea7219f7894652a83e05e3e7c990c73
BLAKE2b-256 b2ec8acf1b9481d2dfd2a7b2ba3f58d66dc27ec81ae25c122e46615eef620311

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.22-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 a160cb931f22c43ddc8efe6ff33f03d3111442b9c0007ba58269a717296d8536
MD5 afa8ef2f44bb8f81fdd15d27ea9fbf01
BLAKE2b-256 7c60fa851562c367a6bd9dcedbc58b687426e3252b75e58b0b4aeabe5b3d1f44

See more details on using hashes here.

Provenance

The following attestation bundles were made for dbus_fast-5.0.22-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.22-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.22-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 7af3e81287163dbae29d583a19fdab717a896bb097946adde415439b0ee322fb
MD5 205777199dd46379671ae26f53e3e6bc
BLAKE2b-256 a7cf1e28ac0fd0a50975e7b254a3e276e49e4dc9b869fa785fa55a1571ed21a0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.22-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 a127ff97079fd052d2b5dd752abc3fc5678b0d15ce9d04be1796bcc7f90b8b03
MD5 fdc740d2effae2aa97b130b8d4933927
BLAKE2b-256 c025500bb84255d719d3593b9ed0e2b6a05279495dba526ce04993b21a236de1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.22-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 b3db6388b80ca167299f2eb8eb60e74f07c6e33a1bc4320c42bd9e5ab192c587
MD5 052dd80b7e700268acc760b5636bc587
BLAKE2b-256 4c0de95fce4b3aacfacaae89aa29c9695c7acb4a694d0c930ac5e45ee7ac6d84

See more details on using hashes here.

Provenance

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