Skip to main content

A faster version of dbus-next

Project description

dbus-fast

CI Status Documentation Status Test coverage percentage

Poetry Ruff pre-commit CodSpeed Badge

PyPI Version Supported Python versions License

A faster version of dbus-next originally from the great DBus next library ❤️

Installation

Install this via pip (or your favourite package manager):

pip install dbus-fast

Documentation

dbus-fast is a Python library for DBus that aims to be a performant fully featured high level library primarily geared towards integration of applications into Linux desktop and mobile environments.

Desktop application developers can use this library for integrating their applications into desktop environments by implementing common DBus standard interfaces or creating custom plugin interfaces.

Desktop users can use this library to create their own scripts and utilities to interact with those interfaces for customization of their desktop environment.

dbus-fast plans to improve over other DBus libraries for Python in the following ways:

  • Zero dependencies and pure Python 3
  • An optional cython extension is available to speed up (un)marshalling
  • Focus on performance
  • Support for multiple IO backends including asyncio and the GLib main loop.
  • Nonblocking IO suitable for GUI development.
  • Target the latest language features of Python for beautiful services and clients.
  • Complete implementation of the DBus type system without ever guessing types.
  • Integration tests for all features of the library.
  • Completely documented public API.

Installing

This library is available on PyPi as dbus-fast.

pip3 install dbus-fast

Installing without the Cython extension

The PyPI wheels bundle an optional Cython extension that speeds up the marshalling/unmarshalling hot paths but adds a few MB to the installed size. If you're bundling dbus-fast into a size-sensitive application and don't need the extra performance, install the pure-Python version by forcing a source build with SKIP_CYTHON=1:

SKIP_CYTHON=1 pip3 install --no-binary dbus-fast dbus-fast

See the installation docs for details.

The Client Interface

To use a service on the bus, the library constructs a proxy object you can use to call methods, get and set properties, and listen to signals.

For more information, see the overview for the high-level client.

This example connects to a media player and controls it with the MPRIS DBus interface.

from dbus_fast.aio import MessageBus

import asyncio


async def main():
    bus = await MessageBus().connect()
    # the introspection xml would normally be included in your project, but
    # this is convenient for development
    introspection = await bus.introspect('org.mpris.MediaPlayer2.vlc', '/org/mpris/MediaPlayer2')

    obj = bus.get_proxy_object('org.mpris.MediaPlayer2.vlc', '/org/mpris/MediaPlayer2', introspection)
    player = obj.get_interface('org.mpris.MediaPlayer2.Player')
    properties = obj.get_interface('org.freedesktop.DBus.Properties')

    # call methods on the interface (this causes the media player to play)
    await player.call_play()

    volume = await player.get_volume()
    print(f'current volume: {volume}, setting to 0.5')

    await player.set_volume(0.5)

    # listen to signals
    def on_properties_changed(interface_name, changed_properties, invalidated_properties):
        for changed, variant in changed_properties.items():
            print(f'property changed: {changed} - {variant.value}')

    properties.on_properties_changed(on_properties_changed)

    await asyncio.Event().wait()

asyncio.run(main())

The Service Interface

To define a service on the bus, use the ServiceInterface class and decorate class methods to specify DBus methods, properties, and signals with their type signatures.

For more information, see the overview for the high-level service.

from dbus_fast.annotations import DBusStr, DBusDict
from dbus_fast.service import ServiceInterface, dbus_method, dbus_property, dbus_signal
from dbus_fast import Variant
from dbus_fast.aio import MessageBus

import asyncio

class ExampleInterface(ServiceInterface):
    def __init__(self, name):
        super().__init__(name)
        self._string_prop = 'kevin'

    @dbus_method()
    def Echo(self, what: DBusStr) -> DBusStr:
        return what

    @dbus_method()
    def GetVariantDict(self) -> DBusDict:
        return {
            'foo': Variant('s', 'bar'),
            'bat': Variant('x', -55),
            'a_list': Variant('as', ['hello', 'world'])
        }

    @dbus_property()
    def string_prop(self) -> DBusStr:
        return self._string_prop

    @string_prop.setter
    def string_prop_setter(self, val: DBusStr):
        self._string_prop = val

    @dbus_signal()
    def signal_simple(self) -> DBusStr:
        return 'hello'

async def main():
    bus = await MessageBus().connect()
    interface = ExampleInterface('test.interface')
    bus.export('/test/path', interface)
    # now that we are ready to handle requests, we can request name from D-Bus
    await bus.request_name('test.name')
    # wait indefinitely
    await asyncio.Event().wait()

