Skip to main content

A fast asyncio MySQL driver

Project description

asyncmy - A fast asyncio MySQL/MariaDB driver

image image pypi ci

Introduction

asyncmy is a fast asyncio MySQL/MariaDB driver, which reuse most of pymysql and aiomysql but rewrite core protocol with cython to speedup.

This project is a community maintained fork of https://github.com/long2ice/asyncmy.

Features

  • API compatible with aiomysql.
  • Faster by cython.
  • MySQL replication protocol support with asyncio.
  • Tested both MySQL and MariaDB in CI.

Benchmark

The result comes from benchmark.

The device is iMac Pro(2017) i9 3.6GHz 48G and MySQL version is 8.0.26.

benchmark

Conclusion

  • There is no doubt that mysqlclient is the fastest MySQL driver.
  • All kinds of drivers have a small gap except select.
  • asyncio could enhance insert.
  • asyncmy performs remarkable when compared to other drivers.

Install

uv add asyncmy2

Installing on Windows

To install asyncmy on Windows, you need to install the tools needed to build it.

  1. Download Microsoft C++ Build Tools from https://visualstudio.microsoft.com/visual-cpp-build-tools/
  2. Run CMD as Admin (not required but recommended) and navigate to the folder when your installer is downloaded
  3. Installer executable should look like this vs_buildtools__XXXXXXXXX.XXXXXXXXXX.exe, it will be easier if you rename it to just vs_buildtools.exe
  4. Run this command (Make sure you have about 5-6GB of free storage)
vs_buildtools.exe --norestart --passive --downloadThenInstall --includeRecommended --add Microsoft.VisualStudio.Workload.NativeDesktop --add Microsoft.VisualStudio.Workload.VCTools --add Microsoft.VisualStudio.Workload.MSBuildTools
  1. Wait until the installation is finished
  2. After installation will finish, restart your computer
  3. Install asyncmy via UV
uv add asyncmy2

Now you can uninstall previously installed tools.

Usage

Use connect

asyncmy provides a way to connect to MySQL database with simple factory function asyncmy.connect(). Use this function if you want just one connection to the database, consider connection pool for multiple connections.

import asyncio
import os

from asyncmy import connect
from asyncmy.cursors import DictCursor


