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

Uploaded CPython 3.14tmusllinux: musl 1.2+ riscv64

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

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

dbus_fast-5.0.4-cp314-cp314t-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl (829.6 kB view details)

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

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

Uploaded CPython 3.14tmacOS 11.0+ ARM64

dbus_fast-5.0.4-cp314-cp314-musllinux_1_2_x86_64.whl (864.4 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

dbus_fast-5.0.4-cp314-cp314-musllinux_1_2_riscv64.whl (837.1 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ riscv64

dbus_fast-5.0.4-cp314-cp314-musllinux_1_2_aarch64.whl (820.9 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

dbus_fast-5.0.4-cp314-cp314-manylinux_2_41_x86_64.whl (854.9 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.41+ x86-64

dbus_fast-5.0.4-cp314-cp314-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl (836.6 kB view details)

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

dbus_fast-5.0.4-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (856.8 kB view details)

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

dbus_fast-5.0.4-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (814.3 kB view details)

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

dbus_fast-5.0.4-cp314-cp314-macosx_11_0_arm64.whl (692.9 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

dbus_fast-5.0.4-cp313-cp313-musllinux_1_2_x86_64.whl (859.5 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

dbus_fast-5.0.4-cp313-cp313-musllinux_1_2_riscv64.whl (830.2 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ riscv64

dbus_fast-5.0.4-cp313-cp313-musllinux_1_2_aarch64.whl (807.1 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

dbus_fast-5.0.4-cp313-cp313-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl (830.4 kB view details)

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

dbus_fast-5.0.4-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (851.0 kB view details)

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

dbus_fast-5.0.4-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (800.2 kB view details)

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

dbus_fast-5.0.4-cp313-cp313-macosx_11_0_arm64.whl (685.7 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

dbus_fast-5.0.4-cp312-cp312-musllinux_1_2_x86_64.whl (863.7 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

dbus_fast-5.0.4-cp312-cp312-musllinux_1_2_riscv64.whl (834.0 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ riscv64

dbus_fast-5.0.4-cp312-cp312-musllinux_1_2_aarch64.whl (810.5 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

dbus_fast-5.0.4-cp312-cp312-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl (836.4 kB view details)

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

dbus_fast-5.0.4-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (855.3 kB view details)

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

dbus_fast-5.0.4-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (803.4 kB view details)

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

dbus_fast-5.0.4-cp312-cp312-macosx_11_0_arm64.whl (689.9 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

dbus_fast-5.0.4-cp311-cp311-musllinux_1_2_x86_64.whl (892.4 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

dbus_fast-5.0.4-cp311-cp311-musllinux_1_2_riscv64.whl (882.1 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ riscv64

dbus_fast-5.0.4-cp311-cp311-musllinux_1_2_aarch64.whl (848.6 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

dbus_fast-5.0.4-cp311-cp311-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl (885.4 kB view details)

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

dbus_fast-5.0.4-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (886.0 kB view details)

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

dbus_fast-5.0.4-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (842.1 kB view details)

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

dbus_fast-5.0.4-cp311-cp311-macosx_11_0_arm64.whl (692.5 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

dbus_fast-5.0.4-cp310-cp310-musllinux_1_2_x86_64.whl (891.6 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

dbus_fast-5.0.4-cp310-cp310-musllinux_1_2_riscv64.whl (882.0 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ riscv64

dbus_fast-5.0.4-cp310-cp310-musllinux_1_2_aarch64.whl (848.1 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

dbus_fast-5.0.4-cp310-cp310-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl (884.5 kB view details)

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

dbus_fast-5.0.4-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (885.7 kB view details)

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

dbus_fast-5.0.4-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (842.0 kB view details)

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

dbus_fast-5.0.4-cp310-cp310-macosx_11_0_arm64.whl (694.2 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

dbus_fast-5.0.4-cp39-cp39-musllinux_1_2_x86_64.whl (895.7 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ x86-64

dbus_fast-5.0.4-cp39-cp39-musllinux_1_2_aarch64.whl (853.0 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

dbus_fast-5.0.4-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (889.6 kB view details)

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

dbus_fast-5.0.4-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (847.0 kB view details)

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

dbus_fast-5.0.4-cp39-cp39-macosx_11_0_arm64.whl (698.4 kB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

File details

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

File metadata

  • Download URL: dbus_fast-5.0.4.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.4.tar.gz
Algorithm Hash digest
SHA256 ef372607f967870780c2063e5d39037fdd27e253680aef76687a8dc6cd9413f3
MD5 357eafc5c85494ae82eff959b2331f19
BLAKE2b-256 b1c7490f9ca9da84d1d47e021585cfc6888519f5c12ae48db90cdb4ba631be93

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.4-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 210ba9eef1f63d256111207f98c5e2264b946ff8db1bf3c82ab064c7d1fb2dae
MD5 ec9da1175c2d8a28d040f6ebd2cda1f8
BLAKE2b-256 cfad14b5ed792988db43b257b9c262e39b43d8b1fdb361b96da005a5cd3e5b48

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.4-cp314-cp314t-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 2ba075dc3c12af888ecae09226dbc2225c75b0e105666e1f0630f95d2ca6ab84
MD5 54fe81770ab600b270046f454dd62dd4
BLAKE2b-256 e954010f9a9673ca7bf67a393486278a617b9930fead5c04563bf710bb6dc21d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.4-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 f00ef02cfdc2423b50756e32e90af8f1c3d63ad41f3af8a3d0f7cea9315e0005
MD5 b2f05318d1cd5c00e88f574950c9c59c
BLAKE2b-256 546b13ef6c4fddcd7beeb15e8425e8d90dd5f06d973e959397153d53e12ec385

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.4-cp314-cp314t-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 dbbd41b9a641fc47e92d923331750a28c3a5001947bc1271d2392247c8fba327
MD5 6e74245d706a77521a925f190c00d839
BLAKE2b-256 c05ca8154e4ba68c822c96233302551c7280198fd56ad6709baacc804a51f7e8

See more details on using hashes here.

Provenance

The following attestation bundles were made for dbus_fast-5.0.4-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.4-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.4-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 340d36759a18d8b67deeb6bbd60647e0294f92950778a02e753832840b93f899
MD5 23635b128ac59729cbe9184ce1fb3d5d
BLAKE2b-256 fd75c18803c88e85164ce60c28f59a7fdb7819901b5e5971bbc505bcd438d02d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.4-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 a80a3114dc11fc463ef5b5562de6fa7fb5615acd488efa31a157dd83d510a247
MD5 60d497c8e49c3072c0fe3f34fa13a15d
BLAKE2b-256 458ddf4488525e22a8e843e12656f0718d760528f56709401af979c27a6c151c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.4-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 2142c9be443711c8e185de57ad19781f6ff231fa2f6ebbe9312734efd7a72762
MD5 626fd6503d2a78e517d6a3eef457b9e3
BLAKE2b-256 179b55aed4a5e2905c3767dfa92b052272fa3459e2a7c46b1a97ca968163c2e9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.4-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 2b0f0d98fcabc838589eb05b29322d20378bd3c98999ace909ed63bed28a92e8
MD5 ec6a81a6f0b7a195140027ed552a8f16
BLAKE2b-256 47e649122a2b58ceca179627b2cae1c6f536336303f00cff2d6ad37c08ce0094

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.4-cp314-cp314-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 e2c53a20bc6756d2d70b5a189b2adc76bb5d9856a1abd9564f160cd03f5d63bb
MD5 3680ae5689e1c56ee1b1cf5c5fb3f690
BLAKE2b-256 3458961d5d6d7c71347bfc6d6e6fdf4501b8773eab46bad02dc0f57d1005ab66

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.4-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 d3d3bddcec3df4e213dce8de6e456e8bf4053a5e6dc9544fa13d2803c7ade3e8
MD5 a54aba516ed805a76d7a7bd1e2c578dc
BLAKE2b-256 e63859d700c6540136740b102f66c94147dc707e917d8136e32fc7fcef649032

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.4-cp314-cp314-manylinux_2_41_x86_64.whl
Algorithm Hash digest
SHA256 2eeb8dc52aa377074133fd8cd15733e8de27c4fef62f9c66be90fe0f4822aaa3
MD5 d0a4523f4d8ae01724d7b4950bbd3717
BLAKE2b-256 8dd80d711a54e4523cad9a4b08753c7c49a32580fe90a2a0949109fa8cdccc1b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.4-cp314-cp314-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 8e36da263ce03faf48c5f40b9cc33949a8bbb67db1ef09b7cdb89a8b807aaaf7
MD5 f91d614c88263202355dbf1a3a5eb35a
BLAKE2b-256 ef49d11afde6602cefb2fdb43dd15a1f6b6f36a0e86cd046c99b4bafb071eb30

See more details on using hashes here.

Provenance

The following attestation bundles were made for dbus_fast-5.0.4-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.4-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.4-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 7ce788791929923dbcb3eee889c61b8898eed41c77e334ac73bacd24d6e5c68a
MD5 fb185676bc0abf10341e2b6b5de51c68
BLAKE2b-256 01f2e0397cdfa0aefb5b4c44658bd6ba8ce532b997e81bff3d9714bbd36ee858

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.4-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 6139737eda772a9a5de13368862a15e486d61570be7d3a5e6bd64c7a23131d36
MD5 392b227b40f92c8ce60bdee3823ff2c8
BLAKE2b-256 5d46a56b19ef369e55fe723c8b33fcdd18b730d77442585bd325972d2c07780f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.4-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 aa519fd8536ea8d100347f15af8a9d1a2d209fa5d353dadb64dfa13ecf707b3c
MD5 913f1e3d0ab43694b9ca5bf20442b8c8
BLAKE2b-256 10331dabccf932cee9408f189306bd6efdfab8cc063fddebcb218fd36d991ce1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.4-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 c3587f50a3089e5cc1a09b9a72cad964b88565f3d6dcfab3681981bca81a3fac
MD5 b1d905c5ee8414d95ebb443eed401626
BLAKE2b-256 01d7a2307c0b32c297728d325c05b9978caf7e9a1787d259d5172cfb90946b73

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.4-cp313-cp313-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 f4e47a01c1e196d0aac0654850911eade720e9e571f2e68ee363dfeb69699e4e
MD5 2dd89588dde8565b7aba33e5f5aa7479
BLAKE2b-256 eff2a5f8e20fdef07a3afdf6e50fb98df5dc266c6ff43346dd66d71cde300dd8

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.4-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 ca2a8e94610705fae090aa1c318b810da9f9df47b990da9b6e06a8005a52fb91
MD5 e763fcd32e5be7967c63e69cc83b79fc
BLAKE2b-256 29ca1cbf6e7928134fa642857222c4a684f4ffd5cc0d16fca51416a659cdc9be

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.4-cp313-cp313-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 1d7bb1465c2d06ddb6c38f9c7344c5a70beb09adfee8a00344322c7b2a90a5f4
MD5 424121ce4c90613c5d36283fbbc40eb8
BLAKE2b-256 5e8eaaf3ff0e66df530807af0381e7a9ec92a8ebd9783d54f00c1cbfaab35dc5

See more details on using hashes here.

Provenance

The following attestation bundles were made for dbus_fast-5.0.4-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.4-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.4-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 556ffba0fd56e9e872ed031dab579dab99c537c702e7c3d28f460c39e686ad8a
MD5 2d4e95816d039a4a24edad99b2200725
BLAKE2b-256 4ca19542cd0fbf86be24aa4c0865667cf8bf742df90c93b5063c3364d10f8dc3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.4-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 527edcecb06a6a1676c8e7eb0c167a234701715913c66431377d38da7acaa5b3
MD5 83fc691d9a02d2663b7c91c1c33d459b
BLAKE2b-256 15e5609bbd7e8e59753236a06838b5d561498695c457f08883348a7b034399c0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.4-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 00fe9b762c9974304e50f73abfd75210ae769207b78d8f3a97783d7281108200
MD5 85e3cebcf014ace55660e448b61d5514
BLAKE2b-256 43be0e88b7c1263583fda6213ef3370e259d19735b2f7f6e8746b77b08fb0080

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.4-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 17ff032d12dc4f3dbc3b29cd3756ce9094fd4cfc8f8984efa214072f680f70b1
MD5 087cda99e845d49a93fb64b12e7abdb7
BLAKE2b-256 c4135f369f6f388a19b662785c8e156795dd8f4df08cb49a3e2220464b69d7ee

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.4-cp312-cp312-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 176ea1a9c736f65262d923f9f8303824f1d1029d80bbfbdefe37a80e8a50b242
MD5 26e2ebb4d0d96ec09e28ce9b06b8129e
BLAKE2b-256 c658515cafb4ecae652ac8d289f9e7e73fff26e3f4052751f014ccff0c761742

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.4-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 1582355810e2224736a008e277bab8780bd3e6a7bbf865dd9d78fe6cd4aab961
MD5 90d7f61c889291366ef44996e4ab46a1
BLAKE2b-256 0b7413de0346943bed77e322479a6823293712d3525c953bb130476069a4f6da

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.4-cp312-cp312-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 3ff5f30056c3a68944729b88686551b56b79ec50fe27657e4e172afef4856458
MD5 0b23b7647ab97927a26e15060aedd5e6
BLAKE2b-256 cdca88b86f5f065311eee071f30559538acd39b5dfb3b1298c4d7e599accbe8d

See more details on using hashes here.

Provenance

The following attestation bundles were made for dbus_fast-5.0.4-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.4-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.4-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 c1a3d8f0aa43d34f19588ccdfd12e332258ab6c234b419166fa938bbae8afd52
MD5 42a4658482f4f49a0fe1e16ba3e94a1e
BLAKE2b-256 bb153ed2ab01ac5fd025378e6528ca4b3067333fcaa56f2f7338111fc879c702

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.4-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 d51094e6a80a7bfa6e67c59826a5604c7824e166958e6a029d0020f98287c00e
MD5 73401d4236746ac9266607110ffdf6a7
BLAKE2b-256 d02a67d7a011dfe5054bca33ff7faee6d60daae343e5d07e3b6f4182e5cbcecf

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.4-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 06fdd44811c938bf8d10bb8a5d1d09831e337eeff325b17ad7ef45640c2c88c2
MD5 a1dc4ff0ec65790b67d39655a7959d4e
BLAKE2b-256 fcd58a9dae63f6e68eafed65c2fc23aa1172bd840b93cb564f52035fe5bde409

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.4-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 6e28e4d08361697afe0be0815d2e649bdf5bc96bf012db61b3e5c6aa991bd7c3
MD5 7c00f41183f507455add4ba404c5306c
BLAKE2b-256 2c1261c28663229b2fa3a8833d74d086c8eb7bad57efa03d9b719a4a72b6f675

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.4-cp311-cp311-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 0a56f1b933d6f0333653b7968cb5b38ff27e42f50c60a35801f6d27a94cc1fb9
MD5 51c46db1f3b99fb009fd3816bdbb21cd
BLAKE2b-256 83aab12b378005538f4355a8a376783fa7477a60adb111947a565edf12101675

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.4-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 e4d4a0f108555f94ce76c2d9be58a1a0d72f3881b83ce919e418ece575e24e88
MD5 48987de54fca0ebb4bbc28ef4c362b0f
BLAKE2b-256 e8828dd56dad8a32050a74261ead6bf8536823f2bf35a95cd5e2d50b4e8e585e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.4-cp311-cp311-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 d00901d51ba4e5f2eb421f83fb6e4faf9466788fc7d7c4cfaf464bd97737bc52
MD5 5c164b922d2cefa3258f8797357b8be1
BLAKE2b-256 a9c6704494d8bf28e4b5126a43c21d600af13b3e075c1c53e122e4f95a832174

See more details on using hashes here.

Provenance

The following attestation bundles were made for dbus_fast-5.0.4-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.4-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.4-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 864b659724fb011356d4a5439551e17e03fa8420e5e14b1ae7cf5baf541c61e4
MD5 e9a5fcf6bc3953187caa9736f645352a
BLAKE2b-256 35855f9162efc2c1e6f9a9ed6732d4e4778a62f851482fb847afc82726d97f6a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.4-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 aca56a03b2d46263c1a0b6483677dbf1fa84f6516db9e1c032b4d57ad757cfc2
MD5 4a41e540ccc26e805a50033166c165c4
BLAKE2b-256 31b6c63d13b45bff8619e3479be45429459728870d697fe037367ef78bb208fd

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.4-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 20c2d83950f2a3b4536f51da0ad51dfa063ffc92dec084f80e9c7661582edeb9
MD5 d7d2857d4ae2c862d83fc1a02bedbc21
BLAKE2b-256 f6179297c320ab6363cbb3c0f349565f78e7e1adc0e6fb356bc37dba16bcfd91

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.4-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 fe088a16d33054607021400043f3daeff566fc0cdd45e789d331d24e99f13e93
MD5 95450d4dbbd5339ab1ee8ecb2b1fa6c7
BLAKE2b-256 c09d321c26379acfbfb605a68550a404c829b3498f01563e86091e2408ab1c68

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.4-cp310-cp310-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 bf8ff7ceb5cac93c0c6869f8dc2ce5a84200337503d66bf83a3b88a9346ea76e
MD5 db9f06f0ae8e41c0d563f1f422b03821
BLAKE2b-256 2cb5fa9f4399c78c237dbfdbe3e71eaccd1049e027fba1da312d3612533a96c2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.4-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 6f819880a12e31f489fa81beedea14c87dd14fcb92817e9b88d2527a8989ac9f
MD5 36333c7be4b02ca2e2e17f63c49aa27c
BLAKE2b-256 fd75d46e40d7308599a3c1df7a5b60f6e557f91cd2fbe56efc0ab2acf5a63236

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.4-cp310-cp310-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 fe8dd98f504af78f92ea4377839d1ca22dca9b1b7242e86a7655e866173b5df8
MD5 02275d5c3f9f63cdf5b31b2c660e0625
BLAKE2b-256 f72073f8c0b2b17fab681680065a3a3853f992d26dbe00ab966241d114989aed

See more details on using hashes here.

Provenance

The following attestation bundles were made for dbus_fast-5.0.4-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.4-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.4-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 f01e98f38215e1abbb320e0f6e0875c2ed3c17891eef3176fed2c0de8ffb7954
MD5 14a2818c61c585920dfa15abb1982498
BLAKE2b-256 a0f839d2f6a72cd572ccf857ce7567db881113785655a5c25fd95cdf50d32121

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.4-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 b8cffe3f31d9e0108c4f0cf59e104037630fddbcf410954d821259e0cd71acf8
MD5 ac5c96bdcead8dd94820c00892434444
BLAKE2b-256 a075dfef781f2de8c5f97c4360cba5d8abbccf617628d2feae031642e003946d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.4-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 c7339765555cc40586fa8ee25b5a9b51c6f397c420fd9d42833ee8aec42c86bc
MD5 6c952775925faba8ea66c3fe2f0a72f7
BLAKE2b-256 3ee735d25d8652ded1787c198d87a3771a24c71ca04d544365e77e0babd019ba

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.4-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 dac4b9422115fbf6caaf67b6e4dd64139123540ef2ab29f61b59f38a028cc54e
MD5 966b5cedff4f68cb4c1017a005553f8b
BLAKE2b-256 7f09647501e58dfbe112b6361a71f14d5c0a0a7cf605f9144fe9f3fa06d70b10

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.4-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 cd96417702ee61fdb5f7df5011857bcbc7a66231fa678c1a70aae642c707c6c4
MD5 4f973dddd682ccf12854c3eba8dbeaff
BLAKE2b-256 946adaa63e65817a499086650f04eecc0e737cf8121412f0e2b227bdf7b408a1

See more details on using hashes here.

Provenance

The following attestation bundles were made for dbus_fast-5.0.4-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.4-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.4-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 6573ba2a9e0991e57c87d57c96e13c25ab2e0e798472b50df15b6482860bc7e8
MD5 5446453c2e1fd8cb0c33181106f28770
BLAKE2b-256 9c8da7546f9d2a57182a329f3fec756b20593d26226e1fd1c64a5fb2f5fecc6d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.4-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 88ed5b484778d5375cdf9134ec03ee673322dab09bef99d10570725ec53fecf8
MD5 76078c22b86c0de4fb98f61dfaca76cb
BLAKE2b-256 5f25b6092449b01c534c86a1cbc82e46fccd9dcf76c397771b085103be8d58a0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.4-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 44005687b0e16964232effcab36ea90918a88b488e63e4a156fc237ca0d495e2
MD5 e3aedaf981681c2aa1e5e4b7cefc013b
BLAKE2b-256 dda371e84a16a8d4844617eb2136d589e74536a75446bb98ecf56ca6ca3d53d9

See more details on using hashes here.

Provenance

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