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.16.tar.gz (82.6 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.16-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.16-cp314-cp314t-musllinux_1_2_riscv64.whl (822.8 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ riscv64

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

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

dbus_fast-5.0.16-cp314-cp314t-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl (821.8 kB view details)

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

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

Uploaded CPython 3.14tmacOS 11.0+ ARM64

dbus_fast-5.0.16-cp314-cp314-musllinux_1_2_x86_64.whl (862.6 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

dbus_fast-5.0.16-cp314-cp314-musllinux_1_2_riscv64.whl (833.8 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ riscv64

dbus_fast-5.0.16-cp314-cp314-musllinux_1_2_aarch64.whl (818.7 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

dbus_fast-5.0.16-cp314-cp314-manylinux_2_41_x86_64.whl (854.0 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.41+ x86-64

dbus_fast-5.0.16-cp314-cp314-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl (833.7 kB view details)

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

dbus_fast-5.0.16-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (855.7 kB view details)

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

dbus_fast-5.0.16-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (810.9 kB view details)

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

dbus_fast-5.0.16-cp314-cp314-macosx_11_0_arm64.whl (692.9 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

dbus_fast-5.0.16-cp313-cp313-musllinux_1_2_x86_64.whl (858.1 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

dbus_fast-5.0.16-cp313-cp313-musllinux_1_2_riscv64.whl (828.4 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ riscv64

dbus_fast-5.0.16-cp313-cp313-musllinux_1_2_aarch64.whl (806.4 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

dbus_fast-5.0.16-cp313-cp313-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl (828.6 kB view details)

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

dbus_fast-5.0.16-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (850.4 kB view details)

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

dbus_fast-5.0.16-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (798.5 kB view details)

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

dbus_fast-5.0.16-cp313-cp313-macosx_11_0_arm64.whl (685.7 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

dbus_fast-5.0.16-cp312-cp312-musllinux_1_2_x86_64.whl (860.0 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

dbus_fast-5.0.16-cp312-cp312-musllinux_1_2_riscv64.whl (830.9 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ riscv64

dbus_fast-5.0.16-cp312-cp312-musllinux_1_2_aarch64.whl (807.8 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

dbus_fast-5.0.16-cp312-cp312-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl (833.8 kB view details)

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

dbus_fast-5.0.16-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (852.4 kB view details)

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

dbus_fast-5.0.16-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (799.9 kB view details)

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

dbus_fast-5.0.16-cp312-cp312-macosx_11_0_arm64.whl (690.1 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

dbus_fast-5.0.16-cp311-cp311-musllinux_1_2_x86_64.whl (890.4 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.11musllinux: musl 1.2+ riscv64

dbus_fast-5.0.16-cp311-cp311-musllinux_1_2_aarch64.whl (845.6 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

dbus_fast-5.0.16-cp311-cp311-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl (885.9 kB view details)

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

dbus_fast-5.0.16-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (883.0 kB view details)

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

dbus_fast-5.0.16-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (838.2 kB view details)

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

dbus_fast-5.0.16-cp311-cp311-macosx_11_0_arm64.whl (692.8 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

dbus_fast-5.0.16-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.16-cp310-cp310-musllinux_1_2_riscv64.whl (883.2 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ riscv64

dbus_fast-5.0.16-cp310-cp310-musllinux_1_2_aarch64.whl (846.9 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

dbus_fast-5.0.16-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.16-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (884.3 kB view details)

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

dbus_fast-5.0.16-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (839.9 kB view details)

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

dbus_fast-5.0.16-cp310-cp310-macosx_11_0_arm64.whl (694.6 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

dbus_fast-5.0.16-cp39-cp39-musllinux_1_2_x86_64.whl (895.7 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ x86-64

dbus_fast-5.0.16-cp39-cp39-musllinux_1_2_aarch64.whl (850.3 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

dbus_fast-5.0.16-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (888.5 kB view details)

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

dbus_fast-5.0.16-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (843.2 kB view details)

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

dbus_fast-5.0.16-cp39-cp39-macosx_11_0_arm64.whl (698.7 kB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

File details

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

File metadata

  • Download URL: dbus_fast-5.0.16.tar.gz
  • Upload date:
  • Size: 82.6 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.16.tar.gz
Algorithm Hash digest
SHA256 24d0a86f32acb209a41806d20cf8a9207e4d46760e23c32479d1951d43739080
MD5 7f7dbc6c50d990fe865051a14e7e556c
BLAKE2b-256 c226a75b4f79c56bd1f24e4cf85399b28a1a607d1052b9e66aceb961d79a6d3f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.16-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 f41ca52046e41775c0784148c7b6b636539722bcc1412bae3139ac7295883265
MD5 4345338ed3892b460780e5ab3421fee9
BLAKE2b-256 887c25ce2a94711a7479d2786de321c7c5fbbf99ab8c67eba1bf5dd5bd80c830

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.16-cp314-cp314t-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 e46276642f787a345f127389ff36a90ba9e4df6537b852d8afdc12e2b2f9bb91
MD5 d9abc8f36d6ea599de67e4aeb53bfc92
BLAKE2b-256 7cdb1b01c80c81202ff81e96d1ce92a45296a818bd81c705ea5f032536d591b1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.16-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 d2c9ae45a01d5f2e27a9508159d6e3c34e6714b485884000839daf5320d76da9
MD5 c5e85824a8500bfdac3083ce75bde0e6
BLAKE2b-256 cd1f11d8d709736644685dbaa191d65dd313869fec688ff75eaed542f0625895

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.16-cp314-cp314t-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 2832c5eefcc5b4e0623a27e20751ca34006d7fe73b21d58ef859aa2cef0a8ec8
MD5 99a50f4261c10f95e11ae2f977d240ab
BLAKE2b-256 2088465a6e79cd77e8dc1451fdcfd8080ff72f6693f0a8b25b127df81283f241

See more details on using hashes here.

Provenance

The following attestation bundles were made for dbus_fast-5.0.16-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.16-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.16-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 e2f96e7da851b0dc9e0bc1e00d8b9cd6f227469b6e48e1b2ad474e44ff91841b
MD5 27a962646434ea2ea6bc9ee6f4c43c63
BLAKE2b-256 fc821423c68091804af7711e940128cacd5494d8d3be645609ae0b23d9104562

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.16-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 2d8943d0b92ec9f49e37aed6224515ce161eb2b5df5e9fd3e1d692f35efbe48b
MD5 97c37f6eb79e52e8f59964abb4492b63
BLAKE2b-256 7153d0a0df847025e57a5aa58b0d711d74859a778ca3c28454d10f3b1a554bc3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.16-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 1f95648d4904426c1538df894b4f327843374b760f0491479d36eb115885ee4d
MD5 6de7d19dd2ba1afd7e4b0eb78a691404
BLAKE2b-256 e6e20ed2199f4769d231a8ed2129645ee80c5af46592721e97a5d39cbf07bd83

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.16-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 56e64ff9d1a1f503e07a940f861bf6dc80f24602425cb6f384d69bdc7fe7071f
MD5 bcf57175918ae8ac9f250e7c3599465f
BLAKE2b-256 300c2cb74502755be1957b81faf1cf2e57b9b12764afaf7ac30b99c5ebe6e615

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.16-cp314-cp314-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 fc43f5a7e7db86728e9925757a53a717eb3fec27de54e7bbc688cd65b8e9028c
MD5 b7a62674fe365b98d5d4e7a75f6fcd36
BLAKE2b-256 9558a20c6e76b6bc037d5b565531f501d427dcd70fe5a903dcc7984dfe3ef287

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.16-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 d36ff2f0f6a5fd6dae96a09f48783ee7de51bf12d0da18a13edf19766bd0b99a
MD5 596c7fb24a2a270a54d11b4599ef20b4
BLAKE2b-256 6a2bf9cc24ebb6f4175bc5760b46d13ad108cd634dfb41c474245bd1fd846091

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.16-cp314-cp314-manylinux_2_41_x86_64.whl
Algorithm Hash digest
SHA256 8447d1ab3cd7dc9976805dda5903453d0fdb8aaab870536f3bcaf6b1f58800a3
MD5 92413188309c4fe50c211fd913ffe40a
BLAKE2b-256 308d3237d8a6826a302095b258f183ddf236d345b4070af6e6bb65da3f5dfe25

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.16-cp314-cp314-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 e6fc1831c702725eb4875d69c877700d95e7c3fa8542f4edaad318c6ba3e66f2
MD5 ae0e606060d2e20c6bb131cfe63f8269
BLAKE2b-256 e83d509e45e1739e96b08461c281eb257f564fd7533f9cabd067f0c4694b725d

See more details on using hashes here.

Provenance

The following attestation bundles were made for dbus_fast-5.0.16-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.16-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.16-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 07554554373441f562d1469bd73d024dd3144c9725375bbffbe8b3375bf464fe
MD5 8c81d7d25209df69bbafd4d71998f0fb
BLAKE2b-256 c31d8a9caaf953c2212538b9f210edd2507ecd2dc90414ac688b030917f6d1ec

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.16-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 874bbd1fff34054c10b1062676334fcf170f32a0f0f9f21d2a9d1bf22ef70b35
MD5 fec6057d5529933fcdc1e0369dd22b75
BLAKE2b-256 886e827fe09289b73f03fbaaa07493e7944dd16266429bf081ba1c62094af03e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.16-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 a844384792afdec27f98ec9708e715399c539837fae576e532661b94a52f812a
MD5 9d27aeec5b86988174b00717582e23fe
BLAKE2b-256 2bac057f6a4a70c4a95f69b35a654b511c1381cb84d9f79fc6f587959adceb52

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.16-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 0b800db6ffaec39554f1489b54482e33a8b6247325974cf82659504a3816b956
MD5 136f3e8562eb06d38cc5dfad3bb9243e
BLAKE2b-256 44fae7d5e24b42d9193acf6219ee04e818b8495a0b4a0f122a58f536b2460708

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.16-cp313-cp313-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 df3f3ee7cf61be297be9d3ce2074f74da44b13cdb413cc821e398902d2f38036
MD5 9bb5ed747a5d64bfe7d771b0901bc056
BLAKE2b-256 2ae8b6ef9463e41e745b785856e7537503aefaab2a06b18545c407ed11a2974b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.16-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 f0707f8473cd8e5be0ac1aceed7532e2fcb4b5b97584f2878f98cbe61049a184
MD5 172265166a430bace0ae8026a9e74fc5
BLAKE2b-256 94b08492fbb855defeff0229e88cc601f256ea0dfffaa2169e361d2064686e47

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.16-cp313-cp313-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 790c1310d38369e659b45ae5b95b6bce24ae51e011634142324cb6ebc8e11398
MD5 49eaed4e5f8c6fb1ad18cd849a9461d6
BLAKE2b-256 779ab79c59d12199f7aebbf71d9ce8d2e087f623d66c9981c0836b52ce31c69b

See more details on using hashes here.

Provenance

The following attestation bundles were made for dbus_fast-5.0.16-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.16-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.16-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 4eee863c411c0c1c783518f30c3de50339316fc745ac2abcc0778046e4adac40
MD5 ca22f90e137985faf67fef70e21742ee
BLAKE2b-256 3cff8a9c99ba28ab266038a3ea3cf2989623deb5cbd8e8aceb69a4385b7fccd5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.16-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 831a6f6a865260395fa59f80d36c73b1e270b268603f53422552a813bf61c529
MD5 82571839d39879cc0082ef8e390b03a1
BLAKE2b-256 36651cadc9c53e779a224ae13210b222bf41bc8c4d0843cf529fd927e308334d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.16-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 608f3e5f217a8f24c4d487667a2eae2bcd52899fd421bd0d05fc81462090936f
MD5 63a9c8553d01053f8df6d60192085667
BLAKE2b-256 165997fe76bb18e90f3d5017569dd39e11510b86f623dbd15d9fb3ed53103401

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.16-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 a8b2c92f82af04d59c50cbccf65f995fa2e321ce7850e3c1b613e94680a8044e
MD5 ab51e52f4b47928997a7ce796467f3ac
BLAKE2b-256 c5f81070ab5973dda406f735f6f73a4bc50debf7c43301f5e113fd3657bfca58

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.16-cp312-cp312-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 8deec1d4dd41336672b30b596d60ed78898e923f3b06f9ef60affc1a5dec656c
MD5 35d1925c358f42b798aa392f0cea0083
BLAKE2b-256 fb2f7aec4afdfeae504a9381d0fcc8105e1b440f81d25480ac5f6704c124d561

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.16-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 42a7901d5f053490d3d59c5a9b9a13b1d8322836458efcb93040ea360aced572
MD5 8719a20f8c51a74f5969ce635c4e3640
BLAKE2b-256 3ba25c2d7953906eae84dad02ea920dae9c4fe0339e84870b6e6ad9b9a6070cf

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.16-cp312-cp312-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 941b926581ef458dfde70711badbb5ab1bfba523b527f1b73004c21cdf9976ec
MD5 3f29fa4ef2901fa2d537903171aa2225
BLAKE2b-256 b862597c9742618b7f5273d1bd0e330f9e2fa13d9c59d4e3a591f4cf3e1c985f

See more details on using hashes here.

Provenance

The following attestation bundles were made for dbus_fast-5.0.16-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.16-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.16-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 c42dc349ea1e52e4bd17462d5029c7650d76e8ccd2fbd136b6a0384abae61004
MD5 cfffc220d82ae131ec4a69212da2d6e6
BLAKE2b-256 02c24c6e23a17b14461b6d0d24dff7d6d9f6c1b7c01ddd1ea80757f69f9541ff

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.16-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 85a7771883fd5beaa5e92b27772722db5e3d4dc2f7e04a1812d3bf01b7de440d
MD5 98699e4378cb035463228061e41575ca
BLAKE2b-256 25499c6013b1f19ff0f2c1ba4e8996f81bf225d85ffea541200a89de4a0c44bc

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.16-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 f35c2ce7ab95ecc8a378119a024691b33693f07068bfaa3642d32d2f1a0e28a8
MD5 5a86903e9e1be46ed1047feb0dd87eb8
BLAKE2b-256 ea52c7cc66d4c8e6b155c165f6dc28dad5fecee1c614441f5b89a4c6a7e0e5bf

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.16-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 3367dfeba013db0f97004b4c93f4a21c39728f2bbe0fbef74dbbeb6e078e47fa
MD5 269895843401fc9b42a594f13dc5035c
BLAKE2b-256 6cd6864c0fec52f3de381371f342966070252a8323ccf6b829f3c58e6d0b65e4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.16-cp311-cp311-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 bff101277226e71aa744d72b968efcdde4e185dc0d3571b8168edb99a2f72d3a
MD5 70244667af6b8ee6dbc15c508bb9cc4d
BLAKE2b-256 0cead3945d8fa00fe5bf96aa4bff6b93b91afa4493ccb377ee5d9f9bb7adfa29

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.16-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 1f5017cb3c32b07622f9c01a1285526183988ae1dd4e5fedc7390650a3cfbca2
MD5 fe8a2b656bf1ca845f6e7868b43c20c5
BLAKE2b-256 6e699c7d4231dab8d1b40a7bd59226d0ae57cd7e07a4b9869a76ddc3ba6b54e0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.16-cp311-cp311-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 651347df9079744395c6404e0ed03a3704485d21833765db7ad71390c7c807a6
MD5 c8eaa2b4be3dc00e8b541c37a483de17
BLAKE2b-256 b46a73ee89383f66be965fa20c1b4e6d558a9f6059ff4c0809455b8fca8a2d47

See more details on using hashes here.

Provenance

The following attestation bundles were made for dbus_fast-5.0.16-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.16-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.16-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 6d41f51d2a420f7274d4f48b7a4f3e56b70ee8ca87ad666854007de102025ee3
MD5 8ae07e0e349c258a96aae3b124ac88d7
BLAKE2b-256 0042e5c277b88eb0102c71f2387eb3feb7413f2f5f8ed3ef2b7c16e54bfe618a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.16-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 ddac5066da9e1e38d434e41372392ac62ab8ce80e4e9616a0504999749b9ec46
MD5 0eaefeb4e1290558e7b879083926ba5e
BLAKE2b-256 e6a63903f047ee563a793a9adf9c6bb46a00164fcdd83224fce221cb4a69b90f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.16-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 0a846c0103073f78cecd70b7cd229d4f37b739164797de4d7943d0591dac4393
MD5 0769dd4f565f55d7316bbaafbf04f80b
BLAKE2b-256 77a8d83ca112995ceecc8de75d921a56cc9bd066bb3661228497de28f6fe8b0c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.16-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 c775272eccf2aa3948c72509c590f84a9a9bebb3bc7ee68452ad029209670c63
MD5 af884afcfe4beeb6e39b63627e1e949a
BLAKE2b-256 f654fab358e1bee38621cf2289eb59d001c7f2d2aeff61319852346518fa9304

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.16-cp310-cp310-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 7fb55b9658f9a285bd52b6209e54a89613da7f1134d505aa089299ed99268c1a
MD5 8a9d4f6f04890ec2bf6c343cd09ee87e
BLAKE2b-256 4bbab3f02870dab313b423442ac8859de138386b12539de30583758b1787b81f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.16-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 b92b773075adc85f24a628875e8b57f4d1f1fbe63ec18db1bb9f136f26a6f621
MD5 f002eb666b84b6fae341f068c3523fa9
BLAKE2b-256 2b898203aa0666327b01855cadd17da0d5f8f41b8fa28ca658f868d807404c5a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.16-cp310-cp310-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 d57b49994666998dfdacaac726f6c788855ebd1942e3d40b91bf72b9bd64c079
MD5 96a5ec4156970aa9ed3992f01dae0d55
BLAKE2b-256 5926b699fccea33ae56abb087795127e65b846feab093abd1e673f6233945b03

See more details on using hashes here.

Provenance

The following attestation bundles were made for dbus_fast-5.0.16-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.16-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.16-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 d0601912b5f7015870f3987216c7d0cec49278adb8a282fc879e171a73b7f8f4
MD5 dfa4c68cbd5c430f29ad8183619f370c
BLAKE2b-256 aceee1c8e106d1e83d7db653d360d58527c567c58dd7faac43ac255915293522

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.16-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 dc1b3de7c70cb25cb4799fd098aae23caca89e957f199a02997c2c280f20a1a8
MD5 97e60cd4c35701054e8b0033ce8b189a
BLAKE2b-256 2f9fe876913135540b426f4b7e2b5b8b718a42da51f115e2a70323f13e2d6db9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.16-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 872bed67d7c0e58663d4e0ed5be44e7e56800222dd2ef20796be6ba40aaf8443
MD5 f34b179108edcee7dec1522e3277550a
BLAKE2b-256 65a3be8cf9f2094ae2e672f4e3505387dc18da9fd88822df2e726055406121b2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.16-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 3346139351e86d81be963dddb2d0c25da2f0a9c60d40db7e66cb0cc5cf41674e
MD5 39bc9fc298bf61fcfe88860ad4d6d62c
BLAKE2b-256 1039b58524ba66a4d060d56ae0b03d93fef1ae43744433b6312e6734cc7f60d8

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.16-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 cc7a034d2c828ab796d58e42beef1469cdfdf6a00269efd4777c856c753cba9a
MD5 0bb45407c0a93749af30ee93d0fd121b
BLAKE2b-256 e338c60ef1db68ef2d272949e7ad8eca52f787d04832638c03755033e5e4bd43

See more details on using hashes here.

Provenance

The following attestation bundles were made for dbus_fast-5.0.16-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.16-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.16-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 bb3a62a2af18b8e4592555dbf92b66a66735121cf47a1664415076d0260721bd
MD5 b28f3e1268bd50cbba3268bccdc52f40
BLAKE2b-256 92384e2e3715a018637105b0e612e4e8fd142bde34f0fa5240ec7336a16e84a7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.16-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 b2fc70c34595475bd5cbb523ddd4d119b6f1a5ebb03205b2a99b663d4120dd99
MD5 35e181f643ac8279dcb726f4ff578f5d
BLAKE2b-256 1d3085ad10e535c0f725fa339e1ca95354f06f4535df0db5fdc949f6a8fd73d6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.16-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 61768afef41db9adac0ca7849a161a57b55cae34a9db49e3d39ed21727c3e321
MD5 f90ff8dc6804e763cca41c0ad8d8c378
BLAKE2b-256 98c516c46cb72f12e3a3179dc254f11badc6690d84ae1aa8f30cc0fbd62ec6d7

See more details on using hashes here.

Provenance

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