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.12.tar.gz (82.0 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.12-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.12-cp314-cp314t-musllinux_1_2_riscv64.whl (821.6 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ riscv64

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

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

dbus_fast-5.0.12-cp314-cp314t-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl (820.5 kB view details)

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

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

Uploaded CPython 3.14tmacOS 11.0+ ARM64

dbus_fast-5.0.12-cp314-cp314-musllinux_1_2_x86_64.whl (858.6 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

dbus_fast-5.0.12-cp314-cp314-musllinux_1_2_riscv64.whl (831.6 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ riscv64

dbus_fast-5.0.12-cp314-cp314-musllinux_1_2_aarch64.whl (816.0 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

dbus_fast-5.0.12-cp314-cp314-manylinux_2_41_x86_64.whl (850.1 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.41+ x86-64

dbus_fast-5.0.12-cp314-cp314-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl (831.5 kB view details)

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

dbus_fast-5.0.12-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (851.9 kB view details)

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

dbus_fast-5.0.12-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (808.7 kB view details)

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

dbus_fast-5.0.12-cp314-cp314-macosx_11_0_arm64.whl (690.7 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

dbus_fast-5.0.12-cp313-cp313-musllinux_1_2_x86_64.whl (853.9 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

dbus_fast-5.0.12-cp313-cp313-musllinux_1_2_riscv64.whl (826.4 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ riscv64

dbus_fast-5.0.12-cp313-cp313-musllinux_1_2_aarch64.whl (803.8 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

dbus_fast-5.0.12-cp313-cp313-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl (826.3 kB view details)

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

dbus_fast-5.0.12-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (846.4 kB view details)

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

dbus_fast-5.0.12-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (795.9 kB view details)

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

dbus_fast-5.0.12-cp313-cp313-macosx_11_0_arm64.whl (683.5 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

dbus_fast-5.0.12-cp312-cp312-musllinux_1_2_x86_64.whl (857.5 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

dbus_fast-5.0.12-cp312-cp312-musllinux_1_2_riscv64.whl (828.3 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ riscv64

dbus_fast-5.0.12-cp312-cp312-musllinux_1_2_aarch64.whl (804.4 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

dbus_fast-5.0.12-cp312-cp312-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl (831.1 kB view details)

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

dbus_fast-5.0.12-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (850.0 kB view details)

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

dbus_fast-5.0.12-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (796.6 kB view details)

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

dbus_fast-5.0.12-cp312-cp312-macosx_11_0_arm64.whl (687.9 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

dbus_fast-5.0.12-cp311-cp311-musllinux_1_2_x86_64.whl (886.9 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

dbus_fast-5.0.12-cp311-cp311-musllinux_1_2_riscv64.whl (879.1 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ riscv64

dbus_fast-5.0.12-cp311-cp311-musllinux_1_2_aarch64.whl (843.0 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

dbus_fast-5.0.12-cp311-cp311-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl (883.0 kB view details)

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

dbus_fast-5.0.12-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (879.5 kB view details)

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

dbus_fast-5.0.12-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (835.4 kB view details)

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

dbus_fast-5.0.12-cp311-cp311-macosx_11_0_arm64.whl (690.2 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

dbus_fast-5.0.12-cp310-cp310-musllinux_1_2_x86_64.whl (888.1 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

dbus_fast-5.0.12-cp310-cp310-musllinux_1_2_riscv64.whl (880.4 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ riscv64

dbus_fast-5.0.12-cp310-cp310-musllinux_1_2_aarch64.whl (844.7 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

dbus_fast-5.0.12-cp310-cp310-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl (882.8 kB view details)

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

dbus_fast-5.0.12-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (881.2 kB view details)

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

dbus_fast-5.0.12-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (837.2 kB view details)

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

dbus_fast-5.0.12-cp310-cp310-macosx_11_0_arm64.whl (691.9 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

dbus_fast-5.0.12-cp39-cp39-musllinux_1_2_x86_64.whl (892.7 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ x86-64

dbus_fast-5.0.12-cp39-cp39-musllinux_1_2_aarch64.whl (848.1 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

dbus_fast-5.0.12-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (885.4 kB view details)

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

dbus_fast-5.0.12-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (840.5 kB view details)

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

dbus_fast-5.0.12-cp39-cp39-macosx_11_0_arm64.whl (695.9 kB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

File details

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

File metadata

  • Download URL: dbus_fast-5.0.12.tar.gz
  • Upload date:
  • Size: 82.0 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.12.tar.gz
Algorithm Hash digest
SHA256 df170b82ef6832af64084d0f830b0ec21940b7faa4ff2b034e6561d441eb758c
MD5 701aa26a4f82f4d43f834a14c4df9ac5
BLAKE2b-256 5e51fc4790e7632f04fa5da1b7ff23b8be07350976779be53c52e0092ae14011

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.12-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 86bc6bf510fe25ed52b110d1fd181f4c75909f54c81a7c7286b6eb7b37f7fba4
MD5 f64254aa0b25f70c10699919d581828a
BLAKE2b-256 c25800db77f66826c47679ed3e8dd615db3623387eee289b414e917bbc7ce96f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.12-cp314-cp314t-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 2075dd7c23cb37436bf09d0993d419bd15e5c15bd973afb588127194132c31f1
MD5 ad0244b561ba39a258eea6680d9ec2c2
BLAKE2b-256 a371a8502a601ad55e27285b204aaee3db40d48f286d718cd93ba768410d0da6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.12-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 480e5693e5ee07e426706fb1eea5023c225c3a4ece946f6704765ffac61f7e3e
MD5 679a0fd64cd575a97cc756d37e8d1b7d
BLAKE2b-256 e6a031ded20ca2427a8bf57122610e2e1af3c510d917c11e218a76875ba5af3a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.12-cp314-cp314t-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 d58e27193e95533b6028118afc40b002d50415dcc598403a979526b58b03b7a0
MD5 8ddee8774f721b78f1288ec69d8e41be
BLAKE2b-256 c7012d194fce1e3d2e119a790160d2bfbf702d586dcc64b45d4f14e35a96bc6c

See more details on using hashes here.

Provenance

The following attestation bundles were made for dbus_fast-5.0.12-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.12-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.12-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 f1652d0f65e09731ec4274917b280113f3cdc2030681240dccf290dd7f5fcbd7
MD5 46110618ef40eab2b3d2a645d684d974
BLAKE2b-256 f57a31f38edcd22894907d65ce98703461d58465693fa7678bc0bc7aa7cacb72

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.12-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 fcf0f0d2f6f3c8aa7da84be374a56a2ccce84bb451d9311a3715b493b0f6118b
MD5 e73c5c614c295de33be739987243a6c8
BLAKE2b-256 51e672583cb8a9f9be7e8297e008b7f274aca5bfb69315fee8a76179113b81c0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.12-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 6a782472e890846d451d885fa0920ca830cf780335d0821b981178c02a1b0296
MD5 ca9f2a6b8455a6119987ea2853dd5b57
BLAKE2b-256 9f8082d9debe29ada21500d0fd08bd41eea95d446bd27e14241184bdf3c00282

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.12-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 0db38c17e35770be10a59bba5d3e72066729f30881f9f4a950e325d0e5a3baa0
MD5 fa76dd6b899bd09329a11ac0d5c5dd17
BLAKE2b-256 4e56c4d8e33b3de07e9374ca97dd76084804245873db55898db4a080286bc2a7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.12-cp314-cp314-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 6a5ff2d597d7df678d754f0602a9598cde19b5170668df21f93e2a44c6a7ec8e
MD5 d47b79dddfb885801a7746ada080e91e
BLAKE2b-256 55c16b5447af47e37860f5a72c3a28a2e712711994e7b24d9d97ad11b41f054e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.12-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 fe04fdf789ca2e8209dc774548f20739693c6b7e94bdabe2af9443d29fdde29b
MD5 ccb707336c184d3d242a958ed4bdc2d2
BLAKE2b-256 1e8fb4a4d753f81c4b871ab0ec57145350f3b0f77df9f1df58367d2f1db50c3d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.12-cp314-cp314-manylinux_2_41_x86_64.whl
Algorithm Hash digest
SHA256 bb49e0d5a68e7b01147bf99d3ce26c8b287452dba1b5ff8da93f986f54fe2f69
MD5 0f26875ebd722e12e4085c13c92c1767
BLAKE2b-256 39316b04516a904f2aedf79e0f36d08780723d7dccd2e32b3f883e8c1a47d182

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.12-cp314-cp314-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 14e496ac3adfcba5d9f4e13a8b5afdd100988445da18af9ccc0a8bb4c6ca34ea
MD5 56e890c509e5133f0a9a07743e5c99b9
BLAKE2b-256 fd29e3e21bd2a93dbc090a06c940c0090d1d0e4f5be32ad2819cb472d296c5d6

See more details on using hashes here.

Provenance

The following attestation bundles were made for dbus_fast-5.0.12-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.12-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.12-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 589cc7f322f369ab7d7ad1fef91db659c60a43bd31614592e63631a94716fd3e
MD5 0fde2824c54016ff308827d612869e59
BLAKE2b-256 db2370c836bcb1df2633ab8c0086ecd08336a1458cbfbe7890d724c16d994b52

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.12-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 d204e3200f050ab03f95f00f5be2d8dc7781182632fd4bd8a5300f486faf676c
MD5 068bf34b42e6e63b06dc6f29ca77acfa
BLAKE2b-256 2473b57eb32a210ee36647f23959027e154624a67d12d541932f26076d1e8e2e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.12-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 9897b1b181e96d886c819265590b6fe167a6d98070deedc012480b74b453e9f5
MD5 9e77c65de827efd4981353fc76ac816d
BLAKE2b-256 5adac550d6edfa962f3d699055c3573ef8879083b3a398e0accbaca6ca876b72

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.12-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 399f894fba89dfc33274e0cc8c1151421298e011b3044d679e718c6639c551e4
MD5 925f6d6d26979be6d622d6e60d1eceb4
BLAKE2b-256 7f575e8b6008e8a671cce54bca0c0d560fd2d4610e3efeb920adda13e60bce1b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.12-cp313-cp313-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 8317e5dc365cbf3bae19be8de1d88affa416ddefe3a34e748d2787945306e422
MD5 e9c94cad3c5cf5c8e97823267e3169e3
BLAKE2b-256 107485f2d8f50c6925eec7399d721023fcdc701dceca77a8851ca9e934fff91e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.12-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 51475118b5ddfedc14df2dba5fc4d9785491fd52f1e2747f9d1ea1a9103e7233
MD5 ce1c9ba53d90c41622e1741f1385224c
BLAKE2b-256 8df15fe942bb834f51bfe9399f2aae6ebcb93e41492702f7693ac5b0abab1d51

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.12-cp313-cp313-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 4a179008f7ab421f610e16c8c10352121454799d75b88f2ab43b0450ceb45e07
MD5 dc897f675bd27ea4d1a12230236c0fa2
BLAKE2b-256 a92099e4e866c06669d4a46745b6993e7ffcf5e47e83984c99456e274f945957

See more details on using hashes here.

Provenance

The following attestation bundles were made for dbus_fast-5.0.12-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.12-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.12-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 a6bc2752251e5f3ffbd1688bc251bef3f6f5f1efa6a47e9b8b452740a410e796
MD5 3f0b03936afbc0308a1954a69f8d07d1
BLAKE2b-256 3837713e06d6e6719a1c88792147a6f77b52fbb123fe139c6de248c8ea4261cc

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.12-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 e5d6941a62f657f8bb3983dc8d6b6c2c09789471213c2bc12366e132d0f4cbf2
MD5 935074f6df7f57d2c303c82cd4f5eeda
BLAKE2b-256 462b5f6ecb02ee522361bd14b063ff217b566a28303eda686ff23700d3f24f33

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.12-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 7ee2139412f7557e59a5f5d6fd458ade7593971dbee68ff5c3c16ba9305bc806
MD5 185a1744372de17e5a8d0fe2368c4511
BLAKE2b-256 24bd6783399b12b0cf46cb99b2b5d8908f82ce804792bcd3e9a495bd872c69e8

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.12-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 91afc6784047627a032c27c44d28642cefa4458cce8d7cea1094264fb3002539
MD5 8c4594381ac2afc13a458ed7efad6d41
BLAKE2b-256 df2816375da9274e52ccc270b46342f21c6e54d650a346d4480251e8e5d09776

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.12-cp312-cp312-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 dcdc274eb484e5d152f6e1d6a3fdd8e7ed05236bcc519c82a8e001993d3584c7
MD5 fc969b59cb41c5b9dd5b4271775560e5
BLAKE2b-256 0b3b059f878ab19169c8cff200c4275196fbcaac7fc698beddb06ba60f373ab0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.12-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 476221d275b0ac4ecd6b2e1845aac382a1bc207c6f79da4e35de0bb988df33a7
MD5 1aced493c7ff11e9943112b3366a1613
BLAKE2b-256 a2e2f703903ec652ed07e72288af756fd2bd059d05cc16b8fae3f6339f6ca301

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.12-cp312-cp312-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 31d0392df635864d79c0914d8381de9099ac2b925a4d4f747e3ac581583f128e
MD5 3f222a3b7dd639dcd94fa386304d966a
BLAKE2b-256 fb168adb955e89647c9f1185c7821e8601b99cad3a3f1d22c53eb8c3bcef2c80

See more details on using hashes here.

Provenance

The following attestation bundles were made for dbus_fast-5.0.12-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.12-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.12-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 814aa6ca8630f9bd1672a182de04d9aff37c716dba5ece32f7c814a9a018b8fe
MD5 f5da5446fc937957842e2712ed30f3b9
BLAKE2b-256 5e7a780cf6f52080221473ea1a7877404aa09cf8e2d137045add66f735c02b6f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.12-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 b767e8564a97f3ef5267cce11c37f18d886f6c59189a11eafdfd39e3fabf5dfc
MD5 f98b182fefaea898ce4cec96d3687938
BLAKE2b-256 47607322e1ea3a8b427f9a01881a5c3eb526a5b45f988a4cf18617e1f5e62cfc

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.12-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 ec39df3d4220288dc628284b011be8e354062efe023a278acca5ec44ff6a3e3e
MD5 8a1b23d5c175201ab0b1dbaeaf2e509a
BLAKE2b-256 890f4f8c80d61082ea12a403ace33aaba9c98cf1da89bf848dc4b1f60964d93d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.12-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 3dadc464de0f31a9cfa4ab2c74a021c185e20d4e35003d4ec0417023f0f57d56
MD5 e5391305b60179ce1a17cb89089434c6
BLAKE2b-256 c5e85840bb1ab5fa7d759562924b4677b6cbffe5fe959613fd8f8cf28a243571

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.12-cp311-cp311-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 70725744019c4d1b385a8a99f72d544e14724d9282d31bf38b8f9a7008d0a5e2
MD5 ef72f37cc5a3fcddd41e07dd399893c9
BLAKE2b-256 95170ef987955390aa72423936fa8230a4e3b17a3e60139a407367f8003af256

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.12-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 18c24539ed9874e6309c8d372857a1fb27cea222b97c3ce4ba0960f55679558f
MD5 aae03e006d74b1def37522a3dd910444
BLAKE2b-256 b0a38ef601a38c35742c57dd7e4cad165d14ef895e454d018f5a0932c85d8010

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.12-cp311-cp311-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 96284c553c0f2d6306259739235b4104a01fc4fa75fb13527dba62d3a6023369
MD5 21891d9d6f8ee8e971d75defd6490fad
BLAKE2b-256 cd085345914b9e0766885539f3a227197056cc8308398e94253fae76271fe0cf

See more details on using hashes here.

Provenance

The following attestation bundles were made for dbus_fast-5.0.12-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.12-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.12-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 efdf4cf8cee91dc33ca09d0c15ae7d9c5cb73ff7fd432dc4eb69b0a72c39a318
MD5 7ece99e3534d6c28961303c470f9ad74
BLAKE2b-256 9678c0acbc34dd4c0bf2338b2c7ae140989f6a8a012b58c3d0b56ed1025aeefb

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.12-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 9b7f3ae6c6aa0f73d7884af788d8cb61af600e8f83961fba90e92647b4e44b4a
MD5 ea2887efd78a9272363aa9c41817a913
BLAKE2b-256 86725c1300bec650af5117d772bb63afdb3fbc44afc8afb92c5024e35e924ced

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.12-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 610940c949484ef9fcbcb1d8a071d1e27675ea07a4a3fde30de1637fb2fd0aa6
MD5 8f82b610a8d164d151e52c54fbe9e0ae
BLAKE2b-256 72fe2005761a1dc5803f5ddcef226af150131628b96ca9b6ba80b3cf9a2cac4f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.12-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 00012ece057d590850dc0c80d0599785c181cb51e5a70018cf0e79221d313dab
MD5 000c4eca394059f9716a7027bcc66079
BLAKE2b-256 51aeefdc87a371bf3e5b26eecca321386de79dfb3d6217e57640d959247d1e2f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.12-cp310-cp310-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 244b83ef88560737604162d3f3f9e025e2cd40b1a23e743b9df45e39681961df
MD5 5d581ef5e0f4ef466b5e18a470b5b738
BLAKE2b-256 fc27f427bcf3640d24e8d1ab6630416dd04a5cee143624b92fa39bb7d09a6ab9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.12-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 af465a22f64b770bf4db9354e341d7709cea1d136bd1ea86f2c127a16338d227
MD5 82460b4d48c76b0db11528be8c5bedf9
BLAKE2b-256 1e440820dd54f2af4cb94f3ff17fb7aadae8a83017de5cffc03624886a297ac7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.12-cp310-cp310-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 5508dcec747755e60a8f8f8ffe9765d2e6db08d27951fd036aa51fe610f0bca4
MD5 e9ee6a1212d7236f5ea5e17e22db8e29
BLAKE2b-256 a9099249a1478eb112dc0af6e19ab428c396916601aa14bf277484ac81cbecd3

See more details on using hashes here.

Provenance

The following attestation bundles were made for dbus_fast-5.0.12-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.12-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.12-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 f91637595e3d1a4c6b93628bcdd223d0e46940e5115e7d71c356d4e3bee51998
MD5 2a2a783ad5c9352f43fe4f05d298f9bb
BLAKE2b-256 1e3d1476d56921d0948bb69747b64e3f4dcd28a2a29823c71b28c94c27d42485

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.12-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 8351a91eff6fbb1b5975a5d4477a8527de4618151fe5503b7bef777d208ac0b7
MD5 1a555a29aebca4f0851a4f459b44d05f
BLAKE2b-256 a3ef319fc6172a0081be449d1eca8648ebc6c8f31d55c356dc703a45c8567301

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.12-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 49d5d4ebeb270e6bbf81a66abafba62558269f8b87217aa4b2da05f116e8bc2f
MD5 041f23207bce8b536ea674bfdb9d1262
BLAKE2b-256 64d3600e441e2df94ca7fa79c2dd0050244e75b0acce9347f5eee0891b03c110

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.12-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 43cd73a15264bdbd9e5a426c2e98fabf4d9fff6de719d74117bb2a4788524337
MD5 2fc9048e6484092ef362ad7311a38089
BLAKE2b-256 c6af00d889c5534773b3b3f367aa388016ac0be761e02cd9957fb1cf97ed38f8

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.12-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 e0774262f8ad3bdc27c7d6b76e0752240b09143af4ff66a14467ab2b838ad1a5
MD5 5866f6fb1f2e320e071dce049d7a1a88
BLAKE2b-256 2fa9387e9394fdf9e3d2347ea49b0b14ac568bf8b2d5d038875e73642d996374

See more details on using hashes here.

Provenance

The following attestation bundles were made for dbus_fast-5.0.12-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.12-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.12-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 469332caa2dbcb74eac20caf9e3d638c739c053f7a888afc7ffe3227afee2fcf
MD5 ca8f9c49def12c9d08d5d1265489a600
BLAKE2b-256 cd1aa3b08ac5034b4f2e7941eede9dbc94047396171948fd24a0e8206a373af6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.12-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 c9ad924ec31104e2e93397ffdfe78a017e3647901f0ec2534134b2fea7844494
MD5 9b7642cc7ac1362c0b52fef96fcf101c
BLAKE2b-256 8faf75efda9b4fb03ff4466fc25e5d7a116374acd08584599ed47e4cb2e2e539

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dbus_fast-5.0.12-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 f2796a7ee3cd7ddc27ef9c6846013bebc0a0b389379eb34860b8d358673a7227
MD5 295736be2ec48ae2b41b4dac35cbf33d
BLAKE2b-256 48e8021376b69553c76a4dd8e30efd2778eb49b0e3603c8c0b8adcd21e8eafb8

See more details on using hashes here.

Provenance

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