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.14.tar.gz (82.4 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.14-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.14-cp314-cp314t-musllinux_1_2_riscv64.whl (823.5 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ riscv64

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

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

dbus_fast-5.0.14-cp314-cp314t-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl (822.5 kB view details)

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

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

Uploaded CPython 3.14tmacOS 11.0+ ARM64

dbus_fast-5.0.14-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.14-cp314-cp314-musllinux_1_2_riscv64.whl (834.1 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ riscv64

dbus_fast-5.0.14-cp314-cp314-musllinux_1_2_aarch64.whl (818.9 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

dbus_fast-5.0.14-cp314-cp314-manylinux_2_41_x86_64.whl (853.7 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.41+ x86-64

dbus_fast-5.0.14-cp314-cp314-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl (834.0 kB view details)

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

dbus_fast-5.0.14-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (855.4 kB view details)

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

dbus_fast-5.0.14-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (811.1 kB view details)

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

dbus_fast-5.0.14-cp314-cp314-macosx_11_0_arm64.whl (692.7 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

dbus_fast-5.0.14-cp313-cp313-musllinux_1_2_x86_64.whl (857.9 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

dbus_fast-5.0.14-cp313-cp313-musllinux_1_2_riscv64.whl (828.7 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ riscv64

dbus_fast-5.0.14-cp313-cp313-musllinux_1_2_aarch64.whl (806.5 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

dbus_fast-5.0.14-cp313-cp313-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl (828.8 kB view details)

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

dbus_fast-5.0.14-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (850.1 kB view details)

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

dbus_fast-5.0.14-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (798.6 kB view details)

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

dbus_fast-5.0.14-cp313-cp313-macosx_11_0_arm64.whl (685.5 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

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

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

dbus_fast-5.0.14-cp312-cp312-musllinux_1_2_riscv64.whl (831.0 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ riscv64

dbus_fast-5.0.14-cp312-cp312-musllinux_1_2_aarch64.whl (806.8 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

dbus_fast-5.0.14-cp312-cp312-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl (834.0 kB view details)

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

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

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

dbus_fast-5.0.14-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (799.2 kB view details)

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

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

Uploaded CPython 3.12macOS 11.0+ ARM64

dbus_fast-5.0.14-cp311-cp311-musllinux_1_2_x86_64.whl (890.1 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

dbus_fast-5.0.14-cp311-cp311-musllinux_1_2_riscv64.whl (881.7 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ riscv64

dbus_fast-5.0.14-cp311-cp311-musllinux_1_2_aarch64.whl (845.4 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

dbus_fast-5.0.14-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.14-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (882.7 kB view details)

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

dbus_fast-5.0.14-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.14-cp311-cp311-macosx_11_0_arm64.whl (692.7 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

dbus_fast-5.0.14-cp310-cp310-musllinux_1_2_x86_64.whl (891.4 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.10musllinux: musl 1.2+ riscv64

dbus_fast-5.0.14-cp310-cp310-musllinux_1_2_aarch64.whl (847.0 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

dbus_fast-5.0.14-cp310-cp310-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl (885.5 kB view details)

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

dbus_fast-5.0.14-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.14-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (840.0 kB view details)

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

dbus_fast-5.0.14-cp310-cp310-macosx_11_0_arm64.whl (694.4 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

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

Uploaded CPython 3.9musllinux: musl 1.2+ x86-64

dbus_fast-5.0.14-cp39-cp39-musllinux_1_2_aarch64.whl (850.5 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

dbus_fast-5.0.14-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (888.6 kB view details)

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

dbus_fast-5.0.14-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (843.4 kB view details)

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

dbus_fast-5.0.14-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.14.tar.gz.

File metadata

  • Download URL: dbus_fast-5.0.14.tar.gz
  • Upload date:
  • Size: 82.4 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.14.tar.gz
Algorithm Hash digest
SHA256 9c30a134be1a1e4021630e551de040ec38705213c0889ecfdb0218f83beaffa3
MD5 e7c3a629f252de1aeca447c79ba40399
BLAKE2b-256 7f6bd4c8871e772ddf73e76bfd725dbb6fa82eb11492b370b423892016f0e579

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.14-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 7075d890b1453998be5bb5433eea1184db84d6deebb44d9069dda1df5968a127
MD5 6bc08380f9d2596e0579b57e4e522c10
BLAKE2b-256 18f4cd878b446a431730535798bdf8aa2e8d5aeb7854fa0ccf60490ff1799a6b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.14-cp314-cp314t-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 c45878b92e2326190a6173a254d7b37eb23d72401b92e8cda5c88e8bfd1dc1c6
MD5 099dd7176c40e36205fbc3105d8a9a43
BLAKE2b-256 409830c7b30251d29ba78466a6a49d274c53101d8b3f49dc4b9b1286a5c1a1f5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.14-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 21f49af595a6e66a20d4bb19ebaca3e63f448c3821f0fe1de4ff27c042b31f37
MD5 f4feb2c0bd2a13887e28b979f8c7260f
BLAKE2b-256 0775a064ce2135cd7b93c8703b457ce79216e9cda51b469d56d845a90b044d31

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.14-cp314-cp314t-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 c4a02284bffae08ae2b81ea4b75cbc67a4b7dd9f9ad206c537947813859877c0
MD5 15896f0131b63b20041f63e882b76927
BLAKE2b-256 a07fc2024fd9f61ae6bd53224cca3fef11beda5d768826bc17895df78928a52b

See more details on using hashes here.

Provenance

The following attestation bundles were made for dbus_fast-5.0.14-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.14-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.14-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 ce02f26b08a6f448039151a2bf0a0d482472a1cff16a0819a30aa903f77ca504
MD5 2ffc0a0f4eb8a17d0e9bfb2199563f7e
BLAKE2b-256 6a19f4b3c6d3d37d01739d5229c0b593cc7efb779ea7c2a80b0db601e78a4908

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.14-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 490b87147d794176d2a3bcddb8eedfa14a39411328bb9dc33004cf77cdb79008
MD5 c257948bfa6b65b252f282415e50b92a
BLAKE2b-256 b54f6604e8637e937802a16e6e51ed80da18f36f3169d9109403fc17718b921f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.14-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 776bd7b89ec4c23a3f01e21b62f0641f411f0e0cbb97a698cfc467a5ab780ef0
MD5 819ec10647ca2f055b606ffe7736242d
BLAKE2b-256 b2a37775d72d2759160d1ed7cdb450e898d1ee884c1a71013d34e207e5f82dce

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.14-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 83612082a226f8dbfad3b05f00dd0b5bef19780e3869edb698a8788574d61de9
MD5 4cf02823c4a8476e84b92792bd16103d
BLAKE2b-256 b49cfec14d9fa583699253fb6fde1f4f447675a5f0403146d757cbf8424b62ea

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.14-cp314-cp314-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 7a805827a3c47a3cf1247afade584a79966975641c763e1e9bdb284bcab69ef3
MD5 7e14e0e60cc1fe44ed16add7ded1efc5
BLAKE2b-256 568663c1128391dc08da84651aa9bd3f5ff421b0edb9955537c30962c5d519e2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.14-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 40dd1dd800a933e1ce6c46dd9bbabc080eda7fa1fe7ba9c7fd4261384c469eb7
MD5 447b9aba694eeec737e81c74a62d1e8b
BLAKE2b-256 d4ef9be45c01e0b1b40cec3acde7b59988ec273e0959803975ec5e7ef1b672a5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.14-cp314-cp314-manylinux_2_41_x86_64.whl
Algorithm Hash digest
SHA256 647dd4f2dfa0cc8783373132490d5b6ed5400f04ae263bd89b66175bd3f51f40
MD5 c682da2dee26594897acf9d7906c9fda
BLAKE2b-256 f7a94ecc78ff70f6c11b2b78c796bc326bc4eff016da4483739635bfe8d3549e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.14-cp314-cp314-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 302a11e09aca71150a8357ced1523201c483d5511bd5b19143c86694a0929c1e
MD5 ef6e3daad92a99e977a2014fcd717b97
BLAKE2b-256 151165c79391ca43d2c589418d6f5cd9e86ca39445513fdf55c1076a7b17f0fb

See more details on using hashes here.

Provenance

The following attestation bundles were made for dbus_fast-5.0.14-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.14-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.14-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 43d8f040eb550243576d37bf7fd364691138f7fdab854a20a21e4d5f418c6b34
MD5 25e3e44823f7c268d11b30b2a9862cc6
BLAKE2b-256 89bd4ad021a670be9f9f25ee3a1277c43e2f297cd9387b15cd1a904bd3b1070f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.14-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 1fe7ed6c1d3dba3ea1273dc6533d97f94c59aeafc5d403cf326c3803cf54e594
MD5 85c869bf25860b2c6ea4b2fba8a10864
BLAKE2b-256 6f8d2d76ca98c3622dd1c1bf8c510d5d252fa89846690c141a0d69e807c346fd

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.14-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 5e955f5de2c9f83dea280835884ec3b79672ced6b55fb1da1f3207deddec6070
MD5 1616833243ac6ecdf12fa5b4293391f0
BLAKE2b-256 06d2a533b1cfff4c9a9173920b4a8e5fdc4a9c3a94108121c9d9d3a626b9fd91

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.14-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 c0b112f89579035b6fcce135950af441a659514d21745f3015ed11a369f26ee7
MD5 f1546f2edfb9ee93359ae11049490e0f
BLAKE2b-256 ef4568fbd306928acf98ed018eca4cc40ceb4a4383b305b4321a69deb231ed82

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.14-cp313-cp313-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 959af96ddf2956a54ff3fe02dc7884e003477bc2392d36ac80d6093c97bc9160
MD5 953a2145c812ec38c8dd916b53f5f0b0
BLAKE2b-256 db292e4ea53144ef84279384baa301d89270600911652f272236bf0bb7785934

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.14-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 04a84ea2ae7625ec5ffc268d225d83ace8c3e1c4febc827330766d772e11f420
MD5 a046f213d87b616329085ad8c9042801
BLAKE2b-256 1d636dec17bb7ba7e6a4b10ce3919684f1f89e9deca3f35e820b341b4ba969af

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.14-cp313-cp313-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 7e2ac8254592e4c975528ea345f49bad0b67e239fac8b8069615ed91215878fa
MD5 35256206a4f0cda576770bac6fefac3c
BLAKE2b-256 36c4208254a9cc1675543c12585621c242528b344ad9c0536c754f7bbe6123d4

See more details on using hashes here.

Provenance

The following attestation bundles were made for dbus_fast-5.0.14-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.14-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.14-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 ed22d45d5803255ce6c1ecf23354698277152cf5f784f3a7f29c8e485eb8febd
MD5 1dddc0488df90feecf0f36de6a3b138a
BLAKE2b-256 91e7ffede4ebc712776064e082e87340921e3ab0fe81d13b52c732d269a8839c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.14-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 70d9681254e61d9c2668debbfc643a752768b41aa0f7ee1e5484f939468d2dcd
MD5 fe26de3cc80fc42854e7d99446da77a1
BLAKE2b-256 76bbfcc631fd07112b20b12c2e875112028eae7ba0fd61652cfd1098873f126b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.14-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 01e1131f344c896203f5c8be456d0bb5dccf1e6cfda10dc0a2e126e2489f4b28
MD5 580c037ef3d0def5e342534688582d2a
BLAKE2b-256 46cc945122ee329615e5ad9c9b5f7e45a76bf53d1367484b5c77d0d7a2de423f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.14-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 e2e21810773b5cf03e0ebc7e2f1d9dbc5be45bbdcdc28943caf8656e03ebdafb
MD5 346acdf0cbfe4484a5e4e669119047e8
BLAKE2b-256 5e9e6ef7f18951f8230f56864311fe4ce37d5e9438a46d9dbe8456cb9d2a139c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.14-cp312-cp312-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 d33a66644bfc4c84f6f0f03f6c0a7cc62c700fcf6e76a65ee72349041bc24e68
MD5 de017bb204a4e33bcdcac188cf8daa22
BLAKE2b-256 9799c42641af206df13b7fa756a868d94585667b8ee3e2a275bb508575b0c95c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.14-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 51678357b24ef865693f40ad570193db4764b8a912944558c32fe4736f624db1
MD5 de99ab187576c1ae32efc998aa38ae60
BLAKE2b-256 7ef14db498a475b4bf2d518ce26d7703ef98f38762a31a1127b49a29f54fa45b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.14-cp312-cp312-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 dbc2462e746c730a6a8be789b50c342b181349353945c5f12c619675affd51b6
MD5 494ee9d90bceeb93de2ea3164e5768a6
BLAKE2b-256 87eeaede83a90b3760e96bd3584ed29a110254de0bd81cc640772897bbaeea2c

See more details on using hashes here.

Provenance

The following attestation bundles were made for dbus_fast-5.0.14-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.14-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.14-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 5326d332e3acf5a91ddb4bc4c162a4d5d0d18ba043580cbed513d3cbe4ca5a46
MD5 215e13d13f140a3b368638900533ca72
BLAKE2b-256 06e62f59e481dc312e5487be6360320c9f971f590337f41d0ceb3bf97fa8d31c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.14-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 8b901d1240b0f4dcd856b16ebada27f771f5d4be8e79b54d7e06ef10813f4518
MD5 b82304c2502cb0d33ab55bdf40a6ec17
BLAKE2b-256 b46321be2dfaa624ccf731bff56a59c066c7206247900ab52e92d7bbc1c0cebb

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.14-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 d7e293255fba8f76ba0339e1b735754eb2513b488416ba23ca3a99f56cef7744
MD5 9d3847e4816aad438c6155e77f46d7d6
BLAKE2b-256 0aa4731c3ec0769fba00a92b2fb6c90e5ef08277720cdaf4ed85eb300ca17838

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.14-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 b28ab7454c4d9eea7a861275593a337867e8c83ba7178e72daef541bfbdffc05
MD5 5b9aece87110583cb9bc6d97a11dab2e
BLAKE2b-256 c94a7370913e8409dcd234479cef2854810736295b1fc57acb8299ac7913c1a5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.14-cp311-cp311-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 d92acc01d35aa5f7456ba58cff02ecd3412b0dda3dcec747b21ad922214e98eb
MD5 705313d014729e062d4f354e748e99df
BLAKE2b-256 50107dcf5e0a71c730ef4b54922e35a89ffe0bc9a9380942aa18fa203929ed00

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.14-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 c2e09621c7d51b79ef31e3db343d102d43507cb4a5370e289ecee5385d097361
MD5 9c90476d3f8f92a6af96eb9f9a98c6a7
BLAKE2b-256 83411b7af1b06c1588bfd791a1b5c2e1e39e6429b0a1b961b05d89024fcd63d5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.14-cp311-cp311-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 253dd15e5cca38cb0b0078cb7c2b8dac316d41a342311d8368a7eb88f5d897b8
MD5 367371c18f0fd21b998d0b5fc3ed61d0
BLAKE2b-256 92f9360dbbad99f7b730ef92b69dbc1826ff865acc8cb40a85934fc345ad37e5

See more details on using hashes here.

Provenance

The following attestation bundles were made for dbus_fast-5.0.14-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.14-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.14-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 859d2a054a3a208d65124d21879bbaf30cdd4370b84cd94400d162bcde651351
MD5 81f57a1dbeb1ba459ed8c06c7a301408
BLAKE2b-256 c2d6f6fae92d6d54c779b10b82d261596e14646ea5230ff9149ec5b8b9927661

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.14-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 96e6ddc0d28841384ddabdf26dac7170035a5053f7197e6b587e3f0c7b4683b6
MD5 2200a76d4185ad491c44c16f0bf87ee4
BLAKE2b-256 74bf356b96f8189ce5d1287edfe3fd9fb3cc47a1e0d2af1ae199b8a86d3eb318

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.14-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 fc3b11ba9383823b736774e9b5304ee34dddcc2e3167ece40f3fe28beb856d60
MD5 36fc84b481301f31d0fb42a2ee9acea7
BLAKE2b-256 5abc77630197021a6f604d3c2c7ecb8ad32ba684492f3f13bd76b055db327c70

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.14-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 f9ddfefbd20ddb0fd23d4da5917e746af0112606426cea60be329197ca9593a5
MD5 b404778fb9794c033c83a4bb8ad39f60
BLAKE2b-256 fb878b7db8db6886a7832aa5bda0eb9c58bf1c61238bc430b26e8c8d403db988

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.14-cp310-cp310-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 616877afffd1fd5ec20cd6cd1727144f23ea49943c505bdf4b96e38cae0fc756
MD5 2ae8ebf5ec30416452d0afcd3192042c
BLAKE2b-256 5dedc68a8ad68d6c206d63f8990688a04ff077b6b6bebf5f2227a3ba75aeefd4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.14-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 0a137166877651ff3b6766b6c8d77468ccf1f05dbd697614f270648519707c0d
MD5 95d06a648de89a3f73ed34539d7ee9d9
BLAKE2b-256 bd1ca625a621325a72901693353977fd0d4cce411328aecdc805c95ae9a36c2f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.14-cp310-cp310-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 90dcd29de49378098f0bd4f3b503338a387ec27c2db9275895494292fc531f1a
MD5 90a5595b879b96a7b4b68a9dd8f8cf58
BLAKE2b-256 6154ce56557f88b9c4ed5f8006f96f75283664c1d9de3b062892957abf98f58e

See more details on using hashes here.

Provenance

The following attestation bundles were made for dbus_fast-5.0.14-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.14-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.14-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 4fee5ae9ab46713d8396efbdb45e245c4c6cc9c632583ca8b5ea1bc751a11868
MD5 d68523981818fd9243188da09b97c36e
BLAKE2b-256 5ae71b06651ff9a4ed38d82f9e17de935ee4f603c2f1b790a76b20d0c1a04a5b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.14-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 73681d21a99233191a201e744e80705dc0893fc0eff9c84d13e9c2e3d23a82fd
MD5 17ba7e84fd0e618949294b2db477f35e
BLAKE2b-256 1d6aa8652278644e71710b3363e0e5865d4f8c22093dc6c847b46031d7f9c663

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.14-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 76362c902cc8853ff076ecbea701850754d6328059245791de658d8cdaa57400
MD5 4badbfcacc9703608180f9b08195972e
BLAKE2b-256 98e120df0c2dfd022e65b53595befae06352da22b015ae91cd1b19dca3e95624

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.14-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 2c69dfd2ffdf134ef23b6f6322765c4efbf6c07d42ef550e29a950be760df203
MD5 51d831d9ebe1ae491574eccfcebce7a5
BLAKE2b-256 64c0c55565939c102cf7b5fa89f9d6cdac1a543ae8dcc2a722e72e6fdac53d50

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.14-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 96220a394490db3a1afb7d5594f503da1ff5e4d87ea15692f89c1c0496739b6e
MD5 d99fe77fea935298029e7ad066fcf44b
BLAKE2b-256 df6fd39613c43054e36a6c7280af80a643d2a145f1914458657af4bee1f51449

See more details on using hashes here.

Provenance

The following attestation bundles were made for dbus_fast-5.0.14-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.14-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.14-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 a76b1e64c03211c1e4d050306631dd4bbbcf63b7300e768f0c2eb2ded99dc359
MD5 fa848785f88be6da9cfa01782a3bbc09
BLAKE2b-256 d6221210465de330c437aa6a60f8bfb5e58f79739733ee5d8d4095b76a3e1755

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.14-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 037de863d965d4621e76e4af5520fd01350b76b8ef7e859f4bd2d346a35855c8
MD5 be8062fe529b321f158fc31584add9ea
BLAKE2b-256 59d313ca46788dd3b9b15d8bfa0e9463476e69827abc9669196d6a81ceff384f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.14-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 f8d641e7ea20a55eef138b8212f231cee1452757e1f12dd3bfb6b6b463f88eb3
MD5 6d94809915529e9744a6bf1a628591f2
BLAKE2b-256 0272d052238466eff05b7494a230484da0f3fef47194cd3b63701fdfd8f16e79

See more details on using hashes here.

Provenance

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