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-4.3.0.tar.gz (78.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-4.3.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-4.3.0-cp314-cp314t-musllinux_1_2_riscv64.whl (828.3 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ riscv64

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

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

dbus_fast-4.3.0-cp314-cp314t-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl (826.6 kB view details)

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

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

Uploaded CPython 3.14tmacOS 11.0+ ARM64

dbus_fast-4.3.0-cp314-cp314-musllinux_1_2_x86_64.whl (856.0 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

dbus_fast-4.3.0-cp314-cp314-musllinux_1_2_riscv64.whl (828.2 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ riscv64

dbus_fast-4.3.0-cp314-cp314-musllinux_1_2_aarch64.whl (814.1 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

dbus_fast-4.3.0-cp314-cp314-manylinux_2_41_x86_64.whl (847.1 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.41+ x86-64

dbus_fast-4.3.0-cp314-cp314-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl (828.3 kB view details)

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

dbus_fast-4.3.0-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (848.9 kB view details)

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

dbus_fast-4.3.0-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (807.5 kB view details)

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

dbus_fast-4.3.0-cp314-cp314-macosx_11_0_arm64.whl (686.7 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

dbus_fast-4.3.0-cp313-cp313-musllinux_1_2_x86_64.whl (851.9 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

dbus_fast-4.3.0-cp313-cp313-musllinux_1_2_riscv64.whl (822.2 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ riscv64

dbus_fast-4.3.0-cp313-cp313-musllinux_1_2_aarch64.whl (800.4 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

dbus_fast-4.3.0-cp313-cp313-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl (822.8 kB view details)

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

dbus_fast-4.3.0-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (843.1 kB view details)

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

dbus_fast-4.3.0-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (794.1 kB view details)

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

dbus_fast-4.3.0-cp313-cp313-macosx_11_0_arm64.whl (679.3 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

dbus_fast-4.3.0-cp312-cp312-musllinux_1_2_x86_64.whl (855.0 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

dbus_fast-4.3.0-cp312-cp312-musllinux_1_2_riscv64.whl (827.9 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ riscv64

dbus_fast-4.3.0-cp312-cp312-musllinux_1_2_aarch64.whl (802.4 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

dbus_fast-4.3.0-cp312-cp312-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl (830.9 kB view details)

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

dbus_fast-4.3.0-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (847.1 kB view details)

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

dbus_fast-4.3.0-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (795.3 kB view details)

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

dbus_fast-4.3.0-cp312-cp312-macosx_11_0_arm64.whl (683.6 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

dbus_fast-4.3.0-cp311-cp311-musllinux_1_2_x86_64.whl (884.6 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

dbus_fast-4.3.0-cp311-cp311-musllinux_1_2_riscv64.whl (875.3 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ riscv64

dbus_fast-4.3.0-cp311-cp311-musllinux_1_2_aarch64.whl (840.0 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

dbus_fast-4.3.0-cp311-cp311-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl (878.6 kB view details)

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

dbus_fast-4.3.0-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (878.3 kB view details)

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

dbus_fast-4.3.0-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (833.0 kB view details)

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

dbus_fast-4.3.0-cp311-cp311-macosx_11_0_arm64.whl (685.0 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

dbus_fast-4.3.0-cp310-cp310-musllinux_1_2_x86_64.whl (885.6 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

dbus_fast-4.3.0-cp310-cp310-musllinux_1_2_riscv64.whl (874.4 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ riscv64

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

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

dbus_fast-4.3.0-cp310-cp310-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl (876.6 kB view details)

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

dbus_fast-4.3.0-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (879.5 kB view details)

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

dbus_fast-4.3.0-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (835.0 kB view details)

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

dbus_fast-4.3.0-cp310-cp310-macosx_11_0_arm64.whl (686.8 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

dbus_fast-4.3.0-cp39-cp39-musllinux_1_2_x86_64.whl (889.6 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ x86-64

dbus_fast-4.3.0-cp39-cp39-musllinux_1_2_aarch64.whl (845.1 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

dbus_fast-4.3.0-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (882.9 kB view details)

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

dbus_fast-4.3.0-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (839.4 kB view details)

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

dbus_fast-4.3.0-cp39-cp39-macosx_11_0_arm64.whl (690.9 kB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

File details

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

File metadata

  • Download URL: dbus_fast-4.3.0.tar.gz
  • Upload date:
  • Size: 78.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-4.3.0.tar.gz
Algorithm Hash digest
SHA256 c70fdb7208902849bef74fff72d34e2c07582f47715cc6f6d87dcc089437186f
MD5 74542c1cf4e63a3761cae402a0c406ed
BLAKE2b-256 62e750325c64601305f6549e0fc71115b42b80dafa2e6913eba2c1a8d14893ec

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-4.3.0-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 6b7ed03fa3c2b91ea92c43c291e3a56f576ea87c4a56cc3495b7745c6e375248
MD5 341a3a9baff28e8d82316df42f5d76af
BLAKE2b-256 c79c3ae6046eedae130b9ea316e6946d53cc1a95e256e76fb85764f865ce6d06

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-4.3.0-cp314-cp314t-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 713f92b5abc391b15feb4765e6e2a80b0dace96c576498aa0c832be4f84b110d
MD5 17ed8ec7dfc313df6e60a615ea6bdeb7
BLAKE2b-256 c99c5e707b4cb44f4735a7773b1197b0583cdb67856f81ad43139d1b9f93f3b8

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-4.3.0-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 4ef25aa6a928d0909b51db0316892ec8d22ef7f024fca5b2ff146b3b9e19e452
MD5 c631fa97c735bedc30381b4255780ea8
BLAKE2b-256 42fb05f818baa3824b91fe9721def29a30c1ebc3832dece7a2f89446ffe607d5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-4.3.0-cp314-cp314t-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 e679aa106595d0cd4688eca2506d34e43421d8b545165c9c1677350da844ed36
MD5 ea0e49d3b82ac5236af6a68a17f82534
BLAKE2b-256 cd84d57652c4ac99ed5282a4256972be557abe7b2e8a2e81321417fb27d0f5de

See more details on using hashes here.

Provenance

The following attestation bundles were made for dbus_fast-4.3.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-4.3.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-4.3.0-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 08d35beed96cb0c7c55944ad6d607633b1fa38e6e7236a02ae8dce35e94c6bd0
MD5 d42819141397f25ea59bf2bda865d2f2
BLAKE2b-256 dca857e9652c20c76c0a53b6009f907e06c1e28e13ddf332912564702975cd71

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-4.3.0-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 70f97721b14d4df7d80fb231b4841eaf95fe31e81c5dd85570f48f0ce74029b2
MD5 65dcfead26c2ab48289d2f3083c9e4e4
BLAKE2b-256 17158803a1ac6f97218045770ca4a714135e3a9c3a7b492a5b6e5a055d32839b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-4.3.0-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 e220c2f4e8bc463424754890f21756ed5fcd1c28e8c7887608027ba6386db7be
MD5 f7d941dd25fbba830138d96f6b817d99
BLAKE2b-256 0931ee752da9ee791f7bdc5716b5c9cdd9c68b4fc7c99f5302b3a9caf50d545a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-4.3.0-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 e63e655c28942d45b68910ba40a5b03a2430634292743ada79f181977c57bb5f
MD5 69cfc59c0c48a378397aa60ab45c0b7b
BLAKE2b-256 149558c2ebfc62cbf0454852999fee38b065a8be2f4872455408d5d1a08eb573

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-4.3.0-cp314-cp314-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 9bb3810d91edbb806bc651d5253136175d70d4ce1850a9573d8f5cef3f1514e5
MD5 9ffa5fdb0ae2ddb9550fd193cd843e28
BLAKE2b-256 7beef75ea7789e4326e47342c59992739cb8035194acd67bc29e12cb1a71b71f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-4.3.0-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 be05f23b12c057d9e3e3b2395279cd1f222ad16097578ab4c2fece929b80f4da
MD5 8f42d7396e03fc82d763a689f38bdead
BLAKE2b-256 d77ec2e914831222fccccc8fa9cf6f17d6fe629604759d376a561f36d6e1ea51

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-4.3.0-cp314-cp314-manylinux_2_41_x86_64.whl
Algorithm Hash digest
SHA256 7df297a41dc19c28ee673fadbec9cb241c79b58434cd78648812048ebe7b870e
MD5 00b391558ce8c0de5c35f689f970492a
BLAKE2b-256 5a73738777015155019676563edbd9ab56c2ae4f96857342674adc7de9aabc8d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-4.3.0-cp314-cp314-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 490912ef523ef4be5a7664456af725db1045b8e7d445314fc555c439e291c42b
MD5 0f8136edb048ab567162d4ee775c30ea
BLAKE2b-256 794108abd6c2410730bde382766da9a7ac34815f1cb02a3c48440a6f89c8646b

See more details on using hashes here.

Provenance

The following attestation bundles were made for dbus_fast-4.3.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-4.3.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-4.3.0-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 eb34eaf7fad43ef93b2f9a25b4140d0508df5a08b29dea571e3b952abfa24607
MD5 ccaebf4a403dfdd08d7151582f3fa108
BLAKE2b-256 dcffd3dc610ecce391d4c60e549b54f8393b6bb1bb7c4c0088a58c6616a9018d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-4.3.0-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 7f5501283bc2d1d632ddc2456f551eeae9eb733934e0ddc97faaceec98fceb83
MD5 3e8fc1ab87d065c8b2400f3ce07cb264
BLAKE2b-256 096fadcc1a8d56c9db9f0bd8a3435490517f9c7e87a9f5280e72fa0ad69afa78

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-4.3.0-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 be71635cd436f102410aa6335515b86b1f9059769bf3d8c0e6f9666d29f37319
MD5 d32fb4719cf24cb1031ab086914aa6cf
BLAKE2b-256 2682cd3f9a23946f3e29d9527ad38ccd5c2a70bce2c589805944a433f9d584e5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-4.3.0-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 16b7e2199a19057dc450ab80cc7f0a2908bfbb88280e3f95aa026e58deef08a9
MD5 9ad978c512870598296694284025a182
BLAKE2b-256 634444566b00a242b451765bd324a4ee6ae0291d4908c4c6e1dfc6a10df953b6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-4.3.0-cp313-cp313-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 bcdaf77dc2bac75b9fdea3e7261f45dee7fe377ef45650317d506169422763c2
MD5 5797d34944f1fab527f5d64242e564da
BLAKE2b-256 7f2ac07f5341e5b0d37c182eefc5ef3fd1d97ced46901dc5905f034a2316b0e4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-4.3.0-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 4f5ff3bccd715b2c4a7d7754aba85dbbac1ccc50a326777b07b8d2b35b2eca62
MD5 a0f9ecf3a54744a6509b60d603afd517
BLAKE2b-256 ffde9ec10645660d27fa47b93bf3c6ef68b63bed7d45bb3731e678985206ca1a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-4.3.0-cp313-cp313-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 45d0d66d5e859cec447e982b17a24b93b3902586afbf6c2b1b3497405d15d766
MD5 981b3080ac6f35683812c01fa07aed3a
BLAKE2b-256 92c7b36e183f566fcb89718989dd98c0a48fd8e369d312b12057f8cfb932329c

See more details on using hashes here.

Provenance

The following attestation bundles were made for dbus_fast-4.3.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-4.3.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-4.3.0-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 5f694bc28cab83845d7c86db5510d1fa8532f950836dd14d2869d11c52b48646
MD5 d57b768fe034ef2b27f1593828600048
BLAKE2b-256 6cb348513f4e01cd4cf3aab60dd927223f66d1d7f855bae457c8bbdd3fbf86ba

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-4.3.0-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 a5e3a44aed8aa161d7b1483c6488542ac5ae7849226abf981102bcf7584ebfbc
MD5 d8250c15fd47d1c7537e13f313a35ab7
BLAKE2b-256 7473409b1e3d2781ce767ce7e47e88e624807917480b971d8aa736278c3ba768

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-4.3.0-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 bb41085b151dd4041a3a7c785c2cfcfa2591c8694e9f23ec9a02bf5122a66dcd
MD5 b995225a50a20d252a22c664c66bcca4
BLAKE2b-256 7f91b569b986a1be8f2ea89dde4d9c49133992e9b4fa1876e79910ff00d9892f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-4.3.0-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 3be2c65d0af605548931aea1abd1130562f5efe6f215113fcd93b50f0921a849
MD5 f9f069a22825762be090c97c392ecb86
BLAKE2b-256 24ec70b3c76f4490ba4035125537edea4d8703126cc7ecacf13d300358c47381

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-4.3.0-cp312-cp312-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 3e5178fd58a3981aab8475bcbc063eaa3f3395e2ca9fd5c3b2ce6cba35a428c8
MD5 f78cb54c44939eb2a76ebb4eb587d372
BLAKE2b-256 618925b5934596b18dbbc59f590d726d2ce49443859a2c8728495654b4dceae7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-4.3.0-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 365dfbf4a61bc6b6c6ebb1dee8a118413b4cd2d78130cd0384bbc8cbdb25047d
MD5 45ad474ab769378e8634b54bbdd02654
BLAKE2b-256 166556a716a58a617aeca050effc32d1baacb34600b51e0e8f2467608984e29f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-4.3.0-cp312-cp312-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 652a4ef08a2fdc5171fc29859e55ffd2865d61d924420d176eaa686fb7bdb8bb
MD5 2703934590ce952931f9898354fccbc6
BLAKE2b-256 8a8232028d195d70fddb350b0d61a93b5804d00ff3ec351b4f8fdb17d7691c37

See more details on using hashes here.

Provenance

The following attestation bundles were made for dbus_fast-4.3.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-4.3.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-4.3.0-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 b6b032b8c79fda2614e5784ab0c45bb6aaa77b86b71ce3e4c6a1fbdc3661a91c
MD5 11ccf8ef398a1e35d3ee524621d7fe8a
BLAKE2b-256 f5361c6e83c32f509ed2964f8cd4555cf55b7c87add88b926a300c595b05b542

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-4.3.0-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 0aa92f4e077bd28be01c9157decbada72518adb6c6ff7ceb55428dea17a1186e
MD5 364f43a981e03a7dfe3ed85374e1fbb2
BLAKE2b-256 68913a8c05ec375ba85750769865ca4cd00229ad43299ceb4d69246608a2dca4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-4.3.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 42eef3b78d75cc634d4c03e932f280d06229992d21932c72e728623ea486e6a8
MD5 16ec88393b4f807d89d71bf5cea379bf
BLAKE2b-256 9cb36babc95968bb96ac177eac731c64be36b9a60549f1f81a2d0259e65e8bc2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-4.3.0-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 d9406b88d315bf816f09362ac748287e8cdfde3b3438f7c5cb1bcfc4eea5d004
MD5 8387d5340a5d990c28a683018d0b8613
BLAKE2b-256 60efd833919860a151607fc67badbe831507b49914707cb412eb2107e37e5b24

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-4.3.0-cp311-cp311-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 f6b5f6baa0e40cf0ad295077627e65d96a0fc8f563472629c7826ca0c70363d2
MD5 16518e09bfef19fd359fd820e7d7b313
BLAKE2b-256 5410477728b178d0f4999b368dcc4c86db686a899ebeca61f7a6f7693f0d252d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-4.3.0-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 369741b1ab624fe060d3f8cefb03b57f3d1e1b88b0e22722e24fbd34ad5e701e
MD5 ee984b230b1162d5e9a6bd7ca45ea356
BLAKE2b-256 932ba7dffb005ae9f153c60a01600a937ccbfec94ea863fe058d4140b96224fb

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-4.3.0-cp311-cp311-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 a7f3e97ff766c8c209a36b4e80bda3b5f653bc940cc8e3a46d2fee60559248f2
MD5 242dec2c058fb9b0ce1639c46d63e9c0
BLAKE2b-256 48e115510001fb80e1bc72d85812978664d63887e04b522a240996c98033fb9b

See more details on using hashes here.

Provenance

The following attestation bundles were made for dbus_fast-4.3.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-4.3.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-4.3.0-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 1efed41d1a384944efb8990dc493570bf0a76a28fee66d42f0e414be952880b9
MD5 f0f06d17a7c466eba7afbee1bf47aca7
BLAKE2b-256 1d6822fe079cf55440852b4f6286b99f4e2011ec4009da584a6306f26a50c8a7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-4.3.0-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 847e5c6c27cb7577d2791089b2bf876d8632d5a5431c191d7f14ef1a0f9a1461
MD5 4916a0b1d94f375ac6f5f9ac754dca7f
BLAKE2b-256 ab5d2c4b3e7f5f4d543b3e88f88386b24574bad47117f8c7820db21239015bc1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-4.3.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 0509c01f37894c9519393a6a7035d907d60f2873a55bcb99df5ac4ea11962d8a
MD5 dc99ca6afa31eefa513fcdb653f2d599
BLAKE2b-256 9ae866ac6d835da405edd2429537025ed16a4f8a05d8d671fa7ee36a678fd71b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-4.3.0-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 e41e94f00e89dba0c384960b14606cbbaaec478f4b5e447f06df50fcbd876c90
MD5 f1daaabb08e063d771b3c40200284aed
BLAKE2b-256 1bc2f75743360ec73f8919807c4f6ad5add0d73647d6e56626df42ad0162e575

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-4.3.0-cp310-cp310-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 ba2fefd1dd19cae20e3c2e463e9278e25e9496b59138b6b662f2d76a195ce915
MD5 c6499520ceb7340208559259a414f321
BLAKE2b-256 1af8ab18b71bfdb2ef5e2eed17a6ba1cbc1e1f0c91d7727aba1af351c2ff4d0f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-4.3.0-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 497c05b132170b3dbd1d7a983f1260b469513dcf80ba5938aa0bd9fd2b33a1ea
MD5 836c02a1d7842c83d90fec53b37abfb6
BLAKE2b-256 ee8856e00af55d2e369837e4383d0f73f8f770a9b3d7db76f883ea9241cebe5a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-4.3.0-cp310-cp310-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 7338734bdb84047385cf9fe69d986786763a7af07a019acf0565f24cdc054a0f
MD5 6557105712857f9904b72e29da914abb
BLAKE2b-256 1bb65ea773b5672d4638a1e996d901a7e51c5b191c91f9dcc01141f3cb5a5a85

See more details on using hashes here.

Provenance

The following attestation bundles were made for dbus_fast-4.3.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-4.3.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-4.3.0-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 a8b5fe04a4f5ffbb24f87aad8b4ab958d521d394c800bbea0d3d5ab983c01b48
MD5 b6d8aed1b560d39c5e72d8a299b0feb3
BLAKE2b-256 ee37a99270b2bf089d11b6f830ae93ab275c71cbcade4c324d6694e50a067b6d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-4.3.0-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 eb0e6ede48936d6fe0b2f2b75bd9f81eaa5219edda2e172b48fdf1694c8841d6
MD5 8cf77902aa18c66f155e00898eda6bbf
BLAKE2b-256 fb3fb2765116e40080e6d809048b3b89b724dd32433c0255bea9c0f73a1a9c54

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-4.3.0-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 fd94d0f9d12f71c616f79968c56ce1dafb67380c0402f54269af84d93ed87f75
MD5 42d11aadf749a21d146855e9333adedb
BLAKE2b-256 9eac73f5690da0a24d0439c9bfb98385feb4eb5b3f3280b553b5521df1611ffc

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-4.3.0-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 7bd91f661ea5d25993e8407a13b0a55f66687e3dd07982e00a92ee767b236779
MD5 481b124a06f9fcd6784eb97f134a824c
BLAKE2b-256 e88b31c494aa96e245bdf36058f156575904c4e733c3a9edfeea254cddc2f613

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-4.3.0-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 8d7c4d3538f0e53adaf57e6e10cce295e7a8a460c4db7643938efcf5f7db407b
MD5 679e7e5634dd6825d66d3145d12c1353
BLAKE2b-256 75fc6f79c10716d6802c4e7362fe6a9d719ccd5955e0d459a4a7d8e0b52f6d16

See more details on using hashes here.

Provenance

The following attestation bundles were made for dbus_fast-4.3.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-4.3.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-4.3.0-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 c88bee8c3fd94614f03a85af4b4cb7667c6f3a3cc8d7ac3cb0ff2762c8227c2c
MD5 d35d7cd71d0df7fe36feed96601d4e3e
BLAKE2b-256 bb30a586c7ef6b468df310366bdea9d0c0f098e3dace1e4803e9c6b275487c87

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-4.3.0-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 7e8b5f008cf8368b2c2529664d0efaeaed7500478a29869bad98fe5a781c18f0
MD5 b4033efa3343ec67d7a1831abc610054
BLAKE2b-256 5f7f3f49b0bcce7692ac01913fab616ee10a7514d120e3bdb4d51cfc60ab2f57

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-4.3.0-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 cbffff848ce2f1e45def0ecaa1d51c3a953fdb17c70f395cd33a67643b08023b
MD5 638d7ed3fb5f67601144296d92c3f149
BLAKE2b-256 a0e688a6f322e3f58b684f2781e29132a758c9ee468076449fa4ce3cedb2bd86

See more details on using hashes here.

Provenance

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