async def run():
    conn = await connect(user=os.getenv("DB_USER"), password=os.getenv("DB_PASSWORD", ""))
    async with conn.cursor(cursor=DictCursor) as cursor:
        await cursor.execute("CREATE DATABASE IF NOT EXISTS test")
        await cursor.execute("""
            """
CREATE TABLE IF NOT EXISTS test.`asyncmy` (
    `id`       int primary key AUTO_INCREMENT,
    `decimal`  decimal(10, 2),
    `date`     date,
    `datetime` datetime,
    `float`    float,
    `string`   varchar(200),
    `tinyint`  tinyint
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci
            """.strip()
        )
    await conn.ensure_closed()


if __name__ == "__main__":
    asyncio.run(run())

Use pool

asyncmy provides connection pool as well as plain Connection objects.

import asyncmy
import asyncio


async def run():
    pool = await asyncmy.create_pool()
    async with pool.acquire() as conn:
        async with conn.cursor() as cursor:
            await cursor.execute("SELECT 1")
            ret = await cursor.fetchone()
            assert ret == (1,)
    pool.close()
    await pool.wait_closed()

if __name__ == '__main__':
    asyncio.run(run())

Replication

asyncmy supports MySQL replication protocol like python-mysql-replication, but powered by asyncio.

from asyncmy import connect
from asyncmy.replication import BinLogStream
import asyncio


async def run():
    conn = await connect()
    ctl_conn = await connect()

    stream = BinLogStream(
        conn,
        ctl_conn,
        1,
        master_log_file="binlog.000172",
        master_log_position=2235312,
        resume_stream=True,
        blocking=True,
    )
    async for event in stream:
        print(event)
    await conn.ensure_closed()
    await ctl_conn.ensure_closed()


if __name__ == '__main__':
    asyncio.run(run())

Development

MacOS

Install homebrew packages

$ brew install uv mysql-client pkg-config

ThanksTo

asyncmy is build on top of these awesome projects.

  • pymysql, a pure python MySQL client.
  • aiomysql, a library for accessing a MySQL database from the asyncio.
  • python-mysql-replication, pure Python Implementation of MySQL replication protocol build on top of PyMYSQL.

License

This project is licensed under the Apache-2.0 License.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

asyncmy2-0.2.20.tar.gz (65.0 kB view details)

Uploaded Source

Built Distributions

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

asyncmy2-0.2.20-cp314-cp314t-win_arm64.whl (1.6 MB view details)

Uploaded CPython 3.14tWindows ARM64

asyncmy2-0.2.20-cp314-cp314t-win_amd64.whl (1.7 MB view details)

Uploaded CPython 3.14tWindows x86-64

asyncmy2-0.2.20-cp314-cp314t-win32.whl (1.6 MB view details)

Uploaded CPython 3.14tWindows x86

asyncmy2-0.2.20-cp314-cp314t-musllinux_1_2_x86_64.whl (5.1 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

asyncmy2-0.2.20-cp314-cp314t-musllinux_1_2_aarch64.whl (5.1 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

asyncmy2-0.2.20-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (5.2 MB view details)

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

asyncmy2-0.2.20-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (5.4 MB view details)

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

asyncmy2-0.2.20-cp314-cp314t-macosx_11_0_arm64.whl (1.8 MB view details)

Uploaded CPython 3.14tmacOS 11.0+ ARM64

asyncmy2-0.2.20-cp314-cp314t-macosx_10_15_x86_64.whl (1.8 MB view details)

Uploaded CPython 3.14tmacOS 10.15+ x86-64

asyncmy2-0.2.20-cp314-cp314-win_arm64.whl (1.6 MB view details)

Uploaded CPython 3.14Windows ARM64

asyncmy2-0.2.20-cp314-cp314-win_amd64.whl (1.6 MB view details)

Uploaded CPython 3.14Windows x86-64

asyncmy2-0.2.20-cp314-cp314-win32.whl (1.6 MB view details)

Uploaded CPython 3.14Windows x86

asyncmy2-0.2.20-cp314-cp314-musllinux_1_2_x86_64.whl (5.1 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

asyncmy2-0.2.20-cp314-cp314-musllinux_1_2_aarch64.whl (5.0 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

asyncmy2-0.2.20-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (5.2 MB view details)

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

asyncmy2-0.2.20-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (5.2 MB view details)

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

asyncmy2-0.2.20-cp314-cp314-macosx_11_0_arm64.whl (1.7 MB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

asyncmy2-0.2.20-cp314-cp314-macosx_10_15_x86_64.whl (1.7 MB view details)

Uploaded CPython 3.14macOS 10.15+ x86-64

asyncmy2-0.2.20-cp313-cp313-win_arm64.whl (1.5 MB view details)

Uploaded CPython 3.13Windows ARM64

asyncmy2-0.2.20-cp313-cp313-win_amd64.whl (1.6 MB view details)

Uploaded CPython 3.13Windows x86-64

asyncmy2-0.2.20-cp313-cp313-win32.whl (1.6 MB view details)

Uploaded CPython 3.13Windows x86

asyncmy2-0.2.20-cp313-cp313-musllinux_1_2_x86_64.whl (5.2 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

asyncmy2-0.2.20-cp313-cp313-musllinux_1_2_aarch64.whl (5.0 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

asyncmy2-0.2.20-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (5.3 MB view details)

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

asyncmy2-0.2.20-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (5.2 MB view details)

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

asyncmy2-0.2.20-cp313-cp313-macosx_11_0_arm64.whl (1.7 MB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

asyncmy2-0.2.20-cp313-cp313-macosx_10_13_x86_64.whl (1.7 MB view details)

Uploaded CPython 3.13macOS 10.13+ x86-64

asyncmy2-0.2.20-cp312-cp312-win_arm64.whl (1.6 MB view details)

Uploaded CPython 3.12Windows ARM64

asyncmy2-0.2.20-cp312-cp312-win_amd64.whl (1.6 MB view details)

Uploaded CPython 3.12Windows x86-64

asyncmy2-0.2.20-cp312-cp312-win32.whl (1.6 MB view details)

Uploaded CPython 3.12Windows x86

asyncmy2-0.2.20-cp312-cp312-musllinux_1_2_x86_64.whl (5.2 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

asyncmy2-0.2.20-cp312-cp312-musllinux_1_2_aarch64.whl (5.1 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

asyncmy2-0.2.20-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (5.3 MB view details)

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

asyncmy2-0.2.20-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (5.3 MB view details)

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

asyncmy2-0.2.20-cp312-cp312-macosx_11_0_arm64.whl (1.7 MB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

asyncmy2-0.2.20-cp312-cp312-macosx_10_13_x86_64.whl (1.7 MB view details)

Uploaded CPython 3.12macOS 10.13+ x86-64

asyncmy2-0.2.20-cp311-cp311-win_arm64.whl (1.6 MB view details)

Uploaded CPython 3.11Windows ARM64

asyncmy2-0.2.20-cp311-cp311-win_amd64.whl (1.7 MB view details)

Uploaded CPython 3.11Windows x86-64

asyncmy2-0.2.20-cp311-cp311-win32.whl (1.6 MB view details)

Uploaded CPython 3.11Windows x86

asyncmy2-0.2.20-cp311-cp311-musllinux_1_2_x86_64.whl (5.3 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

asyncmy2-0.2.20-cp311-cp311-musllinux_1_2_aarch64.whl (5.2 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

asyncmy2-0.2.20-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (5.3 MB view details)

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

asyncmy2-0.2.20-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (5.3 MB view details)

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

asyncmy2-0.2.20-cp311-cp311-macosx_11_0_arm64.whl (1.7 MB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

asyncmy2-0.2.20-cp311-cp311-macosx_10_9_x86_64.whl (1.8 MB view details)

Uploaded CPython 3.11macOS 10.9+ x86-64

asyncmy2-0.2.20-cp310-cp310-win_arm64.whl (1.6 MB view details)

Uploaded CPython 3.10Windows ARM64

asyncmy2-0.2.20-cp310-cp310-win_amd64.whl (1.7 MB view details)

Uploaded CPython 3.10Windows x86-64

asyncmy2-0.2.20-cp310-cp310-win32.whl (1.6 MB view details)

Uploaded CPython 3.10Windows x86

asyncmy2-0.2.20-cp310-cp310-musllinux_1_2_x86_64.whl (5.0 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

asyncmy2-0.2.20-cp310-cp310-musllinux_1_2_aarch64.whl (4.9 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

asyncmy2-0.2.20-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (5.1 MB view details)

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

asyncmy2-0.2.20-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (5.1 MB view details)

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

asyncmy2-0.2.20-cp310-cp310-macosx_11_0_arm64.whl (1.7 MB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

asyncmy2-0.2.20-cp310-cp310-macosx_10_9_x86_64.whl (1.8 MB view details)

Uploaded CPython 3.10macOS 10.9+ x86-64

File details

Details for the file asyncmy2-0.2.20.tar.gz.

File metadata

  • Download URL: asyncmy2-0.2.20.tar.gz
  • Upload date:
  • Size: 65.0 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for asyncmy2-0.2.20.tar.gz
Algorithm Hash digest
SHA256 ad800c3f148ed19897e4d2238702dfc0a48e9d7c724e20d522662a3f2ca0373b
MD5 1e5ccfe9ab7b9f69f6c11eebd5d66230
BLAKE2b-256 b880afc9f68a49b0c1a9d7ee8190ece9b155858603fe35f52171ae3f6646ef3e

See more details on using hashes here.

Provenance

The following attestation bundles were made for asyncmy2-0.2.20.tar.gz:

Publisher: publish.yml on vpmedia/asyncmy2

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file asyncmy2-0.2.20-cp314-cp314t-win_arm64.whl.

File metadata

  • Download URL: asyncmy2-0.2.20-cp314-cp314t-win_arm64.whl
  • Upload date:
  • Size: 1.6 MB
  • Tags: CPython 3.14t, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for asyncmy2-0.2.20-cp314-cp314t-win_arm64.whl
Algorithm Hash digest
SHA256 abb5d73f075078fb134bda9b84d35c4834f0d0281fe4ded3f54a6e9fa37fdc4a
MD5 b2cfa9a5a7540174dad658df91588327
BLAKE2b-256 11881a91a66133b7f77a5b676c8591e6f5677021669b9afa23a06d3a6c00726e

See more details on using hashes here.

Provenance

The following attestation bundles were made for asyncmy2-0.2.20-cp314-cp314t-win_arm64.whl:

Publisher: publish.yml on vpmedia/asyncmy2

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file asyncmy2-0.2.20-cp314-cp314t-win_amd64.whl.

File metadata

  • Download URL: asyncmy2-0.2.20-cp314-cp314t-win_amd64.whl
  • Upload date:
  • Size: 1.7 MB
  • Tags: CPython 3.14t, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for asyncmy2-0.2.20-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 ea24de67076c0d698215f484207b0d90a22318b6dc7388df945d2d90bb27a2f2
MD5 69f3f247c4cb302351cdf6cc0ad66586
BLAKE2b-256 dcbe8b9c29006453024d4ea28b3bbd39689c88553cad7909a87645b6e43c9e10

See more details on using hashes here.

Provenance

The following attestation bundles were made for asyncmy2-0.2.20-cp314-cp314t-win_amd64.whl:

Publisher: publish.yml on vpmedia/asyncmy2

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file asyncmy2-0.2.20-cp314-cp314t-win32.whl.

File metadata

  • Download URL: asyncmy2-0.2.20-cp314-cp314t-win32.whl
  • Upload date:
  • Size: 1.6 MB
  • Tags: CPython 3.14t, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for asyncmy2-0.2.20-cp314-cp314t-win32.whl
Algorithm Hash digest
SHA256 9150ba92badab491ba2c57bd3b02be32c4d5afcbf4629fb44570bbdb71ff7757
MD5 aea367075f1cffe29782b6751bd23943
BLAKE2b-256 f52e558bb05b5f33147a617a5eae52306619bac72fb57c2b3d0e4d11a2657269

See more details on using hashes here.

Provenance

The following attestation bundles were made for asyncmy2-0.2.20-cp314-cp314t-win32.whl:

Publisher: publish.yml on vpmedia/asyncmy2

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file asyncmy2-0.2.20-cp314-cp314t-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for asyncmy2-0.2.20-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 04dac01675cc87798221932b926348aca6bbe54bb38d6abea59c950f972fa074
MD5 d57eaaeae414762c006ecde762fe04fa
BLAKE2b-256 67ef0f698fe3093413727b7a17d8dcebd83dcd51e8c4a329d0b14516627b5f94

See more details on using hashes here.

Provenance

The following attestation bundles were made for asyncmy2-0.2.20-cp314-cp314t-musllinux_1_2_x86_64.whl:

Publisher: publish.yml on vpmedia/asyncmy2

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file asyncmy2-0.2.20-cp314-cp314t-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for asyncmy2-0.2.20-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 8267dc756db8c260510b8f2c97577ac5ae63f7d66b3467f99548a9438b7ee931
MD5 9ad5771476a0358808933414271f73d3
BLAKE2b-256 decfdeea76efa0da82585d65c5a497a1a05277ad233c1a58a752d62b39356ad8

See more details on using hashes here.

Provenance

The following attestation bundles were made for asyncmy2-0.2.20-cp314-cp314t-musllinux_1_2_aarch64.whl:

Publisher: publish.yml on vpmedia/asyncmy2

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file asyncmy2-0.2.20-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for asyncmy2-0.2.20-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 e3a6423cca462c638dce44444f9690c17fd9fb95483983d413364db9c53244fa
MD5 7b815439c129d554dc82c1be83fb0d5b
BLAKE2b-256 c1058a9ba941069943df5660cb8fce546041cda6e74e599018d5a3c8c54fd7aa

See more details on using hashes here.

Provenance

The following attestation bundles were made for asyncmy2-0.2.20-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:

Publisher: publish.yml on vpmedia/asyncmy2

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file asyncmy2-0.2.20-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for asyncmy2-0.2.20-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 00bcb1033fc7aba50e5b9bc9f7d1072b6bea11a9422c6d2c521b2e03866f5f2e
MD5 b244eee972ab4f475e3459afa30780c2
BLAKE2b-256 8954c6434842107d626a722a623b3da8897bc4667e5668688b9f3a424278ca75

See more details on using hashes here.

Provenance

The following attestation bundles were made for asyncmy2-0.2.20-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:

Publisher: publish.yml on vpmedia/asyncmy2

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file asyncmy2-0.2.20-cp314-cp314t-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for asyncmy2-0.2.20-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 11bca3b96a5c9cfbf5da29755b827fc9bc4ad2bda17aaeab3de4fe903204ece2
MD5 0c6ad33c70df49277dc905d61629a5e6
BLAKE2b-256 ce27453ed4bc5811f348d9038438b6a6e2174fd5d3e8c4d538caa522d47c7661

See more details on using hashes here.

Provenance

The following attestation bundles were made for asyncmy2-0.2.20-cp314-cp314t-macosx_11_0_arm64.whl:

Publisher: publish.yml on vpmedia/asyncmy2

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file asyncmy2-0.2.20-cp314-cp314t-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for asyncmy2-0.2.20-cp314-cp314t-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 e69cd164e215dd824fad7a35324934b8a38a6cd914300e6d99f56948a133054c
MD5 807213d7dafb9ad1382a108611626245
BLAKE2b-256 a7e0eda405a8e543f06c7b3e16ea09966c251a890da922cbd8721d4cde5b27a7

See more details on using hashes here.

Provenance

The following attestation bundles were made for asyncmy2-0.2.20-cp314-cp314t-macosx_10_15_x86_64.whl:

Publisher: publish.yml on vpmedia/asyncmy2

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file asyncmy2-0.2.20-cp314-cp314-win_arm64.whl.

File metadata

  • Download URL: asyncmy2-0.2.20-cp314-cp314-win_arm64.whl
  • Upload date:
  • Size: 1.6 MB
  • Tags: CPython 3.14, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for asyncmy2-0.2.20-cp314-cp314-win_arm64.whl
Algorithm Hash digest
SHA256 19046e268587f3bb5a65bb24a572ee2795fabed736c34c2d83699b1b0ece59c9
MD5 0e09574982b5a39d41cfda8869570227
BLAKE2b-256 78adcc42fbc27537a70455f97a315585e605399b5da40c5efc07cf50855929c6

See more details on using hashes here.

Provenance

The following attestation bundles were made for asyncmy2-0.2.20-cp314-cp314-win_arm64.whl:

Publisher: publish.yml on vpmedia/asyncmy2

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file asyncmy2-0.2.20-cp314-cp314-win_amd64.whl.

File metadata

  • Download URL: asyncmy2-0.2.20-cp314-cp314-win_amd64.whl
  • Upload date:
  • Size: 1.6 MB
  • Tags: CPython 3.14, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for asyncmy2-0.2.20-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 b80a0b66381c05fcea5b2ff67a0132d263a0115e4c965d96a9ce4891191a487a
MD5 5ac60c4aecf5b054cef32889a14c8382
BLAKE2b-256 39bfa0749f8ef037dfcd2da08e093f9bbf8ac522fc89a0a826848f58258e4c45

See more details on using hashes here.

Provenance

The following attestation bundles were made for asyncmy2-0.2.20-cp314-cp314-win_amd64.whl:

Publisher: publish.yml on vpmedia/asyncmy2

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file asyncmy2-0.2.20-cp314-cp314-win32.whl.

File metadata

  • Download URL: asyncmy2-0.2.20-cp314-cp314-win32.whl
  • Upload date:
  • Size: 1.6 MB
  • Tags: CPython 3.14, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for asyncmy2-0.2.20-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 d31ac715dfbc5f749d94886b63ab048da0dca6578fdcd3ec5307395e9864a83a
MD5 57e9efe00071027ae089efe8a3338a5e
BLAKE2b-256 7afcbaba77ee0df76e608d2ba2fa603da882f735cc299dba88695525530b0fe2

See more details on using hashes here.

Provenance

The following attestation bundles were made for asyncmy2-0.2.20-cp314-cp314-win32.whl:

Publisher: publish.yml on vpmedia/asyncmy2

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file asyncmy2-0.2.20-cp314-cp314-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for asyncmy2-0.2.20-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 879cde2da8e0f1d7e55741fb3eb128af1b68d7cb75da8f54313268f6e62aef4a
MD5 aa25610d84e47c74f23417093466324b
BLAKE2b-256 ec1959eba1b5644c2cde5cf70afd1cb5ad960e40305371343631a238b06ec0e5

See more details on using hashes here.

Provenance

The following attestation bundles were made for asyncmy2-0.2.20-cp314-cp314-musllinux_1_2_x86_64.whl:

Publisher: publish.yml on vpmedia/asyncmy2

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file asyncmy2-0.2.20-cp314-cp314-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for asyncmy2-0.2.20-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 4c27788d18fdc8520f6d65229a456ccf080fac97aff033b1437250bdf5853a4e
MD5 bf9e3e2c862e00ecaf8809bf19aa97d3
BLAKE2b-256 16d8341272ec70c8ec559c2301936bb6efd997ffc598fd7fec3dce5aa5a20bbe

See more details on using hashes here.

Provenance

The following attestation bundles were made for asyncmy2-0.2.20-cp314-cp314-musllinux_1_2_aarch64.whl:

Publisher: publish.yml on vpmedia/asyncmy2

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file asyncmy2-0.2.20-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for asyncmy2-0.2.20-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 ba8cda183a6be40f122bcd4abd6129c9712bbf862a6457d3b7dbd58348eef613
MD5 3f7a6e5aa4641f900d5cd2bbac67e675
BLAKE2b-256 db941e2d641e0cd4ec3eab7f9d3e4b2983a6520045e2b1c65be9d3585a312649

See more details on using hashes here.

Provenance

The following attestation bundles were made for asyncmy2-0.2.20-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:

Publisher: publish.yml on vpmedia/asyncmy2

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file asyncmy2-0.2.20-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for asyncmy2-0.2.20-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 83224da4cb91dd58c024c1f319b2c096bdec23e958717b59cd9f37b74576370a
MD5 0cb02f8657a769dc78bc5e25c04140f4
BLAKE2b-256 08c867c1c56835e05ec11ae4cbf96299e6776a5af2772b2f6bb9da79ee5d71c6

See more details on using hashes here.

Provenance

The following attestation bundles were made for asyncmy2-0.2.20-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:

Publisher: publish.yml on vpmedia/asyncmy2

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file asyncmy2-0.2.20-cp314-cp314-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for asyncmy2-0.2.20-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 c336223c9e7543ffa4a9d0fd5e53121dc85c984092a8adfefc371e15729d9346
MD5 0973935f3895fda1bdeb812e069bcd6a
BLAKE2b-256 15edd2644b5d66534b35527aa4d705fee3eb84dd8c58101acdbd03ff98425980

See more details on using hashes here.

Provenance

The following attestation bundles were made for asyncmy2-0.2.20-cp314-cp314-macosx_11_0_arm64.whl:

Publisher: publish.yml on vpmedia/asyncmy2

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file asyncmy2-0.2.20-cp314-cp314-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for asyncmy2-0.2.20-cp314-cp314-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 76f5d1000dc6665213c9854dbee6ee41f00d394a8a22901a54dfbbeccb43e63c
MD5 fae014e744f9d4cfebedf1203a9f4ca6
BLAKE2b-256 806d055181b5cd723eefac98f73ca5fba80556cc3f643e3e322e47049df1a4f8

See more details on using hashes here.

Provenance

The following attestation bundles were made for asyncmy2-0.2.20-cp314-cp314-macosx_10_15_x86_64.whl:

Publisher: publish.yml on vpmedia/asyncmy2

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file asyncmy2-0.2.20-cp313-cp313-win_arm64.whl.

File metadata

  • Download URL: asyncmy2-0.2.20-cp313-cp313-win_arm64.whl
  • Upload date:
  • Size: 1.5 MB
  • Tags: CPython 3.13, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for asyncmy2-0.2.20-cp313-cp313-win_arm64.whl
Algorithm Hash digest
SHA256 05c3a2313c974612078603ca0074cd3c98b106f821b4239fb9833369147c42ef
MD5 25eb8656bd556217f51bafa3832a7599
BLAKE2b-256 7d64cd79b0ea6b09a16a5b9ddbbd3a730a895b5058b2cf69d0611003a89cbed3

See more details on using hashes here.

Provenance

The following attestation bundles were made for asyncmy2-0.2.20-cp313-cp313-win_arm64.whl:

Publisher: publish.yml on vpmedia/asyncmy2

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file asyncmy2-0.2.20-cp313-cp313-win_amd64.whl.

File metadata

  • Download URL: asyncmy2-0.2.20-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 1.6 MB
  • Tags: CPython 3.13, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for asyncmy2-0.2.20-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 2163d6741d125290efc5578bf1153039ffe06aa596cd140412ce949c424256f4
MD5 ce6908f483a888ce006c9b59cfdc3bdb
BLAKE2b-256 b3cba3c314494fec7165499c6cb5c32943183d607e06fc39d0bc99dcd9eb043e

See more details on using hashes here.

Provenance

The following attestation bundles were made for asyncmy2-0.2.20-cp313-cp313-win_amd64.whl:

Publisher: publish.yml on vpmedia/asyncmy2

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file asyncmy2-0.2.20-cp313-cp313-win32.whl.

File metadata

  • Download URL: asyncmy2-0.2.20-cp313-cp313-win32.whl
  • Upload date:
  • Size: 1.6 MB
  • Tags: CPython 3.13, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for asyncmy2-0.2.20-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 a363bdbd68734d97680d36ffe3a521510ae764c5e493dbccefc250509fcceb8c
MD5 6a781e4046d2f92c6f05c65a296936a1
BLAKE2b-256 ee52c936a6cd2761db53914b7b98096bf0e69fe1db06869478e899f8cc9f8544

See more details on using hashes here.

Provenance

The following attestation bundles were made for asyncmy2-0.2.20-cp313-cp313-win32.whl:

Publisher: publish.yml on vpmedia/asyncmy2

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file asyncmy2-0.2.20-cp313-cp313-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for asyncmy2-0.2.20-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 6537f64423ea91453d68ecbeca887d837de0a483295432ef2accac90ecadb172
MD5 62c1a03910a750a3289ea7a5f63c14c3
BLAKE2b-256 cea5de05b3d7640776ec6fc9d2860d86dd216e8a42cc7dd5457c3fa2f181501c

See more details on using hashes here.

Provenance

The following attestation bundles were made for asyncmy2-0.2.20-cp313-cp313-musllinux_1_2_x86_64.whl:

Publisher: publish.yml on vpmedia/asyncmy2

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file asyncmy2-0.2.20-cp313-cp313-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for asyncmy2-0.2.20-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 b82acffda7d86713682671dc9f5c1ba605eadc68a66a05ba1679f5662610440a
MD5 0cf795d45b148b6f2e84217faa907c99
BLAKE2b-256 456dfb9862381ae6c2ee2d32118cbae343de247beada7ff745ba6e02331fff12

See more details on using hashes here.

Provenance

The following attestation bundles were made for asyncmy2-0.2.20-cp313-cp313-musllinux_1_2_aarch64.whl:

Publisher: publish.yml on vpmedia/asyncmy2

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file asyncmy2-0.2.20-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for asyncmy2-0.2.20-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 b60f54dfa616dc63bbd72c678978a2cde3cb0578e4d86b42289f9c01e0fb8cbb
MD5 3f4f60cf4353ae8950a120f5fddb5771
BLAKE2b-256 a31a71df27602688cf3d4aab0e1e39ad8166a1b59f83b86984ad1bfbc8cb73f5

See more details on using hashes here.

Provenance

The following attestation bundles were made for asyncmy2-0.2.20-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:

Publisher: publish.yml on vpmedia/asyncmy2

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file asyncmy2-0.2.20-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for asyncmy2-0.2.20-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 6119b9c02d6300763fc4f4a963e2604805cb789287424414bb968f6d4510632e
MD5 e5603384d8c452d5d5d783b5daa602ac
BLAKE2b-256 4e22f1225a140cadd49e0e75305da5da0daf98c437196002410fcc73ba11ccb7

See more details on using hashes here.

Provenance

The following attestation bundles were made for asyncmy2-0.2.20-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:

Publisher: publish.yml on vpmedia/asyncmy2

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file asyncmy2-0.2.20-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for asyncmy2-0.2.20-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 a077648cc527420b0a5f0c5c20e7b3c9de197f8b2c932b593b000a24035c2bd8
MD5 b14866368af11fedd31bf0ee4bc8bc0d
BLAKE2b-256 fbeabf792404f1163649c4ece869430cdde428da4631818e421a3ea91dd75960

See more details on using hashes here.

Provenance

The following attestation bundles were made for asyncmy2-0.2.20-cp313-cp313-macosx_11_0_arm64.whl:

Publisher: publish.yml on vpmedia/asyncmy2

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file asyncmy2-0.2.20-cp313-cp313-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for asyncmy2-0.2.20-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 4ee7c6c50c54a64df0156e5f9c70b5d3c80132b86775ad6ccf8f1f936fec2b92
MD5 119c7fa7e34868f1325f0700cc761a47
BLAKE2b-256 4aa53eff58b2662de064ff23760077e7fa6f114c0938d3445fa02dc8f1788b05

See more details on using hashes here.

Provenance

The following attestation bundles were made for asyncmy2-0.2.20-cp313-cp313-macosx_10_13_x86_64.whl:

Publisher: publish.yml on vpmedia/asyncmy2

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file asyncmy2-0.2.20-cp312-cp312-win_arm64.whl.

File metadata

  • Download URL: asyncmy2-0.2.20-cp312-cp312-win_arm64.whl
  • Upload date:
  • Size: 1.6 MB
  • Tags: CPython 3.12, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for asyncmy2-0.2.20-cp312-cp312-win_arm64.whl
Algorithm Hash digest
SHA256 bfa747b6e4d22e29d27b497616b723e254385b5152ae962d46637af8790069c6
MD5 b28e60312170248c27f04a4fb8765208
BLAKE2b-256 f03920921be5630af2c7b6d4fad43fe5ac18e8b9ae546c5814e41710ff624fdc

See more details on using hashes here.

Provenance

The following attestation bundles were made for asyncmy2-0.2.20-cp312-cp312-win_arm64.whl:

Publisher: publish.yml on vpmedia/asyncmy2

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file asyncmy2-0.2.20-cp312-cp312-win_amd64.whl.

File metadata

  • Download URL: asyncmy2-0.2.20-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 1.6 MB
  • Tags: CPython 3.12, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for asyncmy2-0.2.20-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 407cd61e0ce39c121b6054c273cf47e015a8458ead969a90c68557a4082063ed
MD5 3686b71290a097692348e1b73b6dfafa
BLAKE2b-256 32b75836fb9efcde6cd5beca9ccfe3f18aac59c086eb20328ae6e2f699df278f

See more details on using hashes here.

Provenance

The following attestation bundles were made for asyncmy2-0.2.20-cp312-cp312-win_amd64.whl:

Publisher: publish.yml on vpmedia/asyncmy2

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file asyncmy2-0.2.20-cp312-cp312-win32.whl.

File metadata

  • Download URL: asyncmy2-0.2.20-cp312-cp312-win32.whl
  • Upload date:
  • Size: 1.6 MB
  • Tags: CPython 3.12, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for asyncmy2-0.2.20-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 07ba8a7abc4d1816310b3bec2fbe36eed8685a49729666cb6775b02ad15276cc
MD5 66d73691ce61db5360416352f850561e
BLAKE2b-256 0139c493bb7665631eb28aed100e1646a0ea7700bdf1f5d0c1690bd0ff99d73a

See more details on using hashes here.

Provenance

The following attestation bundles were made for asyncmy2-0.2.20-cp312-cp312-win32.whl:

Publisher: publish.yml on vpmedia/asyncmy2

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file asyncmy2-0.2.20-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for asyncmy2-0.2.20-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 beed5808e4612ffb9588929ca187de80e296253d922163b347a8b669247c14d3
MD5 bb3d09139ccae94bb0c4905cb2f5f490
BLAKE2b-256 f91f14e5abba082eafd538f261e4547975daf3d6824ba3160dcf17420a713009

See more details on using hashes here.

Provenance

The following attestation bundles were made for asyncmy2-0.2.20-cp312-cp312-musllinux_1_2_x86_64.whl:

Publisher: publish.yml on vpmedia/asyncmy2

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file asyncmy2-0.2.20-cp312-cp312-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for asyncmy2-0.2.20-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 519dd16cf5d47a486a447b9507daa5c289b356f7afe40475721973ccc06b5416
MD5 ab34e1e9f1e190f9333e8288a50e4ff1
BLAKE2b-256 f03d0b44ab9b5d2c21b2191b387cdf4b1cd4ac0642d4e412922bac5558be2fae

See more details on using hashes here.

Provenance

The following attestation bundles were made for asyncmy2-0.2.20-cp312-cp312-musllinux_1_2_aarch64.whl:

Publisher: publish.yml on vpmedia/asyncmy2

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file asyncmy2-0.2.20-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for asyncmy2-0.2.20-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 bd23652c77095d3fc654b84a2b37d29814139cbbe318aa92b9794f1e0e20fc97
MD5 0ab42d877805d0d1717bfc0f0af27331
BLAKE2b-256 121e83edcb1d3c935b730fdea944d7640673222c981a5ce82309322a2c10ebd2

See more details on using hashes here.

Provenance

The following attestation bundles were made for asyncmy2-0.2.20-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:

Publisher: publish.yml on vpmedia/asyncmy2

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file asyncmy2-0.2.20-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for asyncmy2-0.2.20-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 93c419defafb92d6fba14f9d9ffbee98fa1aa19686d0e51dd60ad521e6fd793c
MD5 2c2de793f3821065f930112a4f881346
BLAKE2b-256 27662c32dbd2dee033c3bf5f4118972d86e9cb6e470bea67529125009a464bf0

See more details on using hashes here.

Provenance

The following attestation bundles were made for asyncmy2-0.2.20-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:

Publisher: publish.yml on vpmedia/asyncmy2

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file asyncmy2-0.2.20-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for asyncmy2-0.2.20-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 e601383276acdc3a5deefac3a89e04cafa5b68f7bc80215dbd16c0abce8c7d72
MD5 ad69884e03742212a257076aa6d33b2b
BLAKE2b-256 85a23fee18ee6ccc87c379743501b163a42ee28437c36108f7f68972ec9f459e

See more details on using hashes here.

Provenance

The following attestation bundles were made for asyncmy2-0.2.20-cp312-cp312-macosx_11_0_arm64.whl:

Publisher: publish.yml on vpmedia/asyncmy2

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file asyncmy2-0.2.20-cp312-cp312-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for asyncmy2-0.2.20-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 3ce59d19f35b9458f1dfd5c4e7be727bbc85d87bfbf8e86c27d5c620875aaca6
MD5 d245b1fa1f8c1c81f4b998c278afbc7a
BLAKE2b-256 94c86e3c36e7468b870e68f38efb50df85e5e263b2376bb8dc70f19194c5b717

See more details on using hashes here.

Provenance

The following attestation bundles were made for asyncmy2-0.2.20-cp312-cp312-macosx_10_13_x86_64.whl:

Publisher: publish.yml on vpmedia/asyncmy2

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file asyncmy2-0.2.20-cp311-cp311-win_arm64.whl.

File metadata

  • Download URL: asyncmy2-0.2.20-cp311-cp311-win_arm64.whl
  • Upload date:
  • Size: 1.6 MB
  • Tags: CPython 3.11, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for asyncmy2-0.2.20-cp311-cp311-win_arm64.whl
Algorithm Hash digest
SHA256 3c927eb0c3bb4574cb6ec1e3db000e8cb6872bdeca9b6d942e694cc194664cbf
MD5 885d2ada86beae660568fa9411f16601
BLAKE2b-256 1b38b57132a3cb0957cd4e51289768f82d4ce7460dd80496742c5790f7ad957f

See more details on using hashes here.

Provenance

The following attestation bundles were made for asyncmy2-0.2.20-cp311-cp311-win_arm64.whl:

Publisher: publish.yml on vpmedia/asyncmy2

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file asyncmy2-0.2.20-cp311-cp311-win_amd64.whl.

File metadata

  • Download URL: asyncmy2-0.2.20-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 1.7 MB
  • Tags: CPython 3.11, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for asyncmy2-0.2.20-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 40f66e2a5d8ed00668561deac611b1f15d507d8d21808f11888d517794f62b6e
MD5 4cb2738151f350167183442d3732b899
BLAKE2b-256 9b730249d2475932e34fc998a63475d97e82e962bbb85fb01bdf667ad220b56e

See more details on using hashes here.

Provenance

The following attestation bundles were made for asyncmy2-0.2.20-cp311-cp311-win_amd64.whl:

Publisher: publish.yml on vpmedia/asyncmy2

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file asyncmy2-0.2.20-cp311-cp311-win32.whl.

File metadata

  • Download URL: asyncmy2-0.2.20-cp311-cp311-win32.whl
  • Upload date:
  • Size: 1.6 MB
  • Tags: CPython 3.11, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for asyncmy2-0.2.20-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 f6f5edc1213c22806e9babc592be1e6c89f45d1ac50226def593450132918912
MD5 ebca9e8c214bf6a031c2e0c34c706327
BLAKE2b-256 ab61a8cb8858bbc7fa90f966a71922be8e8a8e7f26a1337e4cc8f0f0088081e8

See more details on using hashes here.

Provenance

The following attestation bundles were made for asyncmy2-0.2.20-cp311-cp311-win32.whl:

Publisher: publish.yml on vpmedia/asyncmy2

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file asyncmy2-0.2.20-cp311-cp311-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for asyncmy2-0.2.20-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 10e2c06084db3f05f8409782cf6c9b4f7930402444c955f82c1e3512e2fe076e
MD5 523cac6f974fc0fb86dd9be201e46c3a
BLAKE2b-256 2a7a2830dcb609503728d27b78149ec72edd4d8d23f15359957142c4dc839ee6

See more details on using hashes here.

Provenance

The following attestation bundles were made for asyncmy2-0.2.20-cp311-cp311-musllinux_1_2_x86_64.whl:

Publisher: publish.yml on vpmedia/asyncmy2

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file asyncmy2-0.2.20-cp311-cp311-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for asyncmy2-0.2.20-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 8a9b7faa4eaf98e66a8ef177abd6e1b770d91a57cbd86420f5b8b016eb202283
MD5 250923ece8f10a4f5c226821033f96f0
BLAKE2b-256 9d254e920c0c84431501aa90baa86172e1e9b86c3a0b2b58766bff68e31b0aef

See more details on using hashes here.

Provenance

The following attestation bundles were made for asyncmy2-0.2.20-cp311-cp311-musllinux_1_2_aarch64.whl:

Publisher: publish.yml on vpmedia/asyncmy2

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file asyncmy2-0.2.20-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for asyncmy2-0.2.20-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 b6e32b09a30e27de91ac65325ca7fed20a8c01ee6a7a395df49d9ce7763c8bdf
MD5 1866f291bf94f009d6ba85e9d4aa097e
BLAKE2b-256 9956fe82b16e3bb11a0694e492b819a26c7edb937165a266eb0b2f8e7fe32980

See more details on using hashes here.

Provenance

The following attestation bundles were made for asyncmy2-0.2.20-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:

Publisher: publish.yml on vpmedia/asyncmy2

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file asyncmy2-0.2.20-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for asyncmy2-0.2.20-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 7b1c5c034f6a5a7db0f6ec7962e201edbbc65000562e0b58a975b4f98909e230
MD5 9b5ba4efcf514f41115bc85c5908a570
BLAKE2b-256 6a008d540ebd00c415740d7f6436adff5ac9556f4c9293a6054f039850aff267

See more details on using hashes here.

Provenance

The following attestation bundles were made for asyncmy2-0.2.20-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:

Publisher: publish.yml on vpmedia/asyncmy2

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file asyncmy2-0.2.20-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for asyncmy2-0.2.20-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 a60d30d4b6eb6f06b637c3da32158d5e162864d712caaf9e1bce3abdc3054c9a
MD5 e373634ef7eb336b8b84068909448e1f
BLAKE2b-256 d4b6d6636df6bb29d60070e4c3beecaf04ce40804705092d375185b62016bc06

See more details on using hashes here.

Provenance

The following attestation bundles were made for asyncmy2-0.2.20-cp311-cp311-macosx_11_0_arm64.whl:

Publisher: publish.yml on vpmedia/asyncmy2

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file asyncmy2-0.2.20-cp311-cp311-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for asyncmy2-0.2.20-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 d1cdf262cd507698a65e92b37c3e6d0e633a6101e7ba4697233f258b65630df9
MD5 ed5def84ab766dad8df96e03a4d1a3b2
BLAKE2b-256 1933ea287966eddc86e4da509dc4d0be860c5e549ca04c93de86b88fb16880b8

See more details on using hashes here.

Provenance

The following attestation bundles were made for asyncmy2-0.2.20-cp311-cp311-macosx_10_9_x86_64.whl:

Publisher: publish.yml on vpmedia/asyncmy2

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file asyncmy2-0.2.20-cp310-cp310-win_arm64.whl.

File metadata

  • Download URL: asyncmy2-0.2.20-cp310-cp310-win_arm64.whl
  • Upload date:
  • Size: 1.6 MB
  • Tags: CPython 3.10, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for asyncmy2-0.2.20-cp310-cp310-win_arm64.whl
Algorithm Hash digest
SHA256 7bde9e3ef4e72ea30480ccebd17c216d71191dea7148c7f4cae48ebe8aed2692
MD5 4c8b65bba932ef4025018c1643983485
BLAKE2b-256 1eb0d327d2cef5270b1d03e1227ae8a5c730f7d6b27d6d56add11526b2d767f7

See more details on using hashes here.

Provenance

The following attestation bundles were made for asyncmy2-0.2.20-cp310-cp310-win_arm64.whl:

Publisher: publish.yml on vpmedia/asyncmy2

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file asyncmy2-0.2.20-cp310-cp310-win_amd64.whl.

File metadata

  • Download URL: asyncmy2-0.2.20-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 1.7 MB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for asyncmy2-0.2.20-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 e2bb81c9df0c60e2d737f402281bf67e9b6613e623f2123f4d40253f73bc8211
MD5 26e205fb8743538109e7349c50295502
BLAKE2b-256 329971ca0c834035c5ad64ad83153d83903df1d994e9f337ee2bc45ad9e19ed5

See more details on using hashes here.

Provenance

The following attestation bundles were made for asyncmy2-0.2.20-cp310-cp310-win_amd64.whl:

Publisher: publish.yml on vpmedia/asyncmy2

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file asyncmy2-0.2.20-cp310-cp310-win32.whl.

File metadata

  • Download URL: asyncmy2-0.2.20-cp310-cp310-win32.whl
  • Upload date:
  • Size: 1.6 MB
  • Tags: CPython 3.10, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for asyncmy2-0.2.20-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 bd3615c6f2d7b766dda48f7b6d123f88aa0d8a317da88026fb29cee7ab6b89d7
MD5 cd437c14d81546b9935f0faf1b02fdcf
BLAKE2b-256 e7cb7741804a9a3065b537e06283f1c37d8d3bf1e9672eb60e3c4839f1838429

See more details on using hashes here.

Provenance

The following attestation bundles were made for asyncmy2-0.2.20-cp310-cp310-win32.whl:

Publisher: publish.yml on vpmedia/asyncmy2

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file asyncmy2-0.2.20-cp310-cp310-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for asyncmy2-0.2.20-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 918ea3f79b3041c9eddbfbfe9c0ae1c341503817071f0d45bfad129a34b47993
MD5 d2343860548a8cfbd27d033bd0be6746
BLAKE2b-256 26aee23a39f58addbf74cb1cf7fcf3c1a0f22fa0a030aff98660f94c60e45f12

See more details on using hashes here.

Provenance

The following attestation bundles were made for asyncmy2-0.2.20-cp310-cp310-musllinux_1_2_x86_64.whl:

Publisher: publish.yml on vpmedia/asyncmy2

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file asyncmy2-0.2.20-cp310-cp310-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for asyncmy2-0.2.20-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 cf0bc6a6ce42a317bb79af0d981dd5d8a8434a03d7c963f75eaa990cba119c85
MD5 6d3be670f3776e6d8df2152f31c36534
BLAKE2b-256 5f220535c09995bac9ceef2f806a6425cef23feb3074d36fcd8863e89c182565

See more details on using hashes here.

Provenance

The following attestation bundles were made for asyncmy2-0.2.20-cp310-cp310-musllinux_1_2_aarch64.whl:

Publisher: publish.yml on vpmedia/asyncmy2

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file asyncmy2-0.2.20-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for asyncmy2-0.2.20-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 ecdb4176bad059f889dfb675d58d3fe9ac6f8d3de3bf606999e06050e545268e
MD5 bffe010b267709405b2d28d200b5a792
BLAKE2b-256 25731906657cd886d4fa0a1e5a9dac96a2573354df9ad6c888bb55ad540411b8

See more details on using hashes here.

Provenance

The following attestation bundles were made for asyncmy2-0.2.20-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:

Publisher: publish.yml on vpmedia/asyncmy2

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file asyncmy2-0.2.20-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for asyncmy2-0.2.20-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 256cbba109061741c1dc0e62246144355566cc4fbf6be351f4f25a2b6043beac
MD5 8b18973f238752d39594344f1dfaa92f
BLAKE2b-256 e5ecef1009f292fda5c0e4a71df7049f3a5603c48c7ac7729ea4b42c2e1a2dac

See more details on using hashes here.

Provenance

The following attestation bundles were made for asyncmy2-0.2.20-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:

Publisher: publish.yml on vpmedia/asyncmy2

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file asyncmy2-0.2.20-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for asyncmy2-0.2.20-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 fbcf56114a658ad88df1402e48e7fd3e428973bc071faaa3a8d770536c06bc48
MD5 180a07abb5d69833aa2554cb288e2b9c
BLAKE2b-256 6a95eace1e05538f3e83ebbeef914b8d8b5650c99d25dc711135267733191540

See more details on using hashes here.

Provenance

The following attestation bundles were made for asyncmy2-0.2.20-cp310-cp310-macosx_11_0_arm64.whl:

Publisher: publish.yml on vpmedia/asyncmy2

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file asyncmy2-0.2.20-cp310-cp310-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for asyncmy2-0.2.20-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 86ef59478a3824f60e83a3f7f09a08d7794883d991e27525702959b9554506c4
MD5 22666853c9394d893177a24ef727df64
BLAKE2b-256 600453208d4ab11d7ba32f7e7f9ba50b7a759e48883d32da36680ce11cd72d82

See more details on using hashes here.

Provenance

The following attestation bundles were made for asyncmy2-0.2.20-cp310-cp310-macosx_10_9_x86_64.whl:

Publisher: publish.yml on vpmedia/asyncmy2

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