asyncio.run(main())

The Low-Level Interface

The low-level interface works with DBus messages directly.

For more information, see the overview for the low-level interface.

from dbus_fast.message import Message, MessageType
from dbus_fast.aio import MessageBus

import asyncio
import json


async def main():
    bus = await MessageBus().connect()

    reply = await bus.call(
        Message(destination='org.freedesktop.DBus',
                path='/org/freedesktop/DBus',
                interface='org.freedesktop.DBus',
                member='ListNames'))

    if reply.message_type == MessageType.ERROR:
        raise Exception(reply.body[0])

    print(json.dumps(reply.body[0], indent=2))


asyncio.run(main())

Projects that use dbus-fast

Contributing

Contributions are welcome. Development happens on Github.

Before you commit, run pre-commit run --all-files to run the linter, code formatter, and the test suite.

Copyright

You can use this code under an MIT license (see LICENSE).

  • © 2019, Tony Crisci
  • © 2022, Bluetooth Devices authors

Contributors ✨

Thanks goes to these wonderful people (emoji key):

This project follows the all-contributors specification. Contributions of any kind welcome!

Credits

This package was created with Cookiecutter and the browniebroke/cookiecutter-pypackage project template.

Project details


Release history Release notifications | RSS feed

Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

dbus_fast-5.0.19.tar.gz (83.2 kB view details)

Uploaded Source

Built Distributions

If you're not sure about the file name format, learn more about wheel file names.

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

Uploaded CPython 3.14tmusllinux: musl 1.2+ riscv64

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

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

dbus_fast-5.0.19-cp314-cp314t-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl (822.0 kB view details)

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

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

Uploaded CPython 3.14tmacOS 11.0+ ARM64

