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.7.tar.gz (80.6 kB view details)

Uploaded Source

Built Distributions

If you're not sure about the file name format, learn more about wheel file names.

dbus_fast-5.0.7-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.7-cp314-cp314t-musllinux_1_2_riscv64.whl (809.4 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ riscv64

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

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

dbus_fast-5.0.7-cp314-cp314t-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl (808.2 kB view details)

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

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

Uploaded CPython 3.14tmacOS 11.0+ ARM64

dbus_fast-5.0.7-cp314-cp314-musllinux_1_2_x86_64.whl (845.7 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

dbus_fast-5.0.7-cp314-cp314-musllinux_1_2_riscv64.whl (818.7 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ riscv64

dbus_fast-5.0.7-cp314-cp314-musllinux_1_2_aarch64.whl (803.7 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

dbus_fast-5.0.7-cp314-cp314-manylinux_2_41_x86_64.whl (837.1 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.41+ x86-64

dbus_fast-5.0.7-cp314-cp314-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl (818.3 kB view details)

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

dbus_fast-5.0.7-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (838.9 kB view details)

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

dbus_fast-5.0.7-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (796.4 kB view details)

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

dbus_fast-5.0.7-cp314-cp314-macosx_11_0_arm64.whl (679.1 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

dbus_fast-5.0.7-cp313-cp313-musllinux_1_2_x86_64.whl (842.2 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

dbus_fast-5.0.7-cp313-cp313-musllinux_1_2_riscv64.whl (814.4 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ riscv64

dbus_fast-5.0.7-cp313-cp313-musllinux_1_2_aarch64.whl (792.6 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

dbus_fast-5.0.7-cp313-cp313-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl (814.0 kB view details)

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

dbus_fast-5.0.7-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (834.2 kB view details)

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

dbus_fast-5.0.7-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (784.3 kB view details)

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

dbus_fast-5.0.7-cp313-cp313-macosx_11_0_arm64.whl (671.6 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

dbus_fast-5.0.7-cp312-cp312-musllinux_1_2_x86_64.whl (845.6 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

dbus_fast-5.0.7-cp312-cp312-musllinux_1_2_riscv64.whl (817.3 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ riscv64

dbus_fast-5.0.7-cp312-cp312-musllinux_1_2_aarch64.whl (792.1 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

dbus_fast-5.0.7-cp312-cp312-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl (819.7 kB view details)

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

dbus_fast-5.0.7-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (837.7 kB view details)

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

dbus_fast-5.0.7-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (784.5 kB view details)

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

dbus_fast-5.0.7-cp312-cp312-macosx_11_0_arm64.whl (676.0 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

dbus_fast-5.0.7-cp311-cp311-musllinux_1_2_x86_64.whl (871.5 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

dbus_fast-5.0.7-cp311-cp311-musllinux_1_2_riscv64.whl (865.1 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ riscv64

dbus_fast-5.0.7-cp311-cp311-musllinux_1_2_aarch64.whl (829.5 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

dbus_fast-5.0.7-cp311-cp311-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl (869.1 kB view details)

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

dbus_fast-5.0.7-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (865.0 kB view details)

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

dbus_fast-5.0.7-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (822.6 kB view details)

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

dbus_fast-5.0.7-cp311-cp311-macosx_11_0_arm64.whl (678.5 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

dbus_fast-5.0.7-cp310-cp310-musllinux_1_2_x86_64.whl (873.1 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

dbus_fast-5.0.7-cp310-cp310-musllinux_1_2_riscv64.whl (866.7 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ riscv64

dbus_fast-5.0.7-cp310-cp310-musllinux_1_2_aarch64.whl (830.8 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

dbus_fast-5.0.7-cp310-cp310-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl (869.4 kB view details)

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

dbus_fast-5.0.7-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (866.3 kB view details)

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

dbus_fast-5.0.7-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (824.8 kB view details)

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

dbus_fast-5.0.7-cp310-cp310-macosx_11_0_arm64.whl (680.2 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

dbus_fast-5.0.7-cp39-cp39-musllinux_1_2_x86_64.whl (877.2 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ x86-64

dbus_fast-5.0.7-cp39-cp39-musllinux_1_2_aarch64.whl (833.6 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

dbus_fast-5.0.7-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (869.9 kB view details)

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

dbus_fast-5.0.7-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (827.2 kB view details)

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

dbus_fast-5.0.7-cp39-cp39-macosx_11_0_arm64.whl (684.2 kB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

File details

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

File metadata

  • Download URL: dbus_fast-5.0.7.tar.gz
  • Upload date:
  • Size: 80.6 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.13

File hashes

Hashes for dbus_fast-5.0.7.tar.gz
Algorithm Hash digest
SHA256 f62b08e3786a345cea9ab5620bcc79f2d9abf8698a8bcebd02055dc28d874bcc
MD5 aef49bf037ecf768fb41fb893d08833c
BLAKE2b-256 8244943706919e1aa9cc299528fe2094c7a4e795f9cdfbf04a211bea149161b9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.7-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 352eac47c1f21af6789c4188366d1b3ea67b933223ae3df4a8809f2505f583ed
MD5 33a01f8679c46f7663276c1101c92ad9
BLAKE2b-256 1c629c9a6c125d18e717586a2bc1946c1052ce582b6128a25d21c4a1c1d54dde

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.7-cp314-cp314t-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 af124fcb08d612035caa06881c47b03d985eef2ef431cbf4faf54c133e7923ba
MD5 c3c0ddc30fcd1550eb87596a30d3e39d
BLAKE2b-256 817000b4316f3af913761449a57af57638fedbcbf27cd871c79e1ab039b37f86

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.7-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 344e37ab478cacde367fd98f170e8c677bf1fc4d8c9535458792fa2536b2b61f
MD5 ca71b62c22f86aeb8e303ad225b05a2a
BLAKE2b-256 54e61fdc82ddc1736e96d8037e80357ba9938c2eff2881f64bc2ac3f840c64b0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.7-cp314-cp314t-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 0c60380a64a759f1a5f6a46b569c8f1f2aa73a126242525b0225e3dd4d0063bf
MD5 36f73ff513d4253ca9c83acd7138a243
BLAKE2b-256 59eff9b49ead78298934600d9ca9e7353bcb4f5d6e4632b7e1904281939af227

See more details on using hashes here.

Provenance

The following attestation bundles were made for dbus_fast-5.0.7-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.7-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.7-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 dadcdb65e34fcda5662cfade0e918ecd0f753b743c1a1a0b36bf6678ef1fefef
MD5 906054cf144d5e74aca555778c3cf1ef
BLAKE2b-256 f6ce84a93a4884a49dba2f43d6a1b56a568eae2bd7e6a836f807201babc6774a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.7-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 1fc3a4d559e0c2bf436e5726ef4283d8b64129591beb0d235bdb29c5d03be3fc
MD5 3811e8fc6cd229b4d17779652e153344
BLAKE2b-256 8b2d062920bc51c36a2b44cc011897caed3d79ab6b7a285d3e81f3750643b622

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.7-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 03432b236d21a0dfc8ee5868e15068caf9cb661d9da746b165a7dea916f4d5b9
MD5 e162a0b6d096ac9042454882370188cf
BLAKE2b-256 ca360e9970055b52bd83924c3908e5473d7d9a56bed0e926a9ef20b71180cd29

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.7-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 9302990aa4134277c85a743439a082991f9cd0a423a7de410fbdbec4fd684cc4
MD5 691924687a823ccb1be1f7500330cb07
BLAKE2b-256 0ef6eeb243fca168272d2fddb5011c79f57bfe443d9e0d0543e1a59b55174d18

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.7-cp314-cp314-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 63571008a7456fc031d66b78cb64c96339e878ede740eb177b919758559e2d67
MD5 cda43013eb5ba5ad2ba2613a941f6d28
BLAKE2b-256 060ce5ea57a4ac90267679e498c8db347e63b285f227095b2adfaca42c1138bf

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.7-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 5ee8be2acb292727ecd5867f9ee1c4e9732c44a2d70252486159bce93fda07b9
MD5 4052dc406cff4b3c1aa944632533bcf2
BLAKE2b-256 8e0e70c71645b0a6c2a3c0ef83e6e8c19807c0cf62f0d115ee319524c4a69499

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.7-cp314-cp314-manylinux_2_41_x86_64.whl
Algorithm Hash digest
SHA256 1915e1c9a99d26ec712680831c1db36ac2aa52e158fb0747372b8a41281b6451
MD5 292094b2fbddc87e02707dfde954bdbc
BLAKE2b-256 5e5d1cd9d03cecfffcfc8b25045fee3d3b03333c08fa4fb2156332ca121987fc

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.7-cp314-cp314-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 739f9a199e2bc788ad9d834b57a07ca95d8fb8f174fceffc98bc9bd62010aaa1
MD5 ae029ea7c77faa9d25c361a4f34b53f7
BLAKE2b-256 be747c3afb4ddb692f2e0805d22de05f921a8458a317e67c0890b33354e371e7

See more details on using hashes here.

Provenance

The following attestation bundles were made for dbus_fast-5.0.7-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.7-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.7-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 a887c1715d58d1c1192f5b8711bdc10742702dc6b7625586d5ab8406659523dd
MD5 caf1abf8e8a696e3de5abcf6ff30c887
BLAKE2b-256 5d377da6ba75b85851d3d54d7b5c9b3e53d6668b5627df0e5f8b9c1fb108da5f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.7-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 01752237742c0a11e4ec8fd53b4559017e0df5bba447adfea13c9ab4b7f08116
MD5 0798ee667a7a5c4cfb537685d26631a3
BLAKE2b-256 3acb9cf27008ce95e21ae4d89658cfd2fa2e18339d810a8011458b80a65bbac8

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.7-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 06d14dedc5d5f86752854f678bb135ff5f6134ad6709f1a22f1f8a9adf7be3bc
MD5 5327a359b3390b561dd697b7ade27957
BLAKE2b-256 10d5d9dd6039fa3d5c1863bdc1157ff8ff23d0897a89c410ec8c27902c8698e6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.7-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 890d158f133a4ef8b10252209d3284eb83d4b7c8aaabc43a0667325c05720120
MD5 42e1d55b8f088882f63f9214fae6f6b3
BLAKE2b-256 4a4252308e03d58cfa03569d086bbc2cd3dc1499d661e5d278cae1a99e987d25

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.7-cp313-cp313-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 a374f06d67de2bcdab945fbf966421e0b8b807639c1cb135c95667f250141b26
MD5 24380636eeb8aa8d37502b744722d221
BLAKE2b-256 66bcedfe195814545128ef449805b1c8c105f9a08d3a75e9ae99d91270dad327

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.7-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 ba57c5d40e4b06db4a6d29263af05210fc661b52af2666123fc02e8af81276e4
MD5 a77b811cb78bf023ce548e611a962cbb
BLAKE2b-256 2e1d6c9961675409628831965c39ede540988fcb225c3e28513eb9553aaf22dc

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.7-cp313-cp313-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 34bb5afc2f7acc3205e283148190417e614a1403c690f8587460754b1f3e0957
MD5 85d9bbd7bbc4ce0f50d79ce6c843af5a
BLAKE2b-256 8bc657c4d023ad00ebac77f53be854f2025e296838c3492d013236d2d8d76355

See more details on using hashes here.

Provenance

The following attestation bundles were made for dbus_fast-5.0.7-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.7-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.7-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 139576e85a97087b222eee0e7b003f36d1d9e0125f6151357c2519dd6df129f0
MD5 515702a801ed9d1922bc51322959b41e
BLAKE2b-256 c8eb6c86dad24a7506bd13601a7605f58428acb18a48f4d249353a3c64a863f1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.7-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 f7938d81e940d84722cd910b9e7cc7ee930f5c4bd0dae5417a73141794f4e228
MD5 a7a47e6e7a6097c84696291e277fd79c
BLAKE2b-256 8b6fe8835407dfd0429172a380c7f67727d4d4522443aaa68e1fabc8054f90ca

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.7-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 4795d0fae9f802197ab1a1d80a8fbbb09a0b1f96cb1942cc8e4ca22391c2fec3
MD5 4c8e2559000f7d398801fc782b388391
BLAKE2b-256 31b8d79665e35560884abc8290302c928a781701ca8dac68d6b86f03372bf7d8

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.7-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 14f1bb1e19ec18fc0afd611ab4295dff68326f473fe906cd8c9bad89f90f02ce
MD5 875a39fcddb93bf7a2b839c7632388cf
BLAKE2b-256 9920c80c01677c8e8c05147c606cb89b0b1e04650ac7269908256746a8b01ac3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.7-cp312-cp312-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 7290afa82914d5397db2f3cafe067efa60f32ba7c055a7e9ca3dd8246a124f8d
MD5 0a6b6572219bad415797cff4c54bb0d1
BLAKE2b-256 1506a651ef05e9d954fd4d9f0dc7bf7bb5033e28ebfdb77f21d06a4358fef3b4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.7-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 14262204c64d1f75a28ccba368d9f1313a12abb1b65eb941e3fbbfe8aacf8a0b
MD5 8f136baa26d6e53d54a31efe40f5a8eb
BLAKE2b-256 fe66ac63d31bffbc307dae4b7c8acb42410c55838e8323048edb34772b1efe81

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.7-cp312-cp312-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 9b2bf0f1ea73d8816d35d87b2221384dac154ea06e9efae0303f391975c6c5d8
MD5 822840566b40b45e5908924aca91e2d2
BLAKE2b-256 bf8e202e2db1e5c42bfd02351296000587f0b1b62264959b25314ba83dc118a4

See more details on using hashes here.

Provenance

The following attestation bundles were made for dbus_fast-5.0.7-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.7-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.7-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 5f9f672d3e18870bcb818465d6b69d424f69bdcaffb41c3a90d72fa6bbd625c6
MD5 0c6bfdccd6aa6ab41102aa03364f88f6
BLAKE2b-256 f0dddcc981aadbe0d600951adbdb75e874c3152e99525d660057ed3ed46767ec

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.7-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 afa1b38253b74e85440cb7af09d2b895eb1363fbed8ed0ea388d2b408b8d59cb
MD5 12de219c3ba2afc399ada7475ef67220
BLAKE2b-256 0f09d9676cd6f22d82e544fde29da5ac8b32ff1e66f3468f5f4668b906434b3d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.7-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 b0eddd7592c83b430c0d878d6ce794b8d3c062ee78f6f98f2a58956640e6a835
MD5 b05638c06951cc56e89e677138d4635c
BLAKE2b-256 98397c8632a9a854ef8cfafb6c793a98866d1f3dac109c86058939ef62535422

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.7-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 1779e9d10e82d50e163e5e7fc1eb67f767044e8c143297c0e6e8b2d50fe49528
MD5 df69149f0cf0b475e31ada8020915350
BLAKE2b-256 82e289e10dda52628a4393e78fca2534969c10f7ce35bf192c14d6f0e1802450

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.7-cp311-cp311-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 ace5ce845475348c644ddcf22e265136da23f6c3f200df2c2f4d4b199faf4a5a
MD5 928e935b46300ce3e5cbfb3e81c54d9c
BLAKE2b-256 c8b6d78a822309c53b6c6f6e467632401ac07219eddbd99f09df75c8efa93f5f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.7-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 62e1f268f202cb66d42fa3d79162154a491f4e8a7f752871d4b3c7972a400d14
MD5 6d63b84d957f17016a69cc4454e54db0
BLAKE2b-256 36b2f374a0555896919eb4bb87fab19eec78b00c3fd5865f15b929be88f67640

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.7-cp311-cp311-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 8733e75c526bba486d3f3588b26642560145525dfd9ad3d41203669361236dc4
MD5 c13227d3f22c190c8c422dded550e345
BLAKE2b-256 a2a74c4390c228c40d4d3221b2b31587891b30cba9e6abd07c5d9d0aa4e29ed1

See more details on using hashes here.

Provenance

The following attestation bundles were made for dbus_fast-5.0.7-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.7-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.7-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 902e39b5554fbec481b04ee66a2bc47a29db342f7dd7420db189d4fb7d422427
MD5 fb81024e275d9f10edc0f864a78360a8
BLAKE2b-256 72a182ea0a3c4596c03417fcf045c5e655b62ee9cda05f541b24f8c9d0cee030

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.7-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 74ddf612149d256ac89a5c44e76ab029b18ea59c071050f92fd4794dee4cfa8e
MD5 ab8a9468c04b4d3c8f9455721c1e6d75
BLAKE2b-256 279e659d0518c1cd91788a1ad963c96d777310b7a16a9d3dd461a24937f5b9a0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.7-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 32dc63e9f13fb5ad086bf08df8e7d5cc4824d84ebc05816ed6fb460f3ce92052
MD5 cc7b341a389e54189db469f8b901188b
BLAKE2b-256 325ef5be204869eae5f8b8b2de5845c78b39bfbfe9071d3a40fd1e7a4e369b45

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.7-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 fa28a0ec41c787c53d093eabc81454f108522b5b18af2ef181744cf74cfe6674
MD5 ab6f33bb3592e3b5015621fbe34ec28f
BLAKE2b-256 0b6f40c7bfaaf6ba6359445790f9f8a252eb87276160fbc09e70af54ef8a5b5f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.7-cp310-cp310-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 10d5d680dd74eab6340c626332ebed0a36a4fda7d830580c5a792507ebc9573f
MD5 263b145ee35d52b7caaec9d1938c1729
BLAKE2b-256 42c4b45edcc62958b931ce228eeaffcac9e5064d4345d52d29755db44b6379e0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.7-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 293648899d071ad7294fdccdde81eb5678e68f55d392e2642c7142839f98046c
MD5 4e2b960024568e21613b726571af3d7c
BLAKE2b-256 293702d20009fc610763d5c68008f79eb05c116fc17277acf25c1bc2f54f58b6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.7-cp310-cp310-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 b4e2c82d68357ffaf59a01b87d47b4fcc2306ff092a0350400f1a06239b9c920
MD5 6bc9ab9801c617bae9d7f686e2bc4545
BLAKE2b-256 884285113733d0f41291ed2260d65cdbb0f1fffea9105d45c398c25266c2070b

See more details on using hashes here.

Provenance

The following attestation bundles were made for dbus_fast-5.0.7-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.7-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.7-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 37b5858281d7911ffff479bf22a4f951be28296e50bc6b8eea01d50af4a06ffb
MD5 52c59ed2b524009050eb930da7550cf3
BLAKE2b-256 218ef413636b791d5d2cc54e9ad0cf4c147583ddc04bc94c0478406fc6f617fd

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.7-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 142ba9b03f9b2a043a8c6ee29f85fd20817493ad177233572c6b8f014fcd8611
MD5 3cc7aaa703307d5da398c01a8a0c8ace
BLAKE2b-256 047bc410cf9c402a7e3f75cc2693c848a4c2346f3cd28a5a4e392a9e0b984703

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.7-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 9afd214d260a590782d4f5fff61681b5cad3fa0c1d1518b681c5b35b0e25e1ae
MD5 6a6f8a936aa873d68b571750a7f11705
BLAKE2b-256 a8e017e3db371f3184763eef9cac8357b22270ab4890360f50e5b88e24e6518b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.7-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 01218ebbd085c6444add748210d6f8683b7283befbed3693dfcea15b83b4b90c
MD5 b744125ddfb63fc93605bd0528f30356
BLAKE2b-256 9c40b05b8ef7354442a044b5ce80737b446b2c64a5730f9dc95689e9b29feb50

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.7-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 b0818ee9aa423e1c22f488b4a06b11cd36e9e9992b360b6b632b9229b0db728f
MD5 9e6c844084eed13206668503954943ea
BLAKE2b-256 19fe21dc022ea73e8e7584bd86f35fbb851cb0571370080adf0bfb228c77f6a2

See more details on using hashes here.

Provenance

The following attestation bundles were made for dbus_fast-5.0.7-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.7-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.7-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 a001f6619a2f9b8d99ff03dac0c0c01f4e8f355eac6d3e728b326442f99ec7d0
MD5 448a41d21257c1c721a939f597ca268d
BLAKE2b-256 abcb828f6e5653a358ab30db4abf167c483dc272694dc3768c3b879fc2ba5411

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.7-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 06d9fc38c4711ed50cf86725f4d37966ece7e9db15282d816227f261e367a022
MD5 46700d0dbe02708749473ee935d9a011
BLAKE2b-256 72b404599c693a100c24be85795c1fe210b359b29b953f319adc02b87943c047

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.7-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 d67a99e75a9fef4414ea6edb9aa45f626c5029bb8900f9b91e6608015f7d779e
MD5 782fef53e5ead248b3fc9f9812c65e65
BLAKE2b-256 166034fed8bc278cd561bb80c05ed4d7c8d11046b922f402167f0b8d86338f3a

See more details on using hashes here.

Provenance

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