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

Uploaded Source

Built Distributions

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

dbus_fast-5.0.3-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.3-cp314-cp314t-musllinux_1_2_riscv64.whl (826.7 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ riscv64

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

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

dbus_fast-5.0.3-cp314-cp314t-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl (824.7 kB view details)

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

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

Uploaded CPython 3.14tmacOS 11.0+ ARM64

dbus_fast-5.0.3-cp314-cp314-musllinux_1_2_x86_64.whl (859.4 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

dbus_fast-5.0.3-cp314-cp314-musllinux_1_2_riscv64.whl (831.7 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ riscv64

dbus_fast-5.0.3-cp314-cp314-musllinux_1_2_aarch64.whl (816.8 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

dbus_fast-5.0.3-cp314-cp314-manylinux_2_41_x86_64.whl (849.9 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.41+ x86-64

dbus_fast-5.0.3-cp314-cp314-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl (831.3 kB view details)

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

dbus_fast-5.0.3-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (851.7 kB view details)

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

dbus_fast-5.0.3-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (809.7 kB view details)

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

dbus_fast-5.0.3-cp314-cp314-macosx_11_0_arm64.whl (688.9 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

dbus_fast-5.0.3-cp313-cp313-musllinux_1_2_x86_64.whl (854.3 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

dbus_fast-5.0.3-cp313-cp313-musllinux_1_2_riscv64.whl (824.7 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ riscv64

dbus_fast-5.0.3-cp313-cp313-musllinux_1_2_aarch64.whl (802.2 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

dbus_fast-5.0.3-cp313-cp313-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl (825.0 kB view details)

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

dbus_fast-5.0.3-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (845.8 kB view details)

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

dbus_fast-5.0.3-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (795.7 kB view details)

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

dbus_fast-5.0.3-cp313-cp313-macosx_11_0_arm64.whl (681.7 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

dbus_fast-5.0.3-cp312-cp312-musllinux_1_2_x86_64.whl (857.1 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

dbus_fast-5.0.3-cp312-cp312-musllinux_1_2_riscv64.whl (829.6 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ riscv64

dbus_fast-5.0.3-cp312-cp312-musllinux_1_2_aarch64.whl (804.5 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

dbus_fast-5.0.3-cp312-cp312-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl (832.2 kB view details)

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

dbus_fast-5.0.3-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (849.1 kB view details)

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

dbus_fast-5.0.3-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (797.8 kB view details)

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

dbus_fast-5.0.3-cp312-cp312-macosx_11_0_arm64.whl (686.2 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

dbus_fast-5.0.3-cp311-cp311-musllinux_1_2_x86_64.whl (886.3 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

dbus_fast-5.0.3-cp311-cp311-musllinux_1_2_riscv64.whl (878.3 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ riscv64

dbus_fast-5.0.3-cp311-cp311-musllinux_1_2_aarch64.whl (842.6 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

dbus_fast-5.0.3-cp311-cp311-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl (881.7 kB view details)

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

dbus_fast-5.0.3-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (879.9 kB view details)

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

dbus_fast-5.0.3-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (836.0 kB view details)

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

dbus_fast-5.0.3-cp311-cp311-macosx_11_0_arm64.whl (688.6 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

dbus_fast-5.0.3-cp310-cp310-musllinux_1_2_x86_64.whl (888.2 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

dbus_fast-5.0.3-cp310-cp310-musllinux_1_2_riscv64.whl (876.5 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ riscv64

dbus_fast-5.0.3-cp310-cp310-musllinux_1_2_aarch64.whl (845.5 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

dbus_fast-5.0.3-cp310-cp310-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl (878.8 kB view details)

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

dbus_fast-5.0.3-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (882.5 kB view details)

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

dbus_fast-5.0.3-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (839.1 kB view details)

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

dbus_fast-5.0.3-cp310-cp310-macosx_11_0_arm64.whl (690.4 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

dbus_fast-5.0.3-cp39-cp39-musllinux_1_2_x86_64.whl (892.5 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ x86-64

dbus_fast-5.0.3-cp39-cp39-musllinux_1_2_aarch64.whl (849.4 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

dbus_fast-5.0.3-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (886.3 kB view details)

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

dbus_fast-5.0.3-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (843.2 kB view details)

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

dbus_fast-5.0.3-cp39-cp39-macosx_11_0_arm64.whl (694.5 kB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

File details

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

File metadata

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

File hashes

Hashes for dbus_fast-5.0.3.tar.gz
Algorithm Hash digest
SHA256 fe7ca38beab5dfdde00fa44b364334797a181bfecc91c98601e8285fac18c055
MD5 18e75ddbe56380a9bce21fb8459c3cba
BLAKE2b-256 c4ca07308e817dbf95bc4dbe806f25a209d905c590ef8f61f322ead9ef1aceae

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.3-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 fec10beceab11f57d86ddfdcbdfd9d19cea912ed759572037f0bb473348eac29
MD5 481414b819783dcda9ad5d0d37c3fcc9
BLAKE2b-256 e2f80fe0bb9773cb77c61e2160e5475b9c0599a1cb881835b7249f35376da0b4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.3-cp314-cp314t-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 5ee8204f2eb20e24d147da667fb7d7b5d782c7440b488b9a445ad5af9bcb2bc5
MD5 7a5c82b2fd3b70199302fc349ab960c8
BLAKE2b-256 c229c35379e5844815837ce0c8ace036ecb6f52cae5bfdac03f1676d220cfe26

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.3-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 f5f127fe27ea739c9b271651835506456679549b096c46fa7f1b1f09544f261c
MD5 a2bb6da1a777e8aeaa2267c561d34022
BLAKE2b-256 6a88eaedfbe90db90bce8c37dad32752bf3321b1844ddbcc6458c3ebd7e5bd00

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.3-cp314-cp314t-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 497692168f291719360e5a5a74c50e6ba3b97dd55a712f370a02588bfae7cdef
MD5 4901ad5d3e6f2befc1c4bc32c55b91f5
BLAKE2b-256 334c55aec96b6a3d373dfd0f050ae3295d9d3103c11371163eb10c75bd89fa48

See more details on using hashes here.

Provenance

The following attestation bundles were made for dbus_fast-5.0.3-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.3-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.3-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 40947aa7bc81e60a3b10863dadc0a282cb3bdd841f3cc5aa07e75acffb7c2033
MD5 e19455781099cd4ab7183e60e64f9c82
BLAKE2b-256 fa6b36a03b5296e7d7e3bb646f2fcf5d93e3ddeb8d437a727ada355730e3d44c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.3-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 db3fbf445f1b3331999adf5f3049b7a2755261547c559f8edc42f025c487a9cf
MD5 124922fe685a274bc31dce8e4c68129b
BLAKE2b-256 6afc718a0c9bc6cea6ed8ee870251c4b1695b9fc9277ce17f4069ea7a43a487a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.3-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 14eda476ab7c77032d5c09feb2c3215843f46b5ae6e7ace87c84630ec2875bda
MD5 1a6bcdd3e7c5f906a825cfc95f749f06
BLAKE2b-256 d86cc5bfe3b8d0237d678d151278b72618d1c38cf080f140eac2db2afa8f7684

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.3-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 cc441f6207b6b0501307d949abe703a1569e2b7c4c41412172ff3923080b3fef
MD5 a4204c406f236c30c2aa63f0e4cb54a8
BLAKE2b-256 b1d022c5e12ca359d1e946ddbd14b1e999b3908eedd9517c76f3520bc767e639

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.3-cp314-cp314-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 bf4a72c720aae11d5e02988039aa6dfb1d93b85962a96a780983813005ecb30c
MD5 a79f71a6661e32071b101650eaca69b0
BLAKE2b-256 80364d07d4c7642923991966b848c4f210cb920f10635f849b998334ff4c1fbc

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.3-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 a66395a97d5098f6b2e1ee7678a86ffdc6ccf0abd860a52a91e20b7175581a7f
MD5 41053686b9636378452c26cec07c0db0
BLAKE2b-256 be076f01e01271e33f465a0ba370390949d2968f3188c4b3bd8b63e94b9aca8d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.3-cp314-cp314-manylinux_2_41_x86_64.whl
Algorithm Hash digest
SHA256 7ead8e5e7b92fcfb0bfd4c9fc6de8a804e785ada642a6825f6690d778d2fc74d
MD5 5d06655235805dd7da6e3d514d26f871
BLAKE2b-256 0cca46b6ccaa414e741a6dead7b6c07a9d5fbda5126a7a2dcda2dad88735f115

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.3-cp314-cp314-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 9328d4c70bac1e58b02e12f73fb746fc39431230fc65b903987087dcaf3a58e3
MD5 a40365e08c72831ec1175722924ef376
BLAKE2b-256 c1ffad3e3ec5e723a6010bd6eb8914b85fe628fc67a1baa1e01b75e3744ca1d3

See more details on using hashes here.

Provenance

The following attestation bundles were made for dbus_fast-5.0.3-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.3-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.3-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 47841f693d3349f3eecbe9fee790c3807c64069735c2d1247651a74e7f910bf5
MD5 10aa811b3ddf052666827f688ffa4c74
BLAKE2b-256 3df4bb8ce41aa1ee537c899b4c6c3df1fcc14eefa481e5ee7a01ebc9545d5bbc

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.3-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 2b9365c4bd2353f24d9bf742fbdcf06e46a431aedebdf537ef43348cf5d04b6e
MD5 dd5b911474a66ce14731233b10cea9f6
BLAKE2b-256 739be7f3664c2a87ef7b1e77fe14e9c2dee6e879ccf06e667ba325cea5c60ee0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.3-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 6e0eaa55efa993fb63b500b60ca5a0e82d52a4e726d9b60200ec9a4793c0313d
MD5 2b5b4678938e6e177b21fc7987fac73a
BLAKE2b-256 8c9c0227e6c2b79abda7472516bc2022c417256a8ae65ef4d5511efe42d6f598

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.3-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 42936c39f71c634d1002061db4e1dba1cfa9cf4b15452551c8cdde933b40689b
MD5 5f02f59b6fed392663d39c8a29bd0233
BLAKE2b-256 d72b035c1c7f28213b6704e6eb7ccb109a0563e583c917309ab49392ff467938

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.3-cp313-cp313-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 e39e5fa2a429c719b025ead6d627ac816c5d2c503d4d60765d6583ad0d18406b
MD5 bfd536b63e622942ab2cb6cf89cb54d7
BLAKE2b-256 94235113344faff431880d0240705b02ac9058725f0f4ffb67ca5863363c3d3a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.3-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 858f765a4d545edd84649572a73ff6297791e69a7e2553caa957ff025811e0af
MD5 536d989c88a7274d3fc6c45c2f27d665
BLAKE2b-256 1110d16bc650df51b681ca687796ae893f7d83de345a15d06ff7f0240255ea66

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.3-cp313-cp313-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 0968d9c447aea41c434de07340c45350a1ff8b90fd624de430fad60b65f09f2c
MD5 3cbd80988852f9cac941ed3407439c7e
BLAKE2b-256 2222ad5f0021845a4b6f2f3ad0f5d39fef77076544f608327aa801de15f9c145

See more details on using hashes here.

Provenance

The following attestation bundles were made for dbus_fast-5.0.3-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.3-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.3-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 1efdc3b98a86a4309b884073f477e49b5fa4b59a117764104a64159cb7aa3aa1
MD5 0afef204aca38763184abfd2a1943438
BLAKE2b-256 45f0c5c61eae6f61bb53bcc5c8d62c6b55ced76a418b167ac4a856ee1745b704

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.3-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 29f9fc96acb151384d634b4f5b5617239c04cbd06df0c7741fab5cd9f0f2e093
MD5 38a743d5ad6738ba078a0c62eb50ddda
BLAKE2b-256 9b1fb240914b668b1e7bb4214ffa31a068cb81db3f547e47d15f867cec5b7935

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.3-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 7ce6ea11b80d2ba52fafa3dfe2afced06b922e6582bf1fc4781c3197c1960d86
MD5 ab7865732f139f352a1d20c83d27dbc2
BLAKE2b-256 5d1c9047974e0f1488cfd76d4c1d803a9579887e15b0e5f76adbdeb88f4b123f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.3-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 67d7572eba48f7b2a6bfcabae4763de9947fe2cb97548a7941ad38858979b2f2
MD5 613ae0f2d108fc12956277b1dc348a3e
BLAKE2b-256 3115d95b1f049a946d380987ac27a12229c1624e837dbf0006ad77f182d8106f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.3-cp312-cp312-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 1b7ee96e6418f9a07770d80fef78ef3e2a96f53c06e772a95f2e502cc30d0fe6
MD5 56587c9b387ad6a87da8738694fd0329
BLAKE2b-256 71074ef73441cd5fa78b084c3516d2ac20f8c10ff890b1d1834f119903b69772

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.3-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 2658e7fea43e8924da9acf731bb7689a30c9e73d99b9c57d63780381a74f641c
MD5 ee59e436b32024f3d45332a24c260690
BLAKE2b-256 8405dca61f4207b3d4f606eb9f143d5f5d9523bb1858ab0298141167f7ce14dc

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.3-cp312-cp312-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 4cef2428fc8b3c38061b4c0e59564c61524fb4f68e0e77f7f412da67c1318436
MD5 68c18af7ef5c1f2c21321607e2e4b2a0
BLAKE2b-256 99bde4c03aab00b6ffcce858851e047b1c84fa22e77a8dac524acc96826a2923

See more details on using hashes here.

Provenance

The following attestation bundles were made for dbus_fast-5.0.3-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.3-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.3-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 acb5881acdbec9744d6e26ca4b3e0e1e06ef8cd8acd82d98f20453388cc85d6a
MD5 b37f58dd6a4cbc72696b41d9061b85a6
BLAKE2b-256 1bbf431ead41cf6dc6ed0e106231063e848bd054231e7d300b924c883ba2ce06

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.3-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 e4bbc653515c09a41bf601a593a4eab9eaa4b860d373449a0a9ce947d54878eb
MD5 bd954b7c6ad110637e6119feba6ccb58
BLAKE2b-256 58a1584af8b3fba0133240d6ed8c3768b81d656e55a5b39161bc403849c7a038

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.3-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 7802380cc1a10c3eb4a031fdc4b20867a7e9ed6a459b9caf1a892e8f9896e3e6
MD5 7a5683239903f89f7d08f23f9263bef8
BLAKE2b-256 615ce0e7df251859e5280942a6c45b382a9cd666546472965d474cab7fa01be7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.3-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 5f6283108be7467478cb6095263ee8ed3f41a381e1f9e8a7df6e179410cce62e
MD5 ef1fac70601bdea3e64bf62fbf882f41
BLAKE2b-256 d4eb5c8d5e56064548f0819c076858bb7bf2573fb7d9e47903dcc83c3b9bac74

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.3-cp311-cp311-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 e9ed39f1564823b70156acff8b44ac81ad7de8976c819721972abc13d6e571f2
MD5 cc08e0b3171bd4404236558afea8012d
BLAKE2b-256 fe12a6f7a359df2a0cf3773129cd85e419da09b68d974b81f0aee1d2ea81ed47

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.3-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 2e5904687c7324d4d1b9bdd89ab9fe9929a39233ed75ae96a37acf32832ca0be
MD5 994862b67b8a324600a1d517ca364274
BLAKE2b-256 6a711633d67de27f63812d499cbb9cd5521c8f49cad8e75b08407676a84351e2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.3-cp311-cp311-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 a76406b93a3af93b960764e747d918ec2550ef2426f06fd8819c7e3ef098e8a6
MD5 243c0bff764a5ae8d51ef635b1e9b008
BLAKE2b-256 3e146c607c892813584c9023ad4e1b373acd12c41741d2c43ad51da219e97142

See more details on using hashes here.

Provenance

The following attestation bundles were made for dbus_fast-5.0.3-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.3-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.3-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 20cbb78fd043622dea4633bd893f7e415ae3a8ecb63210fd9de6f78bddeb760e
MD5 194e32f82ddcec6c9a3eb54388d6a3eb
BLAKE2b-256 3c7a367f6bfb84ab2449eb05dd98d1d49939de30b1a5cf1491b157d7b677f9d9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.3-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 5e66e09de5e7a6c92dc0d15f8308879c6b2893212207ea5b355869865f09cffa
MD5 51d3ccadf3d4d8a7ed91b8d33ab81f78
BLAKE2b-256 99ef901635d0cedcc7ae01c263a2aa962e0ba5083305fd8b5da68f613ca94b29

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.3-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 219226a293f3a01f3800bda71ca94539e7366ef032e094e53da5429c8b197152
MD5 ebf7fdb8331098fc64361fb29ee78aac
BLAKE2b-256 6c84d6554d19375720ee3a5f1a222a4440ac6e917351bb1bcffce12ad7e18c67

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.3-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 2db7f3b505e94d1e2ed79d942411024083a9d653efa1b02407245a2f595ad159
MD5 01877393b51572e1abb2c8064cb782f0
BLAKE2b-256 b4a82525830d1672b67cd32da711d74d8ec938813c6a4725f4cbd16f1d5fa73f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.3-cp310-cp310-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 f48c882378a60659c0d633db6055a3ce8fdcb7e02fb237958676577acca7fe84
MD5 1f389f98b0f1d157f936fd51b002cc65
BLAKE2b-256 d193f7c335dc8a530f9d2d05e9ffc0fa4d0a7835c459d8782fadc81dee5e4a97

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.3-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 c476c7d1bdea475ff65945046ddb64be9dd7164ab9afa8ce5150480aaa564889
MD5 922dfd414cb24808efcc5d0b1d60b308
BLAKE2b-256 0de91a6061f61d6c0587f4a981f2dfb6c312903e3f880dd6304c40d052fbc3c6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.3-cp310-cp310-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 64fbe6800366a2a788de66f30423078332ec98645c81348bce81ffedcbc94c02
MD5 1a7b7cc0115ee6673a4dbbeffbc66574
BLAKE2b-256 b14672ffccebbe0b149e52dfa76e1c5bed41ab2ad65cdf714c68936f757e79e8

See more details on using hashes here.

Provenance

The following attestation bundles were made for dbus_fast-5.0.3-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.3-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.3-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 65e15258d2971ff5098881a49dffe79ce01b872592168bee4c523472a707ebcf
MD5 4ff76f4c95273f6ec0e9728ccd013893
BLAKE2b-256 f64703746c4b2ac7db23f517d44d9f32b32f868a6f6309fcde23b3775f6907f7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.3-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 5e0a820bc4e5e4a26accc0d4dc3a5578eeb73d1bb09be8b44a9c5f22bb8ac2de
MD5 9b143fda43ec352288b6cd5eeb7a45ae
BLAKE2b-256 9dabc897d0e138fdaa60b167adf23f1caf9d0e896248ebff04daae3c43bb1762

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.3-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 a6696bf3134771c114ae9e4fe4064fdaf2b12f248a2b47b40767df70ddb3f01f
MD5 68e97dc7ecd0f4b8b51e36389319e413
BLAKE2b-256 b3c94092ff6618fb3a84ac36edc318c171d40c706cafc437c9f9fe2a8f2c8406

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.3-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 dd5307b6d4144d08874bae3a33dfb03f0ba56482b0e8f65a9de15bb9432ab38f
MD5 009cecd32e008cff25cb1183d79b74ea
BLAKE2b-256 800cd9b15081b70d107af60aedfbd4e7a6cdc8556a7cd81054c3a88029e00c81

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.3-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 7f94718050ddee969840920fcdd1e570bcc46869f20353a4292735f09e111824
MD5 40047888d67026a07f34286a42a9ee7e
BLAKE2b-256 7bc9da0ea180b0693fb4a75d6c40b55e1f19c415ea55693d7bd77c1a31061675

See more details on using hashes here.

Provenance

The following attestation bundles were made for dbus_fast-5.0.3-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.3-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.3-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 76461df3f613b71056d520dc6e105c662be96acd01624986e7848460676a68cd
MD5 8dc9e0b7cdb584a868af3197df1b4d77
BLAKE2b-256 15a6c5ed5e2073f084f7b51b387f57e7cad7659d208a745927d0b0fc69d1b217

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.3-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 669556c364b1b15c494f3ad6a445f7aaf30d7f148be97b3fe02198815f660f47
MD5 3213d67cedc46cbf5d261cbf999b24fd
BLAKE2b-256 1a3073e418d7086b4794da0639ec0b425ba340ef8240b2028d2ccc84079cfe0c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.3-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 5f5508c0a7ed8b1fc4bbaf133fe7caeea1b48dcc1c2f78d7059515d283114683
MD5 39374dcb456e6594418528ef740202da
BLAKE2b-256 fe9d3448bc529c56648b6be989cc8d9ee5825f7ae3f5ecf8cbe0bfaae81242c9

See more details on using hashes here.

Provenance

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