Skip to main content

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.

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.21.tar.gz (65.9 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.21-cp314-cp314t-win_arm64.whl (1.6 MB view details)

Uploaded CPython 3.14tWindows ARM64

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

Uploaded CPython 3.14tWindows x86-64

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

Uploaded CPython 3.14tWindows x86

asyncmy2-0.2.21-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.21-cp314-cp314t-musllinux_1_2_aarch64.whl (5.2 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

asyncmy2-0.2.21-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.21-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.21-cp314-cp314t-macosx_11_0_arm64.whl (1.8 MB view details)

Uploaded CPython 3.14tmacOS 11.0+ ARM64

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

Uploaded CPython 3.14tmacOS 10.15+ x86-64

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

Uploaded CPython 3.14Windows ARM64

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

Uploaded CPython 3.14Windows x86-64

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

Uploaded CPython 3.14Windows x86

asyncmy2-0.2.21-cp314-cp314-musllinux_1_2_x86_64.whl (5.2 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

asyncmy2-0.2.21-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (5.3 MB view details)

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

asyncmy2-0.2.21-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (5.3 MB view details)

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

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

Uploaded CPython 3.14macOS 11.0+ ARM64

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

Uploaded CPython 3.14macOS 10.15+ x86-64

asyncmy2-0.2.21-cp313-cp313-win_arm64.whl (1.6 MB view details)

Uploaded CPython 3.13Windows ARM64

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

Uploaded CPython 3.13Windows x86-64

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

Uploaded CPython 3.13Windows x86

asyncmy2-0.2.21-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.21-cp313-cp313-musllinux_1_2_aarch64.whl (5.1 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

asyncmy2-0.2.21-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.21-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (5.3 MB view details)

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

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

Uploaded CPython 3.13macOS 11.0+ ARM64

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

Uploaded CPython 3.13macOS 10.13+ x86-64

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

Uploaded CPython 3.12Windows ARM64

asyncmy2-0.2.21-cp312-cp312-win_amd64.whl (1.7 MB view details)

Uploaded CPython 3.12Windows x86-64

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

Uploaded CPython 3.12Windows x86

asyncmy2-0.2.21-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.21-cp312-cp312-musllinux_1_2_aarch64.whl (5.1 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

asyncmy2-0.2.21-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (5.4 MB view details)

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

asyncmy2-0.2.21-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.21-cp312-cp312-macosx_11_0_arm64.whl (1.7 MB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

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

Uploaded CPython 3.12macOS 10.13+ x86-64

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

Uploaded CPython 3.11Windows ARM64

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

Uploaded CPython 3.11Windows x86-64

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

Uploaded CPython 3.11Windows x86

asyncmy2-0.2.21-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.21-cp311-cp311-musllinux_1_2_aarch64.whl (5.2 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

asyncmy2-0.2.21-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (5.4 MB view details)

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

asyncmy2-0.2.21-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (5.4 MB view details)

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

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

Uploaded CPython 3.11macOS 11.0+ ARM64

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

Uploaded CPython 3.11macOS 10.9+ x86-64

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

Uploaded CPython 3.10Windows ARM64

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

Uploaded CPython 3.10Windows x86-64

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

Uploaded CPython 3.10Windows x86

asyncmy2-0.2.21-cp310-cp310-musllinux_1_2_x86_64.whl (5.1 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

asyncmy2-0.2.21-cp310-cp310-musllinux_1_2_aarch64.whl (5.0 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

asyncmy2-0.2.21-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (5.2 MB view details)

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

asyncmy2-0.2.21-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (5.2 MB view details)

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

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

Uploaded CPython 3.10macOS 11.0+ ARM64

asyncmy2-0.2.21-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.21.tar.gz.

File metadata

  • Download URL: asyncmy2-0.2.21.tar.gz
  • Upload date:
  • Size: 65.9 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for asyncmy2-0.2.21.tar.gz
Algorithm Hash digest
SHA256 3498eeec623c0bb9ad30bd41e8d9be6c2a3620c30ab69ddcd8ea4cfdc573b0c3
MD5 c95c4d1e1e00fa2dabd671d8b7b6b965
BLAKE2b-256 8048278ce5269841b2704835f3ad99f1bd1a01cb90258710daea735f54d51b98

See more details on using hashes here.

Provenance

The following attestation bundles were made for asyncmy2-0.2.21.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.21-cp314-cp314t-win_arm64.whl.

File metadata

  • Download URL: asyncmy2-0.2.21-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/7.0.0 CPython/3.13.14

File hashes

Hashes for asyncmy2-0.2.21-cp314-cp314t-win_arm64.whl
Algorithm Hash digest
SHA256 78fc2987d3ac7408771b7141e87ed0a0f3f754eff7d6959e96fa55dd44245e2c
MD5 efd96e7add16e991d47e4eab65feec40
BLAKE2b-256 49f86c3c3128078d8fbc02ab919f110e57f10da6cd83f77435f8d696030d8a8b

See more details on using hashes here.

Provenance

The following attestation bundles were made for asyncmy2-0.2.21-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.21-cp314-cp314t-win_amd64.whl.

File metadata

  • Download URL: asyncmy2-0.2.21-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/7.0.0 CPython/3.13.14

File hashes

Hashes for asyncmy2-0.2.21-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 fb1326cc777647f6d2acba16936af93eec344e2c1a3b939e1b5a618297717541
MD5 a97fa736436085f0b87e0ee181533747
BLAKE2b-256 c074df6bad7f8d4afce11dca8828c168eadd760324c94a636cc968f555073e71

See more details on using hashes here.

Provenance

The following attestation bundles were made for asyncmy2-0.2.21-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.21-cp314-cp314t-win32.whl.

File metadata

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

File hashes

Hashes for asyncmy2-0.2.21-cp314-cp314t-win32.whl
Algorithm Hash digest
SHA256 6a795d54e767065252fe9acd4948ddea12f708723075512673a08c1f8571e4f9
MD5 7ed436a92ca009188267d86c15b44dc0
BLAKE2b-256 d06916648c26de843de95a601d971e16786620ed47f564feb61dd876bbfdeefd

See more details on using hashes here.

Provenance

The following attestation bundles were made for asyncmy2-0.2.21-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.21-cp314-cp314t-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for asyncmy2-0.2.21-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 f49774451e55533a6cc3e5acd5b2400efa350108f482a6367a19c98e1be6ce5a
MD5 3ab17f9ab0765e696511c0a92f5389a6
BLAKE2b-256 0b976b0e2c0d98782ea9484cf7437746122ec370d02bbac6ab9f0442e7dbd397

See more details on using hashes here.

Provenance

The following attestation bundles were made for asyncmy2-0.2.21-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.21-cp314-cp314t-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for asyncmy2-0.2.21-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 cb6cb3ad7e98d0a33ecdb92d3fd92a3eac9dc80bb0d7b441317b78409531a64f
MD5 61ab7d6fea91ead77432967a6fae5420
BLAKE2b-256 8ed4e325adeb039bab765ec3f5436e1b3d597e5eed97e2b91a7b350ea52905d2

See more details on using hashes here.

Provenance

The following attestation bundles were made for asyncmy2-0.2.21-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.21-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.21-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 3eaadcfe53b04f79f0fbc0b712214fc5af2b7f3895d9bb9c02e551f0a87a22cb
MD5 749192ba913ace72ede5d1b9ea37ac08
BLAKE2b-256 ff53b2774a0e1c17234661738748487032555428feb39c009a7be79fceb46e12

See more details on using hashes here.

Provenance

The following attestation bundles were made for asyncmy2-0.2.21-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.21-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for asyncmy2-0.2.21-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 8f4222a73b77d8cc0d9275db3ce449953ed25f6494d1ab62945b3170bd0efe12
MD5 d80a5fd39f58f9e94e411f972bc403a8
BLAKE2b-256 785908b626da0841899b59f7aba845ae1ac2c5c02bee67c2bfc24c487e2cb437

See more details on using hashes here.

Provenance

The following attestation bundles were made for asyncmy2-0.2.21-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.21-cp314-cp314t-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for asyncmy2-0.2.21-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 7f40f63ab6d815e4c0e5673c6738b58794cfc216e6e86b094d7f7e19f94ae616
MD5 e92687396e69d8b050e6152448c760ee
BLAKE2b-256 379f0d2d803558464ac9524c4c5497778e9e658d841e19a7200014acb53f43fc

See more details on using hashes here.

Provenance

The following attestation bundles were made for asyncmy2-0.2.21-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.21-cp314-cp314t-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for asyncmy2-0.2.21-cp314-cp314t-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 60b80667af53f655cafd22f8d2b8e0d287d4c7624332c4b36c7eca7061c0b3ef
MD5 7dd405ab871a011752ffa8a0b2bc77e6
BLAKE2b-256 c8ffddbf40791b985c8c1be3d78ba8bf4587dae80fb2f58b2f86fb56f3b3158e

See more details on using hashes here.

Provenance

The following attestation bundles were made for asyncmy2-0.2.21-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.21-cp314-cp314-win_arm64.whl.

File metadata

  • Download URL: asyncmy2-0.2.21-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/7.0.0 CPython/3.13.14

File hashes

Hashes for asyncmy2-0.2.21-cp314-cp314-win_arm64.whl
Algorithm Hash digest
SHA256 c92a8921f2ca98e023d2e8b9fd6f5d990b2f97a6d8d9c50abb637bbe519a2777
MD5 b99afedfacc925516de34bbf3e4c316c
BLAKE2b-256 208163bdd97fe6d00b6ce460a8791eda5b52ed85dbc0f58e1013994ec503fbad

See more details on using hashes here.

Provenance

The following attestation bundles were made for asyncmy2-0.2.21-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.21-cp314-cp314-win_amd64.whl.

File metadata

  • Download URL: asyncmy2-0.2.21-cp314-cp314-win_amd64.whl
  • Upload date:
  • Size: 1.7 MB
  • Tags: CPython 3.14, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for asyncmy2-0.2.21-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 f74123610af9cbfc84137c71ebd44f82cc17bdae7dc8d0d92e99d977c6e07836
MD5 1ee5a64518be999c99f6b85c7357cf0d
BLAKE2b-256 9df62988589f285f6ead5451bc2165b0bb148cb3a5d14f9cfe8d99db29b6d469

See more details on using hashes here.

Provenance

The following attestation bundles were made for asyncmy2-0.2.21-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.21-cp314-cp314-win32.whl.

File metadata

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

File hashes

Hashes for asyncmy2-0.2.21-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 791472aac58108d09e485188aa9fdaf8749f9263f19032f068a7d46cb48e36fe
MD5 a70bfd458b1dc866faedc4a408013dc3
BLAKE2b-256 839bee5383325a3fa123ad76d9eef1fbc8033be6424c1c09f996f2563cbe61fb

See more details on using hashes here.

Provenance

The following attestation bundles were made for asyncmy2-0.2.21-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.21-cp314-cp314-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for asyncmy2-0.2.21-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 3e536481727be622e6bb8ba6fcbed78341fd7a88eb49baa2be8d26b02aae52ad
MD5 ed39d6e588adaa2a4c6ba2167536f371
BLAKE2b-256 ecc314f04c30ee06232ea56b8a20296985ee7f6bd35f3a61f718775768d80e89

See more details on using hashes here.

Provenance

The following attestation bundles were made for asyncmy2-0.2.21-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.21-cp314-cp314-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for asyncmy2-0.2.21-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 cb2ef47eeaa545809d5468d4a9cd3865880f7bd38c7b8ae25363b1d6c9113563
MD5 0721037a40e23903a81efd7525edcfd2
BLAKE2b-256 0d3ee34b1251d138cec5e5419b14166cf2701201fda3477ccd34cea4d9c63433

See more details on using hashes here.

Provenance

The following attestation bundles were made for asyncmy2-0.2.21-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.21-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.21-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 e852929318138730e031acbbfe319ba41110d8e3f596dccc1f87c6ea7d439d58
MD5 d4df2d7496011ed6c995ad1b34076bbd
BLAKE2b-256 8f5e517c2192f0364fee617cab430e272cf4f8bdd25ed6269db9a80d37580223

See more details on using hashes here.

Provenance

The following attestation bundles were made for asyncmy2-0.2.21-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.21-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for asyncmy2-0.2.21-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 ea33e36d78acfe83e04060c1a71ff588ba79c0cb6a3bc85e442c08e57979c44d
MD5 0dcf95246b653414a109e2c3bca54fe7
BLAKE2b-256 26b61b9080729a9e82a6b9eb26c45957ae30389a58f73af7e16a862425848ef5

See more details on using hashes here.

Provenance

The following attestation bundles were made for asyncmy2-0.2.21-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.21-cp314-cp314-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for asyncmy2-0.2.21-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 997637a2924e81bf50a689a5a48a04f31946e3be47624f5da6a29e0c20ea93cd
MD5 7d02a19f110b8cd9019cc9104865dce8
BLAKE2b-256 cc26dd6605526ae919987d9db1a84b2bd582a783b9a3a2cfca62720349cfcb4d

See more details on using hashes here.

Provenance

The following attestation bundles were made for asyncmy2-0.2.21-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.21-cp314-cp314-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for asyncmy2-0.2.21-cp314-cp314-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 cf74ff8f4e1f61dc71036b53d4c47d1c15d5234590e455945d76d773f875b05a
MD5 38987665c93403b0cd9becb0f8bffda4
BLAKE2b-256 863545ecbbd17761e665a1a606de4bb19a32d96db85fb8c75b1139caa808a058

See more details on using hashes here.

Provenance

The following attestation bundles were made for asyncmy2-0.2.21-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.21-cp313-cp313-win_arm64.whl.

File metadata

  • Download URL: asyncmy2-0.2.21-cp313-cp313-win_arm64.whl
  • Upload date:
  • Size: 1.6 MB
  • Tags: CPython 3.13, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for asyncmy2-0.2.21-cp313-cp313-win_arm64.whl
Algorithm Hash digest
SHA256 11d47cff4d9c3bc8c23de5a49a4e9dc458fd6e920c90474cb48df7a6a239145f
MD5 303235640e495b233df44f67c2b4b65b
BLAKE2b-256 19de25fb73f362043cfde98826b8104b8f41f0b93687e73cc43dffb4e3b18aba

See more details on using hashes here.

Provenance

The following attestation bundles were made for asyncmy2-0.2.21-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.21-cp313-cp313-win_amd64.whl.

File metadata

  • Download URL: asyncmy2-0.2.21-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/7.0.0 CPython/3.13.14

File hashes

Hashes for asyncmy2-0.2.21-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 22614bccbd4fe2c795f5315143495b96b82baafab0dfd53d67864c6bdb537489
MD5 100b1e644eb47353a2dcf0fe51b04f47
BLAKE2b-256 69ac5632bf9f37128a922320dfcdfffe1b1f8d0dc3cee9d2c0a508b92b27fd0b

See more details on using hashes here.

Provenance

The following attestation bundles were made for asyncmy2-0.2.21-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.21-cp313-cp313-win32.whl.

File metadata

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

File hashes

Hashes for asyncmy2-0.2.21-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 caf9bd570b54bffb4ddfa7ee28c4d9deb47ef794a36e8e5f2ab36bc576565a18
MD5 6296ee67b4a20af4e0477c6b2a1071b6
BLAKE2b-256 9ab1b89e101666525a5b2e09892b82f719c85047c16d78918a5f405b4bfc0861

See more details on using hashes here.

Provenance

The following attestation bundles were made for asyncmy2-0.2.21-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.21-cp313-cp313-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for asyncmy2-0.2.21-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 3caa71e68b12ccf1d75c3d52de37d0aaa26deca38d132acb2de82a47ffb48d42
MD5 29ba8b82077fd8f2d2d012295fa24037
BLAKE2b-256 50a1f2bd006da21f89fcd4ad3cf0107261a0a8b113cfa8b50f72a1e8df12f29e

See more details on using hashes here.

Provenance

The following attestation bundles were made for asyncmy2-0.2.21-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.21-cp313-cp313-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for asyncmy2-0.2.21-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 4643c19b4b30b7235d353bcafb3cf74256035404bb1d7081c1024f17ad09b794
MD5 e1780c1da97955ef603191a3d3aa2238
BLAKE2b-256 f9ba6152169634988421f4f63144cde07286a6d3becc1ebd7461922e281aa9e0

See more details on using hashes here.

Provenance

The following attestation bundles were made for asyncmy2-0.2.21-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.21-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.21-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 b7e3b599c13c49767c8bc87d075dfd25a0dbdaaeda6cbb70c8c948dde42c52b0
MD5 492182bc95a0f61d860ea8f405c7e014
BLAKE2b-256 41f80df00a23b6ca4fab67fe5c39d9a14918eb42a7f82b6c4edc4b3e7163fde7

See more details on using hashes here.

Provenance

The following attestation bundles were made for asyncmy2-0.2.21-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.21-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for asyncmy2-0.2.21-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 508fe4513fae0e84aead391c511a1aeb1b943e848b80c3bb10db58a65b5367a2
MD5 7d7449146ced60d3a33a2b85c23e07a6
BLAKE2b-256 1a351f8881e4cb660783e8d1589265704fd57d3a21d713a49deaba01403d05f3

See more details on using hashes here.

Provenance

The following attestation bundles were made for asyncmy2-0.2.21-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.21-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for asyncmy2-0.2.21-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 cb8857105b239be1241861f33b96b41f82efae09ce85d0d815f2fa1e32e38f1a
MD5 6e2fef76f8499d13158cc06e5010afac
BLAKE2b-256 2ff20bf9177c9200330095f167ff44f7156a2144b41904d174e94b63d8420dd6

See more details on using hashes here.

Provenance

The following attestation bundles were made for asyncmy2-0.2.21-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.21-cp313-cp313-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for asyncmy2-0.2.21-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 cbff292c1f364b46a7c3ff9d6609106e8d2c490db2ae8b525c22bb830bc2109e
MD5 8884cf5c93ccf634df1cac17bed8d7a2
BLAKE2b-256 99cf7e18fa4c1e87019f0dc0e0f3faabe22123cf74d0a7e10cdd4c382dd5f864

See more details on using hashes here.

Provenance

The following attestation bundles were made for asyncmy2-0.2.21-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.21-cp312-cp312-win_arm64.whl.

File metadata

  • Download URL: asyncmy2-0.2.21-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/7.0.0 CPython/3.13.14

File hashes

Hashes for asyncmy2-0.2.21-cp312-cp312-win_arm64.whl
Algorithm Hash digest
SHA256 e89a683085a6169169017197e60f642f04d0160f6d06422eefb655a765910a38
MD5 90c766a7587fbf583109bb563df2155f
BLAKE2b-256 8b2d3715e106209faacf9758831783c8865a26f04828842ab8cf9137d86c83c8

See more details on using hashes here.

Provenance

The following attestation bundles were made for asyncmy2-0.2.21-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.21-cp312-cp312-win_amd64.whl.

File metadata

  • Download URL: asyncmy2-0.2.21-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 1.7 MB
  • Tags: CPython 3.12, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for asyncmy2-0.2.21-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 9c5c9dc5836a58369249bf8267d087c49394f0ffebea7ca5be237a454910ba58
MD5 1e8beaf08158c59176d4369fc3b2d51e
BLAKE2b-256 f47afc9a2ffb446e02bbd7e9f0f6c1d19276c54cd41c0b56f4b280df2f97b39f

See more details on using hashes here.

Provenance

The following attestation bundles were made for asyncmy2-0.2.21-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.21-cp312-cp312-win32.whl.

File metadata

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

File hashes

Hashes for asyncmy2-0.2.21-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 77f794f028e159e1b4a1ec70f6ed135d93db7777b33b5f6b26a93d8e9b8bc8e5
MD5 f47afa1e14f4d2047c300bdc980d3f0b
BLAKE2b-256 2c48d85fe224828a0dec4f219539d11a2b7252ff87384949e7f863d1eae5b575

See more details on using hashes here.

Provenance

The following attestation bundles were made for asyncmy2-0.2.21-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.21-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for asyncmy2-0.2.21-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 ef679e58ae6191290cc16c3d9991c8bfdc9cb1d682fb52d588dab89ff7ce9812
MD5 2e2c502fafaeae6d574778c80032497a
BLAKE2b-256 a2a0d56e09795c5ef63efd592293f806953d5a38ab0975d593048cfa6e46b3b9

See more details on using hashes here.

Provenance

The following attestation bundles were made for asyncmy2-0.2.21-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.21-cp312-cp312-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for asyncmy2-0.2.21-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 0fe3cd2b5cfa84c9b3a9e0d44e5b9891e044bfcc7ff44a1e3683a89c5efd6473
MD5 97dfb89525e39e9d8cb9e046555d5b27
BLAKE2b-256 c74b2b1d1b07bbfabf9f11b498a3bafcf4392e989d631028c132aca744f9bdf5

See more details on using hashes here.

Provenance

The following attestation bundles were made for asyncmy2-0.2.21-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.21-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.21-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 c7cd06fff2c491db2c9e5cf4ae507988aeef32331b348c7b5370887dab17f8ab
MD5 fa24b198c188feb9dbaaec77c282f544
BLAKE2b-256 3945019d6be93a4f9ce3d39f29115550f781b63232140558d8f0c13e183c5e8f

See more details on using hashes here.

Provenance

The following attestation bundles were made for asyncmy2-0.2.21-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.21-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for asyncmy2-0.2.21-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 008b99acaa328c4515968dad1359391d5174f40345933f57d3e16ce4560da948
MD5 9203b7cdb7bc057e5e6bb72e638dd628
BLAKE2b-256 68385349504f36434bb3734b022b82f20d7df14d9f84af0cafa8105e25a9fb25

See more details on using hashes here.

Provenance

The following attestation bundles were made for asyncmy2-0.2.21-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.21-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for asyncmy2-0.2.21-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 6af2f2e9ffa54e859803768c39410e6e2fcf15dc09ba98b4cbb5f639d8691f1c
MD5 b98649d97f78308bccbd6166950bcabe
BLAKE2b-256 26a868209145751452294260cdf6cab3886c4076ade6d5ef56dde1899d6ec641

See more details on using hashes here.

Provenance

The following attestation bundles were made for asyncmy2-0.2.21-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.21-cp312-cp312-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for asyncmy2-0.2.21-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 efe74e2bf96a149467db0e7ee19e5f8cfb2a9cc7407410f738e66758df929425
MD5 e145cd61847a2a7280f6511604e918d1
BLAKE2b-256 a17244f11342d7fda6722fac0d5b4a7c4b74287f2800a67cc40818d7ff9e657e

See more details on using hashes here.

Provenance

The following attestation bundles were made for asyncmy2-0.2.21-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.21-cp311-cp311-win_arm64.whl.

File metadata

  • Download URL: asyncmy2-0.2.21-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/7.0.0 CPython/3.13.14

File hashes

Hashes for asyncmy2-0.2.21-cp311-cp311-win_arm64.whl
Algorithm Hash digest
SHA256 e0c07296fdead533e7589e8f3d3d994e08e9d57f4cd31223784c43bdc22c3c93
MD5 14784fe0f5bfdfa49f1a31348e1e95f1
BLAKE2b-256 21ef763a7829c3b7794a7bcd02719f403971f30a8b7c6e55406e5f62bc893765

See more details on using hashes here.

Provenance

The following attestation bundles were made for asyncmy2-0.2.21-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.21-cp311-cp311-win_amd64.whl.

File metadata

  • Download URL: asyncmy2-0.2.21-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/7.0.0 CPython/3.13.14

File hashes

Hashes for asyncmy2-0.2.21-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 dd8ddd1b55783a132b700a20d6bcdb08518b1cb6a0aa40e698f254a1a6720717
MD5 cb871ef26b2a7806ac7e670d7664a3fd
BLAKE2b-256 2b32fd59f29da41390ef08776230e84468901964654bdd705f8216c8699fd06d

See more details on using hashes here.

Provenance

The following attestation bundles were made for asyncmy2-0.2.21-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.21-cp311-cp311-win32.whl.

File metadata

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

File hashes

Hashes for asyncmy2-0.2.21-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 458641c70c0ac6f3a136ca47583626283ccdf9d181f0469bee67346f58c4cd75
MD5 0ba20e4d6a004378b7e17cb2b7b781ed
BLAKE2b-256 29837ed65814da04420e1c7a87c14b2fcb6ee3e41bd7547339e7384cf87177c6

See more details on using hashes here.

Provenance

The following attestation bundles were made for asyncmy2-0.2.21-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.21-cp311-cp311-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for asyncmy2-0.2.21-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 a57d90dddeee385f253ee5d01a2831a9272896ef8b95e0936fa2a59608a01ccc
MD5 ee6bb46287801401cedb490dea119bbc
BLAKE2b-256 063ba620b46688bf969a35fde60485fda67cf9fedb4fea1b2ed70f8f79d3e863

See more details on using hashes here.

Provenance

The following attestation bundles were made for asyncmy2-0.2.21-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.21-cp311-cp311-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for asyncmy2-0.2.21-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 cd75450767c5615fcffd762e6ae7aea6d3a5b12e01b4085cc98b0434d44b9ee9
MD5 5a3a692b36b62e3609097949205fa45d
BLAKE2b-256 ad514da19a034efc0b015638cae45237a0adaf241304415b9f5d22de8cfa0601

See more details on using hashes here.

Provenance

The following attestation bundles were made for asyncmy2-0.2.21-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.21-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.21-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 6fdc6ce0a565c53e4f3a78b2ec059d7060eb2eaf1114dafc36500e033c802a5a
MD5 81dd216be48518157ca293173e486ee2
BLAKE2b-256 14490eff228e3c7ee6b93d139eaf5a34195febce6c836a3209e27215ba2607e5

See more details on using hashes here.

Provenance

The following attestation bundles were made for asyncmy2-0.2.21-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.21-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for asyncmy2-0.2.21-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 7c1cfed62eebfca593e3546741573095c5af4f80cd535af5410bc939a480dbcb
MD5 dc8cc9edf6ebc9b7aa8c4f71664dea74
BLAKE2b-256 698803b5ca2fce258757e3ca331f6676fb2fd892fd957e4144d2d23a779fc2ea

See more details on using hashes here.

Provenance

The following attestation bundles were made for asyncmy2-0.2.21-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.21-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for asyncmy2-0.2.21-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 1af94567e9b204bb5fc6c448b997b4ec1c9c8abc454c5360ff1680edb488f87d
MD5 568147d1c6725b9a53039cab06067a85
BLAKE2b-256 2f6d312e904e1ba0f1ecb78460e41672c6453ba538310de4bb028f75981274bd

See more details on using hashes here.

Provenance

The following attestation bundles were made for asyncmy2-0.2.21-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.21-cp311-cp311-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for asyncmy2-0.2.21-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 e8da3743312d0239bf5dd23452667b7023fca9d77246f6f48347b5b493ade04c
MD5 2ba9b5ce863fe401c8f0f8de3511bc09
BLAKE2b-256 7f88fb510ba475d5b92967ec27d1c3a4939e3a4958ff8ce160e79e8752aa6aec

See more details on using hashes here.

Provenance

The following attestation bundles were made for asyncmy2-0.2.21-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.21-cp310-cp310-win_arm64.whl.

File metadata

  • Download URL: asyncmy2-0.2.21-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/7.0.0 CPython/3.13.14

File hashes

Hashes for asyncmy2-0.2.21-cp310-cp310-win_arm64.whl
Algorithm Hash digest
SHA256 2112778fd21150367d21ddfd205e294523bf43f2eb1a1005b422964963ad6c35
MD5 8236b9c6a2ab7357727a804e0e78b251
BLAKE2b-256 e7577255a5de7e3772b9bfea0de70449211e76d221564faa168696a3f7d99e16

See more details on using hashes here.

Provenance

The following attestation bundles were made for asyncmy2-0.2.21-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.21-cp310-cp310-win_amd64.whl.

File metadata

  • Download URL: asyncmy2-0.2.21-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/7.0.0 CPython/3.13.14

File hashes

Hashes for asyncmy2-0.2.21-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 493e9337247f2a4fdcf2d1e703ec6e1bf31ec9c54d6c83a49004c52f66e28582
MD5 503cd27e05b6c801227708dd3a6f7cef
BLAKE2b-256 79606237a37aa29d7955879176e942b6c893f04cf7b2273b26e8f4ebe3b97e52

See more details on using hashes here.

Provenance

The following attestation bundles were made for asyncmy2-0.2.21-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.21-cp310-cp310-win32.whl.

File metadata

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

File hashes

Hashes for asyncmy2-0.2.21-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 db70b7c8f4bf6cf49d1ab4b9c5be1408c7d7cb5ec16e7c847edf5dd157de47ae
MD5 c2924f21f59ac545174912682ee86a0f
BLAKE2b-256 7083b3ff7f42af82e817356fa29be9360ca635906f453800380a9589953c7c10

See more details on using hashes here.

Provenance

The following attestation bundles were made for asyncmy2-0.2.21-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.21-cp310-cp310-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for asyncmy2-0.2.21-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 c7ab84ac0a754055b639f6721fa2d108d148b385f3194833cd73be0b225ed101
MD5 d155e1bef34a6ed4d4a250d9b6a56896
BLAKE2b-256 0b1366a8d6f7541de2fbc8a0cb092444f50c64a1f3421ed222399b496caa633b

See more details on using hashes here.

Provenance

The following attestation bundles were made for asyncmy2-0.2.21-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.21-cp310-cp310-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for asyncmy2-0.2.21-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 c47aaa6c4d6c3a567e3dd77c4dd03abe943e748b6ab00a566c1e55fb8690ff57
MD5 3d0a085f5d09f4dbb588a4f18135d51a
BLAKE2b-256 aa6452c8bcbabe19ba5e022d7fef602f00d84611f089a157d6d8caf53935ae63

See more details on using hashes here.

Provenance

The following attestation bundles were made for asyncmy2-0.2.21-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.21-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.21-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 18e63d9141717d54d1ef56b4c8670607e606879690007531e456e50a320060a1
MD5 f3d34edff14bf839c9bad0c51bb55b5c
BLAKE2b-256 1f0bc9fa264ff65c2f79b796357dbb8d08874a1332610c4a644c09103be56bbe

See more details on using hashes here.

Provenance

The following attestation bundles were made for asyncmy2-0.2.21-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.21-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for asyncmy2-0.2.21-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 821769bb49b5e73348dd01b5aa4b518a15897c8003e2d5926ff9541b845b38ac
MD5 5e040af343bccd45f5bd1d52740ef86e
BLAKE2b-256 4e90035463b263721c959efb36ada0ff3d5eacf3ab15bfc2627b44c48235786f

See more details on using hashes here.

Provenance

The following attestation bundles were made for asyncmy2-0.2.21-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.21-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for asyncmy2-0.2.21-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 1656b261c0644e66e7b45e9f97eb6e73a87a38ca44722724952d6bbaabb1bdbf
MD5 05657db9d1ce8d7e7d9f6034263c52c8
BLAKE2b-256 69528d1ea22c46cddf6bc551a08b389e1047e02f45f47b0ade0216ca319f1de6

See more details on using hashes here.

Provenance

The following attestation bundles were made for asyncmy2-0.2.21-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.21-cp310-cp310-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for asyncmy2-0.2.21-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 2a1f48b13b4c0749b1629208413c5a731f2bd4821c9f192b84f79c7c096cec02
MD5 3163e1ea3af537e7398a770c44635ca0
BLAKE2b-256 5a29b563ba9ed034278d973fc017eb5e90054cf9bb48835b19c7e93427f350c1

See more details on using hashes here.

Provenance

The following attestation bundles were made for asyncmy2-0.2.21-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.

Release history Release notifications | RSS feed

This release

0.2.21 This release

55 files

0.2.20

55 files

0.2.19

37 files

0.2.18

37 files

0.2.17

37 files

0.2.16

37 files

0.2.15

31 files

0.2.14

47 files

0.2.13

47 files

0.2.12

35 files

Anthropic, PBC Visionary sponsor Bloomberg Visionary sponsor Hudson River Trading Visionary sponsor Meta Visionary sponsor NVIDIA Visionary sponsor Microsoft Sustainability sponsor Depot Continuous Integration AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page