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

Uploaded CPython 3.14tmusllinux: musl 1.2+ riscv64

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

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.14tmacOS 11.0+ ARM64

dbus_fast-5.0.1-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.1-cp314-cp314-musllinux_1_2_riscv64.whl (827.4 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ riscv64

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

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

dbus_fast-5.0.1-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.1-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.1-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.1-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.1-cp314-cp314-macosx_11_0_arm64.whl (686.3 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

dbus_fast-5.0.1-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.1-cp313-cp313-musllinux_1_2_riscv64.whl (821.3 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ riscv64

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

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

dbus_fast-5.0.1-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.1-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.1-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.1-cp313-cp313-macosx_11_0_arm64.whl (679.1 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

dbus_fast-5.0.1-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.1-cp312-cp312-musllinux_1_2_riscv64.whl (826.2 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ riscv64

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

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

dbus_fast-5.0.1-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.1-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.1-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.1-cp312-cp312-macosx_11_0_arm64.whl (683.7 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

dbus_fast-5.0.1-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.1-cp311-cp311-musllinux_1_2_riscv64.whl (873.8 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ riscv64

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

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

dbus_fast-5.0.1-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.1-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.1-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.1-cp311-cp311-macosx_11_0_arm64.whl (685.3 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

dbus_fast-5.0.1-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.1-cp310-cp310-musllinux_1_2_riscv64.whl (872.4 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ riscv64

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

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

dbus_fast-5.0.1-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.1-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.1-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.1-cp310-cp310-macosx_11_0_arm64.whl (687.1 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

dbus_fast-5.0.1-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.1-cp39-cp39-musllinux_1_2_aarch64.whl (845.3 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

dbus_fast-5.0.1-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.1-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.1-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.1.tar.gz.

File metadata

  • Download URL: dbus_fast-5.0.1.tar.gz
  • Upload date:
  • Size: 79.2 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.1.tar.gz
Algorithm Hash digest
SHA256 31462144bb7c0afa531810d17517135bc4b7c08d208497c4cb595d755baecd1a
MD5 54ba8c693571345fa249ab60da6e9377
BLAKE2b-256 69be7a15d4ae5c513f91e2f05d0a94c09a05455dd649ddccbe8bcefe410e02db

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.1-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 5488f5bd6dc8c7f4881f1f91d01fc795056cfc4f2f687c1404ad3291d352a9cb
MD5 33f3b67bbdda94d915b07e18f07f8ece
BLAKE2b-256 afe6f0a357d8202c61164aedf69bb3187e75a149671bf66eef3b160a2b0ec11e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.1-cp314-cp314t-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 c1a887f43c1c441bd9f579598e91b2a86fa17c39110f90fb008ceff87a10dfc3
MD5 6c65a081a082da1469b19b1427152ea3
BLAKE2b-256 068742f1273879b89bda328c42735e4addc54accd295a07b609d3e321e108f81

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.1-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 b603e88c7059f92a4f3ff1833cbfedfb7e7e5860ace5adac9af09f36eca5559b
MD5 6efabbab30ae1afe597cf3fe600e4ab9
BLAKE2b-256 a019bc5dfa1e457f91a85697a33bbd201ca79ddeef2b9587e08d213bb500bb31

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.1-cp314-cp314t-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 3f2b54f7718fe007f6ab7029143863cd492553e3c8c4cac62621f5e60db1946c
MD5 0445442543c9c731fbb2edd27497ef38
BLAKE2b-256 a7e754c0615bd9fda2fb1237c462e3946dfb5b7f931d5ae5e0f689a96c2ffa65

See more details on using hashes here.

Provenance

The following attestation bundles were made for dbus_fast-5.0.1-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.1-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.1-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 faa21016e67c047591f8206db26ed6a3c9cce30d1f1633fa89461ba8da4eaf61
MD5 41c28a9e441c17df72678933ad05edad
BLAKE2b-256 fb30bd1974ad7ab70a21662c4e134e5ddfd79f0240ec2a2c939f3a614bc06a2a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.1-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 1403ae1b9dd7aa9c0ea456cc757a122f57c3c716e440c9e5fc45df5f7a18c026
MD5 9c58b344dfd67c8ff812c0a1a451129b
BLAKE2b-256 9c81df93158b05c0813a045a31c4e6e6251187d3114189e6ecca2f4574fde5a0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.1-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 28bb34a089bedda6789c5c3f29b5aea2e808519ba9cb9143fd04b11e831f17fb
MD5 36356b2232a36927af66d861af0230ab
BLAKE2b-256 f4407ccba571dce02266b291a90fdd24cd07dd365d88bbbda43daba980ff3145

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.1-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 97747348a0741cfd3112a70c0fa77a3986e934da4c91bd03199b714f79f66a62
MD5 b27ed2b04ab70d0ec1f330ea45914dd7
BLAKE2b-256 683f59fc16e238db8353a7688d2a337e3c1ce9ab752c9d1f808652f60861b3ab

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.1-cp314-cp314-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 6afe94f96f0e94bc33f48a0defd2497cbad9db5a7b7449344f2f729f5b11113c
MD5 84a14812d5a3a12c4c178184d239395b
BLAKE2b-256 2ea2b9d3ad480952ed0c7fadcd0522ce9deedec44489f852ec1a2c95b404cfec

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.1-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 edc2351be4ac6ca9408063e49b715e4d9a8094b2624892124ac8067e73c286b6
MD5 eba5fcf5b9276afd108250f1c1c2b3d9
BLAKE2b-256 096979949ded986d2d085021e4b1a1326c4b9126110ee2d7def343b6464c07ad

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.1-cp314-cp314-manylinux_2_41_x86_64.whl
Algorithm Hash digest
SHA256 44caa5d9c63ab3a151ebd21561171e262b3c736c040d952de4f2c2f34cbdfbdf
MD5 f1ab841c100f3b1ca2d002209b03d884
BLAKE2b-256 ef4197aceb1578390302a9a9a7a5cb50889ccd5451cd86f19cba25a925e16a51

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.1-cp314-cp314-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 46f9a16d13ad713e2889d9178e8a428b8ae5fa993503c7ca445c9367ba002800
MD5 6f288d8c549d636309a8fbea6ad4903f
BLAKE2b-256 1ce6c503280132c98aa4e22ee1188f194cd5badef0e6f4d021ee25cea58ee0b2

See more details on using hashes here.

Provenance

The following attestation bundles were made for dbus_fast-5.0.1-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.1-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.1-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 fb77da990240f56e1e01bae2c2eb871e8b1b0b28458e4e359160a97f14dfb8b4
MD5 ea3898993445be7ac3b0fa014cf144ff
BLAKE2b-256 68e7631139d8401e961f6654daae6ec1f4ec7ac00ded1ac028c213441067a8b7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.1-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 98900f4dfd28df42f44ea484c08394e67cda8d0658cb697e9d83846cf3c5214b
MD5 980f85432c1e30968c2069961317a7b1
BLAKE2b-256 a55402e0843f99c366e8bbe3df6d68a6af1070f0610772c2e0b91ee82ba5b83f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.1-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 8dd58a6369e77e17c2cf25a7a3cda5dc90271aa04a1fefc2a34569792a753d4c
MD5 0be445846045d53cd3f4625b55740eeb
BLAKE2b-256 dcaaf71a5a36d2063fc740f9dab72ed2d59f50f5805f9a428d5f13f20e9f2e4a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.1-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 c8de852c347173afffff06792ac214401e01a65db6beb2a92b38081a8dcedfa4
MD5 e79c63d8734e013c8e8c5d633302f13a
BLAKE2b-256 8b08c8b3241668b6f2234ac6a627fcecbadb42f1d57a00ec00b2fba6f09f7b1d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.1-cp313-cp313-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 560ced9f4dc891408b3e05ab90d919627e9959e44d929a3a5fa123571dbade41
MD5 7bab9a948966884c7e1750ac2f98c8e3
BLAKE2b-256 e46b73b9d54bd68bf537e8c2116753144b9f5cae77750631ee8a7cc9bcbcc36a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.1-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 dba0542b9e11bbe7e661372e8de36171590be7c9069a5d5b2e33f0cb6211300b
MD5 dc0b9740e67f8bd82b5b5452397c36a1
BLAKE2b-256 80e512241d5dcdd0d01d96ad00a40cef4bf687bb334c05c9bb51d4632057b59d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.1-cp313-cp313-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 f1fc814f5898ae9d49a5c3fde7b582a296f887c797dedba93ba17edc35789a4a
MD5 7406b1ef82f9cfdfdd40f13530fcb054
BLAKE2b-256 27a83692cec772ad8a31c14922dd38bc4b3a816dff0524c7ae1c5e3846deed94

See more details on using hashes here.

Provenance

The following attestation bundles were made for dbus_fast-5.0.1-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.1-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.1-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 cf17ae52a03c3793ef94af31934201636da5d0052d0606bbf3d1dff56b70b145
MD5 54e32d6ca998581644670d45c1bc0129
BLAKE2b-256 8aa3f9a1381e35323ba783b9260a0486a9540e4f0867c9ee235d7c25bda0230d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.1-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 c309a8a91418d0f9d16e2417f9bb37c9e40a0e6df73cbec508986e5e2367b676
MD5 e451286896cb59bf5cdfb6adfae065c2
BLAKE2b-256 3dc1b8ed028483d5bf1fcf85a004ee9e14a09a74490361b7bd26d0db40f653a4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.1-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 21cffc971c2b44fabb3dc0f4a6e9bde478fd203aac9d24ea7d45abb72a62d1b5
MD5 16e98a627ab6834248efe9c62ba8e242
BLAKE2b-256 c03bd7bac62a46d05e7cb4c153e854ba7519a73848d0444c939476624f0a1180

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.1-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 c36eb21895736b2dd8a0140a2e913380c5e19aaeb916989a035aeabc04b017b1
MD5 e23b1151dd541d69117088eb64d8fa89
BLAKE2b-256 8c545de4b73115efe71461242b58ba3a3869c6017440bfcf3347543eb9c8cecd

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.1-cp312-cp312-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 1576b5c3d021a28f318df80daa87ae465eafeecd8899334d63f1e43be348194e
MD5 5dc769322dc3b41c304c0dd56f2a71d3
BLAKE2b-256 8cf6a03edb731c5cbb26897b2a66b111e573fe0503d346a3cfa25a26d3778fcc

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.1-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 d55ccc42d1e7e8de6fb201e6f62216999ca309982e00165842517935c3f2ddf1
MD5 f9e3da9ef320e0b09771292ec7cb75a4
BLAKE2b-256 2c4baefd7d6c0ac360972ca97ceb3c6d50a071a55c097882e76563a455dc44a7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.1-cp312-cp312-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 002a2eb00d175d60736fd2252ca7b2cf093dec3741307048fac174aa2a3d83cb
MD5 17f9ad43e88a44343628e53fea290037
BLAKE2b-256 01d622c8bd9bb020f0617f1ddf28f273282cba65217dc7d37364b249a591e449

See more details on using hashes here.

Provenance

The following attestation bundles were made for dbus_fast-5.0.1-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.1-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.1-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 bd31541fe72a48cbc4d63827640c9e9418cc7081c1414956ba16b3d47ba90c7c
MD5 34b59c4325676b7342862027dc12cf2c
BLAKE2b-256 432070e5df01f530d9c3be36bfd91c2324cadf157604798f9c2ea8c98095ddc1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.1-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 c612f1c3ab1937abd549305d0eb7110cc5cf99e51d1ae529413bbca919fbadc3
MD5 92a032e9c4c1eead59a02e186a0a5cd6
BLAKE2b-256 72d190a98e503c5895a13ece0441925239ee4699122165ad02be52d6940daddb

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.1-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 240ef1bc996ebb3b12b3705e38e787f3531eef7544049c44e8c6f8a2d1e60b64
MD5 8393446ade518f3714167d8c8391e3d0
BLAKE2b-256 3cea801cf5a361311e59d69acdaa71c24e6b0385f08bc7cfbcad545dce29827b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.1-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 cfac6a48603c86a955be97e8d0146f3d5ea7f387a64c82dae01ed498676bd9d5
MD5 92c00a4423cd848106f54729c437b879
BLAKE2b-256 cf6a74459266f62c12400667f384075cb05db13064b5eee0e46dfeea705ccd83

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.1-cp311-cp311-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 a0398aece33b6d6adfbe050a7e22f08c77f215a33fe0f64af993b03b681dba19
MD5 b2cf724330f86a195fb2530b83e58123
BLAKE2b-256 6e21f232a58ae8961f8ee2974112db5a53786238c4639268c5fe120dd40b4889

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.1-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 ef5cbcfd7bdec7d8f8bf21b074a1ec10e8db70a0ea4b618a2f379581cc329bcf
MD5 69e00c5d552da6d02deda3d88972773c
BLAKE2b-256 537ab4edb1cd0885e365a726f98b1a231b61a76abc195ba2af5ddc74955aff62

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.1-cp311-cp311-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 84616a530095f4b7eeb6923daf0172ea18430c787aa17b9ead6bd0a85c7282b1
MD5 87aa01b391f60d3cb7d586bd1f368984
BLAKE2b-256 5922a229850df268bcf0465a92c1af4efe1e3983201040965f51e1c2a55c5986

See more details on using hashes here.

Provenance

The following attestation bundles were made for dbus_fast-5.0.1-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.1-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.1-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 4c6820d68981bf64addca105855bdc09d4922c69b55a6f66e794ebc48b440085
MD5 ea5357ad057e90bf9a1b727edbe22aba
BLAKE2b-256 5f5361677442d1e2203cf25b2e9d2eb319d0543a7d714f9bd2a222287b8affcf

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.1-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 e62105af8db54cd33d48e4b614153bf9a26d64b2ae296794de4dd576f294ba97
MD5 b5abbc40f290340afd000252b6cdc6c7
BLAKE2b-256 24a6199c0fa860cb675ecc8e2fc806ddc1a70a37cab91722d0492ae48c830ed0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.1-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 98ce21f3d8475acdcc320045cba8182429ea12cfc5095b1f9ef17e689152f391
MD5 45b4153d764e74ba5192a7f71ffae627
BLAKE2b-256 d677db9e6eac31b0eb7648dbfa3ee849fdd7bb77171c19aeb9e2bc297ba5deb3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.1-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 8be22c45afb6b85804ea3aea5e535ea084823ede27f558e6150699bda72898a6
MD5 8f89d6bb60ba99300fc397fb0528ac8e
BLAKE2b-256 cf6967eb61e227287581bd681a1eb2e3a3ee7272673b154f4c6db6a2e30f5916

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.1-cp310-cp310-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 8f17bbd1520c4ddecc20a2c814394dc386a19ac0ed6cb3881f39dba323b43cdd
MD5 d3121d2b33f1e6b89be0838492e9cff3
BLAKE2b-256 54a19e55d096ead8d53822f1a7bed78d9211cfb7fb6ab8339839453bf34cbbcf

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.1-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 d733bec60c4dd860b40cc47d32766bc68b9a7c224b240603e8da11eb1c00f848
MD5 f5a6199514e0711f464dd6c2c4919255
BLAKE2b-256 16ea139c90f6ec52d6c24180daa7825bb5df021b17ad827b4242d2d8e852435f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.1-cp310-cp310-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 edc14090c03d38e1759ec0f85fedbf8da72f152d7d391fc1a7e1b24f0d73a26a
MD5 e8aa5aff214fd8067284d766b86a465f
BLAKE2b-256 f9dc1269181df441cac5ddcd4160438a418c37c879cc6673412e4abb56310063

See more details on using hashes here.

Provenance

The following attestation bundles were made for dbus_fast-5.0.1-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.1-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.1-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 fa7547e255cf91b4144da198bb3aa165764d485ed24164a37a995bf1e7db9807
MD5 a7b633dcc7fda2cefcb4bdbe1cee74a0
BLAKE2b-256 bb54427e94f939a36a9d5868a455de7d8e9eec973a9b47dc5ecae10fbeab6c41

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.1-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 d5421d00947f6ba68877f2b68dbf9f0fe2a14de09ed1876d7a720d63c74f62ab
MD5 d145d6861414907f8c4b0461de9ec9d7
BLAKE2b-256 77bd95702db9f5cba2d3517d4bd40e2d3002f3cb3698de5a001adf420033c4bc

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.1-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 ccb417c251bed033a96565b6071a16f7c37c8b4987e155f7ca2ce667003d3e91
MD5 349ecfdc3b9d103a3e519d110ba46a98
BLAKE2b-256 5255c34128a14955b8c98930891032cdd4a92f4e041a1374213080f05c444640

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.1-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 71c038454aa30940742d9ec6fc45085a548990309f0d0dd3b33cb4be9f663614
MD5 460ffd179763a31ada873ae4b3434f61
BLAKE2b-256 9b93403ee90970e22718dcd8d15934cef5159579fbb69bf8270f9074e564ce7e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.1-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 5d19772b577b4d523aecbbfd8c9d0691bda7298b7ab986f691cecf71fc9310ea
MD5 54129edd670689a36c51b2eb0c9905bd
BLAKE2b-256 05044e8c6be8bfe8606042565c6cdf0ec6f9676c478143967ce6b61b7a576389

See more details on using hashes here.

Provenance

The following attestation bundles were made for dbus_fast-5.0.1-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.1-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.1-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 becd3eeefeccd17b88039659453e1b1c49e92c5a6ec465fc76d489d5741b9d2e
MD5 eca7515657ab26c5fe0e23d8ed6a3a66
BLAKE2b-256 8afebcbcd7f98b813bd10ca811845167de212cef9711057b0ef4e24bfe18bd83

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.1-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 e7dd15bb0b33908c477f74e4271187a676cb81951109d824c50e2233a3fdca16
MD5 5725b168c4a4acbce9536702cb9332c6
BLAKE2b-256 d7f271da7f9b6e78feaa0da3ad03af719d7d234bc354905537f28e325a91dd2a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.1-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 e754c3fbdee87a16afe5d669f9c33d4b7b84b4cea8400b6e7cb14c97662db943
MD5 b3e011c9b8befd35cd3cf5e45ff23c4d
BLAKE2b-256 b3aa244dce9c4359ddeeb942447b07fba14a6b6bd01968bdc339f93084b7ab44

See more details on using hashes here.

Provenance

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