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.11.tar.gz (81.8 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.11-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.11-cp314-cp314t-musllinux_1_2_riscv64.whl (819.7 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ riscv64

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

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

dbus_fast-5.0.11-cp314-cp314t-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl (819.0 kB view details)

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

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

Uploaded CPython 3.14tmacOS 11.0+ ARM64

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

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

dbus_fast-5.0.11-cp314-cp314-musllinux_1_2_riscv64.whl (829.1 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ riscv64

dbus_fast-5.0.11-cp314-cp314-musllinux_1_2_aarch64.whl (813.9 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

dbus_fast-5.0.11-cp314-cp314-manylinux_2_41_x86_64.whl (847.4 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.41+ x86-64

dbus_fast-5.0.11-cp314-cp314-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl (828.8 kB view details)

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

dbus_fast-5.0.11-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (849.1 kB view details)

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

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

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

dbus_fast-5.0.11-cp314-cp314-macosx_11_0_arm64.whl (688.3 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

dbus_fast-5.0.11-cp313-cp313-musllinux_1_2_x86_64.whl (851.2 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

dbus_fast-5.0.11-cp313-cp313-musllinux_1_2_riscv64.whl (823.8 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ riscv64

dbus_fast-5.0.11-cp313-cp313-musllinux_1_2_aarch64.whl (802.1 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

dbus_fast-5.0.11-cp313-cp313-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl (823.6 kB view details)

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

dbus_fast-5.0.11-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (843.7 kB view details)

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

dbus_fast-5.0.11-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (794.0 kB view details)

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

dbus_fast-5.0.11-cp313-cp313-macosx_11_0_arm64.whl (680.7 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

dbus_fast-5.0.11-cp312-cp312-musllinux_1_2_x86_64.whl (855.1 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

dbus_fast-5.0.11-cp312-cp312-musllinux_1_2_riscv64.whl (825.5 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ riscv64

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

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

dbus_fast-5.0.11-cp312-cp312-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl (828.4 kB view details)

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

dbus_fast-5.0.11-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (847.2 kB view details)

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

dbus_fast-5.0.11-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (794.5 kB view details)

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

dbus_fast-5.0.11-cp312-cp312-macosx_11_0_arm64.whl (685.2 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

dbus_fast-5.0.11-cp311-cp311-musllinux_1_2_x86_64.whl (883.9 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

dbus_fast-5.0.11-cp311-cp311-musllinux_1_2_riscv64.whl (876.2 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ riscv64

dbus_fast-5.0.11-cp311-cp311-musllinux_1_2_aarch64.whl (839.7 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

dbus_fast-5.0.11-cp311-cp311-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl (879.9 kB view details)

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

dbus_fast-5.0.11-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (876.6 kB view details)

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

dbus_fast-5.0.11-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (832.4 kB view details)

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

dbus_fast-5.0.11-cp311-cp311-macosx_11_0_arm64.whl (687.6 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

dbus_fast-5.0.11-cp310-cp310-musllinux_1_2_x86_64.whl (885.0 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

dbus_fast-5.0.11-cp310-cp310-musllinux_1_2_riscv64.whl (877.6 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ riscv64

dbus_fast-5.0.11-cp310-cp310-musllinux_1_2_aarch64.whl (841.2 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

dbus_fast-5.0.11-cp310-cp310-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl (879.7 kB view details)

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

dbus_fast-5.0.11-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (878.0 kB view details)

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

dbus_fast-5.0.11-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (834.2 kB view details)

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

dbus_fast-5.0.11-cp310-cp310-macosx_11_0_arm64.whl (689.7 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

dbus_fast-5.0.11-cp39-cp39-musllinux_1_2_x86_64.whl (889.9 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

dbus_fast-5.0.11-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (882.4 kB view details)

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

dbus_fast-5.0.11-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (837.6 kB view details)

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

dbus_fast-5.0.11-cp39-cp39-macosx_11_0_arm64.whl (693.6 kB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

File details

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

File metadata

  • Download URL: dbus_fast-5.0.11.tar.gz
  • Upload date:
  • Size: 81.8 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.11.tar.gz
Algorithm Hash digest
SHA256 ef53bbc72522d1d4602e69b20eb60f3d2821d297718771c63f0ec20b173147fa
MD5 738b6f349a7702b3e7929a5164c4ab33
BLAKE2b-256 2ab06383d634e0c957c573fbc876e1832418c44f032e95df20454dbe056d5aea

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.11-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 dfdf9f3234a4fd51fa5240086090746bd127c002bc40f8ca8ffba4e7364e7594
MD5 6dd7a8817a8d54bcc19187658c8f757e
BLAKE2b-256 8d40090b52430d8ac3f9a545cf9b551d7492f435793a90f8b5f3414e696a6342

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.11-cp314-cp314t-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 0764dfc3555a3dafb58a86bf44ac876b374cf5ab941d010a59cbbd64b7c0daba
MD5 b76bebf3b7e3f474e928d44c997a0ee3
BLAKE2b-256 4b45bb699246eb13f81307649998188282bcb58d968078212af7fcf319a2d472

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.11-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 a6a404f1e07d223ffceea428a3f31917390aec4d61275235a2098a8181f0de1b
MD5 969cdd39a46c8fdc5300702de8e75414
BLAKE2b-256 0e07647735e1674345a899557da773ac276416949a39bfec377a8e4052663b1d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.11-cp314-cp314t-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 344de2f3f952dfb7fabeb8757c3f899d3201cffea8ca9ba76a2a2095abd6192d
MD5 2440b451b3fd8819ac7a06adb75391f2
BLAKE2b-256 827939e5ab474f5c2527385fde1e498a73e26e171581590fe3e02653886d0896

See more details on using hashes here.

Provenance

The following attestation bundles were made for dbus_fast-5.0.11-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.11-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.11-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 bd92e3d379beedac2e67238ca74848616c0a72054e83ad3fe705ee45c649c152
MD5 88faaf342e7435e39cb3f81211df403e
BLAKE2b-256 45fcd322a75a03d97bcd2d7eff6498faca9a6a3d9a240da8943206f8ce1ed357

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.11-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 160d40c16b65495a3814b12d58d12348b4105558dfef62ca4b939a34286f6c12
MD5 b1dbffd7870ec01d3d16d2aa0f895a1e
BLAKE2b-256 59fb2d5a4dfd4af42660bf45142fe8d2aae3cc04fb721f8e3e76f530e457ee2b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.11-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 dd806cd97a3343b29a9fd45b9d77d4a2950b7045620c3dc7a8affcc94ba610c1
MD5 382d33e11e849c2c3a1b42b1794211f6
BLAKE2b-256 5d572d4d827037e2b4e6b99b5488843b2099a5b3cdeb8a45ef119a2a0de24191

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.11-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 485329c263ca821ea153d84dcd6ce5884cdb0ffac1aa940ab7060422dc81a41c
MD5 b0d71f66c1cedcf9fa289513567c34d2
BLAKE2b-256 1a3e38542f94c2cd09e680d7013896779bb87a096e83b0e365341fbc8a207b9b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.11-cp314-cp314-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 95e5f49d5eadbdbd6f0ae8e2e586b1a18284bb26c243acc8ab298a9112186ef2
MD5 d11d06966bcd355727040663ee96878e
BLAKE2b-256 4cc5be91e94bde076cbfe08668d7a7bb7ebda839ebd0d833d81bbeadddf6b04c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.11-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 7be7bc5652dee9cd8bd11edae9f66fd664cebddfe5ad1092f15709869d2645fe
MD5 01cb62833ee927774c9453c5bd897b90
BLAKE2b-256 5d46f7b7c3f3bc0133bd960868d87abc7a9c6c3fb010a6dcb261bec616cdad2d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.11-cp314-cp314-manylinux_2_41_x86_64.whl
Algorithm Hash digest
SHA256 19110d7a831822dbddacea520b0bad51629246cbe8d529bacbd489ce43fdc9e0
MD5 54ab5c76ef0d4d01f0af0e27eee5aa19
BLAKE2b-256 97a7df1cf232f4f007dcbc93094e32e2bfdf20bd954b6e7760cf591b8245acd5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.11-cp314-cp314-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 95028d09a09e6b2bb144948fd749bfc1d54b2796835505fa5cff7baa500ddee1
MD5 4642ffeab789375d746d0509a952196a
BLAKE2b-256 eab6d9d9aef0e08dfba3a8647b7d5b5ea548a0c84344facbf4eb0cdaee086206

See more details on using hashes here.

Provenance

The following attestation bundles were made for dbus_fast-5.0.11-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.11-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.11-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 dfa024963cde523ed77396b2c23fbb3da5406620808cac8b036939050573aa4a
MD5 47599caee1d90dc5fc1d6ef0d6b825c6
BLAKE2b-256 91673a9016c36a693d834112f19e2e0e1504095970a7ad2cecadaeb82737ec4b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.11-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 c80a7c40e875d916c9826891bf425fd2448b97a1930dd289cc14617d38e36e0c
MD5 b7c342deaa049f79962edc715ff82d84
BLAKE2b-256 a0bebe13f4dc0c2a6b99a4a7d7849c158999e8587a8a5c2f18ec0b78a163449e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.11-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 02e75060ac7058251acf373550453065c4ff33185033b1433ef9cfee25bffcc0
MD5 674cd4b98cdeaed440caae39ca0c5873
BLAKE2b-256 629d71694b6d08ca817ab6ec6f3e0c58ad5505124ac4d685725d0cc39eca7157

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.11-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 12b2a96a5e1a09ccadb8765072ff708b9721cb4892d3acbcd9a4ce66c1aecc1c
MD5 cb1c2d3aad071a185d9e049e1734f37b
BLAKE2b-256 445a5716f554ab1f3fe4dafc56faaafc3875315484ec806d4122b113e7a43f4c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.11-cp313-cp313-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 438616ed9e67f25b445abc8f49f866dc624c6974bbdf4b97eaefe104d6fc6bfc
MD5 6cfd07ca40f54bc8a7610087650e6a62
BLAKE2b-256 4423bf6c8692fd3542ad40b1bbe2f446b852ce6c54a4680bf970375929f89b7c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.11-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 de8412eef9b6687e42c16f3952310da7c54efee73ba41c6469625ace9eaffc36
MD5 7b55a3e419ef97bba9b7d8be214506ba
BLAKE2b-256 b7a918637d897cf3f794bffb8ea7973c74238a4fe90b11d8c4e389f173568168

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.11-cp313-cp313-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 df2e6c6b5bdedee417f444783b32e10a022ce4a19f5852fa7470ffb3fb7d9957
MD5 7975c770e8df051e59cf51a090a966e8
BLAKE2b-256 b3386c914ad8af26ff5816e7d98ecfad3d2a6c19ab1a496cf26af35d57a9e824

See more details on using hashes here.

Provenance

The following attestation bundles were made for dbus_fast-5.0.11-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.11-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.11-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 b66d9e3969a287cfb6a069a6305cb421ad156767889daa253e1d700a3ce74bb3
MD5 39422597898f9c2be5478780db526504
BLAKE2b-256 c24c488e0596b311cafc7643471e99134254e11d3e0c0b4fe12818409f7eb373

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.11-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 f34fdb8ff564f8b6d005b85cac343bc03c01461267c92e94ec828b674272dc09
MD5 db9ff7823b161c8df037e61f00d92dbd
BLAKE2b-256 164d00847750615fc093739d05073495f866033557514e8d51e88e5d26297330

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.11-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 36ab7685019aeb0c7ddbd572cca84ffe2bad7c16bf345bbe8ae6389864817a86
MD5 d3afa5bd1ced1118f1c9ba28b72c2f35
BLAKE2b-256 a0509b6a42344aad73508ac95e32345519f2f9a8d3aa4399126cf9baafa9aca3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.11-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 12a3bde40817a317c2e81909e7728b43ed0fbe30fd9bbba36bc1d2d4432ba506
MD5 dd347d25387f083b7e0c705bfaf24e9a
BLAKE2b-256 3702759653bea3607a4111c1cbc7a22240ee1ad78463ede0175a7be0c8e0ff31

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.11-cp312-cp312-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 22c3a605bf8d48931a3b19c1e7ea6df87a062c172f7e37108640904951815ad8
MD5 6e89541d7b4950b2339814630010e99d
BLAKE2b-256 2be582b56074d95867101bd2ac72e6d540754fbab6a14936dc3f4636e772c9ea

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.11-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 7d650d5a9c390c0940984337250c7e6eba2274243478caca3803fb7dd2d71f6a
MD5 4c07891d6fff05665414b98de380a661
BLAKE2b-256 6397b3f7e89961d001865b1fef8198cc145d5a4d7cf2ec9fdeb31d41eb4c1894

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.11-cp312-cp312-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 084e438add470d70a18e71210ea5aad92656978a5c4360a35eb0750ab1a0906a
MD5 137c41a0ab77495cb1956dae4f38def1
BLAKE2b-256 e0fed570dcee5b3a5feaaf0889cb657c38f33d25cc367de061c434adc374d1c0

See more details on using hashes here.

Provenance

The following attestation bundles were made for dbus_fast-5.0.11-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.11-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.11-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 b1c2e6a8b7be85cc14a07ca739cc53129ffc0c8aa308410bc93ae776a4053591
MD5 5a372c6cf5dff5922519104f57c26256
BLAKE2b-256 6fd2fa2b5074b33a34c239bea515093ad74e703f1adeeb82c1be097421756ada

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.11-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 e8b30eb6f07a947b5397c49ee09ca96e81061f9bc64b89c37846977bfb0656f2
MD5 452ca928e66d38fc2ea09fa2fb082ddc
BLAKE2b-256 e5fbdf8aa4a8c0402cb317859e5a290f03fed453f0351bb7ce71a451035bc3ba

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.11-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 fdfa7aea47b09073f5f57eeceb9dc09c7d71eb1510e70e735ae5d6d349c09edc
MD5 eddee975a11b727e594a7b5b1e366776
BLAKE2b-256 5dfa7616ac77d604d5cff193c7be13db02816d390cf5affe5d3614a0d0bd956d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.11-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 25bff393f73280cb56dc2c7321f1670ef4eadef961a215730a15880d02c6290b
MD5 a28c0e87cb685e46769b5c73e71a900f
BLAKE2b-256 16729650c0abd46babfe09b07bffba2b5345a394ea13df6e35105b825db02e81

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.11-cp311-cp311-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 1f2c247b66f37752ba4aaf5c2a9bad418fdba9b93e67bd18d20d597d0be651b8
MD5 f9a89e8a1a2bb9e49cfa3cf84892d368
BLAKE2b-256 6a37bc55b6964c2613685e7b4079576557924ad3f0a4e648e95224e4d4ec0331

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.11-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 ae20dc4e19e33d4d235ca05d3475e4c5631a0fc43b6a50342322d002277ec690
MD5 5106f078371893b52146ee9ea757b271
BLAKE2b-256 714ca16ad2923d9647b83c0d87330035dd9104786606e34127e788dca806aa3c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.11-cp311-cp311-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 a8919ca606b82b81bd8052dc12d8944fa38330e5d2f66713430f0c883969a86e
MD5 695d2e8d03bd88242b74e930ae1c5f69
BLAKE2b-256 91c977ad264128c3b02238b6580cc708b82d94cd6491cb1a0c86aeef01fabbde

See more details on using hashes here.

Provenance

The following attestation bundles were made for dbus_fast-5.0.11-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.11-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.11-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 d32a3021be723745c6d36456215a45dee8a7da641ff5f7491973c33b0a987e52
MD5 8905fa56b9f1982b39736483d70dcd12
BLAKE2b-256 63e0088f71e674d1ca43d7937f2d8d5aae95bd1367d60c7fbff0d3f47c58906b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.11-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 c0204cec200dabd1611403649cfe69202d0e005ae68b536da75c6e2c07eb6813
MD5 cb9403a6280b8be0324c48aea9d65fb3
BLAKE2b-256 4a0875416eefe58bdccb2874c6b88f9f4675e69bb25b7b617c2d856071fbead4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.11-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 b76349102fdd993edfbe75c25332e122c71fd61dee2e3a0cc2d7c35deea5e51e
MD5 19d0b77507deff09ee7e214d497d71d8
BLAKE2b-256 2d934529f3c2802ecd4cf3ce06adde026a1b355dc22ad8f717b5afb0ff240f80

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.11-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 f4ec2792b563e43ebda632b0f4e97eae37696fb0c4ea7524364390aa164e75f5
MD5 ae0275d3ca9f16f0ee73c82f5ecd3d56
BLAKE2b-256 a2af84f51497315fc85a74d98c5b66d9609ec6eb7b2704e549d6e5e836c14726

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.11-cp310-cp310-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 47e62e6e0b0f411f3843fc6d44dbd01439ed53c0af09bd37a0964c458b4a1067
MD5 c52950774444ad5d830854b2e49de598
BLAKE2b-256 2afe86fdda982f6934fa3ef4fd42f2093774d868a29f987e7b60979b002c4f18

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.11-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 fc8e7ad483edc756160389f801c33b2aa173ae29761beae745e6d1bad7c7d3e9
MD5 e431c3e828f3f0e4a6dc6e5b8da3a59f
BLAKE2b-256 e6b3ecb9049be1771afeca84d13e2032d7adcb7ea15a6c81c2e0f1c2a6578a85

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.11-cp310-cp310-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 d3acd3c4d34d06edcf999984cdad273baabef5f0d6db503eca6d76b11aaeb06c
MD5 8440bc172ea26d44cf24608dcdd41639
BLAKE2b-256 79a3679f31004926c886e74a282cc7b3b07e5ea5188b8f7887ef2b5e07c4b1cf

See more details on using hashes here.

Provenance

The following attestation bundles were made for dbus_fast-5.0.11-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.11-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.11-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 3831a9a6aaed0adb195de29cab7e050db66fd039589b0159f5756232f005e96f
MD5 d227f7dc4462ab27f0287f3ad48283db
BLAKE2b-256 eef5c5d1973cb72f1942976b8a47ca5ca04feb0bc6c1f868203a64eb6068822e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.11-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 83b9ce7cc607a1b76fe63e598fd14539063703848f0c3a674a9518ae349d502c
MD5 c69a833aecf2b2375f42830cb2d92d78
BLAKE2b-256 276c5bb9c6c7944159eff7fc82b3792bb26d7ea2dd8b05555de759dd98cab104

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.11-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 265750bfa96f4756124837ca21e38ea26c581d7dfed5a14be6c5d767d99fd17e
MD5 a42aa0344206208dd970948c25e6cc26
BLAKE2b-256 2b90c0a558cd0238eb68719778fb62b80f9eeebcfc5fcccae86082dfbe1bcd35

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.11-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 5889aad119d44670e4c4c82bb20c8d631b6656f5de1992955e391d7609e76d21
MD5 39bd7f8743d6526f6f09fd508aac6887
BLAKE2b-256 13e1f178928d0a55b1b1c00e274bc7c803d5979329b01b8b276a48a8a60be1e9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.11-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 817777dffa0b9424e35afef0630c0d2f1cfd14390c98d362a10c559008c32b88
MD5 c8f1b7304fa2c16e8dc776a39b07f4d2
BLAKE2b-256 b07cfd9ce8965cd7786323ba3784227e962eed300a3af8c49d6f8c0e52d4672f

See more details on using hashes here.

Provenance

The following attestation bundles were made for dbus_fast-5.0.11-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.11-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.11-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 dfd581c9ffed5f14688fe3d8c67545dd4f3f062c1e6eda3dae4acdb39b16a7e7
MD5 7f95f6b8305a29b32df48a294ce7d003
BLAKE2b-256 cb977f0dacf3cb87a5b4720f0b65070b73233b109acad271237d71e2d554af5b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.11-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 54b050feee1a8afa8d1f795b92d6e3e1d9e420b2967494d121af90cfde930152
MD5 ca3871347031d5972da0e05aaf576309
BLAKE2b-256 70bba19f449ddd30ab7e60aec018225df6079bef42b6adebd24a829fb3b2c02f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.11-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 21b22588dbd5d0318a7ba00e4999fb151c1a458ce89b07238929c9e29879dbda
MD5 bef9cc248cb55d79c7dc57fc95a70259
BLAKE2b-256 2b745b8d01d6db13a6376c58462f68cc085dc8776a473371e096498403de8bad

See more details on using hashes here.

Provenance

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