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

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.8.tar.gz (81.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.8-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.8-cp314-cp314t-musllinux_1_2_riscv64.whl (819.4 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ riscv64

dbus_fast-5.0.8-cp314-cp314t-musllinux_1_2_aarch64.whl (1.4 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

dbus_fast-5.0.8-cp314-cp314t-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl (818.3 kB view details)

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

dbus_fast-5.0.8-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.8-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.8-cp314-cp314t-macosx_11_0_arm64.whl (1.3 MB view details)

Uploaded CPython 3.14tmacOS 11.0+ ARM64

dbus_fast-5.0.8-cp314-cp314-musllinux_1_2_x86_64.whl (855.5 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

dbus_fast-5.0.8-cp314-cp314-musllinux_1_2_riscv64.whl (828.2 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ riscv64

dbus_fast-5.0.8-cp314-cp314-musllinux_1_2_aarch64.whl (813.8 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

dbus_fast-5.0.8-cp314-cp314-manylinux_2_41_x86_64.whl (847.2 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.41+ x86-64

dbus_fast-5.0.8-cp314-cp314-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl (828.5 kB view details)

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

dbus_fast-5.0.8-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (849.0 kB view details)

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

dbus_fast-5.0.8-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (806.3 kB view details)

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

dbus_fast-5.0.8-cp314-cp314-macosx_11_0_arm64.whl (688.4 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

dbus_fast-5.0.8-cp313-cp313-musllinux_1_2_x86_64.whl (852.0 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

dbus_fast-5.0.8-cp313-cp313-musllinux_1_2_riscv64.whl (824.3 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ riscv64

dbus_fast-5.0.8-cp313-cp313-musllinux_1_2_aarch64.whl (802.5 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

dbus_fast-5.0.8-cp313-cp313-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl (824.0 kB view details)

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

dbus_fast-5.0.8-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (844.1 kB view details)

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

dbus_fast-5.0.8-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (794.0 kB view details)

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

dbus_fast-5.0.8-cp313-cp313-macosx_11_0_arm64.whl (680.4 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

dbus_fast-5.0.8-cp312-cp312-musllinux_1_2_x86_64.whl (856.3 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

dbus_fast-5.0.8-cp312-cp312-musllinux_1_2_riscv64.whl (826.7 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ riscv64

dbus_fast-5.0.8-cp312-cp312-musllinux_1_2_aarch64.whl (802.6 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

dbus_fast-5.0.8-cp312-cp312-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl (829.3 kB view details)

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

dbus_fast-5.0.8-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (848.3 kB view details)

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

dbus_fast-5.0.8-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (794.9 kB view details)

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

dbus_fast-5.0.8-cp312-cp312-macosx_11_0_arm64.whl (684.7 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

dbus_fast-5.0.8-cp311-cp311-musllinux_1_2_x86_64.whl (883.0 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

dbus_fast-5.0.8-cp311-cp311-musllinux_1_2_riscv64.whl (876.9 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ riscv64

dbus_fast-5.0.8-cp311-cp311-musllinux_1_2_aarch64.whl (840.4 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

dbus_fast-5.0.8-cp311-cp311-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl (880.0 kB view details)

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

dbus_fast-5.0.8-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (876.3 kB view details)

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

dbus_fast-5.0.8-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (832.8 kB view details)

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

dbus_fast-5.0.8-cp311-cp311-macosx_11_0_arm64.whl (687.6 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

dbus_fast-5.0.8-cp310-cp310-musllinux_1_2_x86_64.whl (884.0 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

dbus_fast-5.0.8-cp310-cp310-musllinux_1_2_riscv64.whl (878.0 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ riscv64

dbus_fast-5.0.8-cp310-cp310-musllinux_1_2_aarch64.whl (841.9 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

dbus_fast-5.0.8-cp310-cp310-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl (879.9 kB view details)

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

dbus_fast-5.0.8-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (877.1 kB view details)

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

dbus_fast-5.0.8-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (835.0 kB view details)

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

dbus_fast-5.0.8-cp310-cp310-macosx_11_0_arm64.whl (689.5 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

dbus_fast-5.0.8-cp39-cp39-musllinux_1_2_x86_64.whl (888.3 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ x86-64

dbus_fast-5.0.8-cp39-cp39-musllinux_1_2_aarch64.whl (844.9 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

dbus_fast-5.0.8-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (881.0 kB view details)

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

dbus_fast-5.0.8-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (837.8 kB view details)

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

dbus_fast-5.0.8-cp39-cp39-macosx_11_0_arm64.whl (693.5 kB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

File details

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

File metadata

  • Download URL: dbus_fast-5.0.8.tar.gz
  • Upload date:
  • Size: 81.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.8.tar.gz
Algorithm Hash digest
SHA256 e04de2ee30d92b1c146e073ae69ed71641dc82ce4d762e14b2379a864f12bb02
MD5 5bf181adb2d887d5e02335cfa93f8c3f
BLAKE2b-256 ea7c5da95fbf42d9084ecc2111628c204884899fc4a60aeec5abeabf0309707f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.8-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 80ab165c5af361743f7af4cc060d88d552c7a2038838053001fa10e525ba55f5
MD5 402b66dc5aae104e6a2951e7706683c2
BLAKE2b-256 ce71f9d4d31d322074a9932ba9ab6a4d999c523ff8cc90e85ea300ecdae5d867

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.8-cp314-cp314t-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 541abba616f35bcefdfdcc3b2b3f3d1148de6430f7982fb453cea914a2172ec5
MD5 47c8bf4d400f7cbbee1b2a0c0befd040
BLAKE2b-256 259c19ba536ea223459a329665c180555741fc09606930d1b74d1c802d947828

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.8-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 594d9fc7e019ae3482f3032882dfa926cc1f601f8cd73c88551ed0a0bf78d483
MD5 b8e8b9f285e7604a49a59b430acc2fed
BLAKE2b-256 caf534f9203859e1d1dda79930a4737b03939b5334b793f6979a8410f300df1b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.8-cp314-cp314t-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 deb7207791146fdee8ab0aa27ea535b91e8c950c74482bb81a0641a31b70ea4b
MD5 33cce2120efeecad7f6a72ecc9e07573
BLAKE2b-256 d207ba27dd993170b9b39eed90aabd3a011d8af5a33fbda61ea1d040d613b2bf

See more details on using hashes here.

Provenance

The following attestation bundles were made for dbus_fast-5.0.8-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.8-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.8-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 fe58d78f233c288b036bb25ffefd7bbe84ecc16728daa1f4650d52fc47599203
MD5 0657f089b95f888385e1b8379d81a6fb
BLAKE2b-256 737f18e66453fd1f7acfd8dd27d83bda9911a02c5ccb1e1a1e64f886c884ee71

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.8-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 64589304e882da1d513505885b64fa65530f91e1cd4a6ec67ae83ea1634f4ce4
MD5 a5735ad38809061f40660782fcfd50c0
BLAKE2b-256 1905b7265366f1a3702fc52e2277b5ea13a6082b0454b7db0757e98ec9866cee

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.8-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 d86ae379d5941e39a0a5cd3f0a538dc29b190778e40451cc718fd9c7fda07273
MD5 69c2d2bc72db530e8d41a041c5756652
BLAKE2b-256 c918ec1526856af5e91e5555bb646da3ab624a5e00e432c9b7eb2c1256809cc2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.8-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 65baa7a5b4453aa57d0f3e6a9bd281e1c34e05645aa4fb0cb2bdf0240b9deea3
MD5 79497c5a0516e9043e0a548f1bf2ecc3
BLAKE2b-256 82884e618d3e073a0b9ae87d646645afdaaea62721f545b1f7f87ce4beebb014

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.8-cp314-cp314-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 5f12979a8b53b2909eb99fedcbb972c00e8108895379a86b529424cecbd1a6f4
MD5 c0e26813e0fe76653ddf4f3dd3d8c0e1
BLAKE2b-256 870468468548104bce2db4f2ebd41257b674e8dd3f5a9b5a816f6be7a5474995

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.8-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 cafb8aee3bb5a6f13606efd0f914c682dfab74b4ecba535ce1ea4b67c8c2a8d6
MD5 f82242fe6ba47a531fca2a57c85b7a27
BLAKE2b-256 1852b5856db17a04f32547cad914efc4b73c34c91e8cb1e788a06608603fb3d0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.8-cp314-cp314-manylinux_2_41_x86_64.whl
Algorithm Hash digest
SHA256 711e837e1c2ed69b40c37e2b23b6fc44d2394d4b9e17631a57706b96c2163d23
MD5 88bead8c9f7813e7de7d337eaf0291bd
BLAKE2b-256 c9df93269f1f93a06c92d586f5fa97fb7437f6c64a9982965477361505946865

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.8-cp314-cp314-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 5858e545fad372472d9235bc2e74cf1058eaf1a2b61948f2c77e6303107bd7a1
MD5 49adf24ed32cd6a26faf5c89f4cc6974
BLAKE2b-256 0b192fb217e413b2c2aae7809c1d796eb17d47663edd4bc748ec64e91d81c384

See more details on using hashes here.

Provenance

The following attestation bundles were made for dbus_fast-5.0.8-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.8-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.8-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 6d0c0ca13d89bc6da0e024a8eb096c388452741795053c590f6c31557f650a35
MD5 a72d2384342e2f4235b3587f74bfc5f0
BLAKE2b-256 f69e5906178fee8acc6e2af9cb76cec38f62fa19dba37aebfb27403033fcb17f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.8-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 52f64bc1f8286204311a7d8d0f1ef078f16267a77fca2b138dd76dbfed48eed2
MD5 051865a4fe2f7946ac540eff2f77d88a
BLAKE2b-256 a13e8b966a21f501c437b77b46819276432b0c5a231fb0cd9e6c2931400be87f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.8-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 574997dc5990a456c1bcc590e9575fa9ad4039f15635d80b1b3d67a7f594e42a
MD5 d7f4cdee35c465f9d07e3961cc7790cf
BLAKE2b-256 f75c9db4f45df55bcdff34b0bd92a0b7833cb47e8482d0639c9572521ffe3492

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.8-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 25ea2172276f647073e37a3fa94a3890fd1eb6bec40a337b29287a6f46e03ce9
MD5 8bc4b9dd3d762b4acdbb95302183c658
BLAKE2b-256 01d424cc7dc76f8490848a147646e392db160cbe87dd8a8d3753e7e52964bacb

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.8-cp313-cp313-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 420548765575b0838d5135fdef8d14b24a69ad32276edd952e711e0a26430d1c
MD5 a2e8b4435bc6b430d4a7fdf46945d14b
BLAKE2b-256 2ce94d4ec29767598886023e44e1ab7fd3840c06c28e76efa215d795de475170

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.8-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 5343712b6a2d1e39f7ab499dd30ee4c4faf3689b17aa6ba028e8ae4e08bcd666
MD5 171a9233c415fe946d37436444e14bfd
BLAKE2b-256 de0ef7a48e8ec49cd7746e87809f33bea9775b0c0ee77a30aefdb8ba378f23b7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.8-cp313-cp313-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 9cfdababed55234777017080552233d5ec63d7a3a1cae7478185245ff465ae41
MD5 472ee102d6af7ec854ad40b4a12b3742
BLAKE2b-256 ff2334e1c5eac5020002b3d1e5c69857659e2f988ecfa7190c404ba7d8e6808b

See more details on using hashes here.

Provenance

The following attestation bundles were made for dbus_fast-5.0.8-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.8-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.8-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 ccdccebc00d9e4229d76e91830df05fd76ab180b4f54b7da7014df6ad54932ad
MD5 b7579dd608490179f4774c6dcc7d5ddd
BLAKE2b-256 fc1e0c7815457462137926097339dccb1f653de3d5d66b4d08b7753965e9fdc8

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.8-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 0e7ba2eeb1f98ff8dfa1f1a4348b8512e626d17b029301ef82e671a7087d1f24
MD5 84b10143556590a1fdefdf4bd964a661
BLAKE2b-256 9b60bdc1588a9114079489dc4aeaf9e9b2a47db2ff87bb1610cd62bdb93c0070

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.8-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 dff88f7d792b8bd7c12f9c50beec11fc8dfef63e0534874944c935f93e4bc5fb
MD5 53b58b8b5f26e096b02a524e19445206
BLAKE2b-256 4dd6b138a923c5e3bde1e1bcf4499ee8da006885b99018cd0e4cb90c9efd3e98

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.8-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 e3ccb4e09e7369541910255b12c77ef1656f642e5f9727c0b4165c25f58b5bd0
MD5 999fb39e22dd4cf289a92e71980c1ed6
BLAKE2b-256 15c03ba709d9409dc45b980043d879ac1f3bd1891b98b0a37b7a51f3cbb36654

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.8-cp312-cp312-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 79a9d577451bee5a042db9a3b94041f073ffd7c10bc3d882e8f5a444bc28c515
MD5 1ad57de373db52ae0e95c88fdd10926c
BLAKE2b-256 d757ee7fb8076f2f496ef09d636db24a37851b3acc6e30e53869820793b05f23

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.8-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 831952722fc3f4296aa41ac19f842cc7a93142513555e70482efd6e672cba5bf
MD5 47e035c60d8f7f6bb30e0fc8e9708be0
BLAKE2b-256 3d5f3b4e535b6881d2c544ec774273524a0704703b280954a03ca3e5c2a567c3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.8-cp312-cp312-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 03deabff480b9d6414db5020055885faac372472253d2b8db9b96bf2b781a924
MD5 4906c6626c1d238a076d1b457106da38
BLAKE2b-256 9f4652bfb589b8b5fe8f3810884b59d47e36ab80fd9af6361342c57e6ac1d75c

See more details on using hashes here.

Provenance

The following attestation bundles were made for dbus_fast-5.0.8-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.8-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.8-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 6e41aafb1c827f943608d97f3b966b9948d42e17a5bd9df9e9f26aafe37b21ce
MD5 6d6789cda45b3f89764f7d6601fe9cbc
BLAKE2b-256 06092a3543d6c707285e92b968ebf48d97761e706b421021c2749d797336a38e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.8-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 dda8d5a7c1df896b3576968847cdb9bb0cc8f0676d7a6d24fb3d0a597620de35
MD5 50d3070e8aa81501f6f9ad3186ddc746
BLAKE2b-256 bc5433a035d2943efe7d95aaf7bc11d5c3813810db7b0221500f96a1f9e645b7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.8-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 b7ee5aae8ee7905118c0cadfd18abdc5e7ed7ef4d8044fe2b4e14a7996f1ff70
MD5 8a26d8c6cf3dd53df50881d006440a31
BLAKE2b-256 6492711e97fc2d85d6e512d29795f0edf9457f9f446ee58879baee8031a119f2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.8-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 7a35110b3e9c60c245f10871f50194ee55e4ab40d33d6d9f50e69bf292ef4965
MD5 35f938f3ecb7ea62e4f789b8151ae04a
BLAKE2b-256 4c781971cccc6db0a4308c647c9a423c6d3e04308450a96fd45801738554fb0c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.8-cp311-cp311-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 5312bd61e8c39b6fd6c2fe47f0c451488a28b3c577cc3be25d9b0bde90a025be
MD5 d9f467af3833beea48d0c61c19a0dcd1
BLAKE2b-256 7969372140f4e4793c4e95af84576e78607193653b592433f489e3a3fdf72970

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.8-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 3cf33b4c9284a7c3ed6dfa453ef478e7f828e3c42f92c606c697ca5844119e08
MD5 4fae9d05de0346f254868286e75b32ac
BLAKE2b-256 7ec50b4ed5a86959c1ab521d254cf257571e1bd44f10273eaf7c6cc010d9d331

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.8-cp311-cp311-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 8b93d40118691438aea7d31c780161a38d8ddbd01b53e83a8a45e78219ba828e
MD5 378a02c89b2028c64e47886506c0f72b
BLAKE2b-256 177c02530642f614802f06a7d0f996370767755de45c7f6ff5c061492275cbca

See more details on using hashes here.

Provenance

The following attestation bundles were made for dbus_fast-5.0.8-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.8-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.8-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 3371ee671cd50b7dc200160120e64251b5f480a1acca196b8171290f4ff5d7bf
MD5 1f32d3a2b85a248a8d80df3cb924d0ed
BLAKE2b-256 4b124bf077242c5494d6d4792dc8f596afb42ae0ae330ad00b81e2fd39418acd

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.8-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 c3eb9fe2eee4544e4953d3f64344f40c6b925134504fad001a870c15de0ec47c
MD5 7f2bb26131d4453e62a028e8b2405cdb
BLAKE2b-256 4989959df8b0e8c5d57dff8e38475e2d96d0813708ea303de5b0c6b1832a63a0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.8-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 c57db7b9a7b0e5603cf6be70f8723598727dbaf6a692c85fca986447f66d2810
MD5 85b1fe7f13dbd8167d645e32fc59f0e1
BLAKE2b-256 d0776bec86146133439b20484e4c3ef64cfb33f403c6e907574c0e465fa6b945

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.8-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 3d8fd99656056c1291c53126f7be15043210dd4208312a512007d137cbdc63b0
MD5 124061c3c39c782a111f2895465800d6
BLAKE2b-256 8034067a32c47c8c1d6b2ddf46d02e93f7d0b05804f566d55996a27bdc2a0f7e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.8-cp310-cp310-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 e64de670d8c0cca6201417c2cbbe7cf75f1df3dc48742f26058606cd1f60f32c
MD5 8859fd7af49d5f28c8d74c3ebfd799d0
BLAKE2b-256 62664b561b2c5eed56a7945aa32a95e6c688ed9182d0f5518cb4f890efea7de3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.8-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 1e729d82548257d8d371ad9c632339d40cffdf31713bdd39fb7c4c08b1966405
MD5 58e9f26f8ec0a7d52b5dd0694b32a876
BLAKE2b-256 f766d95efffd71c380ac69fbc7f8d1c0240635dfbd167299ace316a58c9cad5b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.8-cp310-cp310-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 6aa684a2d1a87bc63bd182522dcd2326865e6aa584aef38c01615ad137b11b3d
MD5 7fcb07171be9b5d5775bec2c35fcf0c9
BLAKE2b-256 c4434fe83fd81a8d3926dd11f257686721398d75b0eb07d5eed88213e3835b12

See more details on using hashes here.

Provenance

The following attestation bundles were made for dbus_fast-5.0.8-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.8-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.8-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 99f919c3199664efc71c2f926e45f1568b5e888a5d9c01b8f0b48b9d22ffad85
MD5 45272e33b3aca940e83678fec8fc81ed
BLAKE2b-256 51cec89111e99f7a3389d1ffa53dad872a192a1088317d70c3e51f4908504ca4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.8-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 9ff61c05b5d6757ca96db37ed6e1f7c71623d812a01576a80f0aae0ab55feeba
MD5 41df92026de25d312f5d46fc2a2bcb82
BLAKE2b-256 87cde78efe8743962c41c5d9b0f091205c40b5bcf6231521a3473d2e48e1de23

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.8-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 95edc528fd0f7b09a928f6eec8a78cd9bf206f4507c351883376cd3badfe0f50
MD5 516231477a6b721211e4f52ed68cd8c2
BLAKE2b-256 e7bdc16db5d72b18c95020d5faf5d17d610f4a9d871870b66620b9a471ad5963

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.8-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 e4f6439f6d7517c99348d17fd3ba6e653370634dc241887c8c32b48fa22faca9
MD5 86e68660af70684fad43f008da3edcaa
BLAKE2b-256 8646e984f4541dbd56e8787c247a3253be6956071ff4b8097b0887c1dcbd6481

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.8-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 46025356920511038ec5ffecbf0d14cf96da29ab74d1dfa3768d00e77895a594
MD5 087b6c6f025ca4ebfe9538bb9f69d89f
BLAKE2b-256 43ffd0984c41817865f5aa1aaa3b9811c629af00f26605a3068833c1d1ce6f0a

See more details on using hashes here.

Provenance

The following attestation bundles were made for dbus_fast-5.0.8-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.8-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.8-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 3485b1f7aaae8ca2216936ecffea30cd8c94481cbd09f1d491d2c147b1a64824
MD5 d1751e297859b80f725f779d59eeb6f0
BLAKE2b-256 afd094c7276ac46658751bb7b48120e710e0a4b839c8e1561f02a3f81d1d0b10

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.8-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 6a98eb296e9aa3fe1b52a6559b487d442b35cf2f75ac1547d7495bfa47711300
MD5 a2f7854a5f2c60505dac5164afd6e5a0
BLAKE2b-256 f509ded0e6f510332cf1d1a304af861d478b76140820c7b7551015cd33f37fdd

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.8-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 ed8c7f0da1f274dd7e64af362f7cf6b9a386f6b0f363dbbd7efb0c4302f168cb
MD5 2054513c2efe9fcd70a82cfeb8c9b5d9
BLAKE2b-256 05daa2e0b572ffe12a84e65766c604202575c501fc2c7c99e23ac11a73063fcb

See more details on using hashes here.

Provenance

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