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.2.tar.gz (79.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.2-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.2-cp314-cp314t-musllinux_1_2_riscv64.whl (823.8 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ riscv64

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

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

dbus_fast-5.0.2-cp314-cp314t-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl (821.5 kB view details)

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

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

Uploaded CPython 3.14tmacOS 11.0+ ARM64

dbus_fast-5.0.2-cp314-cp314-musllinux_1_2_x86_64.whl (856.1 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

dbus_fast-5.0.2-cp314-cp314-musllinux_1_2_riscv64.whl (827.7 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ riscv64

dbus_fast-5.0.2-cp314-cp314-musllinux_1_2_aarch64.whl (813.9 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

dbus_fast-5.0.2-cp314-cp314-manylinux_2_41_x86_64.whl (846.7 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.41+ x86-64

dbus_fast-5.0.2-cp314-cp314-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl (827.5 kB view details)

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

dbus_fast-5.0.2-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (848.5 kB view details)

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

dbus_fast-5.0.2-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (806.7 kB view details)

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

dbus_fast-5.0.2-cp314-cp314-macosx_11_0_arm64.whl (686.6 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

dbus_fast-5.0.2-cp313-cp313-musllinux_1_2_x86_64.whl (851.2 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

dbus_fast-5.0.2-cp313-cp313-musllinux_1_2_riscv64.whl (821.5 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ riscv64

dbus_fast-5.0.2-cp313-cp313-musllinux_1_2_aarch64.whl (799.5 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

dbus_fast-5.0.2-cp313-cp313-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl (821.9 kB view details)

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

dbus_fast-5.0.2-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (842.6 kB view details)

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

dbus_fast-5.0.2-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (793.0 kB view details)

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

dbus_fast-5.0.2-cp313-cp313-macosx_11_0_arm64.whl (679.4 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

dbus_fast-5.0.2-cp312-cp312-musllinux_1_2_x86_64.whl (853.4 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

dbus_fast-5.0.2-cp312-cp312-musllinux_1_2_riscv64.whl (826.4 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ riscv64

dbus_fast-5.0.2-cp312-cp312-musllinux_1_2_aarch64.whl (801.3 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

dbus_fast-5.0.2-cp312-cp312-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl (829.3 kB view details)

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

dbus_fast-5.0.2-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (845.6 kB view details)

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

dbus_fast-5.0.2-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (794.6 kB view details)

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

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

Uploaded CPython 3.12macOS 11.0+ ARM64

dbus_fast-5.0.2-cp311-cp311-musllinux_1_2_x86_64.whl (882.7 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

dbus_fast-5.0.2-cp311-cp311-musllinux_1_2_riscv64.whl (874.1 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ riscv64

dbus_fast-5.0.2-cp311-cp311-musllinux_1_2_aarch64.whl (838.8 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

dbus_fast-5.0.2-cp311-cp311-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl (877.1 kB view details)

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

dbus_fast-5.0.2-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (876.1 kB view details)

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

dbus_fast-5.0.2-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (832.2 kB view details)

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

dbus_fast-5.0.2-cp311-cp311-macosx_11_0_arm64.whl (685.6 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

dbus_fast-5.0.2-cp310-cp310-musllinux_1_2_x86_64.whl (884.6 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

dbus_fast-5.0.2-cp310-cp310-musllinux_1_2_riscv64.whl (872.7 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ riscv64

dbus_fast-5.0.2-cp310-cp310-musllinux_1_2_aarch64.whl (841.6 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

dbus_fast-5.0.2-cp310-cp310-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl (874.7 kB view details)

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

dbus_fast-5.0.2-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (878.8 kB view details)

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

dbus_fast-5.0.2-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (834.9 kB view details)

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

dbus_fast-5.0.2-cp310-cp310-macosx_11_0_arm64.whl (687.3 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

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

Uploaded CPython 3.9musllinux: musl 1.2+ x86-64

dbus_fast-5.0.2-cp39-cp39-musllinux_1_2_aarch64.whl (845.5 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

dbus_fast-5.0.2-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (882.6 kB view details)

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

dbus_fast-5.0.2-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (839.3 kB view details)

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

dbus_fast-5.0.2-cp39-cp39-macosx_11_0_arm64.whl (691.4 kB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

File details

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

File metadata

  • Download URL: dbus_fast-5.0.2.tar.gz
  • Upload date:
  • Size: 79.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.2.tar.gz
Algorithm Hash digest
SHA256 5dc5dd8f71000fe47e9f3f10720d7a9e808a6a335e504c829c8fbdba03aacfb0
MD5 842c5ed27a9314d8ccd16a74a428ac7c
BLAKE2b-256 848e12a8b05be213faee0aaab0ea5bd22680f98b7021601649572843fc57fea4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.2-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 2685db7ca5aefde934d7448f7f06d19708e30dd2b9daf8a1cfc773cb4e0bded4
MD5 12ec9803809e59d6778bee0650855e87
BLAKE2b-256 66a1740fb8e1aa071726637656b8f636d819793f2b08d55a5d8d540419035dc9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.2-cp314-cp314t-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 b3872a7a70f1fc35c87e09f2e3501d9a374e11f227893321bc8f7b37e2626d58
MD5 b4b7ead273eae919942b3deb56a9b2a4
BLAKE2b-256 451fe591aaaa1e901a80676aa1ee927b72743e81a584f87917639588c6318d35

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.2-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 a974aaeb7440a806b5bb6c243593c1152eeb447f26d0d1c5786d2da8078bbd90
MD5 7df3bf4015fa0c3a37ab41c9047d322b
BLAKE2b-256 ea7c5abe4731f03d91ea946d8e4e5d6963a27e2f2f86aea8c2016e7fa584745e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.2-cp314-cp314t-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 df31a14cc081d9c0284433d15855f6ff03dae18ae1ff2f1d2d2aba5fe77b41b5
MD5 a84ef3389f985eb874788659ea6c898d
BLAKE2b-256 e3995322da7dfef3b52162383ea522afeb31a3a3ba723baadb3ffa907c94ad53

See more details on using hashes here.

Provenance

The following attestation bundles were made for dbus_fast-5.0.2-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.2-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.2-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 712b3a636bd6529daff3b2925b27f7314a1e097ddd07a7785cae3d8ae9062016
MD5 a91ce9c6d8e45feb88423ca89261021a
BLAKE2b-256 51b4360d9c9fe6608df7775a243c44f058bb7ee6a8eea456c28a19547226588e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.2-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 83b469e4ea3b48cd51bd5547c35a64c1e48ef09705989a20d204ad52c175d78e
MD5 a6c78e48a247a4153c47f25a81622189
BLAKE2b-256 462212175dc74588a1c485b29659df0fe24e3930bfe5fa2fa667be77169e4572

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.2-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 35a1c4c93f3d983c19bc926de4492f89ae57b42e3219d450c382b2ca5c515a6a
MD5 3337d675286b89592d8317edf5c91929
BLAKE2b-256 2bbedb22e6935c0b6277b24401d8fd80a6f8625cd75a4b5dcf7edcd5d9bd238b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.2-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 66df0e78220b2f121fac100d0795b8179233c35ab1e9f62ee4733908edb652a6
MD5 a30fe8261964998a790f7912ccd47970
BLAKE2b-256 b5274fef81ebc8cc1d1b99fcaf733ae901791177a9c22326f1a80dfb879baf96

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.2-cp314-cp314-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 56f5f3773b80ea819867b7409be3b7ac54bbb66686eb2e159c604103a0a2b7ba
MD5 3cf847b2133ee9158aeacf2fdccfb669
BLAKE2b-256 9cb3a3b7213b8fe76b828b3f6f82bd6654eb3e16a9b18d6c250abdca1af4412b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.2-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 4aab781f8eef1d848775831d674017434b92a78c5180fd5f6603f1ee98177ac7
MD5 27daae480ce78b35fdbe5f5a0d140370
BLAKE2b-256 87f587d13318386226b9d140ff09169201a0a9eec515e6b630c0a87123ebd7af

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.2-cp314-cp314-manylinux_2_41_x86_64.whl
Algorithm Hash digest
SHA256 231b19480a38317fce0279f13c7aefe8ee1ae10a04681d66197e2536dcadba52
MD5 e715596b3862ad333a770a5e9dc8a3d9
BLAKE2b-256 ac1f910ea791bce88ec6aac1d157d9f2194873bcb0bcb5bcc5af9d5c00c7e694

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.2-cp314-cp314-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 a0df3b65cf373c939db2ef413be22a0c278cb862736e6696b96fcb07e4f9012c
MD5 bdbe80a8fc052d4477407073a1f0750b
BLAKE2b-256 42627318c0d3c38bbb330cbba6869ade310d7a6b4a765081fa0605afcc0d3059

See more details on using hashes here.

Provenance

The following attestation bundles were made for dbus_fast-5.0.2-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.2-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.2-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 d414f3c86a2b8973fe54b74b6b3c4dfbf25deddad09eae20e7abdbe3a894f2c3
MD5 081b9456979a23728fbc2b2950789773
BLAKE2b-256 1aaeb1839de01847acb69e92103ea9a0a6cee7ac806943966c003012b569925d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.2-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 0870c20ba805b307489dbd0ec3669d445e011a899bab8c684b01b3dd8a65d492
MD5 cc78c89ad4e16d499486e371b3a07a1e
BLAKE2b-256 d2c237e98d5004895b18ff0597a92df8c16db7bf6ae790d96405cf4eb9062d15

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.2-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 a1a36dd1b9d65e3a1132e92195b4325e2a3e0e905797993c181976d98b39d076
MD5 2f8790c8ae9bada4805b1d69e88d5db4
BLAKE2b-256 348e6d17a66f604a90783c220692424d05b9b20c0e2f2d6dd2f7c8138b9e47a9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.2-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 1ad7afbfb086f581e4bf7dfee1c7f2ca241b918809902e0a6a0216f50c4a25be
MD5 3f5637e9339cd6f06e3c9ea46891813b
BLAKE2b-256 f9456c4e0a65a2a5e3ed9abe88a2d010faddc80d4d887613487f49b859371cd7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.2-cp313-cp313-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 bccd27bb8a5c1cb7783e401cfd989e986449372461763b42c88d6a467a3d10f8
MD5 9800a80876574f21da5abb92845773d2
BLAKE2b-256 0fedb6f3ef24c76a3b9401601a57a4a87839c0695818389461f1899ec7ffaa0e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.2-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 1f2d5a50d068eeed61184575c5c9981ffac16a1ed42239ce0a77a8987959d73e
MD5 51fab6b0694c7a57449343fe48f8caec
BLAKE2b-256 f180c69b6a9c19863f32aa41c04dd73b8d736d4c8b502631aafa58694f47c73d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.2-cp313-cp313-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 d2e91eb438a99afe73f1e8c3230ec90f07d16a2b53749133a83d638205690ca0
MD5 4b8216574fb2fa61258b7faf30d8aa90
BLAKE2b-256 0ab45ce88d28b8c36cfb34d278597b7813c3066bc7852e58eb654070d968b52a

See more details on using hashes here.

Provenance

The following attestation bundles were made for dbus_fast-5.0.2-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.2-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.2-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 4cc842e788eaf70ef839485165d46edde5e57852b5aa4e4c3f72fa26d53f393b
MD5 3f74ff8f152b9ef51e3987927eaa0ba6
BLAKE2b-256 de01e9e83e5079ce69a3525bae6054bebec9d0e1dd155d1f435567c3f0f85677

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.2-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 9fc376613b98e115dfd11c509244aa6a914a270d589fda1a78f79872092c4282
MD5 ddbe97a7062f9e03c91141dbe7de196e
BLAKE2b-256 b57c2a0e9115ddaef37205da1d0d86f807d87b44121adfde94b0a7e688fef0ff

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.2-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 4b5875eda8ac05aa6923a17e3a626c36f1cebc46daf302ca909924ea929674a4
MD5 d3c2338d7b9325472054673eae812218
BLAKE2b-256 6ea09fc7bc3f27d0ed3f4f83b3009df067bd0bff84d3c88b7e5c4ce8847fec3a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.2-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 e4f4c614af86b76019bc6669765bb62baf9c0ab14d05a5fd38d2dc929d6fd15e
MD5 27822a3e992f3a93eb6e60bfc13fd190
BLAKE2b-256 b5f372f91a225a139dbf5ec84da3ab5022e434ebc00d38f3ce31aa0939b56a01

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.2-cp312-cp312-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 b072d7588455f6a7d29f9de04db9d297f14cc05df7f5149f4043b4836c8ccb68
MD5 09c461bd4a1e88f09dc836fb89d79428
BLAKE2b-256 1b0a8d6c8099f8295f8609295a0fc79a65ab2f2a0974f90cd3e00aabba880d42

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.2-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 41571adeb2010d73c5d60e72c80fd76aba6cb84d4a28b064c05bd5afccac934f
MD5 86b6c90f31eb4afa6cc2b369bd4fc982
BLAKE2b-256 40f705579978b50dd6ea8b2c48bc0db97cf7e1ce2ea4948ec96fd4a44eaa8794

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.2-cp312-cp312-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 c4e68c55ecbe096e7939f1b23eb2b460d623c2c8cc8e430bb0e5e513fe5827a7
MD5 dce85ab468ad16c87e9b161c8f6f1173
BLAKE2b-256 8970e6855850d107a17c9ae8bbdeef71e4592cea00e9c0cd10d9ab0127db15e9

See more details on using hashes here.

Provenance

The following attestation bundles were made for dbus_fast-5.0.2-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.2-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.2-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 aba412d43f0666d44723de00c9a3089f0a6a8f640b92f939d0b8ff4ff0382695
MD5 9b106bf80013a3761a27fbc355d0d8b8
BLAKE2b-256 8857691306e81b0f2fec14f2209285ba16d863449a2f3fc7800a172514975e1b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.2-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 a98edad2240546796ab9f36e41bdbdfbe82c4f7e5217c3f5fa9d8b2c3c5d00b0
MD5 5e24b02482c0375ca8b999c71d1b715f
BLAKE2b-256 bf64dd1a11b0a947dca9da05c202782a12a3b9a4bd979321af3f5331cd825fd0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.2-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 54808299d4f89c7af2ab9eccecc34d1a91ec7751061a3ddc6c553e24272acc66
MD5 86051179ada2bed86483efe9f2805273
BLAKE2b-256 b7dae096d9fb199554956314b1592f772877deb24db1ad215acd2065eeab16ef

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.2-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 174b65ea87472c4ae9be34251542c62bf11031bb61b1312339c3eb822b39be30
MD5 42342197e787619e948e1e4c95c2a190
BLAKE2b-256 678c8744daffbbd08d52781b7610514690adde2d6fa010a9846917c0868ee746

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.2-cp311-cp311-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 faf4f8e58c9e3d19a285d8109b88c46fbf49b272ba07143f23b9eb733021463a
MD5 ccb8f3ab229bc62a38cae747baf84fb3
BLAKE2b-256 dc748bf0bbe764c42b97c773b50333ce5d717aed5a7dbf28ae08dfd4e43a9106

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.2-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 b9ac22823d53ed3130c630b0cea58c795b279f16c0e1eabe9c9ead86743aa214
MD5 3ff7de988332974471a9d540c00df3ca
BLAKE2b-256 0a8498216f2d8c34388e97c99e24af504e25545149056f8db79113fe2fef8f75

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.2-cp311-cp311-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 041ba7126bb5f54aa4a21b5598b89ffb1ec2782c76bb8020bd7fdac30572d230
MD5 02aeff4407782a7910bb92e13f0bb57d
BLAKE2b-256 1dd7ee0f891b0afad6075acfcd3498306eb63013ff2a8132bcc382a2654fb2af

See more details on using hashes here.

Provenance

The following attestation bundles were made for dbus_fast-5.0.2-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.2-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.2-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 ec38879dce3dcc2328dc5289b5c748927ac882f4a4cb0b528d421c6416914712
MD5 f0d074cc9d44e77fe780f59f403182ec
BLAKE2b-256 c68a0102d1cb7cb939d2827b78a9f741d91889e07b9cd0e68915a714e7958ddb

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.2-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 ef9ba70543894789888df4da382e1b211eb948bd65456666797db1a3282a9d85
MD5 a75ab67ca00fea3da4dcf35146e43e21
BLAKE2b-256 d062a7fa764d2f0d15183bd35da8105c53135375f8fea09b74649f478f8f17cd

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.2-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 67a608f0009a53aca4ad673b91ad7106542623baac8a04e9104031b5fe7c96a0
MD5 9a48a6749b19f35bedd00164ab5d09fb
BLAKE2b-256 cf379255cc0d4fe33f417f5a423629909fab0161f92ce144157bb560bfd6377c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.2-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 66f18f2d765d15b4e8c7764832d4a51374c96e85fc2a93b9f061b15b0f03262c
MD5 eff8853d4e6c33cec535214e1725dfd9
BLAKE2b-256 d7ff7be50fa90dcd1929408c2f6ed72866684d1272e4b14f6769131363e8d00a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.2-cp310-cp310-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 3dd72b74566a872c581320004d5ccc0be77b5b1e47eb7b8cc57005af5efad040
MD5 bebc7362c6dd9b9766ce1ae3e9814c6d
BLAKE2b-256 22c17502c447e5f0aa5f4b9b515aeaf0ac55575c844f8cd44b7c727ea12b231b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.2-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 309149cabd5cf153b1293980ad1daa08b16d327edcf29f2798e00563769f9932
MD5 1a7d6de883a72920e60acf137e560809
BLAKE2b-256 11cb24d8795c4c501b9be6cbcbaf0b82af5f341d596eb51bf42debed34f0b161

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.2-cp310-cp310-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 31c2482a493afded6acea12319e1d09e9dd430d89a7095da4ef8595b765bb796
MD5 e5b6ec5321e75a6bbc29e8d8d7f57271
BLAKE2b-256 9bbeacefbf2c3ef677c15574ea286844ecf9df1bc4d674f019b7a5221121aa6e

See more details on using hashes here.

Provenance

The following attestation bundles were made for dbus_fast-5.0.2-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.2-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.2-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 667d3f8871e6c94e3a6318beb5d652348be9d0e2fae638a424420f2611251f2c
MD5 7109d11805a9912a0a3340c37d34d570
BLAKE2b-256 d0f098b5b9292cabe1a6f0f61ac86dbe574beaf6fb5f9c7400e06ee5c9b52834

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.2-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 2c12125732ca3b85213f2c482d6943001bb5a06b0063e326d6d98aba130540d3
MD5 d4f4b9a5601fdba0b112b85ef7c95b39
BLAKE2b-256 ea9285690d60379993635af4cceeaf292f41058a1d0b2ee704ae2d199a22ee77

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.2-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 54aefeb3decdc9248d4aa6b6659dcfaa8cb3bbf7ba9ebe89955389594f7aab28
MD5 bf38454814b5cb9116329c0dbeaee145
BLAKE2b-256 24dcf0eb7fc211967a9852d84ea0f65b6515695cd263b46361e2fe00114b20b9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.2-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 e4b54df3707a92287099745f6d6a28d44684ae2bf002a57bc00c01f6c86c56ed
MD5 5e7ffa35ff37a527cd04b40765a37173
BLAKE2b-256 da797c4cb66e3cb717bf016abc02404c5481c1124560ccfeaa41a2717d1cb5a5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.2-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 534341e7fd535a95f09f6663dd0c5a9b7cb7b7640af916da030bfae8ac47125d
MD5 9c7a63a854d8d181136f38cd8f9086fd
BLAKE2b-256 ac90f473cd6037128d45e42eaad430e848b1938766d71ed604cb654bbd1830b3

See more details on using hashes here.

Provenance

The following attestation bundles were made for dbus_fast-5.0.2-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.2-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.2-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 fc6c1128d38c0ac5de95f762baaa503c935e0d8e7e388f234d14f54e3bc447cc
MD5 12ddac04eda2971aee3a29ddf4d5dd07
BLAKE2b-256 e1a5eca38998391173a7a434ebec80a3685a28599b59298416c1145304ef8ed6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.2-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 8ec8a07d5a4191637a0d97e66d06ed1baf3810c04683fb5ac3dc9191731adc15
MD5 339d88d23a6c2947e2cbb4a0aba32d08
BLAKE2b-256 f9c2571bc1fdf02beece185e7ffac018b13e158a3665af46ec51f577876bb29a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.2-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 51b3ec3ee0a07389d64a78f3416e72f61fff7336de7f76749edff41523e6db63
MD5 c4861220aa0ecebc64313d1c0c8a5284
BLAKE2b-256 d92bad6d3bb3ecb60a0cbfb44376c2b5367812dbac915198ff9143c8aa5bac01

See more details on using hashes here.

Provenance

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