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.13.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.13-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.13-cp314-cp314t-musllinux_1_2_riscv64.whl (823.5 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ riscv64

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

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.14tmacOS 11.0+ ARM64

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

Uploaded CPython 3.14musllinux: musl 1.2+ riscv64

dbus_fast-5.0.13-cp314-cp314-musllinux_1_2_aarch64.whl (818.8 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

dbus_fast-5.0.13-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.13-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.13-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.13-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (811.0 kB view details)

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

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

Uploaded CPython 3.14macOS 11.0+ ARM64

dbus_fast-5.0.13-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.13-cp313-cp313-musllinux_1_2_riscv64.whl (828.7 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ riscv64

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

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

dbus_fast-5.0.13-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.13-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.13-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.13-cp313-cp313-macosx_11_0_arm64.whl (685.5 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

dbus_fast-5.0.13-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.13-cp312-cp312-musllinux_1_2_riscv64.whl (831.0 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ riscv64

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

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

dbus_fast-5.0.13-cp312-cp312-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl (833.9 kB view details)

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

dbus_fast-5.0.13-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.13-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.13-cp312-cp312-macosx_11_0_arm64.whl (689.9 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

dbus_fast-5.0.13-cp311-cp311-musllinux_1_2_x86_64.whl (890.0 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.11musllinux: musl 1.2+ riscv64

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

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

dbus_fast-5.0.13-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.13-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.13-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.13-cp311-cp311-macosx_11_0_arm64.whl (692.6 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

dbus_fast-5.0.13-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.13-cp310-cp310-musllinux_1_2_riscv64.whl (883.1 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ riscv64

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

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

dbus_fast-5.0.13-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.13-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.13-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.13-cp310-cp310-macosx_11_0_arm64.whl (694.4 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

dbus_fast-5.0.13-cp39-cp39-musllinux_1_2_x86_64.whl (896.0 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

dbus_fast-5.0.13-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.13-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.13-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.13.tar.gz.

File metadata

  • Download URL: dbus_fast-5.0.13.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.13.tar.gz
Algorithm Hash digest
SHA256 4f1f7497ffb20c34b5ef3bdbded617b755eacde2f48cb724a594cf81697ba2c1
MD5 656e5196b5869d27bb1e5122a6428c8a
BLAKE2b-256 a5e1a5973cf1eb9698dc3013803098d53f73f4a7a7c617d5e7af8d4a962166aa

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.13-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 1521f4cf36224c4b932ecfcec3616658cb8f109ec254b63c7f8cd4208dea8038
MD5 392dd1b68a8c7644724cef591b4ec032
BLAKE2b-256 b9a5e1a31e6a404344e6869c9b89886bfbfce47b9386128886e250e853b20517

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.13-cp314-cp314t-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 b632e819a82919eddd4e3044328539c51b09e9d024d8248e9aed4920dc746a88
MD5 48bc0b35dde5f273bdabca8b6bb0184e
BLAKE2b-256 4a1c598e425bdcb3ffac5ea5510e5ab3ec25201271fc68630dc9d938c5b656c1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.13-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 f565ab7316fd28fcd201f26dd367278bd17daf6904f29c37412d0d32c45f639d
MD5 a7fcce276a01f6246241e036fc389d2a
BLAKE2b-256 57dbedf346378654d2c6fd684b8c0273e1ab3ef6e6a148e414d38417ea30cf3c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.13-cp314-cp314t-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 492816d274d3d44ef06ec188328189a0e16681f73a4b19b4a51713bb8ba35877
MD5 8f707aff772c5ba3f763a098710ea1c8
BLAKE2b-256 a47c2f830bc3ec1aef92de845e755d3d0f57c4a5fff8978cc3f963d461812612

See more details on using hashes here.

Provenance

The following attestation bundles were made for dbus_fast-5.0.13-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.13-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.13-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 622e54882ec239aab80f96661207bfab47ff30c911d32bfab4607961c427f581
MD5 3fb964a2878f55219737fe2f648d6e3f
BLAKE2b-256 08f5b6094c43fdf6cf45966beecc70eda3112f32982f3a01576b8d2a47700b82

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.13-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 6053587171f446106400a603b9f49f41a3a1a69dc4ad9269cc2fc58e481df6ce
MD5 4079bfe7d02a0de4542cea092b6732b3
BLAKE2b-256 6e538b7033e756ab184552c118befe2b3ec7d8ff262deec4c15038361dfd9069

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.13-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 99ba1ea0bcaa418d1901d403b6698f6da80dffda46c2879c805614c06644bc8a
MD5 6bd64f79312e3e3455ca7c4edaa23ee6
BLAKE2b-256 71d9de65e1ed97d6454ca4d4bf5cb0e2b8260b375d7f4ae5b177591eaea00aa1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.13-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 ec373f30ed29661c928665088fa3d109253b9b720d4767e4944b32bc8900c2e1
MD5 8696088c7efc7ccf4e602b66b651d5a6
BLAKE2b-256 3db5a01dec41e987dd37f5be81492f763b4221ae06c1bc884fa9a45be34cdcdc

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.13-cp314-cp314-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 93bcea989b19e1034c5f3e57c0d18cf75201f1e0c51584c7a6e646c02d516fcb
MD5 7f8128382c74e7c7db65b796d8fe3ab3
BLAKE2b-256 8f8cfcb5f9f3df27525086c6c8c44d4fae5654935f37fe1ab558e8895c31c25b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.13-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 434e6735cc64fa04bfd20c97a374bed3f90c427ad3ffa7c781e4380f903e17a2
MD5 2d547dc4e46dc15bd45719ddc13652d3
BLAKE2b-256 e8ecaaf87a6969bb3cda7d6e7cff12aa76fccd2fe72d6c904c5852512348728b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.13-cp314-cp314-manylinux_2_41_x86_64.whl
Algorithm Hash digest
SHA256 d5aaaedde57aaccc901f09d4f47a99a6919bf725aeb5e15e0ff2d42506836582
MD5 b72af65b07a81aaa379c36423659a8f4
BLAKE2b-256 439e790bd08f8d69c3d7b5db26df913c91acb788e5e6c6cb1fed4296308898eb

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.13-cp314-cp314-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 ab68aad25e342aa412195d8ca46ab5777403b2ed71d4308561bc8889098b7da4
MD5 ca0516ae9cac77347e8f6a7d83a49c19
BLAKE2b-256 482b270406e6d6aa530236de98a408ef3ec8eedfb75c1bff251e2683a4c368aa

See more details on using hashes here.

Provenance

The following attestation bundles were made for dbus_fast-5.0.13-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.13-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.13-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 697a1bb5ecf83508353e16be3776c8a72d269e3e06507bbbf3fab441d2000045
MD5 f2161786cc5f1f6876dc1fc381fb5369
BLAKE2b-256 fb3c914a1ee09773d0abbd7bf581f0365979dd49a53f51e35582e2872122bd9d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.13-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 8f4f48c9280493cde022610e42a9c0917f264a07061ecc48a54f6afd5c1262fe
MD5 4fbf38b14c46a244183632c63121dd8d
BLAKE2b-256 3019e4b0cd2600cb7367751a85875c2e632245590d5e57675534c1b6683a290d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.13-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 8c9b277d3675d0287efdada6561251b87fce0944620fa28fa8676c79f0c83569
MD5 86d88eb25ae9897c61e9b4fc751d7ca1
BLAKE2b-256 7e57df430b70b77aed3aebdd072af7f04d42f4a2fc99751c81d43395d26bc5cd

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.13-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 463f4d38b7075c7a5aebf8ce45f0e6a357db6326d7364501d0117712a6e1d82d
MD5 4241d6d4bc86e59dc78547599079f2a6
BLAKE2b-256 5dd6def9906a14c1d9a1f11aa5c946a37fbf6c4bc64f593c29d4e860f1d50107

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.13-cp313-cp313-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 7733a122b7245fce4566611e63f9e2f2aec0f0758cfb4d0aa90cdc7e548e4725
MD5 8c47cd38e70807d101328bfd6282518f
BLAKE2b-256 35e44cdcc1b73edff2df35d070cbf76c0f7587a47e3936a4a84a8c048b94be5c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.13-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 15872a8f0d7089066e738d608c8d7d3aec160d920635eb369307b03ca6d4b259
MD5 cd2ef4e5fc06a4d5b7af7c6b9edaffda
BLAKE2b-256 f9fc397e9627e505bd174f8a4c4fe7616108ed0a6d9e442c716f35c0e75145a9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.13-cp313-cp313-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 bbfd6acaa062a84db0c2bced9d37687bf719abf21b20c920a1972827aa166fe0
MD5 74118f4e535a3ec76cb6c2d6ce7d204e
BLAKE2b-256 e018bbb445bbf188bc934e3c513d78b4047b6715b89ab353bd6ea2b35baf42bb

See more details on using hashes here.

Provenance

The following attestation bundles were made for dbus_fast-5.0.13-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.13-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.13-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 b5774098eb4e2a5b93698dd67850392cfe3973394e2d8bb4423ccd2c592d8798
MD5 c4082d19fca7dc637919e6fdbf6d9924
BLAKE2b-256 1289ae2666ba452c61d47b75ab2b00764193f92dd6c9a7427038ea69a4efc449

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.13-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 b1e7986bb2970e61d7f1b6e19c68a104f4aadfa6158d4be273bf3a9b825e0f93
MD5 6f53341d8d870e8dd6b8ab572bc6485c
BLAKE2b-256 85d93ac5a0b4ab02eb6d776e89e8893ccc85fbff64a19760407b9a0b810c6b5a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.13-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 005b8ca0cc9108cac935a672736aab74a15b1960ef5775b304f8cecd96b0a6a0
MD5 bad310c08d4cbf1e42e0f3faab1c7b54
BLAKE2b-256 fdb6eeeda02b9fbf30daa940e49904fc9d70e80cbfc558ffb8d90b01d0a5c4ad

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.13-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 ba1f4b22e32d39c202daeb18fe92176064927085af7158a3a69a4e45abd1cb8e
MD5 3f5e6644cae99a968f52901f8b8571da
BLAKE2b-256 25316403a94146310aac7cee2a8c0ac988e96348516d12fa82efa03c34478b01

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.13-cp312-cp312-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 cdb3c2d59e88d3569d59b6edc9c154d27fd948d347537c410991a1c015545af6
MD5 9f12fb543e4942538a206ffb694a8e7c
BLAKE2b-256 d96036fb50197f8d246b9073313d8603e24cd327eec304f97a4b9f2d6173d1b8

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.13-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 672dc833052e5d03d5706780ee35b2b56be0d7643bc239aff5f818955ce60739
MD5 6f792d6f732e547688761053f53844c8
BLAKE2b-256 fcfe0df8096a1d55631ae307127ae9ed459320e35075a25c669d293e5d25e436

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.13-cp312-cp312-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 003e6a5fcf4c0cfb9c6457d561bf84331d86c4415419c5fd0611d32ed2c16472
MD5 1e0077eac196669804e850dcf0808f60
BLAKE2b-256 eeee0b0b8397af2ab5fc3b5235c8decb6303067a415b23ba6baa764b35c79b31

See more details on using hashes here.

Provenance

The following attestation bundles were made for dbus_fast-5.0.13-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.13-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.13-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 40704f2d3ccf5c2d732ef1c0ce20960564be8050f5007757e1f3f6913a554637
MD5 b71154c980c396d7149265314941ff8a
BLAKE2b-256 62f1c5bfb372e3b42725b091c5ddb77e19774c8b7173842d0556cb0c55da89c5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.13-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 a96f8896c3f80327809bdaa53b09c3e9af6b5a168151142c89b397f97a7fc169
MD5 cff798bd64ff751a31bee4f5a60032e6
BLAKE2b-256 0a521f28a2d977e5e66eddc306173dda5dd199d76c8b23cdb2ed77b2ff68e701

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.13-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 77446f23986bcd7b11ae7e76ec4f64b3694d526eb23405dedeae394a94f61445
MD5 8fef3d44ae5206818109419fd32d68cc
BLAKE2b-256 7088a50abd2a2e2d28b0015a4d0ada77d67639cea712af3bf727bb3154692e64

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.13-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 78e1a55df14a1748d0af74e41365c86d3db5a5b3a9c6803d1c196c3bbbb47e7b
MD5 4822d1e963866370d52277acdf160c56
BLAKE2b-256 d243610ad09e8f40543995cd301e9d05a25b3ba95a42edaf9189f335882972c2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.13-cp311-cp311-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 ea6358abc0456af84326a68fefe531821bea4181462efd78d15c38dd2f0a8c28
MD5 50b7d6cc10a885757812e0729c10db23
BLAKE2b-256 ad6a3b30ae649eda4bb4d8b1be6e39a22524383148731cb57b1a6f2eba310427

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.13-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 2256a67dd3e8e885ae1c095fab2d4c047a04a357e6c319fa858b2922f83fb41c
MD5 56fef0a9e8b08817ebbbd130a4328191
BLAKE2b-256 17bee3b959a7d0f5dbfb654a848a391bcb54cabeb848f1f8d1af3cf4e48b34c1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.13-cp311-cp311-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 a4dbfbc5476c401ead9768e6a6cd9205c5d60eeb5295754964d528a7c4869bba
MD5 7e962a348a5002fa982b609373ecf92b
BLAKE2b-256 7106eda867c13e86d05715d9ef612a0cb02ab372ddca22e604c3c84d835c927f

See more details on using hashes here.

Provenance

The following attestation bundles were made for dbus_fast-5.0.13-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.13-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.13-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 4886a76d4a551abbd9b76215e62f9bde05714d7c31d4643944909cebb3776a31
MD5 67716751b4a1f626905dbd718fecf5e0
BLAKE2b-256 40390cdaab613d00f76577701a228ccd8e8b4e8f164d18082124aca4fb0b7a32

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.13-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 f812ef1800c8c2d858df36f67fb16020c87d0fa7f1e7f1526e88157c47f7322d
MD5 c793bb867e6540e881588b2ba6ac47f7
BLAKE2b-256 61bacd88143fde57d062e30cfea736d59c109f4cdef57417499373d6cc3b2950

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.13-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 0edb25177afe92ac7d57cedd9674613411c380867d04c30dc2debe88b1323c98
MD5 af62b3567043b1af2b253a3e2cba0507
BLAKE2b-256 1ba05469d1d970d02ac640156956fd8f1684e76ef6854ab570f30118ec0c5c42

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.13-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 fa02e498669dde707c629e6281f3aa331f26b8608132ef6bd3cd3061bb3f667c
MD5 d35ab4e5aa7c7582d99b28a666205e66
BLAKE2b-256 a61f7775d74119ff26c04a1c1e39a93798909754a3e92d26ffef6db3d9060373

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.13-cp310-cp310-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 e7bf479035368df7b8faea02104850566477e074edfc3a32cf0a9222e82bbbcc
MD5 8a4e23b08a6abca50b8df39442cd4351
BLAKE2b-256 901c7fcae94804c1721e0ebd8c6ae954def868e235fada6a33baab950dbec8e1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.13-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 c59cb408fa7cfa8449044d6b8291f6ccbc685fa185ffd8f5cc3b662f3d515458
MD5 549bc707ccd9194588500859f4c62f1f
BLAKE2b-256 b99699468e02fa455991d0dcb329a1710093d007124037297d5476919ed4a9ce

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.13-cp310-cp310-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 5cebb3dd5827bb3cdf47ed87750ce37460e1c78a29589095920d16df749a0078
MD5 0dc285349b3d4ae0864a60ac2e9e110d
BLAKE2b-256 acb9c8306e7290e9e3f1b2e75a549e7ef7a9f66c726abfc8273677929f668aa6

See more details on using hashes here.

Provenance

The following attestation bundles were made for dbus_fast-5.0.13-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.13-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.13-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 c3956362dc17dbdd8ba5cdf315cb2471169842e24713264e2cbc1962c8c1066e
MD5 1dfbb55e907e2b43902495dc135c0223
BLAKE2b-256 6b80d92ca75ec8a872d1271ad854935af00a485a7f23466ea20ffdcf1b2cd6b6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.13-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 7bd2896a6d51daddfca743f4a8d27c13c6c705b77cc8122c688b5c2d523ebd13
MD5 9b58d160b3544ed519353baddcc926cf
BLAKE2b-256 a275014dd45d78bb7195e19462f9f824e743e32e677a32ea1bba41087743629c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.13-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 c6d13769f4cf01b9060162aaa44a50563cacdf705b5acda4f0a3d036ed6847cf
MD5 7fee9707f9f6eb752b36e53fef05eda5
BLAKE2b-256 70ca151abf5cdffa36e941af9d88282d6570ff51af6d0913fa02b8fb41d3e9f2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.13-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 7f4f620f07149ad1da44849e0ce1ae56d24c0d93815b2df70b4109c2f1c543e5
MD5 07496dedeea65901ac4db8c32db5b44f
BLAKE2b-256 eaa2e824c1fa61e5706771f674775d3cfad5ac8d1810c92b01a1abdffe601569

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.13-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 d4d25b37785d82755dc3343131e77f1f496cdd103c30851b6b4d7d4135f52025
MD5 cc177fecb957fbcd44824663ef644aa0
BLAKE2b-256 3e45e3f3016a69226b98328d88d1a17c49bee6660b68f63112973fa8f3c3532d

See more details on using hashes here.

Provenance

The following attestation bundles were made for dbus_fast-5.0.13-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.13-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.13-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 9d7e79800e95d1bf34aa26d41a96aa417a2e9cd8e815ff6e1cf541de941a1637
MD5 d00af014c6668a7f0348fc116a85f9d1
BLAKE2b-256 86118d35e52deeb79c53fadda4c2dc9922f1cfa6da1b5155d18204784861125d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.13-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 18f5a61a76a32b4710edf715b07d5a1d8d4c9c5ba04725198cd110d42f069084
MD5 c9e75e9d669c1c8694a7a4dfebddd881
BLAKE2b-256 6aa9de2e2331f2399a31bffa416e229169f84fd933742df93e85c8f4239d0525

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.13-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 bad6b0dddd7a030a44c829dfaef2882f7eb1c4aeac8f282a3efc9d87c14658b3
MD5 5efe2ca00b48acee25194310426f53ff
BLAKE2b-256 8a62af36ca485641d765ace3e9e4816106a84030b172cf0a3244380f08ddfe94

See more details on using hashes here.

Provenance

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