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

Uploaded Source

Built Distributions

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

dbus_fast-5.0.5-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.5-cp314-cp314t-musllinux_1_2_riscv64.whl (828.4 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ riscv64

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

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

dbus_fast-5.0.5-cp314-cp314t-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl (826.5 kB view details)

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

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

Uploaded CPython 3.14tmacOS 11.0+ ARM64

dbus_fast-5.0.5-cp314-cp314-musllinux_1_2_x86_64.whl (863.7 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

dbus_fast-5.0.5-cp314-cp314-musllinux_1_2_riscv64.whl (835.9 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ riscv64

dbus_fast-5.0.5-cp314-cp314-musllinux_1_2_aarch64.whl (821.4 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

dbus_fast-5.0.5-cp314-cp314-manylinux_2_41_x86_64.whl (855.2 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.41+ x86-64

dbus_fast-5.0.5-cp314-cp314-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl (835.7 kB view details)

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

dbus_fast-5.0.5-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (857.1 kB view details)

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

dbus_fast-5.0.5-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (813.6 kB view details)

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

dbus_fast-5.0.5-cp314-cp314-macosx_11_0_arm64.whl (693.3 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

dbus_fast-5.0.5-cp313-cp313-musllinux_1_2_x86_64.whl (859.6 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

dbus_fast-5.0.5-cp313-cp313-musllinux_1_2_riscv64.whl (831.0 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ riscv64

dbus_fast-5.0.5-cp313-cp313-musllinux_1_2_aarch64.whl (809.1 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

dbus_fast-5.0.5-cp313-cp313-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl (830.7 kB view details)

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

dbus_fast-5.0.5-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (851.6 kB view details)

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

dbus_fast-5.0.5-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (800.7 kB view details)

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

dbus_fast-5.0.5-cp313-cp313-macosx_11_0_arm64.whl (685.8 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

dbus_fast-5.0.5-cp312-cp312-musllinux_1_2_x86_64.whl (864.0 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

dbus_fast-5.0.5-cp312-cp312-musllinux_1_2_riscv64.whl (833.9 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ riscv64

dbus_fast-5.0.5-cp312-cp312-musllinux_1_2_aarch64.whl (809.3 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

dbus_fast-5.0.5-cp312-cp312-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl (836.6 kB view details)

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

dbus_fast-5.0.5-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (855.8 kB view details)

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

dbus_fast-5.0.5-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (801.6 kB view details)

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

dbus_fast-5.0.5-cp312-cp312-macosx_11_0_arm64.whl (690.2 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

dbus_fast-5.0.5-cp311-cp311-musllinux_1_2_x86_64.whl (889.3 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

dbus_fast-5.0.5-cp311-cp311-musllinux_1_2_riscv64.whl (883.5 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ riscv64

dbus_fast-5.0.5-cp311-cp311-musllinux_1_2_aarch64.whl (847.6 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

dbus_fast-5.0.5-cp311-cp311-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl (887.3 kB view details)

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

dbus_fast-5.0.5-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (882.9 kB view details)

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

dbus_fast-5.0.5-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (840.4 kB view details)

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

dbus_fast-5.0.5-cp311-cp311-macosx_11_0_arm64.whl (692.9 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

dbus_fast-5.0.5-cp310-cp310-musllinux_1_2_x86_64.whl (891.3 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

dbus_fast-5.0.5-cp310-cp310-musllinux_1_2_riscv64.whl (884.5 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ riscv64

dbus_fast-5.0.5-cp310-cp310-musllinux_1_2_aarch64.whl (849.4 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

dbus_fast-5.0.5-cp310-cp310-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl (887.0 kB view details)

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

dbus_fast-5.0.5-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (884.6 kB view details)

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

dbus_fast-5.0.5-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (842.4 kB view details)

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

dbus_fast-5.0.5-cp310-cp310-macosx_11_0_arm64.whl (694.5 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

dbus_fast-5.0.5-cp39-cp39-musllinux_1_2_x86_64.whl (895.8 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ x86-64

dbus_fast-5.0.5-cp39-cp39-musllinux_1_2_aarch64.whl (852.2 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

dbus_fast-5.0.5-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (888.7 kB view details)

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

dbus_fast-5.0.5-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (845.6 kB view details)

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

dbus_fast-5.0.5-cp39-cp39-macosx_11_0_arm64.whl (699.1 kB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

File details

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

File metadata

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

File hashes

Hashes for dbus_fast-5.0.5.tar.gz
Algorithm Hash digest
SHA256 22b10ddd2419d63538d1828e26c491d4153d8c5c9c24b2d3ee383cbc25a418e8
MD5 622a8224112b4328a551faa541e76076
BLAKE2b-256 075c6121e39112135171e8497a27f8fe6993bf1e525eca4e61c6ec9f78636cf1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.5-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 544ec848e42480cd22d166c306e9e9b81e574a6f77c9658b379930fce25fb5c6
MD5 3b47ce67a395f83b617f2a88cceae998
BLAKE2b-256 cdc6ec3d260d2ce7b0051a3c2574e4e4390744e7a41df6a53617c3d220671757

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.5-cp314-cp314t-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 347a51ef557686a08134c9751c5ad548ed5198aff744cf475776f5aaebdf8023
MD5 fd6ba1fe9c18f9490876256baca61bcf
BLAKE2b-256 cbb7c36e211bb17bd95881ebe82c9db4a64d0ca300fa9cf20618f19b1f0e9575

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.5-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 b25beec250e5a77db5684f0b7aa58d11d4e7b7f81defb1c9815bd34dbce54d04
MD5 a41f2322b3cf08178c4be01b3ca1031e
BLAKE2b-256 9da2931174e3ded4dd6a0e5b1055acb25a6a496a1576c0960a9c58d78450c469

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.5-cp314-cp314t-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 2333724d59ba16e424914ae48fc6a473d6928031d6cd6e8fc2c7160eadd2441e
MD5 01f1234605aee5f2d68bf64335430519
BLAKE2b-256 eadc0244648620b406e9b74ee8f282238705693cc54e4c3819e16ecbc79b121d

See more details on using hashes here.

Provenance

The following attestation bundles were made for dbus_fast-5.0.5-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.5-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.5-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 67039efef672158565cfbfb2c5ba3085355eb9f025bffcfbb1d7ad17d9644932
MD5 4556e116fbec28605385b5d48b29939a
BLAKE2b-256 14155006cab4d20de239512193c5a7200d26e24967e378aa9b90356519d6f114

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.5-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 1017c7515f6cc7f68b254ed35f20949f1daf0b6d2cd538e784f2829b5de2b4c5
MD5 f37b474034af51163ba6241985836afc
BLAKE2b-256 fadd6cdb21eb2a594df81508ccf9b72b6006ff944688a06a57511b77e2c167b9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.5-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 18bc3a7bb469ba90a74cf7e940693cbb357ee08db5699cd61d8c3f7b805e50b1
MD5 02f1168fd861b684edcb4731e82e8cf4
BLAKE2b-256 1c9a92086dcdad0f39b6049efeb13a667c8607b5e72da237820c2258c42cb234

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.5-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 2c77bf273d2737b645f64677514cd39a75dcdc1312e5321be968d174ad2071d9
MD5 c3a68c23bdfc82dacab585c6328a7b33
BLAKE2b-256 261da966078d67b4f4e5493ca64d7b54001ca7f0327bcd8f45346c4b5023375f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.5-cp314-cp314-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 55114a8a08682b5b6118a673b7316e2e798cbb1b4cfa79c2bef27c9abd859fdd
MD5 7989243bd8e7a66b7ef57b769d60fc5d
BLAKE2b-256 b3482c5f752591067daafdfd541373eaca55315c3cc1ea679a86c6cf9b9c3177

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.5-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 960fc25f1b014a635260490174a22506430d78329c670b05a29cb16f1df02e4c
MD5 c7198178b48f498b831a9a01e38b0c79
BLAKE2b-256 13f3cfa37430bcd8d66f97a7dae0b555c16b0494c66c37bae0a05bfa5054b0e3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.5-cp314-cp314-manylinux_2_41_x86_64.whl
Algorithm Hash digest
SHA256 f7dc8f978f6fb377dd12a5e4b2ff21b121d8345edaf8d89a4775d5546e1f7c70
MD5 612e46cd0b11cb379a5a5060cf97796b
BLAKE2b-256 b0f1656103930ea260374bf2798ace535657e26cd06489824dabe6f0fcebb2f6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.5-cp314-cp314-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 44c9d54bb8f74e5411e7b0cb1e825fe4af093e3fd93a7000de724f7ed9b28feb
MD5 96a0260dcda5cb4a9b96a57c82c96f91
BLAKE2b-256 05a96d5681e2ed1b537f19ba969ec10e88ba288516117cac7112d55160bc25cf

See more details on using hashes here.

Provenance

The following attestation bundles were made for dbus_fast-5.0.5-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.5-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.5-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 2985e23fd8bd4491e63d1ed3c8914e0fd6d48f54a137a6b2c4d8898edeb64a6d
MD5 07d119ed679f6a7c8a82044a2d06dab8
BLAKE2b-256 50993e3d02897c699dd03057a9b63729836c3afdabce265f8356ef0dec488fde

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.5-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 1bd45b83739a7fb03b4ade9e71224cd737de5611494c5eb754966437b89b0651
MD5 9c8e1457da7ba76c6d129b2132d1fee0
BLAKE2b-256 fb5e8cc7f178972ab6fcc3d6b7a1f6817ae614a4b6239098935c02fb3bcae147

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.5-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 abb6bef49d22891342a3f198e7ddb4e49a716bad733368e528c3d49084181de8
MD5 2129c4e20051a6492f43c117830a7b1f
BLAKE2b-256 074506b39229edcbcbe66278d4d7d565160964c7f5c63b88d79f801449e2ecb0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.5-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 56a9a3cd30d3713f3ba17116a072e11857a164fb2b5cf469d7e116be68eb36a3
MD5 f7b74917f258c778ca462c83972cedd8
BLAKE2b-256 d46c4875929e3f9162e14177076e9377370228a3cf8b25cbb62d3c7a6eae88d0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.5-cp313-cp313-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 d4facf96f2dfc05c3ecc42a54e74795dcd56a17157292fcee9f9ec95a5b4f1d2
MD5 d9e9a2b3b2170b3e6c3851b9c9e403f8
BLAKE2b-256 707415b48937cb313791aaa8c7066916abc785cd2ec1ec577c52def08d0ae921

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.5-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 2a62fc90576da2861c7bcf6947fef26a3c4c160f2279e9bbf44a8ce561e5fbcb
MD5 2f34ae1fc04a4c821930b0b3c21a9c4c
BLAKE2b-256 ce02bae82ae5c9d49b3205216a9f86778950f820fcd97db98c90ecb3c5c8d9d5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.5-cp313-cp313-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 7812c27312e35151f7654868b22f1bf0a6e1b7ba1b8f12390fe09a11fca4e90d
MD5 092fcff971645582f06910ba9a15a9ea
BLAKE2b-256 014dc2856ddd8fc40f55870db2244964ce8d7e1445877cbc4b1383b7c4050e76

See more details on using hashes here.

Provenance

The following attestation bundles were made for dbus_fast-5.0.5-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.5-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.5-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 122e05dadf455a1a7a77626afcd069f9fe4d09917e561ed4c7fd059f6447275d
MD5 ef5df4b1127534f1ac7e1ed67b5225a4
BLAKE2b-256 2b9b58cb6545e3afd420bded977dd90052dc8de7df9e1139a7905ede5dc340d2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.5-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 8c9a931246dcbd735ef04f47687cf842c16a2cf36a6da61f23ffa4a389171653
MD5 993490a7e30e57b5babaec50d3c65387
BLAKE2b-256 2e1e887493ca00c0e3851432f0abf3099cf0cbb53b4a099cc731420962854320

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.5-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 9b55fc9dcee806a6994f7fb909bc71481e5f028eae76b48b1dcf563501963a2e
MD5 3513f8faa14689c57708c091f739b027
BLAKE2b-256 caa6c09de6488951b04a42b51f8539f84f9eab04cb01d0865b51074eb9732a55

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.5-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 7d1ceb3c8e02982b49dee597dd89fd65d7c5d8d6f2b5291bc127a8f78ffea61c
MD5 e37f81c4235b698c5dcdf5ef0e54c854
BLAKE2b-256 44cfdb2738e75e7fa3d10c9fa8605c136538683e249233fe8510ec040ff88c20

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.5-cp312-cp312-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 e0d8f691aac806491f8f1a5796cefcfc9ced230fe481aca6a90757a0f0e76f4e
MD5 6adc585cdde9a88be9bf32efde2c718a
BLAKE2b-256 2a63a143b2c8526ee8d205843941ac395c54bf5fa3e6d919d887fcb2fb496100

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.5-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 dbcc2c7393b791cd81ba52c78c4e82e29e81a8e71bc8744bff25fa59c88210ac
MD5 512d312b660f3cb0bc558010c0ee8ead
BLAKE2b-256 ec46bb961c045677877c16566a40f274101e53303e5cdae4024bcffb07951140

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.5-cp312-cp312-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 2639cdfa91a7fac2fd45bb643464ca651ef29e8e0e21486c3b6520ad1f7e5432
MD5 f548d7ca241b84020004cf00d1e0c3bf
BLAKE2b-256 d5e11a9c2e9f8bda2741eb7fb1771bf56c4057ae757a2907e986217c70341ec8

See more details on using hashes here.

Provenance

The following attestation bundles were made for dbus_fast-5.0.5-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.5-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.5-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 0933dbeb648212e23e2e287b08c3819e10fd77d71717643ee9c288cf00a2ce88
MD5 a340c9a5ca362b7da76b76237f0afe0e
BLAKE2b-256 843f214c76cf728c40fc37dd303871af4017194293b872d0d7b5f3154affc419

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.5-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 120c262ee0cb2db2ab85a02f97d8409ad8c1e974e873acec7065b4be8c3ae687
MD5 cb9b623ce3aaea50bcef7b31a8624547
BLAKE2b-256 69006aa5346f9ee5b6765a9eaad3716fb4de88527769e573e79d945422c26fdf

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.5-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 c5a37aa46789d352135187866eec8b18f94e7380cc150a175e5ac3c4e6528091
MD5 085630c2e0dc783ffc4831b1aac315dd
BLAKE2b-256 157cbc166666ace4cb19f15aa81f65f5c0f46560ec57bbd0fc600ebbc2d0a3a9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.5-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 3856d62df1a953fd4151c2a7f5a72ba53064003a453b18981e1b9a3908b39582
MD5 56460e4e36a683a903f076db93db9a41
BLAKE2b-256 51d83b7314ef0d5a27ac8d9d9ed883b2699cf9e436ecc83e2a3f396e3720f8f6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.5-cp311-cp311-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 f35c619ae750fb1a2006fb22bd5df2fc2a6275fd5ee5d7e66369eed4d8cab173
MD5 a38466253094819ef86e90716577732d
BLAKE2b-256 8f72844bd4005fe22fbacffe08170ac1a9a9fe304b3e8caee03d7d3060b6c0e4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.5-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 68d21a1507fc811b593db7d130098b7adfe1454d8e2a56fcd805d96328a9648b
MD5 0a0832a2d10e6557508f2289977d9355
BLAKE2b-256 9ae4d1b885466ba20e40c739ebe3d2555ef605c75c80ba1d27bdc4bb826d190f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.5-cp311-cp311-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 a359d4ffc7ad651f8f7132f626f9b06d56239c34283d6489f1ddea95cefe2367
MD5 af7a42e7a27e58acd6aff9d27dd31ebb
BLAKE2b-256 64e0ac77c43e024adefcc151ea7fcc425e031121524fc8ac1bb722de68f608bc

See more details on using hashes here.

Provenance

The following attestation bundles were made for dbus_fast-5.0.5-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.5-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.5-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 9dd9116aa475af0dca3b8985c26a649c50e30800af172daa1c3864ca5c5c1f1e
MD5 1071300f22f614ac64124abbcafd119f
BLAKE2b-256 9da46fb80086ae168185d3a13979360774ba655bd5bcb61dc4124fc29d03597d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.5-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 733971ea4e67559be0821121c730d16f455cd9c865eb8fd0d79582ce7eaff739
MD5 c9f4e177300ce6982907e87f363f096f
BLAKE2b-256 7941876ebf6a119697b36d37882f79ef45853a2c8de549a5e3d4559f5d32c366

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.5-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 988135b8fbc1f2c3944368912f870d4632de113c72b4fd9c22c0d5a2eb2989b9
MD5 4f27f8afaf8b2303844b5b4ff6c13fae
BLAKE2b-256 e4b27cd4b401a3384383eb7e696fff71eabf00aa681de74f8c469f9755bb9280

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.5-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 5fc02a43abb7b4d8f417796254f1bc4d81dbd91e19851716f6301afc111c0a3c
MD5 339416263757e24b65ed5d1da9574da5
BLAKE2b-256 ea48d072caf7d61314beaf5cd4aaf8d426ac66fb01d7d7ef19da6779f16ff0c2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.5-cp310-cp310-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 d9d766fd3297e295a0bd24200bde229c70a2a7d0a4635a8250955f9bdad2dfa0
MD5 6f608d4d5d578e227628b31fe8dfff89
BLAKE2b-256 cc92f38202fa6d1667d1a0bb2a08381fa4e5c71007a3687b309fd805a7c555e0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.5-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 35e23ff78fb9a655ef3146f8e9f521c1080104f556d3174bcff88d0134fb59e0
MD5 51ed9d1802dcc79b05300add3a028a95
BLAKE2b-256 6437aa16c019c18ed217aaedff1929c743a18b23ab641faf07d32bdad41cec1a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.5-cp310-cp310-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 1d4f4132cee65d42d727a6ae6305012219c9068533330fdd3c5984c895807240
MD5 1462a16f9e4fc0afe2e009279386b6ee
BLAKE2b-256 d34858eaa94fa20666765421e44e68e830490f58e90eeced1f353a4545606464

See more details on using hashes here.

Provenance

The following attestation bundles were made for dbus_fast-5.0.5-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.5-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.5-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 1b165bcd6a5cced6d9a44f3193b3174eb1e8b86441c63b4cc598e745f1bf09e3
MD5 43c768b0449c3b55a4879b7c9e2fa0f1
BLAKE2b-256 6582975fb08fc1a6662786cab776603d585bac24e92bd0c50f3ed776773d9447

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.5-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 4cc9772124d75c8caa52e8f7366a7daaaaa0f995bbede7c994538f44eaf20bcd
MD5 ec95816b2024f8bd88f2b653d55fd76c
BLAKE2b-256 0df7066d9cabd05dbbefd895abfd62704086b49ee5204e3519a2be5a8c0876c9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.5-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 6468385e5fb37f8846ea5f707128c633d6013a031c5d8fc3ab230b1405f1ab5c
MD5 6b9a895b66527a5ca73bf08c9b795b9e
BLAKE2b-256 86c4182e7da26eb66d94acdc67eea3ac0623ea69729d39c2973e43fc99e46cf2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.5-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 2a8c8a55f08bf32ea0dad5f284a9b75b58fc372c61c6f13f02862f5374d649a3
MD5 71e4c86f85a4e5dfc2b71e6909014a9d
BLAKE2b-256 521b56edd6b15446c3114f6dc269b2463a1a30207895d82803500ba0a036c8a8

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.5-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 3e54e81b2631c0c9fe13bf2acbb6d23b454c95ce9ab93f040cb2ff407032a9e4
MD5 f245ecf3054cdfb394cb8956930a5d74
BLAKE2b-256 b5cad9d9a0b4fe169a3c42ca33287d99f48db2d2d13b4f82e43052419eb3fd0c

See more details on using hashes here.

Provenance

The following attestation bundles were made for dbus_fast-5.0.5-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.5-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.5-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 03dcfb9553aa31c6c8677b671f0bdd5df196c1a12c25d20ce365cb5ceeb824f5
MD5 2e5355a0a2c6095eccfeddc0bdc3ea30
BLAKE2b-256 f897c9d2e6667ffe8deadd10ef45dbed8930b7df46cc8327380a12a92f3355b5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.5-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 45f1830e1efb72ebef76f73228883bfbbdc74fcb1916b9102bca31b281f3b359
MD5 d917f29bcb42756dc6d939dfc82968b4
BLAKE2b-256 9ee9d0305ef15f46e00b804d6e6b70015a92d5bb923c038fb15d66e5eeec4dc6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.5-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 f8ac8841f0f37e34f908e296af5783f3fe409789368711f4ac74d1840d6f6151
MD5 67c9712ead11c1eddf76cd71d0ebcd09
BLAKE2b-256 56728d7b67144b2300b069fa317249065dc161849106fcb6b07133321038bdcb

See more details on using hashes here.

Provenance

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