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.6.tar.gz (80.6 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.6-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.6-cp314-cp314t-musllinux_1_2_riscv64.whl (809.3 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ riscv64

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

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

dbus_fast-5.0.6-cp314-cp314t-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl (807.7 kB view details)

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

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

Uploaded CPython 3.14tmacOS 11.0+ ARM64

dbus_fast-5.0.6-cp314-cp314-musllinux_1_2_x86_64.whl (845.7 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

dbus_fast-5.0.6-cp314-cp314-musllinux_1_2_riscv64.whl (819.1 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ riscv64

dbus_fast-5.0.6-cp314-cp314-musllinux_1_2_aarch64.whl (803.6 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

dbus_fast-5.0.6-cp314-cp314-manylinux_2_41_x86_64.whl (837.0 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.41+ x86-64

dbus_fast-5.0.6-cp314-cp314-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl (818.7 kB view details)

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

dbus_fast-5.0.6-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (838.7 kB view details)

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

dbus_fast-5.0.6-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (796.3 kB view details)

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

dbus_fast-5.0.6-cp314-cp314-macosx_11_0_arm64.whl (679.3 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

dbus_fast-5.0.6-cp313-cp313-musllinux_1_2_x86_64.whl (842.3 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

dbus_fast-5.0.6-cp313-cp313-musllinux_1_2_riscv64.whl (814.7 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ riscv64

dbus_fast-5.0.6-cp313-cp313-musllinux_1_2_aarch64.whl (792.4 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

dbus_fast-5.0.6-cp313-cp313-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl (814.4 kB view details)

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

dbus_fast-5.0.6-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (834.3 kB view details)

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

dbus_fast-5.0.6-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (784.1 kB view details)

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

dbus_fast-5.0.6-cp313-cp313-macosx_11_0_arm64.whl (672.0 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

dbus_fast-5.0.6-cp312-cp312-musllinux_1_2_x86_64.whl (845.7 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

dbus_fast-5.0.6-cp312-cp312-musllinux_1_2_riscv64.whl (817.6 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ riscv64

dbus_fast-5.0.6-cp312-cp312-musllinux_1_2_aarch64.whl (792.0 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

dbus_fast-5.0.6-cp312-cp312-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl (820.2 kB view details)

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

dbus_fast-5.0.6-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (837.7 kB view details)

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

dbus_fast-5.0.6-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (784.4 kB view details)

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

dbus_fast-5.0.6-cp312-cp312-macosx_11_0_arm64.whl (676.2 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

dbus_fast-5.0.6-cp311-cp311-musllinux_1_2_x86_64.whl (872.0 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

dbus_fast-5.0.6-cp311-cp311-musllinux_1_2_riscv64.whl (865.5 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ riscv64

dbus_fast-5.0.6-cp311-cp311-musllinux_1_2_aarch64.whl (829.8 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

dbus_fast-5.0.6-cp311-cp311-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl (869.6 kB view details)

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

dbus_fast-5.0.6-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (865.5 kB view details)

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

dbus_fast-5.0.6-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (823.0 kB view details)

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

dbus_fast-5.0.6-cp311-cp311-macosx_11_0_arm64.whl (678.7 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

dbus_fast-5.0.6-cp310-cp310-musllinux_1_2_x86_64.whl (873.6 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

dbus_fast-5.0.6-cp310-cp310-musllinux_1_2_riscv64.whl (867.0 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ riscv64

dbus_fast-5.0.6-cp310-cp310-musllinux_1_2_aarch64.whl (831.4 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

dbus_fast-5.0.6-cp310-cp310-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl (869.9 kB view details)

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

dbus_fast-5.0.6-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (867.0 kB view details)

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

dbus_fast-5.0.6-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (825.0 kB view details)

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

dbus_fast-5.0.6-cp310-cp310-macosx_11_0_arm64.whl (680.1 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

dbus_fast-5.0.6-cp39-cp39-musllinux_1_2_x86_64.whl (877.4 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ x86-64

dbus_fast-5.0.6-cp39-cp39-musllinux_1_2_aarch64.whl (833.6 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

dbus_fast-5.0.6-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (870.4 kB view details)

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

dbus_fast-5.0.6-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (827.4 kB view details)

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

dbus_fast-5.0.6-cp39-cp39-macosx_11_0_arm64.whl (684.2 kB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

File details

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

File metadata

  • Download URL: dbus_fast-5.0.6.tar.gz
  • Upload date:
  • Size: 80.6 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.6.tar.gz
Algorithm Hash digest
SHA256 ffb4e56f50cb2a1017943d3cb56f79034c1850eca84fa9c6c62d25bdca8f8fd7
MD5 ea8f78f58e6f0500b17364e97fa8bf60
BLAKE2b-256 d172fac94777cac24ca3f680e33862f64705134fbad5e7980995ac765299fb09

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.6-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 767e00a869b50187cc570c79e8404ccbfc4bed373ae38917bc2afc1e35e6b4de
MD5 8d035f4fc3f7f6a2e3d678e6ee363629
BLAKE2b-256 775f64f665dfbe119e40887bd777d4b7513d604f3cb80f102f20365cfce0f178

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.6-cp314-cp314t-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 3561b84b59f8326364582af0ce17bb669da6c5d34cbe0e4c49bc4e64f19424b9
MD5 ccd92ff93b730f41adf77dc8f438e5d6
BLAKE2b-256 2d397dc7c8a6da70db712ee000dbad4a0e32ee7d3a8b723c133d0f66a0b4ce17

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.6-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 1702fcd9ac352bcb71a9ee28c6ece697c5e6eb5ac507f264379454e94cbb80e4
MD5 0f302382019fd2b07a60862780d94547
BLAKE2b-256 c4cfae1dbb13bfc4916947d11d4f672ed92ab95651b419a8f7a9e994d4239c90

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.6-cp314-cp314t-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 4c03eedd864e10d6c47ca386ecede2bbea6a5fea05e99434cc8638cfe4c4db7d
MD5 d9b1376f6836aac574444a951d65b997
BLAKE2b-256 45c620792c8ea5205f1bb8b3d84b01becdf45baa0eb7a544ccd602c7fb979fac

See more details on using hashes here.

Provenance

The following attestation bundles were made for dbus_fast-5.0.6-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.6-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.6-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 1f21810c6ea3e9f4e2813c94afe0806f15aeab1f848d0d4a9a9f9be95ddb0fb4
MD5 166961a9611d61a72750a08ee199473b
BLAKE2b-256 de4ff9775b407e0fef787e5eb2dda2c4c6d8f75deb0004fc3144a17e45475ac4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.6-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 a4d867d9afd168020f43469a55b168e6724954ccb645956b6462ec443dff5a6a
MD5 bf9d155c80224fca636d6572ce782301
BLAKE2b-256 10214c19a8a436ff30ebef7d844e909c56924046955edfdc22e12ef86ca9c60e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.6-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 ebc8b6b2d103c7bc74fcbbf9c15cfb3254407010cb7f8d3a5057f9c016558f12
MD5 56163dc369934b40031c64dfaafe2e59
BLAKE2b-256 e8f4a7e5cdb3316ffc1c15d551a4b45c7c89c0b4567358cdd688483a6d9e4a2f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.6-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 3f3eec2db7dec76b29eeed21c944c2958941e4534561560af963763708214680
MD5 509aeecc85ad299dd81697e38d3acf99
BLAKE2b-256 1cceaa8c374c96703c71edad157b2c172c6bde7a29d9766f4f1ae124c45d86ea

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.6-cp314-cp314-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 93ac400c73948c6ab912ae27d8e1ffe827c1d63042ad3855927ab9dae3c42715
MD5 e1e22f321297c3e03f4f6ce9cbf1ea7a
BLAKE2b-256 82b4591c03195351ab87cb35d823fcab90621abeda809ea879e65a7cb7dc7d32

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.6-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 64ea11733ec9bca886c57de5a40428ffdbc327fd11bd948fce459f2a421f14e8
MD5 0c7371cd1299d92e9073abefb1e59d88
BLAKE2b-256 3c6018ef450507668cd768ba24cae6e3aacc858e0fbc69c6fcf85e14f4a7fda6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.6-cp314-cp314-manylinux_2_41_x86_64.whl
Algorithm Hash digest
SHA256 ce1751d98adb5793256b07f16eb126d1e535b4aa4d228190b36e63685a224457
MD5 8b9f15629af4a4531dae26f94be2073b
BLAKE2b-256 5dd40089ed69bd6ceb7b271d70b4d309e173303d7d2e08fcd15a6884cc22dc42

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.6-cp314-cp314-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 aadbb83488774966f055f3c521ca919bc7c369bb6b534a9bdb1e9566d0d02475
MD5 4809524f3d5139c5c5c72a809cbb72c9
BLAKE2b-256 b5efdb43209aef3b9130f3e372bc40209bbf982341d4cf76f3121b2eafbb81e2

See more details on using hashes here.

Provenance

The following attestation bundles were made for dbus_fast-5.0.6-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.6-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.6-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 0ad9a2e2b217b319ffc3a223bcd069b8c87ec6e2802f4b729db4c0b77be4dec7
MD5 c38476a6e0fd7fb4da5411928a57229b
BLAKE2b-256 3723b904ec54de9ef78f4247418827eb96cf80279b2da9d0c8e5f1435af1d1de

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.6-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 fbe0e3f50cb168f17addfaa3e59cdb259fa7e798a013c54f820096145319c9d8
MD5 d5964ff7edc47d7170494e7c2ff4c17b
BLAKE2b-256 b11751fa76196394b5d5d25578fc9e8e0581f645332da676267da2fb1b375f37

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.6-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 28d7b26c06e379dc01e81cd6d1f6b6110d69bb08737f42b4311b86bb2f5877d0
MD5 fbd61df11a33f7e673e4cadf9dcd30e9
BLAKE2b-256 3d15ac847040994c79b2c1c0d7b8498075ce5dae26e9e1d67708f2533cba1371

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.6-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 2a6e9e52949f4c9392a23a54a42037d66f1fff20c25557468425d1164f83e36d
MD5 a77aa2c465066f5f8af4312fbd68a9fc
BLAKE2b-256 0fb2d46a9b2246134eea01a41f70caf78f5ea46fbcde196ebc00a6b350d4c20d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.6-cp313-cp313-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 a3859bb47046e1c35162d0ad68e8e8cd507987524c47aa7a90fc89f5d1d4811d
MD5 90d5ee4d946f4d8f54c838ec4b7f4485
BLAKE2b-256 9ba965c3e37d7ebff1954fff5288cbda4c196c5c536673593ad8dd837900a03b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.6-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 459f2a0b8cc94b5a2a499edc9279ed6d6d3b3f89635424c06e89de7df865f148
MD5 01ba93e3e684f6be803f1ff1c27648c5
BLAKE2b-256 f59061822a8326a03e35205f1d342dc4f66a17bc17e6326cbbab8ada25db1206

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.6-cp313-cp313-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 2a897c47746dd90bd02c1218c1831a8f74c7261d2e6badf0959b38da306bb414
MD5 d2399efbf7f2f8d8715950e9a87b73ff
BLAKE2b-256 42a3b8816451a802b9b1a7b19d7035f838cb8a33759fc08d9a00bb8313c02ac7

See more details on using hashes here.

Provenance

The following attestation bundles were made for dbus_fast-5.0.6-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.6-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.6-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 fe850a56144fd285e063e14c7c614a96dde7d8d61610d332a6f71882f55f4871
MD5 9d47695e71916e8240b9c134e67dcfac
BLAKE2b-256 bc3603e0e29df5b7ca5e188da233b99497abd526587bc979e6e65f499d80282a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.6-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 bab4f61228a13f858271cb460bf11df241036244bf19e953300743e71916a8a2
MD5 f882e56b272c538b5dd052278b624bc2
BLAKE2b-256 c59dd263b1d7814ba334cb7d17aee3b103d91ad112eb0b7d403632dbc2fb6f39

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.6-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 8cbc3cb43e7a205b5beb4229064e83e912dc50adfdd0e7b52255c1374f5e08cf
MD5 c8a28a1ad9e6261a5bc613fd7e5b9c69
BLAKE2b-256 d8ebd336fc2c89db55e00d3f3e05eba96c8807c902365dcab02546ef166dfdc0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.6-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 5d4a3ea33f02b39d21346f299f1891570d142f0719242acc13a8ea9d2eae52c8
MD5 d49bf6aec44977db5f8bac41c1e94eb9
BLAKE2b-256 f5a9147275ab117c58ee86762d48a04ba2a732324b45ac47e86372c93c48d6e8

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.6-cp312-cp312-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 5491ad8025b3963c627f17dd943bb2d42a56d04287b78253647055f70e74bee7
MD5 c8e83c7665cf75b4104ba51a290d8f0b
BLAKE2b-256 9d95151dec75673d0aa09c5d77f89976dda71a9550b516ebc3187b58e625e363

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.6-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 1f5aa527f82ae118018a0fc1b37ef8a7c3e5745873df3318d2a3091b64f83895
MD5 08b892975760163edbc3a1140bf3d4da
BLAKE2b-256 748a5cae9cfb56d0dee0732255f1da9bf6d423f623c9fa853421a5ff347901ab

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.6-cp312-cp312-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 70b0ffda4cdca3b911e990de457f676086ea1c7d6fe05ac380aca274cf195580
MD5 11d947fb3e6363718cb9121024f5dc32
BLAKE2b-256 6cf32eb9879acb6889ba7b140c3ef8105152effa97b444fd9fc04e61b857b2ae

See more details on using hashes here.

Provenance

The following attestation bundles were made for dbus_fast-5.0.6-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.6-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.6-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 b9e7df534712a5e158624b730bae1154ebfc1755da66740246387480454b6ec6
MD5 6da841f8e0f17f658f5a6ba3266c7c72
BLAKE2b-256 60f0cf1738ee44d73a06e5a3c8e853c286a7c2fc312ff5efd7ef901413fad6f5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.6-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 063a8300accfd9fe242ecba33334d1fa3daf37b680efad1d9cc375634f861178
MD5 f81935873c8e4e1b564b876ab4bce850
BLAKE2b-256 4dc4b4b7a192d0fc4cb1d9f2e0a9320b05dc2cfdffc79eeffb8bbf0df4811d99

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.6-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 892866c29fe2aba451ffc897b464d816832c27258a14233a301d3284ff4dce89
MD5 b090cd6f726ac168275cf560995b49bb
BLAKE2b-256 1064d360861cfb2679faa4b180fae845074da768d26197fc065930cc532d9b77

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.6-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 b147b71285b5fc7e10a147c501e1e51f6777c35c4eb7025324b25dc132dcc6be
MD5 1a1ef67d7c48dc76a17d2fb5f2cc7209
BLAKE2b-256 64c446ddd287b6d995872daa803ddcd036964b698ba1b12af487109457cbd34d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.6-cp311-cp311-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 432ed5a75128dda6f97557335c2e973d5b6d0b1033ec938807d7660d09bb9afa
MD5 2ad148049055e799c69cc201fad39cd0
BLAKE2b-256 42b101f2b7db446cb0ff7aa2e4bf19ababcfe36151428c269a3504a230077a08

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.6-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 65c97f974dccc60ad38b567cc43815ebcf20db3b237035ed889eed8a0d63d267
MD5 e2129c11e853fbd58cc805224477ab35
BLAKE2b-256 d78088b3fecb734a51c1faac8297cd283e65d6045c752c9d50c14abb37213530

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.6-cp311-cp311-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 59fc1c97f1e734b270131ef9f8289ea0b00a83aa6ffca97507ec71362b39f93d
MD5 7c5f07ff7e36bc36c8bd3515f96b993c
BLAKE2b-256 aec18da5de754b24fa1750943922dc3c52c609be2d6b34867ea64901c4205df3

See more details on using hashes here.

Provenance

The following attestation bundles were made for dbus_fast-5.0.6-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.6-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.6-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 1c9e61664d64ec138ce006c1c9200f1d4277eb120741a149fff7d1dc6ba65c40
MD5 e714808b580c2ee3f5c819d9ad983999
BLAKE2b-256 e30bd5c29b83c83c746bdd93b9843e26a9427cf3083e8b31fd02ff4f62af371f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.6-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 4cfa9818c76e1eff0604d2815cd8b3c432e71005cf6cac21666b033a72edf87b
MD5 6506ab2bf2afcf422865a5b0bfeb1432
BLAKE2b-256 78f1a7a80fa2d482007311e53c142476b047d96f1181009967b31c1f306d42a3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.6-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 66444e0440d877d8e975770eed90fe08eee99e9cca5fa06b7fc51b23288d998f
MD5 d95a7638e242d1f55d76843819030203
BLAKE2b-256 de617fab0ecf247d7be4d2f735f70abf8fb7c93939ae17aad3e690980a3bc26f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.6-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 fe029169b79040b3aa72e443b17b1fadd9973660ea50be5e150ca20f871eb54e
MD5 ed2a86a52033c7064a01a547f7e386c5
BLAKE2b-256 c2d1fedec8c3c1a37950e1cea0fa4bd2ccfb40e684ef100327d2bbc7bde192ce

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.6-cp310-cp310-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 9fb259a5d56925210be3f8127668985031e34ce8fae53fbc6cc8244862bdd8e5
MD5 af4ca63112e12b98a3dfc282e767cf03
BLAKE2b-256 63b594ca4142eea2ccfb572f01a38e830963d7fa274c75ebd98d983e3ba0e348

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.6-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 0fa1a566300c814cf436515d899580df5b1621507463b46f2b0491c647126e24
MD5 58a4627cac02b1abfc47f6b1ff1a95c9
BLAKE2b-256 dc2ec3a3a045bd94f3e4b65256e7668fda585ffee76cb7682e18de940cd6120c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.6-cp310-cp310-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 32e6aadc27de3709fa673fcdac9a9754ae0148e290cfc211ce403bd0fa3718aa
MD5 d770f41d9f48accb8ae6e0833bd56e1a
BLAKE2b-256 3bce758112c3feca91f6d225202c80a73c52cd2dd298d3ad2fcedb542f54b993

See more details on using hashes here.

Provenance

The following attestation bundles were made for dbus_fast-5.0.6-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.6-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.6-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 326a2a869e9a5b266775300d99598a9d512d354fb6d847fb9026f3366410c368
MD5 4717d2281b00229a5c04adb31cf31d57
BLAKE2b-256 52ca35113094c17fbbca463c2518c726531eb8da70a85ef3e7cb9518bef5db79

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.6-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 03e7694eeee27a97394c433e24940672a9dfd43e0ae8a1239a4d61bb966a6604
MD5 fc207228e6052d38e70827eec425a776
BLAKE2b-256 edfa53b2c362d126ade56f2771bfe7c60cd5a32ba2e3850545029fcd463dc52e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.6-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 c7706a746e600e04ee2beefa1b34f23f87f01a80af8624442b45f3bd6a2759a6
MD5 8eb743d10d9169f78509fbb0f93989b3
BLAKE2b-256 e7132778c1b7914951561a9c033ac9a007c66ad7396809a44af911680d08193f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.6-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 665849c59bafb3f158c2ce390315c7fbeb1916253a03ebfe83cf12f758f17968
MD5 d7c7d60463df1cd066a212dcc574d075
BLAKE2b-256 484b49b3a0dc392b3455839625e03a04e3aec198d827114cffd6b8052d0850e2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.6-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 82edccd2e4eb69bfcc61b94ad4731c840c60eed01e65463f7ac2d6ffa773b690
MD5 fbc4c8146b6cb71ea836c34d04501b34
BLAKE2b-256 badd26359dac369b5a54220e7a5e72151f7d84d0c83f4d92de49154c9be7f6d2

See more details on using hashes here.

Provenance

The following attestation bundles were made for dbus_fast-5.0.6-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.6-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.6-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 0806b88d0c257ec2338ff7dc2ba5c9b381e235cf541cdd270e3a7983c594e0ce
MD5 ee0284fcb637c503e172bbd2d95aeb88
BLAKE2b-256 39cca2dce65fe9996e339570030f7a1cbfb883e88de96e57e71ed16cd6919492

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.6-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 2f40c556168da6fb82147e5b85cc4b6563cda3d075dcfc40058e3f4fda1b9a29
MD5 1a9792f1a53631e572dfb6071dd4b8eb
BLAKE2b-256 e3ada82aacd7854fa9430fcb6e363d2a2072658707a88ba8f09176dc04714877

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.6-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 1a2291a913fc98aef1f5051f67dc9166589ff98d38611e078728fa5d358a1433
MD5 316243b0ec45e8a5fb7e3703f64a587b
BLAKE2b-256 c6060db9edab000ccbe20c8fc04c5906f953e2f42fd36dc325f78dac6bde95ab

See more details on using hashes here.

Provenance

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