Skip to main content

A faster version of dbus-next

Project description

dbus-fast

CI Status Documentation Status Test coverage percentage

Poetry Ruff pre-commit CodSpeed Badge

PyPI Version Supported Python versions License

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

Installation

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

pip install dbus-fast

Documentation

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

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

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

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

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

Installing

This library is available on PyPi as dbus-fast.

pip3 install dbus-fast

The Client Interface

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

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

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

from dbus_fast.aio import MessageBus

import asyncio


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

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

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

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

    await player.set_volume(0.5)

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

    properties.on_properties_changed(on_properties_changed)

    await asyncio.Event().wait()

asyncio.run(main())

The Service Interface

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

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

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

import asyncio

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

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

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

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

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

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

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

asyncio.run(main())

The Low-Level Interface

The low-level interface works with DBus messages directly.

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

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

import asyncio
import json


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

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

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

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


asyncio.run(main())

Projects that use dbus-fast

Contributing

Contributions are welcome. Development happens on Github.

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

Copyright

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

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

Contributors ✨

Thanks goes to these wonderful people (emoji key):

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

Credits

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

Project details


Release history Release notifications | RSS feed

Download files

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

Source Distribution

dbus_fast-5.0.10.tar.gz (81.5 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.10-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.10-cp314-cp314t-musllinux_1_2_riscv64.whl (818.7 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ riscv64

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

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

dbus_fast-5.0.10-cp314-cp314t-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl (818.0 kB view details)

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

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

Uploaded CPython 3.14tmacOS 11.0+ ARM64

dbus_fast-5.0.10-cp314-cp314-musllinux_1_2_x86_64.whl (855.2 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.14musllinux: musl 1.2+ riscv64

dbus_fast-5.0.10-cp314-cp314-musllinux_1_2_aarch64.whl (813.6 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

dbus_fast-5.0.10-cp314-cp314-manylinux_2_41_x86_64.whl (846.9 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.41+ x86-64

dbus_fast-5.0.10-cp314-cp314-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl (828.4 kB view details)

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

dbus_fast-5.0.10-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (848.6 kB view details)

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

dbus_fast-5.0.10-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (806.1 kB view details)

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

dbus_fast-5.0.10-cp314-cp314-macosx_11_0_arm64.whl (687.8 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

dbus_fast-5.0.10-cp313-cp313-musllinux_1_2_x86_64.whl (850.9 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

dbus_fast-5.0.10-cp313-cp313-musllinux_1_2_riscv64.whl (823.0 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ riscv64

dbus_fast-5.0.10-cp313-cp313-musllinux_1_2_aarch64.whl (801.9 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

dbus_fast-5.0.10-cp313-cp313-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl (822.8 kB view details)

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

dbus_fast-5.0.10-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (843.3 kB view details)

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

dbus_fast-5.0.10-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (793.6 kB view details)

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

dbus_fast-5.0.10-cp313-cp313-macosx_11_0_arm64.whl (679.5 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

dbus_fast-5.0.10-cp312-cp312-musllinux_1_2_x86_64.whl (855.2 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

dbus_fast-5.0.10-cp312-cp312-musllinux_1_2_riscv64.whl (825.0 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ riscv64

dbus_fast-5.0.10-cp312-cp312-musllinux_1_2_aarch64.whl (802.5 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

dbus_fast-5.0.10-cp312-cp312-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl (828.1 kB view details)

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

dbus_fast-5.0.10-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (847.4 kB view details)

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

dbus_fast-5.0.10-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (794.5 kB view details)

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

dbus_fast-5.0.10-cp312-cp312-macosx_11_0_arm64.whl (684.0 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

dbus_fast-5.0.10-cp311-cp311-musllinux_1_2_x86_64.whl (883.1 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

dbus_fast-5.0.10-cp311-cp311-musllinux_1_2_riscv64.whl (875.5 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ riscv64

dbus_fast-5.0.10-cp311-cp311-musllinux_1_2_aarch64.whl (839.0 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

dbus_fast-5.0.10-cp311-cp311-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl (879.1 kB view details)

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

dbus_fast-5.0.10-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (875.7 kB view details)

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

dbus_fast-5.0.10-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (832.0 kB view details)

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

dbus_fast-5.0.10-cp311-cp311-macosx_11_0_arm64.whl (687.0 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

dbus_fast-5.0.10-cp310-cp310-musllinux_1_2_x86_64.whl (883.8 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

dbus_fast-5.0.10-cp310-cp310-musllinux_1_2_riscv64.whl (876.7 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ riscv64

dbus_fast-5.0.10-cp310-cp310-musllinux_1_2_aarch64.whl (840.5 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

dbus_fast-5.0.10-cp310-cp310-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl (878.8 kB view details)

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

dbus_fast-5.0.10-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (876.9 kB view details)

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

dbus_fast-5.0.10-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (833.7 kB view details)

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

dbus_fast-5.0.10-cp310-cp310-macosx_11_0_arm64.whl (689.0 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

dbus_fast-5.0.10-cp39-cp39-musllinux_1_2_x86_64.whl (888.4 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ x86-64

dbus_fast-5.0.10-cp39-cp39-musllinux_1_2_aarch64.whl (844.1 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

dbus_fast-5.0.10-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (880.8 kB view details)

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

dbus_fast-5.0.10-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (836.6 kB view details)

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

dbus_fast-5.0.10-cp39-cp39-macosx_11_0_arm64.whl (693.0 kB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

File details

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

File metadata

  • Download URL: dbus_fast-5.0.10.tar.gz
  • Upload date:
  • Size: 81.5 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.10.tar.gz
Algorithm Hash digest
SHA256 24986d0e57f1792903b8a25b7dddeb76fd58536066a2563367c4b03c4ca938d9
MD5 fdf9e0c7fcd9e450e97a519d892d728a
BLAKE2b-256 c60c47c329beb0c4a2ca2be1b270fb28590855f4850ae807b1f1024c21c1f319

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.10-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 07961d82c8d504eb6d7eba9e36b70cc9aa5b417fd179bf831ff5e3301b1ab49d
MD5 cc5e68dfd67fb2d19f5906fe2f03dd33
BLAKE2b-256 5fd6b4f6fbdba79b4fbf36c0e808100a205bb0e25108a2aee1b80bec9bf5de13

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.10-cp314-cp314t-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 1867012cacfb18931a9db3aaa2a376fb289ed0acab9d2e4c09277eb9d9bafe52
MD5 e8d6694c6faf0e8146d6bddeddd67f14
BLAKE2b-256 44a975b4a3714781316854f361b4c4a4ec999fda20f76e1a931eacab101f084e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.10-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 6fb4a1043241aca036724ae18b127db2cd415b242da8f5f8bfc3c6395a33dfce
MD5 4eac4bac5d61e9798fe30acf5abce825
BLAKE2b-256 b813bb2b73808db07fb7847776f79d769b39914fa38833e66e16042399369578

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.10-cp314-cp314t-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 bd11bb865e7ebd962044e027755789faecbb3102674bec3465153359252417e2
MD5 3ddbc729e837b67d2228bf987c71e3ca
BLAKE2b-256 a514492d7ae6e6706ce3e69d536efad53dc817cc5aee91ef76f0c3d552eaba13

See more details on using hashes here.

Provenance

The following attestation bundles were made for dbus_fast-5.0.10-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.10-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.10-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 689e0b02cf6b181237518a1da80834fcfe3a0ba905d6107fd241d377a339e3a1
MD5 12e4186794f18d62ba86bba336149dd2
BLAKE2b-256 2613582e705a90b6ea6e868d016a99b084845f1a578074f4b3e1bc51a6ec3f59

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.10-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 f4d7dfc33e8cd3edab3d929d28ba788558461b7ddd10e2b830c4b0a8111dc25a
MD5 98e2d823ec619b344cd2467450492d7e
BLAKE2b-256 8efe30718fe1ee0ad5e04bf24f03eca1e4b379ec1be1b461abfddf4cfc41edcf

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.10-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 9e12ffd23424fc077922742dd69424a97619146cf7de4a454db4e8245bafd98b
MD5 56bda7b25703c6d8ed22c940962de3d5
BLAKE2b-256 1e677dceb4581bf2486fb2864793632b4f8918ccb63d50ecca97007312423548

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.10-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 e916cad61e779fe7177b5fbcbe6c7db783586d5f20bd8c5ee1f43c251f888dde
MD5 09fea3a74e46e784659d61b813d1a005
BLAKE2b-256 3077c18489b48a405c7255b4285925509c35d8381af6598ccc57bb76f999d30d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.10-cp314-cp314-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 a247d8861e9682a6dc8aaedded99d573e280469a4ae998960e188154fe457d86
MD5 a627d27bd5d30248f30f6b29f54fb520
BLAKE2b-256 b478ebf8f6bf406d11d7954273b91d9ccea54eaa1c14bfea6ef817e8cdb9e347

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.10-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 06b726789181bf9d6c453c8d9c403aad4e0abcc2a5907aa2eac1b499015f765f
MD5 a3a59a0d63bf89484cec1aa78d9023f8
BLAKE2b-256 ab984039e22880560742d1d41e4823a7ff795cf6fecd6706e43311b95b43b5fb

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.10-cp314-cp314-manylinux_2_41_x86_64.whl
Algorithm Hash digest
SHA256 3787d9a119f2bd2ebe9077430f4b07e50143baccbf83fcbe18b49dfd5551d8c6
MD5 7508c38fc2b4ce6f29999d2acd24e685
BLAKE2b-256 364e5edef73a3774447887c53ad25771932edc4eabe5f19b56401ffd01814006

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.10-cp314-cp314-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 b406d8e7a2742c1a242e7a7f3e4f064e4df7e2d3ba4f6d505786d5e274972821
MD5 1ea5c3014d4e7a15792f6e18c0bed040
BLAKE2b-256 56d89333372059b9bdbbe0bfbc4d05b49468bb377270b503fba5337a5cd527da

See more details on using hashes here.

Provenance

The following attestation bundles were made for dbus_fast-5.0.10-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.10-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.10-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 15db550717e5ad183f132c3bbe7b9d7d2bc07f6a02c29a76f828f3ec921d8c46
MD5 fbc719f814a909d8bb29d538d0467d68
BLAKE2b-256 279ed87a279cea983006af6c9872e38fef0fea0fd97c56fa765f90487c1a2246

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.10-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 2f4e0a16927fbecb9bcc8d497dc69aa21f78d37fd9002b45af2c5611286bd04d
MD5 ff38a5068851c8f75efa2a674ef9a147
BLAKE2b-256 1186e0345c446e0a6168dcbac6b63f6f776f512dccb2fd6ab145fe96f4cac575

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.10-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 5113ada5feef07f78514dd388fb000d3bf21e7a3e4e65cfa344b5fa362519aef
MD5 3fc407ca3838f8e80a2a5332d3383206
BLAKE2b-256 0cae8d5d2ac823ca596e9c04b57d455f185b6f9731dec641ac60c80a48b56367

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.10-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 243df5eb58b6034023c2907476318fea35b94039f43bb1959c363c750304c5b9
MD5 72db2061b1693a3478f0abee3cef033d
BLAKE2b-256 463afee5bcf3f9273fd492b3348c4ef540ecb27c53b49a110819df3134bf6c1d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.10-cp313-cp313-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 6bd4da688a33a4f34151143879e7b4189b5c30fcf50ad14ffa128af85d3d0381
MD5 e1584b3dd049d5d06cc0f1150f28b44e
BLAKE2b-256 e3d283cec401ebce6380493c668c114c9a5a6ab7e884d1e75c6e4d9d2e47eaac

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.10-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 08c2442bdd765198843c8b0b51c1038b6979659c7f2ec64ac2f551092962a735
MD5 9d996ab1894599af6282145525737665
BLAKE2b-256 acdd4c3625aea204c55963df0f126ffd7468d06676ee9213c51d56a5d41a46b3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.10-cp313-cp313-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 15a3faed3a635ec1c3b81b4b711e5be42276e7c3a332e9836b2a240bb8052c0b
MD5 9ea6304459d04a016a44d2c57bfb9df3
BLAKE2b-256 71bffdcaf653e38184ead0547dc5c92cda5fb2df3cdc4622ce6437b5f4ba96af

See more details on using hashes here.

Provenance

The following attestation bundles were made for dbus_fast-5.0.10-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.10-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.10-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 68868d80ea3054e15465fc89d3949091147520fd240dda4a11955d98210b9f47
MD5 3decd4f7988642fc2cf978d1d50e74a4
BLAKE2b-256 762b2c0b82dce468e28a5531b5118aa72b9eebbce5e8231473e29179a5530fc0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.10-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 394c493d0426065261b35cfc0b26ebf378eb8d8a10f1ce9066945dece09323ff
MD5 a9782032c1afb30ba4e7e38f9ea53ffa
BLAKE2b-256 7f7f886858f36a462690a363bf0628137d6a837a536dcc6bc59b88e582c7c340

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.10-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 4a999046ce032dcaf3d80f65f5c93120e160f80a6840c0fa6fe2cec412f1a0cc
MD5 04c7c466740a286b272c161b0d573751
BLAKE2b-256 63ed9f3d52334aa4bf4273257a6e071615d78f1be687c18794775f0b415c9368

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.10-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 0b11a71a0f650e8832c9f0b4041293a47f5493f9aec0f46796184fe4bcdd0108
MD5 9ecfd4ab384db57e33310d53926decf9
BLAKE2b-256 7ae6da8df0af7b8932da27fb8eb12256558cc7f41edc97d5147be5263263c83a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.10-cp312-cp312-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 59abf0c0a2800630ec156faf61da4fc4549d83281a7193bd9cc51d27eaa01de8
MD5 009315386a171fa7747540d3a8d756d4
BLAKE2b-256 63bf4a49667e8472aa6fdaa29337f2d61802c7dbc96372e6a9218f9ca3d34a6b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.10-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 36c1fdf9257d20866de2d65312cd205daccf0adeee9960075762aa6a3d6b99f3
MD5 45e99aca3b6c0418fcdd6ffd36e1d505
BLAKE2b-256 04230f6cd30d73d200713ffcee46951db50254e831a5c65f306ec415611dfa7a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.10-cp312-cp312-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 3bcfe3c394e7128315f2520782066fafb6d6c8c0c347e98a397c195bfe27917d
MD5 d56e6b18f772ad9ef4d60bb245331e9e
BLAKE2b-256 6e0d5ea454d1a5690c6f6430de625923980f27f68ae68fa4c04bb54c3f967955

See more details on using hashes here.

Provenance

The following attestation bundles were made for dbus_fast-5.0.10-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.10-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.10-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 a4438df6498c7ca2575a92707a294570d0ae93bff4d655a196058425d297fb37
MD5 922b9a9f79fbf69d36e3a62192e9e36e
BLAKE2b-256 ae2ccdbcd8cda21841e198972a35336fbca7767fa720f629a5bfd774a7de965f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.10-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 db846a1f28f86abd757da3c4a9b69e3dfbf773dd7422ede43de5f3f8bbeab074
MD5 37308f9aac1ffd3ce1818f5979df538f
BLAKE2b-256 b4db066ebc0495b334d11d64826d7b67b44f6c8868d26b31f21f173ceeee2eda

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.10-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 a07850696378400680e1f419dfbb53e01e63dda9d28ac453d821f8eca150cef4
MD5 5df6597e66b63f1aaf3c6976580b6d89
BLAKE2b-256 e131789ba892045a23f9e0bab4bd8362f4194dda0f68725b2e5d0a4c0cce42eb

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.10-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 41f73ac5b653b5500090baf3fcf0d6d5ee96eeb862b51699c5792b3673e74e01
MD5 fe785ea9bf46260136a99cc7b49149a4
BLAKE2b-256 c23154a2917ed1a7bad1c6a8636963e1ebf4a9195d5adbca0f0fd49f6b57a1e9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.10-cp311-cp311-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 a8a37489a319b9e016f1a042e72e8cfc7e17aa521779669837db44ef5559b927
MD5 d93ac6fc193341deda9a4cf626c61db4
BLAKE2b-256 f030c5ad2d7dfa857e922807093ae16ea181d60888eda2992cb00ae7044f807a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.10-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 a48585a9945e21286ff6c773ef0f5c9aefa9b9b101bd91aac82bd1d8b82e2d66
MD5 4d2a29263a50c7a3418498a14d519f89
BLAKE2b-256 0c1dbf2b251ef526c1f6309c91405b47bfc238a71103364e3222e3d0a255e7e3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.10-cp311-cp311-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 5f047eee24a529ea6b6b807926bfef4f639a266ddb46dc7d3abd84ce5fce07a8
MD5 f7d7239e74e29a4b9cb0682355a1039c
BLAKE2b-256 a4e3ca5c728aaa95c20983146a008c907ccbdbd0510fe22d661f95168dc48719

See more details on using hashes here.

Provenance

The following attestation bundles were made for dbus_fast-5.0.10-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.10-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.10-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 f68c753c1820a219b24b073d319fd63edce520412aa03cbb130ffd00d291b9f4
MD5 890024465fe8cf29bae5319c5e92f147
BLAKE2b-256 4fa945aa5f35a8dc14bdb00ee6e68f54af48db500550d149440789634a1f882c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.10-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 fad6aff218dd2f37ffed10ac4260f305149c7a506f7052522f86c448d3f12682
MD5 57df3e1dd95b3953ddbe102fb469ef89
BLAKE2b-256 8f6edd7dbf59aa7d2deb87f4f230a084ce67eba7e54fd3aa97a5a6a28ad0db45

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.10-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 dfcb0307521b0649df25333fda1ceb95847eec0685ea35ff56242fcfdb75a7d0
MD5 a3756e48a31b8fec056a0f714c9a9181
BLAKE2b-256 1a79fd2e982fad92e04eff2b878d3beb01ec4fc450aea1dbf2ff61fda33e4c33

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.10-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 444a4a99b0560285673468bbea9c2d1dc1fc3a380b6e13550cffcbedfbd01b1c
MD5 d28ee3ab97a5232aab5637299c86a303
BLAKE2b-256 2aa9624e7b15a0bd845132ce00b7bb70b56f02bea880eefd8547e61d2e7a02fc

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.10-cp310-cp310-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 2f1092138e7a4849e4ef63c4379091074d0fa5632533b2b5d45966674dae3f50
MD5 08efd8c25ce2c6218a34db83adf07af8
BLAKE2b-256 c7e89f167d2d71242aa8e2d35f9ff7501ac66cdcfada17359d6b56d25bdcf327

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.10-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 dd60769644df308d8a5b1decac3b38b55f2a7918ba17530ca281d8d3782e5249
MD5 8da6e8cc33e66b9db28ec5df1fdb1300
BLAKE2b-256 74c3ad997a0199cf1207931b7616e4b887518798cc14a5f0a746cf9332c2903e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.10-cp310-cp310-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 b3f8002fa0f038bdfc8658a7be7564a000da385297a8b5b07d2a6c6eb7ef20b4
MD5 52debb4768a97aa59abb9ee2e722a137
BLAKE2b-256 12c73471bc8633065ebfd91fc6f34a7e5202fbb6510efc55bd8fae0e38761b8a

See more details on using hashes here.

Provenance

The following attestation bundles were made for dbus_fast-5.0.10-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.10-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.10-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 3f33ac647b4f7c5fc5d7f7b68e726d47eff652970b8c9475972c8ae0625ff95a
MD5 f9dbbe8530339db7b7e0d19964f15a23
BLAKE2b-256 8f280f428232d20424514d5017a0d0be1bd5c5ca5eba93a6d9cbbee30332ddf4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.10-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 2490724264fced422bc150e3ccbfc8d7a37c430e9cc890d3ae7d0a75363a3930
MD5 13381b2baf0c02fc98d338cec87cb00d
BLAKE2b-256 1b9c14960d4647a2659075c324c53c3fa099577baf472fe537b34c406ed42a45

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.10-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 ab0eeb800d7204ce9b8725aa1826c51ecec2ed89e107bb7649ec91bec422beba
MD5 f15fa4a8e92b1fddb06b03440282a08f
BLAKE2b-256 709ea304259f833af6500208a6974c8bf125f8a63cb0ec13242ab21307216a0e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.10-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 7f1280a364e505947cb21ccc6414cad044c10d3e57c50e6782ca11b510a65ed3
MD5 566faea5d7b3bac57ad952032339dd53
BLAKE2b-256 fc155d51e9362580b1c3d3d65ba853a82d7f9aee8c124f3111e841609d0d049f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.10-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 29f050afcf0dc32e2457bc4abc7868b5029cac32399e88f6549a2e9c4742afb6
MD5 d6a6a197110175c642fb80e2904f2237
BLAKE2b-256 415e8d549834c06f6bfd55f85217ea9002e65eec36a2c08d307c69911ee81bcb

See more details on using hashes here.

Provenance

The following attestation bundles were made for dbus_fast-5.0.10-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.10-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.10-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 e8d2b8c75a32884b6402978bbc8cc1331195721755f34a2b947ace0cc90d0fe4
MD5 b7fe9ab607189c6acaf0f7c4745d9774
BLAKE2b-256 00340841c59ff4ee2655b34b956324ab366d34437b8901148620fca15dcaa397

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.10-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 d317e876978220121040d4fb4a4fb024125faa0bd407c491640f71b6f78521b7
MD5 706b2bd63259349bedf9164e0bdfca90
BLAKE2b-256 408bd5823281ad8875e3a998bcb49c316847edae2ccd284a038078c82ba58221

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.10-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 34156ac40da3ba844ac1d1337dcc238b5b1a2564657ddbe8588fc76aa72fc7a0
MD5 0a07c9b0f963c18a472d6ec3c6e867e3
BLAKE2b-256 004ecec5224c0fe2f3a8bdfb734d70f2ab8d45d3676858847dc0f4bd4d016f53

See more details on using hashes here.

Provenance

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