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

Uploaded CPython 3.14tmusllinux: musl 1.2+ riscv64

dbus_fast-5.0.17-cp314-cp314t-musllinux_1_2_aarch64.whl (1.6 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

dbus_fast-5.0.17-cp314-cp314t-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl (822.3 kB view details)

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

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

Uploaded CPython 3.14tmacOS 11.0+ ARM64

dbus_fast-5.0.17-cp314-cp314-musllinux_1_2_x86_64.whl (863.2 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

dbus_fast-5.0.17-cp314-cp314-musllinux_1_2_riscv64.whl (834.4 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ riscv64

dbus_fast-5.0.17-cp314-cp314-musllinux_1_2_aarch64.whl (819.2 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

dbus_fast-5.0.17-cp314-cp314-manylinux_2_41_x86_64.whl (854.6 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.41+ x86-64

dbus_fast-5.0.17-cp314-cp314-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl (834.2 kB view details)

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

dbus_fast-5.0.17-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (856.4 kB view details)

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

dbus_fast-5.0.17-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (811.5 kB view details)

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

dbus_fast-5.0.17-cp314-cp314-macosx_11_0_arm64.whl (693.3 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

dbus_fast-5.0.17-cp313-cp313-musllinux_1_2_x86_64.whl (858.7 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

dbus_fast-5.0.17-cp313-cp313-musllinux_1_2_riscv64.whl (829.0 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ riscv64

dbus_fast-5.0.17-cp313-cp313-musllinux_1_2_aarch64.whl (806.9 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

dbus_fast-5.0.17-cp313-cp313-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl (829.2 kB view details)

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

dbus_fast-5.0.17-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (851.0 kB view details)

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

dbus_fast-5.0.17-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (799.1 kB view details)

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

dbus_fast-5.0.17-cp313-cp313-macosx_11_0_arm64.whl (686.3 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

dbus_fast-5.0.17-cp312-cp312-musllinux_1_2_x86_64.whl (860.7 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

dbus_fast-5.0.17-cp312-cp312-musllinux_1_2_riscv64.whl (831.4 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ riscv64

dbus_fast-5.0.17-cp312-cp312-musllinux_1_2_aarch64.whl (808.3 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

dbus_fast-5.0.17-cp312-cp312-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl (834.3 kB view details)

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

dbus_fast-5.0.17-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (853.0 kB view details)

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

dbus_fast-5.0.17-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (800.5 kB view details)

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

dbus_fast-5.0.17-cp312-cp312-macosx_11_0_arm64.whl (690.6 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

dbus_fast-5.0.17-cp311-cp311-musllinux_1_2_x86_64.whl (890.9 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.11musllinux: musl 1.2+ riscv64

dbus_fast-5.0.17-cp311-cp311-musllinux_1_2_aarch64.whl (846.2 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

dbus_fast-5.0.17-cp311-cp311-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl (886.7 kB view details)

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

dbus_fast-5.0.17-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (883.5 kB view details)

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

dbus_fast-5.0.17-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (838.5 kB view details)

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

dbus_fast-5.0.17-cp311-cp311-macosx_11_0_arm64.whl (693.4 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

dbus_fast-5.0.17-cp310-cp310-musllinux_1_2_x86_64.whl (891.8 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

dbus_fast-5.0.17-cp310-cp310-musllinux_1_2_riscv64.whl (883.7 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ riscv64

dbus_fast-5.0.17-cp310-cp310-musllinux_1_2_aarch64.whl (847.4 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

dbus_fast-5.0.17-cp310-cp310-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl (886.1 kB view details)

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

dbus_fast-5.0.17-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (884.8 kB view details)

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

dbus_fast-5.0.17-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.17-cp310-cp310-macosx_11_0_arm64.whl (695.1 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

dbus_fast-5.0.17-cp39-cp39-musllinux_1_2_x86_64.whl (896.1 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ x86-64

dbus_fast-5.0.17-cp39-cp39-musllinux_1_2_aarch64.whl (850.8 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

dbus_fast-5.0.17-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (889.0 kB view details)

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

dbus_fast-5.0.17-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (843.7 kB view details)

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

dbus_fast-5.0.17-cp39-cp39-macosx_11_0_arm64.whl (699.2 kB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

File details

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

File metadata

  • Download URL: dbus_fast-5.0.17.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.17.tar.gz
Algorithm Hash digest
SHA256 c8dbe4c30adeee61d2c84005a1ad1bccfd2961fee7d995e876db5117f502a20f
MD5 8c64c24f748144a3ed615fc1c4755cc9
BLAKE2b-256 c3a37dec17915085ee776c14a211c1defc58c8f0e51ea235bc8e750f1744ceca

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.17-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 768e3c5f6bfaadebd42307aa2040deb6197b0c8495faddaef1f34bab943d02c2
MD5 7086adf2b2897f49dbe5b63271753747
BLAKE2b-256 542497a30df7d5fbe35294e019ed4edd83e636941b3a3c76f0803e7bf30e3564

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.17-cp314-cp314t-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 47650ef8ee6365e20fd5e4724f06235c2ee4eec30ee18a675415730df0b15919
MD5 bb1276163990503814fcde97da5de7f2
BLAKE2b-256 4aa1539c8e47e5a5f2755c7e2df0a6bbbfcda22bfb5bc9991602348d1c7c32a4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.17-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 01326f224e4f1b574fc1e750a9b45b56306110c0d61975cbf52317f7b02b176d
MD5 07436f9712482ccd6fd00558a21fc074
BLAKE2b-256 ee96bc16dac81c48f8087149eddb6f02c3d7b2c645ad22f7e40db21a1bf313a2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.17-cp314-cp314t-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 15b70d946caa15584f0638e0d19bb4847fbcd1ccfc7b3c92015534366b41f2b1
MD5 66a5d8103af1e4e5dd963aeafc472a7c
BLAKE2b-256 a9e38d06f0cb89987d1562388d62921b374a6621503e406f725fc9471facf141

See more details on using hashes here.

Provenance

The following attestation bundles were made for dbus_fast-5.0.17-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.17-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.17-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 1616e08fc3940df827418acaf39482a0c143a445159edc76187850be1f518064
MD5 26c822a8d85f19215c056729937e3557
BLAKE2b-256 b8ef18d2a59e6af6a2e4f2d384f82d4e464f83446ad2e388ef855f3f0e8013b6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.17-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 bd5f0f6a6666d26856d487a0707a929663f827e50ec5e021a8daf5bef8ca1cac
MD5 7afb09fd50a16ae12b43675c38dac3a5
BLAKE2b-256 c8489444d5d8597440b13662bca4953259b6d339dbd850e260186593779d915e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.17-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 bf34c02caf31397688517b5371f671cca929235e588fd039edaa72a2a80fa8d0
MD5 76fcc28c07cb59b128026fcf2769b66d
BLAKE2b-256 89a009a245fea1265ef73b700915c4655c3c4d13161ace835ac0f4cae5a9307a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.17-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 c7ef2d704774b61f0260383c26e1d263e7cc3d5e222a783eccc20b9dacd294d4
MD5 29fdfe35ac6c98af762aaa3cdedbbab4
BLAKE2b-256 dd04695824bf9c065f644fc6bd0ae4ddc4be3c13930d9001c9ea83d69d6d9812

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.17-cp314-cp314-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 b62a9783c443f16b7817830cb99dbe34a2cc9a9b067d770ab02ad082d83cf099
MD5 f8e1f9ff99324844e7c9981173b0b533
BLAKE2b-256 f19bf01a8c5e9f76e215a5886050a6fb89637ec58b116f5c2971f085a9f84892

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.17-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 311cd2c1249f9bdce4cd9656370f592e133e4cfc8c5a116bae158496d0623c8d
MD5 6112899481da7cb9808452296b30402f
BLAKE2b-256 261ef9bd647a0828dc1e605db6b3a1db70fd46a26ef75249ef06dc2ede386c6f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.17-cp314-cp314-manylinux_2_41_x86_64.whl
Algorithm Hash digest
SHA256 383d8c314b03de72e4117208b49132533a41c0e750bc4e1526bd8f1db1da5c92
MD5 52c50053bf40b23147b4c9b8dbceb303
BLAKE2b-256 67bc626786b044dd84b5d884d12854136f04c6eddf1f01c1b4dc3126245f3bc4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.17-cp314-cp314-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 c75b6567e2cefc1325c3d9654e24a15c60134ea5eb9afef5f7ef3e2d7d7cb7b6
MD5 8dc3ea40c3e3802dbb513af779fac046
BLAKE2b-256 253866f562885533fbb628cbd463edeceace477ca077d5d5fa5084433fd5b100

See more details on using hashes here.

Provenance

The following attestation bundles were made for dbus_fast-5.0.17-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.17-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.17-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 00cae78c4f72a5a745c90a30d507faa73b553af005c260206fcf5281ea41cec6
MD5 417cbd164206b18c727e2486ebd88d97
BLAKE2b-256 6168a19bec62dda2ca62d59b11e9279682adf7583c5712cecad2cb0cf5930b8a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.17-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 61447dda5bf86cf0f1512e2f89d245a869eb5fb0016c62b5e34089f9428ed10b
MD5 60d72f06db26ec6b6c78556bf507e9d4
BLAKE2b-256 73172d7bdc69139edde54ab41aaf2db181bb56163680c6c8b292b69d571360ae

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.17-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 b434580e4a4683ec548761bb4d0db025d5298e943d6eb16e3ca00c3dfd5a41d7
MD5 a760deb443406f610737f4ebb3edc018
BLAKE2b-256 1449403723853cf4557c80ca92f1de41c28b76aecf7eb1e000c7635b83c6eb8a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.17-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 72203bf27829cc3564efdaf2dce47f815716f9c98bf08d8e3b11da63004a7dac
MD5 b7b17c96aeae7c25b1cc26f57299136f
BLAKE2b-256 a536a6f0e2f4b5c48e91aedeac7226525922210154a2c441bdff36977891cb64

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.17-cp313-cp313-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 d5fc9a082f208d985bae49cabe06e16744d75dff1e06809e1400d1323ffa2278
MD5 fe393d8bce20f821f2f8a4f6ccb040b7
BLAKE2b-256 2a8aa295004470d38187f98e1d72d7ec0a50317fb88a0e16a964e8dd74191a33

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.17-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 b5b33b2b161947a22cd75976900653d1fbc5e7c687fb8fc76fcc06180841415c
MD5 c7dcbe8e193a5895a749dfa8848b2bfa
BLAKE2b-256 0a4516293d65e76adc1043142d9337d1f30ba0c322979afd3f0efe4962f750b4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.17-cp313-cp313-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 3a773ef28aba076a1b14cd1fb86163b97f4fe4632269f69cea922558537ce3eb
MD5 2c285468868f6638d296db6d6d01301b
BLAKE2b-256 30fa51ea45d2beed7b4c0443f945e110f876be105e99fcfceeb618865186e46a

See more details on using hashes here.

Provenance

The following attestation bundles were made for dbus_fast-5.0.17-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.17-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.17-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 cd40dbaf55bff29ecba400db47ac9e5e626247dc3c3e8755836fd7beee610d8f
MD5 75a23da67ab731e1ef2a7fed57a86eb2
BLAKE2b-256 84d070685abf074c1776b3633b669462a52fd7883f4391934ea32ce0cd3877c4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.17-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 f587d2a9edf356eebcfc70e8e947822a84bafbb22c809cd4dc2393e309e032f4
MD5 c4329e6989e3e7a2d8b34958925902c6
BLAKE2b-256 4c9b0393b13c984f4aa71d0b89d876d0b32022dd34affb0231796871f397acce

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.17-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 efff07c56458fefeb025f6071cb3368e9f5ed92f2ebc3d6936c35c0934d2c7e2
MD5 27d9caec59e52f0c2eda53bcb9f42b70
BLAKE2b-256 62cbdcff763a7290ddc777989e5b9f50503275a3116ba29d7f807cde44fcab5d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.17-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 bb9c1fda1954ab88bd00146f6fb81f2b19c1d2984613b7f79c35c4a277f82c27
MD5 08c8b9bc78ba05ddadb8f77914dec86c
BLAKE2b-256 d48e5ac6f572d3d6a9d544f3caf02f43b4900df20c48da86e6c28333c03bb5c2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.17-cp312-cp312-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 7a72f97fca7235a07895c44caf174b934f69ab16c249503f06e96abf3ed414cb
MD5 9622ab465a47af68ef588087ae51bcea
BLAKE2b-256 66c719d73a21e8df7ea36c15667a6284bfe63e782cffcdcf45e4184fc9b4b835

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.17-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 7e1b27fdf154293f07befa99208d0096536c79f035d6e9265e10b7b87994c694
MD5 63e923ed516a129f29cd909e3dc023b2
BLAKE2b-256 e0452608a560753b75f7b2a9ec50ab13d7e83c56364bc0fa8238c63bafc2ea11

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.17-cp312-cp312-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 26e26d43469816e9d9861e7973772d4db7ff593e8be8a27c7c52ff539c046dfd
MD5 9072a102034600d0e54adf54f3588ee8
BLAKE2b-256 64f2e03a023f7f028e1295bc9e4081845fd0e1686ebfc15ea89e4d3ab1381360

See more details on using hashes here.

Provenance

The following attestation bundles were made for dbus_fast-5.0.17-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.17-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.17-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 d3caf8a00c20ea12db0a89f773283a72d319eb1012d4c7a237f7dcb209c08ee2
MD5 7859c3d70d07698f00540aa9cca753f1
BLAKE2b-256 3e351c11c7bb73bf309ac202027c59e3e6357d1d191960c4106c66150d914b49

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.17-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 010b9583c4c9640ca08ed526f246e37874e2762862c5a30f3f3ad6d679706745
MD5 36b8d2060f902478b8b54fc20b9e61da
BLAKE2b-256 02ccdbb4e337cd0756e9a0bf3d055cbdea4ea6da18569fa29ad56563f7b7c59f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.17-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 f0c225706f1a019e808de6434d95fdcad1917a911f820a30903dbe8b035b0062
MD5 bd5063cd1ddc443a0bfa7e8f2d8d01a5
BLAKE2b-256 aeeb3dc4082557f913722f20076099edd2ee9508620ca0343caee89c74b2e4d6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.17-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 bd8cae0b491001bb0fb4f53d2faf4fd6bb3c873de647e7e7d4c7f7a9579e90fe
MD5 45879ced815a49b1f3a613bb5a2df519
BLAKE2b-256 0454a06c11868b66c793ad0fddae3a992a5128dd527f2a902d6a2d7fa56322e7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.17-cp311-cp311-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 93ac8146f8621f5dde4402068c17d77ed9836dea978d345f77faf55b9ca4c192
MD5 3db64b3c34a728bb22dc4efa252baa0f
BLAKE2b-256 94af8e5eee562569db9a048ef87b3e1de2e4578e1253a07e5daa64e524b25420

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.17-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 ffc8bd9b7fdeda42d863ec02d8a568198b33896a79e5dd04ee9100818c074acd
MD5 8558de8a9c33a299de9bc94fcf0cdfee
BLAKE2b-256 069b4286953b9c5bdea5760b43532173d46eed6357b15d68be373672f3f0eac7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.17-cp311-cp311-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 50dba51a4487f2b1e1d3202e1d15547227eb8e6ed2f84faff468c94e65f45f55
MD5 b41d0b3c23e6b8d5fdfe889d6c155f5e
BLAKE2b-256 0863d4fd7131bbb34b640da0d27e7787985e4e9c9e0bdebfc52d6524b8bedf94

See more details on using hashes here.

Provenance

The following attestation bundles were made for dbus_fast-5.0.17-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.17-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.17-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 7ba925ea67372ec65786fe3db09b73f4c9691ba4eea96ee4b1e792607ded780f
MD5 2a1c0ff5cfd8c04304d05300775b6dec
BLAKE2b-256 4fbbaae4d7f54d35672752f53e899c2a2c7d1c5e8d42b5d4983fe4d3ed6858eb

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.17-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 7b4c1c7b999a8799243fe51e0d9d54ff80e40a61f0fc53da65c5e33b19dedc8e
MD5 b0a8a63320dd2e4235c9af2ccabc02bb
BLAKE2b-256 7dee5cfe3fcee1424f3d40522ece3426fe8816024e5514fa731221ee214a422e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.17-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 c1b695dd84260b7f75d1a4045155d681cac6c5898ab8122e8b321582c8779627
MD5 01a745187c71e979c6431f1b59687392
BLAKE2b-256 172ed813252b2710cc087576e876dccd6117c57ff5da5ae25fb54102fb57a99a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.17-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 138b9d6349c9605cb2c53dab9d8c05f566a43a8e73501fdf8aa83c60496daa71
MD5 5884bd2ccc219fa17e617f7ce333059b
BLAKE2b-256 7c0f5cee2f7f007f8469a7c26a05de7385b6c9e7cdbd5b1bfb31f427de9c2e44

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.17-cp310-cp310-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 6ce8a67c32cf41503e224673dfd4b061b0f9e0851b05dccbb326e88f29fc2f86
MD5 30ac1e18e16c3a9f6e88ea409189f6e8
BLAKE2b-256 4cebce59943d6ff890c83609f1309f399c7c65e98a4f19703158d55793b03fa3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.17-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 ba6c64990c1f0a08c2d44d538872f3b73d9971cd4f0bdcc2c17a4ed72b2c3585
MD5 8737e36412c2e6a2e454edc65209b56c
BLAKE2b-256 dd246d4019993f248f7bc884f5ebb5a90ac9fda7b47c3832e9719980a7140ddb

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.17-cp310-cp310-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 e09267389bb19e043551c177658b4c820240591fea0d355aa551699a08b762e1
MD5 858885bcd66e0589410974f083087651
BLAKE2b-256 f4bc79bde7f386c4b87a4e9bbab2f655e5d1ec7c86b70026c454bc8fe56c2ed3

See more details on using hashes here.

Provenance

The following attestation bundles were made for dbus_fast-5.0.17-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.17-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.17-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 34d248f85416d43bbc8eadd42118f4147e07b86d4b9af7e1ab18641cf28c3e6a
MD5 ecce9f68423f9f02a1041473533107a0
BLAKE2b-256 3f5ff621878cfced1eb12de3e4c23602ec30b825848db857c70957ecb4b06716

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.17-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 5d3c742440d4deb0e7e71b9d90de9cc52c0d9702890ef16d91f76a10b737154b
MD5 07b4acce7e1d12c1bc0d7ae72951c479
BLAKE2b-256 8714e826ed5bdb57e1c9a00821802a1739e349c46cfdd13d955d3718c5dfe5fe

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.17-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 0cfe8bbe0981b415acab41a1863e10db236807b430f64731362e55d59ccb1041
MD5 257a2ae0d423f59bae227d756d956521
BLAKE2b-256 22adc18cc33b16ec0ea55b5fd5666b2279d95f473b2581a570ed65282ae667ef

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.17-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 a3a235a56002adc2878df6e22810de57e2f7d045effacfa892b700af8faf2d03
MD5 0e8f80f88f80d1680090929e28b1d01f
BLAKE2b-256 beb7077996d98f648c0465beb806fd855fbf6407367552621f1c5b3a4b887250

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.17-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 92ee6b17830ee4e6d11b5207c35afef752a377040b0be279d8665edc24a4a127
MD5 9f4f52038c36c74f19ae085863bf826b
BLAKE2b-256 19f1a326b294f0275b732b2176e4305dfe6debc4811d501e247e64f068e3dd93

See more details on using hashes here.

Provenance

The following attestation bundles were made for dbus_fast-5.0.17-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.17-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.17-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 4bceebdb413e1016a308ae602e049e3016f2ec303d5a66ec17bbb74e1c11e70f
MD5 c5829fdb8135d67722680244bf6673e5
BLAKE2b-256 196aa4c65a2c12cc12e3d7791dc88d81bd51e99baaa64114116a51086f9d79d2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.17-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 a0f5761428769f1f2629e012279de18b076ec61baf43db1b7f6b88d0271b1472
MD5 2f8862f3935beb42afa5306130ea0f57
BLAKE2b-256 68c49d296cfeed9b6ead9123e2b8fbaa8d7cf9212f9815e61ad9ee51ce0a3446

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.17-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 79cb33096168bec030447571215e1fd3cae34d8456f840b63e0c27e5b4479820
MD5 bbf9677aca465d6071329360085cf764
BLAKE2b-256 7e99902b73eae565b5532aaf692e2a080ac9f4eb142b3b04b8cf2c976ed992d3

See more details on using hashes here.

Provenance

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