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.0.tar.gz (79.0 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.0-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.0-cp314-cp314t-musllinux_1_2_riscv64.whl (823.6 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ riscv64

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

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

dbus_fast-5.0.0-cp314-cp314t-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl (821.3 kB view details)

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

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

Uploaded CPython 3.14tmacOS 11.0+ ARM64

dbus_fast-5.0.0-cp314-cp314-musllinux_1_2_x86_64.whl (855.8 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

dbus_fast-5.0.0-cp314-cp314-musllinux_1_2_riscv64.whl (827.4 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ riscv64

dbus_fast-5.0.0-cp314-cp314-musllinux_1_2_aarch64.whl (813.6 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

dbus_fast-5.0.0-cp314-cp314-manylinux_2_41_x86_64.whl (846.4 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.41+ x86-64

dbus_fast-5.0.0-cp314-cp314-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl (827.2 kB view details)

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

dbus_fast-5.0.0-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (848.2 kB view details)

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

dbus_fast-5.0.0-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (806.5 kB view details)

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

dbus_fast-5.0.0-cp314-cp314-macosx_11_0_arm64.whl (686.3 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

dbus_fast-5.0.0-cp313-cp313-musllinux_1_2_x86_64.whl (850.9 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

dbus_fast-5.0.0-cp313-cp313-musllinux_1_2_riscv64.whl (821.3 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ riscv64

dbus_fast-5.0.0-cp313-cp313-musllinux_1_2_aarch64.whl (799.3 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

dbus_fast-5.0.0-cp313-cp313-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl (821.6 kB view details)

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

dbus_fast-5.0.0-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (842.4 kB view details)

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

dbus_fast-5.0.0-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (792.7 kB view details)

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

dbus_fast-5.0.0-cp313-cp313-macosx_11_0_arm64.whl (679.1 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

dbus_fast-5.0.0-cp312-cp312-musllinux_1_2_x86_64.whl (853.2 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

dbus_fast-5.0.0-cp312-cp312-musllinux_1_2_riscv64.whl (826.2 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ riscv64

dbus_fast-5.0.0-cp312-cp312-musllinux_1_2_aarch64.whl (801.0 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

dbus_fast-5.0.0-cp312-cp312-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl (829.0 kB view details)

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

dbus_fast-5.0.0-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (845.3 kB view details)

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

dbus_fast-5.0.0-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (794.4 kB view details)

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

dbus_fast-5.0.0-cp312-cp312-macosx_11_0_arm64.whl (683.7 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

dbus_fast-5.0.0-cp311-cp311-musllinux_1_2_x86_64.whl (882.4 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

dbus_fast-5.0.0-cp311-cp311-musllinux_1_2_riscv64.whl (873.8 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ riscv64

dbus_fast-5.0.0-cp311-cp311-musllinux_1_2_aarch64.whl (838.5 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

dbus_fast-5.0.0-cp311-cp311-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl (876.9 kB view details)

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

dbus_fast-5.0.0-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (875.9 kB view details)

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

dbus_fast-5.0.0-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (831.9 kB view details)

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

dbus_fast-5.0.0-cp311-cp311-macosx_11_0_arm64.whl (685.3 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

dbus_fast-5.0.0-cp310-cp310-musllinux_1_2_x86_64.whl (884.3 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

dbus_fast-5.0.0-cp310-cp310-musllinux_1_2_riscv64.whl (872.4 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ riscv64

dbus_fast-5.0.0-cp310-cp310-musllinux_1_2_aarch64.whl (841.4 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

dbus_fast-5.0.0-cp310-cp310-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl (874.4 kB view details)

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

dbus_fast-5.0.0-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (878.6 kB view details)

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

dbus_fast-5.0.0-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (834.6 kB view details)

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

dbus_fast-5.0.0-cp310-cp310-macosx_11_0_arm64.whl (687.1 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

dbus_fast-5.0.0-cp39-cp39-musllinux_1_2_x86_64.whl (888.7 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ x86-64

dbus_fast-5.0.0-cp39-cp39-musllinux_1_2_aarch64.whl (845.3 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

dbus_fast-5.0.0-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (882.3 kB view details)

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

dbus_fast-5.0.0-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (839.0 kB view details)

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

dbus_fast-5.0.0-cp39-cp39-macosx_11_0_arm64.whl (691.1 kB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

File details

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

File metadata

  • Download URL: dbus_fast-5.0.0.tar.gz
  • Upload date:
  • Size: 79.0 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.0.tar.gz
Algorithm Hash digest
SHA256 b02dc5329ed901833fb9cd57ad64460f07088539431b7992a85ad5757f985e94
MD5 190b148cd388913c0435d24f5a964386
BLAKE2b-256 414f9f90a5ebea080b08f7a1ce0e2bcdb181e5428dc48933e191d311255773cd

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.0-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 2ba922c0c00f2d6b33c44e6881ce69780238b544e7e70e1cce192d04c37317a6
MD5 4baedfff954b3ce80a1beb0b2573c989
BLAKE2b-256 45dc638a420c3541cf3db6f6c7fc24f69309f7592db42323faa9d08bf3c5511e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.0-cp314-cp314t-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 e1f1a269dc28fb2852d1b4f732aa1cefec23c61fe39906fefd740bd325ed208f
MD5 72ec953772a00a985ff0bc8048409808
BLAKE2b-256 422c9eaa285a042e268f3c485c7fe4218367a1d3ebf61fdab6b40cb8602d4500

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.0-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 e85c27cf472d1aad0dc1c758ae81ad9821b2b6b302694e41cff02d392ec910e8
MD5 9496cfd780b93d34fbbf81915537ad6d
BLAKE2b-256 00c333320ca98abfe20c7d96385f06312e19667901ec809552f3b3eba2b201f4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.0-cp314-cp314t-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 3c1c3b469c6585d64578cff34fbaa82eb9472c8cc8711b79a56cebdf94d8ca68
MD5 45ccf20cd04deef41f14055ae9a33c42
BLAKE2b-256 68db4535ba5494a901cf29be88a85e4fec033f3e1ce9130c8664a85a23a423ab

See more details on using hashes here.

Provenance

The following attestation bundles were made for dbus_fast-5.0.0-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.0-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.0-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 247fadbe172609763569c1d718ef527f92ebe964a653eb58abefc8c5ff29de22
MD5 1663fc770004f373666ce1c43630acf7
BLAKE2b-256 cf2a83ae41ee7428affca859c6fd68aca104395d703ec80417391421e441ec9e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.0-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 eeadb5858ee5d21e84d4ce45742a0acc1a632708e66137637b2e6edc59a27093
MD5 d9091b4aef1755e46ae02e8618033f3d
BLAKE2b-256 b45e9a3fb55e115ca7fc89531c158c6bc482df856b9bcdab3df38d3792ba0d9d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.0-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 0289a95fdc9e19ba5a6acb74fdafa66e27dbeb829fe337419f7b27fa439501c6
MD5 0945de0f5bdc061f7455e490bcc1927c
BLAKE2b-256 825fcc4915cd74f64d27916f54585b55197c68d254258943a22cf8f0c9b5c018

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.0-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 7e43a8dce051dc05524b9a583b92e81041fcc3750c53104d4b3cd42f18c9f999
MD5 ba412092fc2fc74c1133bb1bc4cf6d54
BLAKE2b-256 41ce3deda391c91f7337d0709318a7c48e23d8cc0ea2e24ae64cc793e50988c1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.0-cp314-cp314-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 3efc4a1310968d8dea67032796fc917a19a02b438e3733a839f632055ae85ad0
MD5 8e2a6db3bf2fbc46c5d6b31e7a9f87c1
BLAKE2b-256 e2307d2dc81a28e50f71926549faaa758203dd4737f98dd8ef56553d19b93cf0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.0-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 d16a3c4b7c0fee1f504f917af0c92d9d2e5325d42d5c21d28d3ee5aae3f44d0d
MD5 7becb2b133cfbe5c3a3ae855a443ef9f
BLAKE2b-256 13e54a60f3af24442be149bc88d992a5daeb1a816a86e94f1d5887513960be73

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.0-cp314-cp314-manylinux_2_41_x86_64.whl
Algorithm Hash digest
SHA256 997819487d58babed9dff255a95ed776c7e163e13a194cf30f1fba132fd68109
MD5 ae0d10b63a3c398d7ee3d8e1a4591de4
BLAKE2b-256 7108991e8d9bcba256835fd1a651f3383bdf717cf8e96787dab013aeef28507e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.0-cp314-cp314-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 5cd8d8d7eb17c5e0b3fa2f7a044915fcc3f8453707e5a66f40224638625f56b2
MD5 8132b11551dee8319db083ddcf8d1c75
BLAKE2b-256 804b4b6cd01556e0f3997101854fcfc6d9ccba86f9282ab4357301526c2368f4

See more details on using hashes here.

Provenance

The following attestation bundles were made for dbus_fast-5.0.0-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.0-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.0-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 a33b4182ebb5080dcfa77a1e99824da61ece11077f15ac478c25f7eceaf1360e
MD5 17f60d20faa54ca0134f1d3735130ae9
BLAKE2b-256 3853060ebd81badd71709d475a4e159d7fee931483b701107441347d9449b7ff

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.0-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 2a8335fec27c405f966192a327b1152f485c0ecb41b0d84d426892d96931a392
MD5 e1a7fa45679ce7a82c01be9b159e8b80
BLAKE2b-256 821fe808987e76df8a58074eb14117da255a1f75329643081eeb12407f92ab78

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.0-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 9819c9ac5c954d65656f778b9be8310ce5690ea1076f57dc1d99c8e52242fa15
MD5 f7840a97c427353c56d3f12980641f2a
BLAKE2b-256 bf09901bc69f286e3aeb31c919cfe2a0733b18b686b6c8ace91f46844bde3a1d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.0-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 b4e9c893a81ab11f2fe67d8135e465c737a863258d2db765d6c6e0244f3afa29
MD5 a32fb989c57d3419dc96032007d957c0
BLAKE2b-256 4f8a9fbf86c95f9c86308ece5b88075db5c8ab57058150a4e5cee5ea06914315

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.0-cp313-cp313-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 b4f19acc7443bbb2eb8114c2a0daa56ff1bc7527fbabe824ba2eab19286ba236
MD5 55bd073637a1b57439419045d849b70f
BLAKE2b-256 e674430d8c58f0a287cdf799a4ac9a8a407e0f01ce8f6dda6b63bdce909c4d8d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.0-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 c61fa15fe108c1f91e9d1d5600e0dc0c448a20016c78b5849c79adaf84f67d86
MD5 d85f15d637423f2f0b53c1bb05faf0f1
BLAKE2b-256 dbc82ea6ecf9207b51994efaf67e88641eba5b5ab209a47b78f5746ec93c176f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.0-cp313-cp313-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 dcf0021068816af9346e4944161bdf44f4862bb13737c08b8701778fd2434187
MD5 aeced7bfd1e1cdfab364dbbfd9d54343
BLAKE2b-256 78d89c2f1cc05a82734545e3d67c3559ecd58308059a201aa87e92c5b1ad58b0

See more details on using hashes here.

Provenance

The following attestation bundles were made for dbus_fast-5.0.0-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.0-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.0-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 be04cd886920d208213d807c8f2f122671ee1abe73398bb5ee0039f22f719204
MD5 0a2eed6a6dc7c064a45fa600049503ec
BLAKE2b-256 0ffe12e201786087722f9e8cde3e89d97217b302ed59c639f0c6bc497f0f4eb5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.0-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 ffba293c8084a1b40da8294f4c66f844783efd3b4a1195dac3b92c52f52da37b
MD5 7f276a896bde5cde0c7497d95b7bea91
BLAKE2b-256 75551a7771f8d17fca2ea4eca7860f43b6bc3395b1bd2ce354ec3b844220c63f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.0-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 c48cd048a25c8d205cfb9484b2bded0a47b41f61b4754000a593cc498750968c
MD5 ffb9ccab672ac034bc51b19a49b0cc74
BLAKE2b-256 72fecbe14530aa93da37f09ae1db7e96cfe444c56c7a4c624b2d8e8cd3f29eac

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.0-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 bfc65dc537095ddfdc5b37a3d0990ff04593104ef285b4a16bb731d174b4ca9f
MD5 d0ae7e64de8c6f60a7f92ecfebfb58a2
BLAKE2b-256 9c6bba7a58f90e3b76a59fa0c6111700cd4977469f6e152eb1d9d522ae05f306

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.0-cp312-cp312-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 3540fbadd47b5f7c9a105920d2085e8a867aa2e156ccc08a633aafbe80cdbb67
MD5 1d05d75a51771b382d9840685e592733
BLAKE2b-256 56d76f125a398fbf85485a966dae5d3eaa3efabcaff2b4ce2489ee7a8961d0dc

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.0-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 8b3914b3513607d6891e5d8f35e970ec18ede7087b35399dc80608607f9becb3
MD5 7de8b0600df3aa938f03474cb6616ec1
BLAKE2b-256 078608ffaa0e74bc6a3b099b83738443987170aba087df6b01dec8d264ca7df6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.0-cp312-cp312-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 772f278901fc8c225898d4351628d0fe77530e268183482598f7af1b0ce65639
MD5 7ce8937b780e137a790b7abac77dd41b
BLAKE2b-256 db8efc9a3be9caa197ea5003251f78c9798d513928240d288c81bf91548dda00

See more details on using hashes here.

Provenance

The following attestation bundles were made for dbus_fast-5.0.0-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.0-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.0-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 38637842dced4e5a9ccbbdcaa5eaacc1874af7058fff9f1769a2f0c7605e19e6
MD5 8e43dd8f2d2922446103093871a21607
BLAKE2b-256 b516f2fc57c32084a3a7dee755283ebe4a0f7d3ec86588f3fa2a076614f28e26

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.0-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 8263dacd07fca10784b9a8e5c94a2573127776c0d4861c163fa198037c38aa70
MD5 9926d4c34c57f45cdd7694e13b96b7ae
BLAKE2b-256 3561f5c87f303258defbca134c067579657fe8e64fcb1f6f1598636640abaa39

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 10889c63b8a95b416f481cc6b7c6be7af81c1c19e52ab86212fe68ae73501750
MD5 ab7d26749479e938fb42059523674a91
BLAKE2b-256 bd01dbbf3f60e0ef8d5a099e503b1ebde8efef3723e291d78db343bec1815deb

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.0-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 2e2f4e1a4a35a8597ea05e7559eeba2253c452ad2c542adc4da3eb87f466363a
MD5 d8f785a98f534dc17796f1589e6a006d
BLAKE2b-256 0538fa23c78a111d7b4b7a8b2506b87de11ed259482acf90e0edd37ea11d7245

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.0-cp311-cp311-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 a15a769a4f1517c7a297dea49cdd63f498fb0eeb891aaa9ffba89f68cd6c7f7a
MD5 bc9812fc21e86d5b6d422c9b346b9129
BLAKE2b-256 7351567b0b2ed6d3cbb5f30fce3c9ae2af77b907a466fd47bb043da07231c92c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.0-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 5319236002044e106a2d379f8a711f1e23ff475791a44ac4a7b481133cc566f8
MD5 875cfedc69a23c4612630fc2f0cd3f5c
BLAKE2b-256 a7a1521472107a14ae406254da3f672a7ec4937a41f751ac134bae3c239cd905

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.0-cp311-cp311-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 bb79b5475b423146e0bb9c7da17419f6c962371abb9477dc72debd4a1adacac1
MD5 8f171b0eb8a346e78db2b4ba33254898
BLAKE2b-256 9c0a45be728f0754161805ddd78f412463bb82614cad87a43d83d86494defbb1

See more details on using hashes here.

Provenance

The following attestation bundles were made for dbus_fast-5.0.0-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.0-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.0-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 90262035e201ae029dd36312bacef1032803d7da17ee99c3790452a3f064cdff
MD5 aab7f3968c0bfc16e4b943d2c9ae34e4
BLAKE2b-256 a2a3848c2bc0c5d2a40a1054d01a58def03c682fbe78980b880e81a65d41b3ee

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.0-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 d6b875b0a3a8e1e1072b50720f02e3089d86b0d7bf191864c6dc5a5a8116540e
MD5 b62867bd4bc1cf426d1d2832a0b44e0f
BLAKE2b-256 d644d8f3425f628d5dd00110f911554914c5002da84af17c5b72ddfa22523722

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 457933bdce56d5be5d4804f522fe0883ff9ca140508c88234c20f96c2b233acc
MD5 95d000c81b8fd9184e263e023ec659b5
BLAKE2b-256 4fd182a0408062b410198173d7913a37981f86909b3dc06e9cf51ce0b137ce86

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.0-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 2a78e3289f8792172938f4fd4dbecbdb9be73dd27e17fd58ab3f1c81c897727c
MD5 35afd8ea849aa3eab89ef30ec996f784
BLAKE2b-256 7525a41fb4356000d3265808205b318f3ad493dc0202bb0813bcbb943b47440f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.0-cp310-cp310-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 ed32ff0be410e53a1d52267b667ba9610d114f6a8d44027ea4a1dc545889bc80
MD5 c0f278f85e34d7133211d0fefbcf3644
BLAKE2b-256 ce09033d1d48ee4deb141709f58ce474fd6401aa75209760cc90167b6d434838

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.0-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 e8a9f73abbcd4f27d35c44e1f76b7bd5be9d2b5c3108e3b5c9d5d6d193d61ea8
MD5 a0bb3081c91d8cb3820b3f8f1053019c
BLAKE2b-256 2ab7560dabce7192a7c042b7a0afc4b3bad99dfb7611c3f6542d5a1d5e3a15ec

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.0-cp310-cp310-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 69ea8ec2e471276879eaf7ab096584bc9f12c1818f57d627a777b5cb4df04df0
MD5 eccb038e57fe36371a2009d9d0f5b004
BLAKE2b-256 5afb39d654663ff96b8d26b54559c3e6ac2e779f7396cff4d6350f4b08d81f6a

See more details on using hashes here.

Provenance

The following attestation bundles were made for dbus_fast-5.0.0-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.0-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.0-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 5e21757b283af5873970e2d56d8b5b9357d340610a83219844f8cbefb1a8e07a
MD5 fe1b0dd41920f56f567c8cc956f4f829
BLAKE2b-256 9dfce7668c2814c2f81c1a3dcf728f7d0915553a26c6ad5ee7c770de973466f8

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.0-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 5ce3a4dd396f13e1cf53ded77b715c1e207b7fa0c9b8155a9c17deb9da89ff94
MD5 fa154ea6d5f3e8131114a6385f5a5dc0
BLAKE2b-256 3ddde06daaf39f229697f710dab234bef657155f5d75733ea94cb1fbb77f58fc

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.0-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 ba5bac0be1a869621f388d3660343a4d21f417605031c3a83d93a4e08124377a
MD5 21ec67e89a7fa3d20251ed7c1b4fe5c4
BLAKE2b-256 f3b4d17832e1313b77eb1c60282ca4b9035e43b5d4717494df944f9963a46219

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.0-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 73941a53ac1d91dca8418af20165f576987d3b0d27f3f612287b16c731fb5e46
MD5 35abf8b3200edf6c03c32f96a47cb803
BLAKE2b-256 5f410fe342f0cb198fc0d1ce3854f91f96130af0eec6aeac8a77808ad22c0b55

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.0-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 60902db699f422131331d8f7dc2b189276075c4e8b217aa89c8d08f9b5a28aca
MD5 1269fd1d73a963c84c76f9973518a487
BLAKE2b-256 75b081637d7fb8bb61c6c81b6874f07bd0fa6dde21190eded9437901a146fe2f

See more details on using hashes here.

Provenance

The following attestation bundles were made for dbus_fast-5.0.0-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.0-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.0-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 641da0bdf2c9df99fbe16d19c8199a4a48dc920803aa9cd2d7872902a2a24a9a
MD5 e60f817c35adf888dbabfa77d393489e
BLAKE2b-256 e77ba1966e2f13ffad8813cc6859d25cfffaadda818a6a6e469380516bc91c3b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.0-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 78242ada843a60e3f1a73b9952c71e9cae8c7ffa3d85320e64faf62104626714
MD5 3ef8bac14ad4db5ee00774a966c49a2d
BLAKE2b-256 7b6ded92a112a375ef72d7f8e78116a6de5711acf1035d883e1b344865fcee20

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.0-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 5be76e38741293a63fb5ab41b99884e597df27bd5e23a5a6264bcaf1d628f1fd
MD5 ea6c3e8d8cbf83cd22168b93ff5f9a8c
BLAKE2b-256 749c5900643f7ca0ce5e2ddbb8cef7a6511d0a4e253e6406a3d6e68d209bb7d9

See more details on using hashes here.

Provenance

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