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.15.tar.gz (82.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.15-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.15-cp314-cp314t-musllinux_1_2_riscv64.whl (822.7 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ riscv64

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

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

dbus_fast-5.0.15-cp314-cp314t-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl (821.6 kB view details)

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

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

Uploaded CPython 3.14tmacOS 11.0+ ARM64

dbus_fast-5.0.15-cp314-cp314-musllinux_1_2_x86_64.whl (862.5 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

dbus_fast-5.0.15-cp314-cp314-musllinux_1_2_riscv64.whl (833.7 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ riscv64

dbus_fast-5.0.15-cp314-cp314-musllinux_1_2_aarch64.whl (818.6 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

dbus_fast-5.0.15-cp314-cp314-manylinux_2_41_x86_64.whl (853.9 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.41+ x86-64

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

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

dbus_fast-5.0.15-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (855.6 kB view details)

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

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

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

dbus_fast-5.0.15-cp314-cp314-macosx_11_0_arm64.whl (692.8 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

dbus_fast-5.0.15-cp313-cp313-musllinux_1_2_x86_64.whl (858.0 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.13musllinux: musl 1.2+ riscv64

dbus_fast-5.0.15-cp313-cp313-musllinux_1_2_aarch64.whl (806.3 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

dbus_fast-5.0.15-cp313-cp313-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl (828.5 kB view details)

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

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

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

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

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

dbus_fast-5.0.15-cp313-cp313-macosx_11_0_arm64.whl (685.6 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

dbus_fast-5.0.15-cp312-cp312-musllinux_1_2_x86_64.whl (859.9 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.12musllinux: musl 1.2+ riscv64

dbus_fast-5.0.15-cp312-cp312-musllinux_1_2_aarch64.whl (807.6 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

dbus_fast-5.0.15-cp312-cp312-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl (833.7 kB view details)

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

dbus_fast-5.0.15-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (852.3 kB view details)

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

dbus_fast-5.0.15-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (799.8 kB view details)

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

dbus_fast-5.0.15-cp312-cp312-macosx_11_0_arm64.whl (689.9 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

dbus_fast-5.0.15-cp311-cp311-musllinux_1_2_x86_64.whl (890.3 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

dbus_fast-5.0.15-cp311-cp311-musllinux_1_2_riscv64.whl (881.6 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ riscv64

dbus_fast-5.0.15-cp311-cp311-musllinux_1_2_aarch64.whl (845.5 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

dbus_fast-5.0.15-cp311-cp311-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl (885.8 kB view details)

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

dbus_fast-5.0.15-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (882.9 kB view details)

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

dbus_fast-5.0.15-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (838.1 kB view details)

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

dbus_fast-5.0.15-cp311-cp311-macosx_11_0_arm64.whl (692.7 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

dbus_fast-5.0.15-cp310-cp310-musllinux_1_2_x86_64.whl (891.2 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

dbus_fast-5.0.15-cp310-cp310-musllinux_1_2_riscv64.whl (883.1 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ riscv64

dbus_fast-5.0.15-cp310-cp310-musllinux_1_2_aarch64.whl (846.8 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

dbus_fast-5.0.15-cp310-cp310-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl (885.4 kB view details)

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

dbus_fast-5.0.15-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (884.2 kB view details)

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

dbus_fast-5.0.15-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (839.8 kB view details)

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

dbus_fast-5.0.15-cp310-cp310-macosx_11_0_arm64.whl (694.5 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

dbus_fast-5.0.15-cp39-cp39-musllinux_1_2_x86_64.whl (895.5 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ x86-64

dbus_fast-5.0.15-cp39-cp39-musllinux_1_2_aarch64.whl (850.2 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

dbus_fast-5.0.15-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (888.4 kB view details)

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

dbus_fast-5.0.15-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (843.1 kB view details)

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

dbus_fast-5.0.15-cp39-cp39-macosx_11_0_arm64.whl (698.5 kB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

File details

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

File metadata

  • Download URL: dbus_fast-5.0.15.tar.gz
  • Upload date:
  • Size: 82.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.15.tar.gz
Algorithm Hash digest
SHA256 a992fcbefb609ad2eebb881c18eeb429bfe814ebe51e535a8710386f54dbdb94
MD5 c28f82ce2788ab4e4ddc5f2175399a2e
BLAKE2b-256 4cf07d26505ee2a53bc0c47aef4182609b6e1e18845be35ce9a0c6ea2c21f232

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.15-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 1a44c2e995ca7417ae829d3adce5d6ce5acabfe141a107cde27575a53ccd9642
MD5 04c688bf39aec000c691fc53e6c6ddfe
BLAKE2b-256 bc61ae9b3b3206abf3210da0d606054781d3ea0fcc2841e93b03c67f07147168

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.15-cp314-cp314t-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 da75d114777bdd9157b9772d67cd83e2a853e0b9069ccd1e3976c755c77f7f58
MD5 5393f094d786c7f898dce5c00bd7d42a
BLAKE2b-256 b036c2b67c43b94d70af14d7eaf453f83ff3ce889b07011f2a173f6e209fb50e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.15-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 f446612476825a341f1d514e35eb081b1f6ee7730b8aa68d03ecb676ca187798
MD5 fa2ca2474486fee2796f68a2575dac09
BLAKE2b-256 d07621aa60f39d52549212df3426fbfdec5fe0c3dff59b644fe7459e5fe39946

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.15-cp314-cp314t-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 0c1f78a48225a88d76e763b1687cdd5ed3b4cb958fcae0ad09db5458df74f367
MD5 e44a5ff2f1b1c48f790e06ccb923d492
BLAKE2b-256 1d4202d2a8304b0afd7d825cbace2e77e71b302b620f4b0e68caa200192c91de

See more details on using hashes here.

Provenance

The following attestation bundles were made for dbus_fast-5.0.15-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.15-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.15-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 10e4c69046687cc982ed7f4e2a7e713141861ac946833bc55834cceccdce9dee
MD5 31517b52b9423da7bee4a123fd8984b2
BLAKE2b-256 e114672376dd6e7748d4e8fcd3c3350a569d99e39acf30a15666f126615e1e10

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.15-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 31102b2aced446f928cc17eb7a6790b23d7c56893177253991ac569c57fc72d5
MD5 833759a6b315d05fc08a658e5c632dd2
BLAKE2b-256 c040e85b9250b41f515b0a9afff66e89f03955e13f962597facd416c4465f7c3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.15-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 a9a118c4eb43f29020dce7c3db62338bdb0ff1c07112155a58f819e54d1d677e
MD5 1d6e959cb425a9971e17d9eba514b623
BLAKE2b-256 f3e6f3b7060caaa63ec9b1ed58943950fa757702c4f082b090bb136509fe2df1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.15-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 2988d3434fd5a0392a676190e79817c265528221c50a849424a7601aec1cdd56
MD5 5dc4a06f0cff09ee8ff0b8be140c8b1a
BLAKE2b-256 8706fb549cc91e0e23ca0a6183a33447c164cf74ce02e13ff83997adeee9f0c4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.15-cp314-cp314-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 3e6e46a26e747d9ce68ac81f84ee7c6be30d584476a871add1e003bbc3891576
MD5 5e0a8c93c467fb22402c418235a0254e
BLAKE2b-256 53c9b03f05af4c0f25ad860f62c6b5a725a07028916f967aa53fc27978f7d9ed

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.15-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 576d83a9257ab564ee5bfef3f57f55edb1cd956662e4fb739514a5b9549addee
MD5 dc047f554c286ce6742833b172a4086b
BLAKE2b-256 8d73f2bde195ea6cb2ddf85a8b6eb48bdf200dd76c06b70053ab50aff5b6eb89

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.15-cp314-cp314-manylinux_2_41_x86_64.whl
Algorithm Hash digest
SHA256 d272e4896e6b5bebf5ef11c576d7f8cdb411d1c460331a6853bb54c9c8f4b2aa
MD5 138605b6f90dcadfdcdb51c2c10f88bc
BLAKE2b-256 0fe7310a333abf399de7df43a4c7d7c7abe0a90db51b6795298baf314bae6217

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.15-cp314-cp314-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 f031880167483e228548330764975be61babe590390cdaa04b8185f69d984f6c
MD5 34de08661c2421dd55e88fa12ab9abf9
BLAKE2b-256 6ed08c2246c3ad90fe039a42376cf53a2f7d2119478d24c7ea614f98768828b5

See more details on using hashes here.

Provenance

The following attestation bundles were made for dbus_fast-5.0.15-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.15-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.15-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 dabc8639846a0ac79260902e516bffa2a022d2b00d287fa9a4fac4a0ec6612f2
MD5 017d223ebed10c70a73c003a407baeb7
BLAKE2b-256 11be1813d99d321e258f7acbfc4973a2c9a2e045360215e81ea81f517b1c467d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.15-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 293725d5e2365cacd06c1a796d0487afe2bba2117e0a3f501f540a323d2140a2
MD5 6204cd2d139c9ed9dc0278501d1f0935
BLAKE2b-256 f9cf7ebb31cc3489c5570d5ac61a0e854b209a3b4d606253dbe2cef3cf632823

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.15-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 8b4bc06268355e814675b49461bdca71bb17abee6830a72a458eaaac39204c44
MD5 503001a48c1a2575de77e222c6746ce2
BLAKE2b-256 ff1e76a7079a669d371f38604829ecb12c8c232bd651b4cd00b676814de8b2c2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.15-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 97d4092ce4fe84f6db124ede0ce0d82f165bd2288e1670c5167f25984ef4437b
MD5 86b5561578ca9aef01db3a0f49797785
BLAKE2b-256 db0d968bd21c99eea53131be7b2663f1422e41f98c3218872061b0f15e9213d5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.15-cp313-cp313-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 2d970e5070ffd9c03f30dc9d0a9d06c423f05e23c36903b639275ec7adb1747f
MD5 e70ef24fd84ec09ea4e9343122e1e0ef
BLAKE2b-256 23f02bba31a67a56041e12f4d9bf2db9bf0e973c3f49c44d13290a9a6b99f5ce

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.15-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 a99169f8513d0afe159737eb4653f49c6c283785914cb40fa13553cdcbb520d1
MD5 8c5a48764b1509545801c305e9007a82
BLAKE2b-256 ab0639f70ad024bd4b27bb76444c85c664f40e5804a0861f26d78ec980726dd3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.15-cp313-cp313-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 146132f755e85eb3ecfd472bcbcfd5487ec9579a97583f85cd984b4557585538
MD5 b6d0baa4cdaad19a8e20c2d59e4a99bd
BLAKE2b-256 59b05026e097237b94619309e2021c401de2bf5f5a3e63682006d8929fa124af

See more details on using hashes here.

Provenance

The following attestation bundles were made for dbus_fast-5.0.15-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.15-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.15-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 1ccb480f8f1cb5018d9ce06c98aedf2870fcb3335daf4a6f2e98aa78336fe63e
MD5 d41c9b5c2a3525bdca64818484ea62c8
BLAKE2b-256 cfff354a04fffc43d700dbac952f67886e4cf618140670ca215278fc47fd7db1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.15-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 1d489b7e19c3d6df48f8f9c90d791ac6d7dd137968a350c1dec4bcfbd0f737ab
MD5 b5352180c367bbd99d8e7e8335450ff8
BLAKE2b-256 a6ff9866621fc16e99e9724e5c7fd51ef2021e8d545c73f64b90a6f29e38dd42

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.15-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 f967ab83d632541e54990ccc63fa7c3735162f831015aee83250a0fd95f8fef3
MD5 62e90cbe38548f25f15c91c133e090ff
BLAKE2b-256 d0b8de9c6293e15ac3e85a7607ccaa92ded2f617b256d88d3d44f0ced3201d2d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.15-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 6f6c2f4036a4cdd6dc1f7a44d965117f240f6a6b36a014a509ddbfb19b7fcf5e
MD5 7887d2996eeaee5ad5eea8ddc90f36bd
BLAKE2b-256 17ae9a80732ad6ee61404e4d8f2f6af88046edcbe42b6ef7c7e28ef54155af52

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.15-cp312-cp312-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 4a5dffdb8aba45b535bf6bdb29b910d3563cd052cd45436cf1e0b0df112f7c9b
MD5 5eb55c36fa71d91d94cfed8631999b72
BLAKE2b-256 e88a97804725cfb8b63905c98d77353f8e09e3d6b974e91d3f36436711daa85b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.15-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 183291aadb2befba09a660a7fe599d70831496bce0ad695b626cd17aed8deb0e
MD5 aaaa885a0b2d36928b899c1aa63f63da
BLAKE2b-256 d37acb5299d41d72f191f91e1142531528098c1902807724500c5e26b9d2315c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.15-cp312-cp312-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 ff70517bb1ae5f70500153ad367bd25574e61a50b91ba8907708a612e669f366
MD5 03800f9bb14b402b65f0f685a4e9763f
BLAKE2b-256 a6613b1b4295d7b36e2c4173c0ccd80c7b2e03cec1bf50c5ad91ce26e3f75447

See more details on using hashes here.

Provenance

The following attestation bundles were made for dbus_fast-5.0.15-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.15-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.15-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 ac26e006793ab341c3533529c4e222e25a71ae767f53239a3913eda7abaf19f1
MD5 2dfbcd5135c13a5e8d33d9cc46bd2c73
BLAKE2b-256 06f9c389c222b249e077c33fa0f73bd19dd34d91aa60ef93761ebae74ac9c2bc

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.15-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 6c1a8f78cc8627272ef3252bc80cabc55e95c3ede51b4e0b31375d2adc91a8c5
MD5 222ded0583a7a44105c56b3f5fc9bdc3
BLAKE2b-256 a00349a584b270b0c56eb5495ff43b0f4ab48fdba3a57a60a5b70d56136fc795

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.15-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 05c134e39215e77aaaa2848a543f4bfc0d05fb52c92a6174faa35c95276113ad
MD5 7b6d263890f9b604a35dcfa1c8ca6c6d
BLAKE2b-256 e40fa429d987b0b23d555c7d6841588cf1e599021bd13b6225e69f1891c7ae69

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.15-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 0da0c18e3018efaaa8e50c5f3ba51b5734f2a5ac3219c7f9b4fbca2e996f3c9c
MD5 7bc6255c9d39426aba4e836a6015dbd4
BLAKE2b-256 b05900fea8ae238a9fe06739de75fa391105ba3b797ac55e23589fd6b731c137

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.15-cp311-cp311-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 35846222fafa9215c5ed6c90bec6a74d181c343882d10309ff5fb5f01280fcdf
MD5 b81cc768ae31ed021df3c89d352b1dd9
BLAKE2b-256 50c1245902d03fb7aad63d1b5ae477eaa684553af096dcb92d9b350de55afedf

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.15-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 ef389d7224de85a76fdda3c496933502fa78d844fd2f853b9bb03eba56f0492b
MD5 a649fef83a7db7b3d20864565e87c8d2
BLAKE2b-256 acb491bf269c616205e81620718f9985137fb409c3ff173349f838c9b2baad80

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.15-cp311-cp311-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 549ba31ac0b063107bea9368ce91647d862bbc5e2deb9ff0793901ee5f37af83
MD5 cb5ae0d5570e18b74fa3db440a9bc336
BLAKE2b-256 b276d6b0d176b16ca10b42fcec28059c90807a553c6d37284e9044600dfe7c6d

See more details on using hashes here.

Provenance

The following attestation bundles were made for dbus_fast-5.0.15-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.15-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.15-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 76e0fb32ecf82903d7e2efc864d27e546b2b5958d4c490023537ebab2579f7fd
MD5 f0138b252418fa3be682c87fac53612b
BLAKE2b-256 205d2cc74415d6102aa35f96da53f13f0aad25a5beb9a7ff1d96556e60bf5ab8

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.15-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 547324917da5f0c4b30cf7c500523bf0a698f33eaba17d804cd42a3c1b78b9f2
MD5 6322819bdd29394a67b106509c0d2e14
BLAKE2b-256 6746968c489924a38e3d285c349c06ef094b18de39c3332f22b508b85f713c2e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.15-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 a94939076314b9276f42acef66fda15ae144d1fd34ee25a1cd9ed352ab86eda4
MD5 7e92be1879247716315cd1d2b323760c
BLAKE2b-256 4729526759dba641e6280c36b62218bcfe2f2f6838bcf8c61320801cfab1dae5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.15-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 8013e5b5d819fbd47b6cad19f5b5d518f7129e4468afdcf098f0ad25b37e55cc
MD5 3354c37197f335e2ed37db3feeb332bd
BLAKE2b-256 02d4bc4736d1529b88c70f84d5adbfaea4bb775943aff038975fc632e1397740

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.15-cp310-cp310-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 8aafed91ddcd964c70e91f6d96630d894405bc5ea3ee6440f62734a34af751a9
MD5 4e7a7e727d54125d694c0e0c0c041e4b
BLAKE2b-256 08b63fb45b1cf32b6c217ff947db79ab179babca660257c6361ce572200d5814

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.15-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 8ae1cf917e03993ae46dc54a2287e1a49d25018426f8c3be0095eced332fceb0
MD5 5e3dc9030bde2984942e0379b064ed7b
BLAKE2b-256 f3ab4e6b2370c342fc7e49d84db02f1b21d13dca9d2af10287e7f54276a1cb2f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.15-cp310-cp310-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 4abf21c5f35d8858fbd75a063220378119f5222307494e4fd61647723e9e6f9f
MD5 9d40910bfe8cd2efcdc1266f8d7171ff
BLAKE2b-256 e8afa61cb4fe2fdb75f9da33a8d51df2b9092491862a89a5166b4709b528ed84

See more details on using hashes here.

Provenance

The following attestation bundles were made for dbus_fast-5.0.15-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.15-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.15-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 7bc51474904a644832b765f758d50dc710c966a22a40970db43b5084b4dcf05e
MD5 21383bf890479bea4398d8d583a824eb
BLAKE2b-256 f98e475d30567156b484ab4c8f535c0389dd4a7e2ccc6edef76a6564c9e33c7e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.15-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 69d9c0df84c92fc9f84a37a1101833adbaa5d460f4cfaf29b2031de4d206077a
MD5 a120d02c49550aba38e987124b248131
BLAKE2b-256 54cf71adaa9179ed63e2ee852af7eb9e1835fc2dee95449546dd70fa4b7146b5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.15-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 d74bfc3bbfacc8ccbe56313c762220cb66059445797b281ef0c6a1de368e5ce5
MD5 45fd4524a288e2daa9da0c620402e3f6
BLAKE2b-256 14f8a5a0b23cf14cd4f5ab6e9ec2ac7e3b935f1c57f493c7d266d3524be1751d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.15-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 9d0c6ad477c8123ae73100f244267af3c35277572681ed668e6b22dfe1f081ad
MD5 286325c28c700da9586a1c7304304db7
BLAKE2b-256 2a5d48f47d913a1caedec1b6c72b0b2e5f0bc2d52ce0ad30878531faf131487a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.15-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 68fec2a544b44281d098c9208bd386847149d2f603fa9f207b202d16c7a15adb
MD5 bca3ca7627faddac14f1bd113e0736a2
BLAKE2b-256 3e351127fd5686dfe4a39eb36b928448a29db48e9aefc44c573948bad353b96c

See more details on using hashes here.

Provenance

The following attestation bundles were made for dbus_fast-5.0.15-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.15-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.15-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 2ce3b6b31c66996fb7121ed5d09d9a5d5956cc2aa3196894a2bd43da2f6436b8
MD5 81bd00599e4104d1e83cbd4e2f299c7b
BLAKE2b-256 1b41e3d9e0f62bf3996ca2dc0e162a96a9fc7594a1ee485d5318f34dcd24677a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.15-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 a83d1188385937283a304ed6e28cbd33bd0ea9416b15ae928298fdbd5c7dbd3f
MD5 506c63f58a55faed4845e3c92eb4f36b
BLAKE2b-256 ecbcaf148621c4e9a0ea9319333fa19b9bfdc2fb15c3d37183f2034be566f0f1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.15-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 34b29b5442186a4d6c669b90e13d90a5956b0fba5f3ca206615076eedc002c25
MD5 f012dde7cdba170a9fd95a7cde3a7818
BLAKE2b-256 e97abbd019963f9d26f8df7ab94a49818353782e4cde6ea6cb1d3fa569704e68

See more details on using hashes here.

Provenance

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