dbus_fast-5.0.19-cp314-cp314-musllinux_1_2_x86_64.whl (862.3 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

dbus_fast-5.0.19-cp314-cp314-musllinux_1_2_riscv64.whl (833.6 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ riscv64

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

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

dbus_fast-5.0.19-cp314-cp314-manylinux_2_41_x86_64.whl (853.6 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.41+ x86-64

dbus_fast-5.0.19-cp314-cp314-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl (833.5 kB view details)

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

dbus_fast-5.0.19-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (855.5 kB view details)

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

dbus_fast-5.0.19-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (810.8 kB view details)

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

dbus_fast-5.0.19-cp314-cp314-macosx_11_0_arm64.whl (693.0 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

dbus_fast-5.0.19-cp313-cp313-musllinux_1_2_x86_64.whl (857.7 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

dbus_fast-5.0.19-cp313-cp313-musllinux_1_2_riscv64.whl (828.3 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ riscv64

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

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

dbus_fast-5.0.19-cp313-cp313-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl (828.3 kB view details)

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

dbus_fast-5.0.19-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (850.3 kB view details)

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

dbus_fast-5.0.19-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (798.4 kB view details)

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

dbus_fast-5.0.19-cp313-cp313-macosx_11_0_arm64.whl (685.9 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

dbus_fast-5.0.19-cp312-cp312-musllinux_1_2_x86_64.whl (860.6 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

dbus_fast-5.0.19-cp312-cp312-musllinux_1_2_riscv64.whl (830.8 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ riscv64

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

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

dbus_fast-5.0.19-cp312-cp312-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl (833.8 kB view details)

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

dbus_fast-5.0.19-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (852.7 kB view details)

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

dbus_fast-5.0.19-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (799.4 kB view details)

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

dbus_fast-5.0.19-cp312-cp312-macosx_11_0_arm64.whl (690.1 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

dbus_fast-5.0.19-cp311-cp311-musllinux_1_2_x86_64.whl (890.5 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

dbus_fast-5.0.19-cp311-cp311-musllinux_1_2_riscv64.whl (882.3 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ riscv64

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

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

dbus_fast-5.0.19-cp311-cp311-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl (886.8 kB view details)

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

dbus_fast-5.0.19-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (883.1 kB view details)

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

dbus_fast-5.0.19-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (838.8 kB view details)

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

dbus_fast-5.0.19-cp311-cp311-macosx_11_0_arm64.whl (693.1 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

dbus_fast-5.0.19-cp310-cp310-musllinux_1_2_x86_64.whl (891.5 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

dbus_fast-5.0.19-cp310-cp310-musllinux_1_2_riscv64.whl (882.7 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ riscv64

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

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

dbus_fast-5.0.19-cp310-cp310-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl (885.2 kB view details)

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

dbus_fast-5.0.19-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (884.3 kB view details)

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

dbus_fast-5.0.19-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (840.2 kB view details)

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

dbus_fast-5.0.19-cp310-cp310-macosx_11_0_arm64.whl (694.7 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

dbus_fast-5.0.19-cp39-cp39-musllinux_1_2_x86_64.whl (896.3 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ x86-64

dbus_fast-5.0.19-cp39-cp39-musllinux_1_2_aarch64.whl (851.2 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

dbus_fast-5.0.19-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (888.9 kB view details)

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

dbus_fast-5.0.19-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (843.9 kB view details)

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

dbus_fast-5.0.19-cp39-cp39-macosx_11_0_arm64.whl (698.7 kB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

File details

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

File metadata

  • Download URL: dbus_fast-5.0.19.tar.gz
  • Upload date:
  • Size: 83.2 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.13

File hashes

Hashes for dbus_fast-5.0.19.tar.gz
Algorithm Hash digest
SHA256 71c157bbcd6a48aca532783fdaaaf64eb529d0456a9c9917d74cf7ca3d4bdb81
MD5 96870dbcfe9dd48a87099825db188737
BLAKE2b-256 b156102440b6459e562cdec6245e1406de04472a8811ce11c56ed05fccb90a4b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.19-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 48bb3270ab3a80b347ce25cbe1e2b404e51e78d1da3db82ac17ac937c9ba44ea
MD5 36ead991ab825b5ef07ac5b59edc2815
BLAKE2b-256 421bc5225cdd4752f816473bd2dd6170dbe73a8b994dec1166dcb900895e780e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.19-cp314-cp314t-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 fdeb1f072329f199766e37fa593f441e987b8a8054a5bd324995a5f2fc9a9235
MD5 7e8591de69c8e2e9843e6fbdb46e4c91
BLAKE2b-256 f800e74049f1317bf0124d5f5ac48baca0abc82253e1da06b5494f661facb9d8

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.19-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 c5fff773e91794996fd284335a8223761901ba33805a9343521500b15e7f6bd5
MD5 c80279ea5351d53a9e5a268e6788b857
BLAKE2b-256 6a695b4c9ad8e179d696718d803fbe4e6ba8663abe86f157924f3eea5dcb4443

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.19-cp314-cp314t-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 41cc3dcdd89383a2a1bc9ca9f04f54d7989c18a18c4f986c10b12c36b7997399
MD5 2f98e3d5d91649a53a1dc6dd4b972d75
BLAKE2b-256 03d2b27e0f0f4d819241dfa6b7845785d423582763e3a0d7c090b4f9a154fd5d

See more details on using hashes here.

Provenance

The following attestation bundles were made for dbus_fast-5.0.19-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.19-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.19-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 fd577c31898a37667a5f35aaec337bbc30a610fa7e5649e2a0d590170ff5a1eb
MD5 4cdcdb071c75051ab056888b100841fd
BLAKE2b-256 333af8a5e5310c359f3c71cd47b7e1e290492314e4ef256fe0801b86a8a6bbb5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.19-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 c5a4a697541b12ea89a120c987cf1c96cc5e6749036ff6e8591e2b5073b6d792
MD5 0c6af3bae957cafeeb68477ba3cb277b
BLAKE2b-256 75708f1a6d34fcc9e67ea9790065055911a23152e90a64b3c68e5a0fc2ca445f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.19-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 07f85d6119eafc9157fb752345c6c99ec396f52e2a06d705c1b1042845c24a21
MD5 d4f02f542a417ace13f3fd50305fb768
BLAKE2b-256 a6a7a3dcf39d94ebe636454b92b45f13dcde781192a287bbe85cbf3ca6f5e47a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.19-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 f5d2fab5d42552b47d11a9e0ac13c5d7d05b06b1cc1bdac10f25a65a2b0f26a9
MD5 9b3507a60874ea5b03be0139f83cd971
BLAKE2b-256 dffc50f5168026e299f6acb31e0d64ef3e8b0c09233af6bd642877fb5adac84b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.19-cp314-cp314-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 a1deaf294b9a7acba479cbffb01ad2772d6a950251aad678719f2f1efebcd3fb
MD5 a693c3d5f346dd9dc1f34933256254ca
BLAKE2b-256 9539d218ecdf3a51c607c593e76b358cbe6ca0f6f4047faef7d33acbd0c81ae7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.19-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 acf32937f7afcbafc43026915c6132dbec98cc543ebe16238d466f575f12b2ce
MD5 551cef5e9b3de56cd1b395ee6dea978c
BLAKE2b-256 15b47002e2bc92e85036c1adce3225a7200ccc7ad7049dedfe54871905db221d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.19-cp314-cp314-manylinux_2_41_x86_64.whl
Algorithm Hash digest
SHA256 2bb532287aa38181deafbc421ace857b097067d840e636e19191d8a2350b5e9a
MD5 f4c0ff54a0f574b22c9e1cf449a154a8
BLAKE2b-256 845d36a487f993504e5cdb133c87857035652465c2e02db2e04f19f9e17616db

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.19-cp314-cp314-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 dab177781655b12fc1faf7088778e01f12ca277f04e592d4c1d2a72e99f8da4c
MD5 2395f8821f7bde97ba4706ecdd7dcc62
BLAKE2b-256 aa15e74d551ed96ea5cc04d4a53bcdefcf1810f60340e5bd1f18df2cdc3439ea

See more details on using hashes here.

Provenance

The following attestation bundles were made for dbus_fast-5.0.19-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.19-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.19-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 6a6592e0e3c5e36f070f3509fe365800a68cb8da4732a848fdf9cc2e48494088
MD5 ed515f59e6976a52d53b2137a5787b3e
BLAKE2b-256 039c015115bbe7ca288a9937e53eefa5469daeca320079564669d4900e92abf1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.19-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 6c63ae87dc38d21576129367554137d1c828ebb1fe831e48c90832692781837e
MD5 0122664ae83cb5ac2b141b9c420d5080
BLAKE2b-256 e3894569a20fd60edfdac8b460ff1c2edc8f28478c8b233ed01bd02762fa34ad

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.19-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 2ab82af491e17f273b56669c8a1a701b502fb47a7b9ef37f9811526510a3dd29
MD5 c8837d4dbcafa117b5fbcba6ecde7516
BLAKE2b-256 6ade687feb81f9cd5ba90b6769ec5085eaf7c78615172c9366ade33b6e87111c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.19-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 f8a4b26ef1ea108297f7045973457d52ea7d0473e97ee2e34865918d6b8e4f3d
MD5 12f4c3acf62579c696221748581f4ab4
BLAKE2b-256 041189f5c01615f04a365ac3d379e7174e62970569b6dc49557be4c796d5b7e9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.19-cp313-cp313-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 8805165272fd5f81773b33feeaa6d8270ffbd07fb00538150f575991893ad279
MD5 9849293035d22243a689e349b8e19a8e
BLAKE2b-256 66260bf80466fcffc9f579717c3e70f61a573fb9f581486e497fd609f74f067b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.19-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 55698ef2ed61f7c10c941afe8729ae8bc43f2992a5f20a3944e721cafc2349ad
MD5 171088a83bd58ccb9c0c873790dd5e35
BLAKE2b-256 8bca1313591ce5d55efcd07e4c445828c0f07eeecab0458833a32f6dc51581af

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.19-cp313-cp313-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 d6c79288fa2361c77bc18ebd8d00b825c2a72651d9f0dea29e186a511789950b
MD5 701ac20333ad3152b9838e066c0b0dda
BLAKE2b-256 f99e54f52e55d27f0103a6fce1f8fcf0705b16bb9674cd94ecbf3395535c78fb

See more details on using hashes here.

Provenance

The following attestation bundles were made for dbus_fast-5.0.19-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.19-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.19-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 b2e75385e80ec0890996450e424d391d4ca608d365d806cb76f8bb9d53b37908
MD5 189d654e873cda1673f1d6b2bf1e895d
BLAKE2b-256 1b19b7c5331f2d03db5cdbfe9a7412a2b72dc9addd142a03d4e37a63f6dcfae6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.19-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 75b763619e2b6580e5bb1fc3391c69589d2eef57959f87b213973e34d94e0c96
MD5 ff1d18a32ea53c4b6825ad8dbb02e74c
BLAKE2b-256 f653e77abf7d2f8584da85ac89f76d16a386b1dfbf85cfc5b02a1f4af635de28

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.19-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 32a626af7aad6e0dd5b88b4757ee94ac1222551db091681fbc25981656e9a89f
MD5 a9ecfde252c50d7ceca5c76604a5cdbf
BLAKE2b-256 af59e9e007b11ca85a016f8c35b312c831ce43ad4bcdc53151614c9d4f66a1b5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.19-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 882f4eefe77fc4a54ef09d3166835ae37a1158aa47765a4f856ced9a2cbf4fab
MD5 5481b871526044fb1f60f09fbeafc2fe
BLAKE2b-256 c25f658fdd49fb0bce4295f3c50a0724793e8fcdd19df8c4314815abb45387b5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.19-cp312-cp312-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 3d706e99cd8be31304ff11b3e183fb38863aba5540bd69d7810a141d1f4ea976
MD5 0e022ababb7c30890cc94a9bb021ba26
BLAKE2b-256 5c337895b2ce61139d982af32bb654c5a3784a465a72e609d1b4078e0ef85be9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.19-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 afbe60b83ceff33af6920e7cffc619cc9048d915b9df3a210b6de7471d2bb0de
MD5 bdf641dfb6cd74a0959aa78833515395
BLAKE2b-256 4e35d80ff4c643f8cb8f080f813633523f37582dafba306055b940fa502816c2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.19-cp312-cp312-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 566a88c594cb6138f09c579b82212f5b960a1113f0ab92765d121d35cca515cb
MD5 d332362bd1f2f3fb14c25226d6ef2497
BLAKE2b-256 57117fc83241fbe3f98b36043957ae6be51cf7b5205d29a9daf5c77d78b2cbfa

See more details on using hashes here.

Provenance

The following attestation bundles were made for dbus_fast-5.0.19-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.19-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.19-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 5719afb8cd7cfb5aebc36cdbad5d62ae876265b0be59e3062fdc9c3409395ca3
MD5 7b6510f381ef9e85afff06e565f12e55
BLAKE2b-256 0582a80c669a586da64ffd34aa0ee98fcbe306fa3272f772725bff3216166ca4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.19-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 11418c6cb9501e3f5ae0c43fda4eb152a42bc4714f8852a6bd6becaa8d0339f3
MD5 5fc5bf45674d5a21231ee84d279dbe7a
BLAKE2b-256 523c9941cda1d5b57f240da55f18afed398a7c9cb0b6abe5248a3274a7b1d82c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.19-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 78005ae3c2eca0a5fc56203b1344fc27ab5986ad904b162c8f33461465aef8fc
MD5 567145d8eab6ed1b0deee641e9c20612
BLAKE2b-256 28b27f45578ccc92f089b49dc40f7d90998c54f50464beef834c3037c58ad952

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.19-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 5ce0884d9185083da80e4bcb2d19f0e2547ecd1d6b2e83dda6ed7ab5f758233c
MD5 522beb2bd64652d0d037e36d7f141db5
BLAKE2b-256 ff4e9fa7f74c6c1dca7a114381adc1e85c2cf6e245f3492e7d3ef9ee666b6ec6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.19-cp311-cp311-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 bb2d45696768e4ba3f37cba8ddd6404a971cdb33819719176e3c26367d517927
MD5 6c5de5c94cf180df6337ddd66a81c101
BLAKE2b-256 2b4741f49eafd524b4eb80d4a1ec5a0db5fe11738acae5ee57bb58e082ba5d3a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.19-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 e478eed19fca93b5e158dace6c95d83ac49dab68f48951d843f9232ae35d1892
MD5 55267b0be9a4ad3eb00c9babe3ae1a80
BLAKE2b-256 f6969af01cccf33eacfdbafda95277c0fb9601223b14e94b29a2f6ac89dedc93

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.19-cp311-cp311-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 d17aadccf76d55b24a96388723c1c64fc09128ff4e2d965730a24f396f9c3d32
MD5 e783b5ede1f6818cd494f9e7e978e56e
BLAKE2b-256 3af26861bb65bc1f06670f811df960462c7bc353e97a15ab4386d28cc2894ea3

See more details on using hashes here.

Provenance

The following attestation bundles were made for dbus_fast-5.0.19-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.19-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.19-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 f55f9f2dbcec42bd426ac4be71dd9174c5cad4a2cf777a5fc2e6a22c9af80086
MD5 b3c8aea52ff156e6b0847408d97f7215
BLAKE2b-256 2d96c521f63059395fd67982e207c7c0d89a90ce3cefd15508a8f862302af3b0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.19-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 115993c0d5923d954139b55d2e1c8eef15b6daf1089a8a78c4bc6c568ed745a1
MD5 0d43c9c7ec4c685ec30133c36c82a35d
BLAKE2b-256 5a054882559bea4a2b2422690d92f7290b32c9b6bf4589226d69b9232da40fdb

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.19-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 bda6b9b5e30fd96b941ff66f4103f3a5527afd49e3a2f42f03787a7a04032e92
MD5 6ac380bdbc19fcb55799bceae98d6dad
BLAKE2b-256 b011bd9625ab72a719aa653af0d51b29a51596e04b154e798aebf3f2a2d02cde

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.19-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 da8d3190689ca44a96c10392d96860dc21cfd55700c2f4a9f388b37cfbd9692f
MD5 fc87d9aa40b0daea7899a40703c4d3e1
BLAKE2b-256 eabbe01b9d39cc77e2c4fe38a562e2e9cf98c7521cd237559f591b25686aa2d3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.19-cp310-cp310-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 974e8a89d9be182e106e795e8115270cb2b47f20582cd946e3416ecf3891d170
MD5 43fdceb62b86a4a7e6c65233284747b4
BLAKE2b-256 d9edb70532e6443ad52ad75bcc7d7fe5734fe02620e3e94a876e4e3d99b3a420

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.19-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 7719316da592048a823688aa1a084c5043394ba4606fd1f1c34a81691e4fcef1
MD5 09951c46237faef70943b6060a93d3c0
BLAKE2b-256 e9335473b9991c0a8b4fab0e542935c6ee5a788c171b0ca6b346f3d7d9dcfeb9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.19-cp310-cp310-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 6d02735ca42508c0cd0c5f3b1337ff2e893d8ae84b6fdede69701e9961b74b99
MD5 1143f5ebe0b73e017d95332ac7ab85e8
BLAKE2b-256 100204f82082e9d9b5a05f7cdfa7e1adb9f37e1bc253437bd79d99448970933e

See more details on using hashes here.

Provenance

The following attestation bundles were made for dbus_fast-5.0.19-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.19-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.19-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 61c5d42343272cfbcfc0e4cd52fa29d662e2a1963f51557530883c0e107ba2be
MD5 1cdae2c8e7f34c382c771baba0cf43cf
BLAKE2b-256 92b13a545ba03bec480a3cbdb0394c608894c0fef69bd74cabb5cef9c9066d27

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.19-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 a8530ede0c8ed3a8b560b0df759de3e6080123f5625c9a7922beb05d90ba3c4d
MD5 5278bc990db38a6c53b7e767b7b62842
BLAKE2b-256 18bc3de3aaf5ec468076e159e562bf067b21674804f6d4753e158d2d190d45fb

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.19-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 0981a93b2d166023c3c40f0263933ffcfba54fd20e1e507be5c1e3df290483ac
MD5 4ac2fef5d598d32f1e9dd4d519831323
BLAKE2b-256 cb02d60937760702a9e34197f6908f611ea3fc1d9b1615f43b74e6ec625a6ad7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.19-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 8bf5e8e4e6384b60b33cadf1bd5dec26d2f71f6a25b01243422049f973842144
MD5 970bc3514250935036566f6dab65ec60
BLAKE2b-256 728952317af3b42ba68aa2ccf3952c22aa1125413577cfb012ca710b151e5130

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.19-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 a4eda0f80ea04e1a7d4469a84b73d8cb91840f1278bb38722a9f192197f2741b
MD5 4610d4023311206d1120ef67acf87b4b
BLAKE2b-256 0de503e9742ae6092eb23fae3798cc30e06c55dfcfe1a4e41af7f677b484acb9

See more details on using hashes here.

Provenance

The following attestation bundles were made for dbus_fast-5.0.19-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.19-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.19-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 ca9355279803248e0fe73d4f420fd7856818129da7acdc92c66b269b776012b2
MD5 dc85e3c1f81c9037c455a4b76bbe56a2
BLAKE2b-256 43d387776e9d32d95a52adb5eb1038338621299d353d60b20cdfc9a3cfdd0681

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.19-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 b3a088ff0aac541202ef1834475c941524843c67ad606153456d74c98572e0fb
MD5 140fa846970341c86f1fd401c364089d
BLAKE2b-256 c98598ac90834a5ee4894bb42f71633c3660bd8377f37ad24799d2934551f0f2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.19-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 fe7686553eb7adef7df6b52f5b8b326363a053fccd2bd1cf62621e50c69651aa
MD5 ae50e658f1fa237e8fd7fcd3510f38a6
BLAKE2b-256 793adb6b71087d9eed5f3df1313b5459560b1cf12c0f825ff1b36aa720ca4fd1

See more details on using hashes here.

Provenance

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