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.9.tar.gz (81.4 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.9-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.9-cp314-cp314t-musllinux_1_2_riscv64.whl (820.3 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ riscv64

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

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

dbus_fast-5.0.9-cp314-cp314t-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl (819.0 kB view details)

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

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

Uploaded CPython 3.14tmacOS 11.0+ ARM64

dbus_fast-5.0.9-cp314-cp314-musllinux_1_2_x86_64.whl (856.0 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

dbus_fast-5.0.9-cp314-cp314-musllinux_1_2_riscv64.whl (829.0 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ riscv64

dbus_fast-5.0.9-cp314-cp314-musllinux_1_2_aarch64.whl (814.5 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

dbus_fast-5.0.9-cp314-cp314-manylinux_2_41_x86_64.whl (847.7 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.41+ x86-64

dbus_fast-5.0.9-cp314-cp314-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl (829.1 kB view details)

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

dbus_fast-5.0.9-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (849.5 kB view details)

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

dbus_fast-5.0.9-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (806.9 kB view details)

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

dbus_fast-5.0.9-cp314-cp314-macosx_11_0_arm64.whl (688.6 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

dbus_fast-5.0.9-cp313-cp313-musllinux_1_2_x86_64.whl (852.5 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.13musllinux: musl 1.2+ riscv64

dbus_fast-5.0.9-cp313-cp313-musllinux_1_2_aarch64.whl (803.0 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

dbus_fast-5.0.9-cp313-cp313-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl (824.2 kB view details)

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

dbus_fast-5.0.9-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (844.5 kB view details)

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

dbus_fast-5.0.9-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (794.5 kB view details)

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

dbus_fast-5.0.9-cp313-cp313-macosx_11_0_arm64.whl (680.6 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

dbus_fast-5.0.9-cp312-cp312-musllinux_1_2_x86_64.whl (856.8 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

dbus_fast-5.0.9-cp312-cp312-musllinux_1_2_riscv64.whl (827.1 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ riscv64

dbus_fast-5.0.9-cp312-cp312-musllinux_1_2_aarch64.whl (803.0 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

dbus_fast-5.0.9-cp312-cp312-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl (829.9 kB view details)

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

dbus_fast-5.0.9-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (848.7 kB view details)

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

dbus_fast-5.0.9-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (795.3 kB view details)

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

dbus_fast-5.0.9-cp312-cp312-macosx_11_0_arm64.whl (685.0 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

dbus_fast-5.0.9-cp311-cp311-musllinux_1_2_x86_64.whl (883.8 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

dbus_fast-5.0.9-cp311-cp311-musllinux_1_2_riscv64.whl (877.3 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ riscv64

dbus_fast-5.0.9-cp311-cp311-musllinux_1_2_aarch64.whl (841.0 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

dbus_fast-5.0.9-cp311-cp311-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl (880.4 kB view details)

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

dbus_fast-5.0.9-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (877.0 kB view details)

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

dbus_fast-5.0.9-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (833.6 kB view details)

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

dbus_fast-5.0.9-cp311-cp311-macosx_11_0_arm64.whl (687.9 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

dbus_fast-5.0.9-cp310-cp310-musllinux_1_2_x86_64.whl (884.5 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

dbus_fast-5.0.9-cp310-cp310-musllinux_1_2_riscv64.whl (878.5 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ riscv64

dbus_fast-5.0.9-cp310-cp310-musllinux_1_2_aarch64.whl (842.3 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

dbus_fast-5.0.9-cp310-cp310-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl (880.4 kB view details)

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

dbus_fast-5.0.9-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (877.7 kB view details)

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

dbus_fast-5.0.9-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (835.7 kB view details)

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

dbus_fast-5.0.9-cp310-cp310-macosx_11_0_arm64.whl (689.7 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

dbus_fast-5.0.9-cp39-cp39-musllinux_1_2_x86_64.whl (888.9 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ x86-64

dbus_fast-5.0.9-cp39-cp39-musllinux_1_2_aarch64.whl (845.4 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

dbus_fast-5.0.9-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (881.4 kB view details)

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

dbus_fast-5.0.9-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (838.3 kB view details)

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

dbus_fast-5.0.9-cp39-cp39-macosx_11_0_arm64.whl (693.8 kB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

File details

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

File metadata

  • Download URL: dbus_fast-5.0.9.tar.gz
  • Upload date:
  • Size: 81.4 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.9.tar.gz
Algorithm Hash digest
SHA256 29566285c89c2277a3bdf72e56dc07dd541921de303fee8b3b9693787996c144
MD5 1bf1060a3bef8d309812b141593a2baa
BLAKE2b-256 4cc90beb52a1a033f10ca62d5fba9de20691cb9fa7aaaf7aff00c015f3f8f53c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.9-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 59d15afbee3a9954e8d8bce03783787b779aa73ef092de5bc3bdc04dced3c452
MD5 332831ddf50d03abb32b7c06e902f46f
BLAKE2b-256 ddbd800ceb05a5ecf98b73aefab9decf00aec41618bc63be5bca615e9b2f9aa0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.9-cp314-cp314t-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 26e857dc3e4734d1410473d2f7c92a9ac4d2bef121abb42456b8232d518ad58f
MD5 ca714fb6ffbeeee35ad9de0ec65c24b3
BLAKE2b-256 7e936230fcfdc8ae57e03a43b456549c2b5176ae2b7d8b864d9f5c3acb57a5a0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.9-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 184abaf3ee37a2d80013c706717bd29128c9c5343ba47994416d88c86697795e
MD5 36d6407efee56ce93a51ab8334893acf
BLAKE2b-256 9156da50b14c1c6f54f94990569b5991c06957b513bd780d92728404d547502c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.9-cp314-cp314t-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 0ede06bb2113a1b628b0b960f6716f7c2bbcd19da5bf7dbff92452336249931f
MD5 3f848afbb2e1ff3cb3a09755eee3553a
BLAKE2b-256 fa0e00808a7f7951f46b56c8d6143c4f9d02c1525c2e6bb315efda574983335f

See more details on using hashes here.

Provenance

The following attestation bundles were made for dbus_fast-5.0.9-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.9-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.9-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 d25750075b4ee20faaf7dd766a1f0dddd579783b41c91f26f3a65c13c2026228
MD5 c78d331bb1d473f330cb6c2e04919122
BLAKE2b-256 fcc27f3d3184185647b38c5ce10f65e8734efcdf1d877d85f4fc9661487d892d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.9-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 99d31ef6b46ff369fa38a23c836ac026bdd491d0451ef12a0644ba147f2c3385
MD5 09d5c501d94432ec8fff445e0f3b933d
BLAKE2b-256 ea2cd70b3fc7dfde8f41760ea843c17da29b324e99d15f1bccd7fa0a45bc06e7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.9-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 498de7466a972c5ddc7a2baa476fd0a9df164aa2263c12e674bfedcb6d5bc58e
MD5 c0e82cdb6bf2402b65d6a74bff4b9379
BLAKE2b-256 bdb13473e0f81b1e139841ebcbdfb2a0fbeca42eeeade7f455b05982c006ab7b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.9-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 4326e38a6b7a2ea6e7ca6ec6f1201abc8d3eb4514ee4c024757febb03d16ec6b
MD5 540fccdd400989868d3bfa01b5b38e4a
BLAKE2b-256 a997a453630d2eb184d03b6933d33e166f9fd6f1391d4a708993dbfb6e68ec62

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.9-cp314-cp314-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 b787a7a8c7fa4c2a0c41711717c4922de3dd02777d4130ad507fae922b3f6079
MD5 9805e60ac0e8cc63bcd613ec56bf1bdd
BLAKE2b-256 089d28568825cb6e2d66d09dfe04c9c77c8d8af8f25d83185ab5a9c433597fda

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.9-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 e5fdb1ac6770bdcd63eea1ea963e3251d285938de13755ba6912a8e05715b830
MD5 f4d365505fd754c2f788aef48a71560a
BLAKE2b-256 458d76fef593507dba95ce7827bb581c5c8db09b0c84371163aaf90b85f4abbb

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.9-cp314-cp314-manylinux_2_41_x86_64.whl
Algorithm Hash digest
SHA256 87b89ca46f86cb8daae7db5f02a12a4b558c43b42997b4c1fe51b68b9ffd2a3a
MD5 25211d5b560608bf37796d023e76b252
BLAKE2b-256 09273f043f542b5329892cdc7bc9aedc222730f35e58f971fd627266ecafde0d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.9-cp314-cp314-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 52e6890398a2f9103a3b7aec5141a9370457fab6e19844339961cef77ab79c61
MD5 c006d780330559274239b37fb19fbebb
BLAKE2b-256 4470f72feaa00b8044edd409a632e8d51b4069df9b3aa8906b859679be783675

See more details on using hashes here.

Provenance

The following attestation bundles were made for dbus_fast-5.0.9-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.9-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.9-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 f760e5838663a439c55bff795bccdc696ad51443435bc5a69a563bd4458f6070
MD5 58f919b4eaf5b4c8052e87e923e61b9b
BLAKE2b-256 1019d27f95807fad3964db78cdcd22cc6e2c426f0154f472a1fac331185484ee

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.9-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 c0f7ced86eaf4d7599ba7b3ddc4e43c355fda6a9b5e00c8b7c9d29215da8e35a
MD5 bdf57658a223a44c6dc188e011de55ed
BLAKE2b-256 6e5913a2d2ed8f596aeaf35de5c55ac22f295b043b5ba730d79eb1a37321c76a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.9-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 910f0082a214f4eb5e5f5dee62f796b15916482a36971b535b77ab3972c5ac3b
MD5 320eaf6207bccf16d779f3505b120115
BLAKE2b-256 89b2d539a649497581963324bbd3601f7cb976710662492603ec0310d212f485

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.9-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 41c732871b4af2b89bf617e23a8fbf117047db4c81dbecec98c4858ef17361b3
MD5 89118b026fa4931de6e5fbf4e904f358
BLAKE2b-256 7f3d6ae8216da03a7ed2abf0674d5384db19f287faea30da12e19b6c68b0b527

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.9-cp313-cp313-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 0d5aa9228e21f4a37548074066c368d5cb4a1a788754d79b09d0b7422e7162d9
MD5 963b51e8beef706cfb7b2c5f951ccee6
BLAKE2b-256 d6f1841df70fe219ba1699ccf2dfc4be0d37205779e70983ea0eacc9712dbaeb

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.9-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 d3bd96030b53fd2743819297abb0c9a9e4d7b778c461e5b5da753bbbbe2e87ca
MD5 eae48c98c86d0df051f24274e930da38
BLAKE2b-256 a47417053a39419419ecfcb1e425432165895bb6fb75e849a79f24050adc0d47

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.9-cp313-cp313-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 688aab9b88db8480b990ae107139881bbbd15bedf469112c0f864921405f37c8
MD5 84489822916eb51dacefc5cd74829a95
BLAKE2b-256 061979b2f8bbbf31c6785d2c2234a65daff4c4b2c02f0655a64721b0cce22380

See more details on using hashes here.

Provenance

The following attestation bundles were made for dbus_fast-5.0.9-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.9-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.9-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 cf69339882fbc6ba795bdc55859035bf489f64284ea900659ed3bfde284f450d
MD5 e5ca70ddb6ee650a8c55be37a26b881b
BLAKE2b-256 307b2e093fbf06f9a72839fce102cb147de5bcd9096790ac228ce7f383726485

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.9-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 6a3b6904350bef8c6b2f320a26f324e6b02bccba8155053d44e3374830952be1
MD5 4c3f1cc17d5ab10585c063fcdf487de9
BLAKE2b-256 c1511904e9661a45e875a49d047da7cf299ec9de3ab46485fadf19d21a0a4f1b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.9-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 2d871b18126abcbc8382866a8c418df2bf573b730bebd8a19a22fec9ddc5bf60
MD5 397f639e988587c2be313a5ac9438f5b
BLAKE2b-256 a28aa7f419ddfae25e34d1e747ed23d375d1f7450ea2fa985fcf0758792c5eea

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.9-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 0cd788a0be6ea71a5c8eef12d1912f57949788dadec56ef353e26109c60173be
MD5 ef653d25c158c43ddda8924c1fe5e59e
BLAKE2b-256 8e64aee1769714647742b95696e670d14813fb118a7337c756157cd7a65ac893

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.9-cp312-cp312-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 4e5b5f0e2acce6f107b8ace884c95d0a0d70aadb1dca0b1027480b917f6972a7
MD5 bc78ccd411bbe05df940c93dd335c0ad
BLAKE2b-256 65b83da74d261dc6343aa1b2ac7530b580d1647784a9ff5e4aaf3aee1219c8b1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.9-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 7471298d237776bc64684c9ab78ca8c6f422b13558dae1809dea5535e291e61d
MD5 573f502221fbc0459d0d913bf80a9702
BLAKE2b-256 bb6be0beefc963555c48764d29efaded23b4d4e9b8cd5fc87de6e41669772c1c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.9-cp312-cp312-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 6b83b18cc27cd4e49b269963428bb76e4c459d30936d5e5ada9c6a971183933f
MD5 d801b782cdb9aeb7e6c7938e64ad27d8
BLAKE2b-256 b240e749554e7c891d4ea7f1a7bd97c5789eec184d44ba7aae61e1cf17d5b5bc

See more details on using hashes here.

Provenance

The following attestation bundles were made for dbus_fast-5.0.9-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.9-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.9-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 a1074b2d9dbb20d7be5e1891113bf7daae8126362ec17063fd68e77a719254be
MD5 27b15e4123d60411ad5011475722145c
BLAKE2b-256 21375ed5248244203d3f49a33157e675d7fc0cb3f1ad432e97fd81688e2a8490

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.9-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 3c52e2787cde0afa91955c94ee9dc1c3ffd1a14593f72d81ec7373470acfdae1
MD5 e48e2461c10723b6b24a2ca1dc089090
BLAKE2b-256 2a78cb12a3e72eec3f59e435313d0b8b655376d0187db474fcaadf62b90e2f33

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.9-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 e112de1c1127a5715fcdc7724b1cc1b70f6af297b1dd6818f6912bac6c5b9c68
MD5 3d8295d2faf6f17dab35e1bba2076527
BLAKE2b-256 60bace8afea0ac717ca0d4b27194b23948d1969102f0e49387d28952589039ef

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.9-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 4f2d0a1f6cff77b55034ebeebc8c4b8360830acaf863fe57c9ae2b7b62cd9969
MD5 367b54d1cc74f4f561869b3c588c9d78
BLAKE2b-256 406e8ac1ab256f4322f85c8244ca5ccace82fa29ca56959e7d99d33a03aa49c6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.9-cp311-cp311-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 124638f2980e36c13035ccfb672166d04939a472017791c599eec4ea59cb9675
MD5 e848d582801dca81df83a2083465cb81
BLAKE2b-256 71e4a11d4e12edb961cdb58951b220af1e533017c048a393b30a6e62f05059af

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.9-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 917be1f291b984691493b247a3967047f1a8ea21eef87a9435a280447fa4257b
MD5 9de2ed71925922eee71a5bd716e6f3dc
BLAKE2b-256 3fa2b39561276cb239f08a05644036137ccaff1ef0e6fed58c89174f1b6940dc

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.9-cp311-cp311-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 7eb916616097f5844c482ffe54b56bca44cf02fad91ecc83ff534410404c8835
MD5 a94a4b7908aec3ccc4e2eb5995e20ed3
BLAKE2b-256 4737f3936b93db533628daba11c8a6df630c50c3d611833118200ceb5195c627

See more details on using hashes here.

Provenance

The following attestation bundles were made for dbus_fast-5.0.9-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.9-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.9-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 0134e9a2198e59c243fa48f85ff940551b06fc49352d2169ec62e1b48133d149
MD5 45ddb34c1a428ac8afa56ec2231c53b4
BLAKE2b-256 67eb1468a67ec516b15146ddd598fe38c952c4d309a8264e52160141e626b7dc

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.9-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 88df4b62cdc06dae0f03dc6cedb061aa718cd20faa963e477710237efe6e6a32
MD5 c112258c5a5df6d0604a2221335564b2
BLAKE2b-256 44549c85f1879d244dc2d6ade5f0f44385aea9c6b8d3e713d47ed78ae99f6b08

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.9-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 9f8d379e8145c686070e32f6d5ff90fe00a9605936f60b49ffce585e6008771c
MD5 cc535e9174a78503f999af0906f52629
BLAKE2b-256 f5198529cc3c3d757d631574f5b0a895354eee3a28a14a8385767b2cd7ee234e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.9-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 726d18c7264e9b23692d96207a665c9b0ed56de2f29c0c0b6841fecc154e1c97
MD5 cf327c6f0376cc1b0999acd6951c0ef7
BLAKE2b-256 ed56d2d2898045c9889d90e5c3e11e965ffd06a21ae323acbf06837e43e821f8

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.9-cp310-cp310-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 ed8af1288a8b92ada79100f072e67f13d807e782a69d9ea018977352c25ea3b5
MD5 77387eb6a0bbd734ba465071f1ad331d
BLAKE2b-256 fe62cef226ab03fee17507d2ecedada102e2b14d80801697d8c4a00b5f855de4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.9-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 2f226c6ad35eb1bff26644d785f51e97b15200f25eb62be51f5095ee9fbd3199
MD5 919c5280ce38dbbdfcbee05895b1296c
BLAKE2b-256 caec3726ac58243d4188dfb06c10a70d93f96df50f780864583daea1af950777

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.9-cp310-cp310-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 4bc5a5a547058a269b74473c894cd7ed6576ec666992a8120b4e464210a4a73b
MD5 b446c803fc4ab37203bfff13b3bbb08a
BLAKE2b-256 daa42e1cf433434f8dd56178d366365191a0e81fbec0df566496ad31f23bb27c

See more details on using hashes here.

Provenance

The following attestation bundles were made for dbus_fast-5.0.9-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.9-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.9-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 58006db2e9720ef151911aedfbcc6e4d6ea5c7021b66aac2ebd46aa989e83591
MD5 6cb12a2e2ea3a49dc1156830714fb00f
BLAKE2b-256 4abcc97fabfc3c2241b54dee9961dd2260892a36d05945d3f3df619447022165

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.9-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 42817338589866f0bb8240289452e4feec4074c2c2190897aa478a37ec87f349
MD5 b3806ec36a33f56eba2a4988421ca583
BLAKE2b-256 2759a57c27f754a9d832f91e1bc2c6f7b3e9d607d795b4ff42abab32e82549d4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.9-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 fa476c887b3363f6b8ee1401cfb944120a1a3e5423bfa30690b9e2f513eb4fb1
MD5 d4b97cc142d8fc1bcc1e2bf9c49dc166
BLAKE2b-256 2952c9913cb9d5d3d4f52a11623d4632e0463d68d95af2c15777b7102dbce9af

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.9-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 56404107c39d68e0079fdfa2bd11c2365b9ed1fce2a1cbbc33c4800d283ae9ab
MD5 6dbbe2f6a22adebb088471aa858cb0d3
BLAKE2b-256 b1f8bc21ddedbdf3ecad9f5526883cab9db4bc9ab93d0f33fac86dd64f74e6da

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.9-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 f8d97ee32064d3c917cb8b51bb999131c6fe9c875d3e327ae864caa5726f41ff
MD5 80324929c6be462aefd23aea8dff291b
BLAKE2b-256 ece1ca3fdf970318711711b226d5be01bf78f957fb89ecc85d203d752234402a

See more details on using hashes here.

Provenance

The following attestation bundles were made for dbus_fast-5.0.9-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.9-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.9-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 d33280a5a635c51c0fb856f816d59fce8eb121467c4163a90d93ff3e38b1971b
MD5 ef150ae27e9d15c1337fb2f3bf4efbaa
BLAKE2b-256 423db6eaee04c08b1e641d8259d3b2227bde9c0a7fe84690626d3a385cda5476

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.9-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 b03ec3a66a3d1f4b677d6b2c5a0344644da4b53c4e1f9cdd8da2b2e480488329
MD5 d887b4fbea0a119fca97a74c81d3cfa0
BLAKE2b-256 c29f5fc80a599b7f365beb0f2d7b7859a53e121abcd1583e0186482e7b41b571

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.9-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 509879e91fb56c2c2fb32bca32d36ddd0c8aa6648ddcc9ff09257901c736b549
MD5 6159826eee5a5fdf2fd92dee27154a0d
BLAKE2b-256 e927aee4ded0318f55b2bf01da7e851cc357e31af179e2e52c823c03035d906d

See more details on using hashes here.

Provenance

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