Skip to main content

asyncmy — The fastest asyncio MySQL/MariaDB driver

PyPI License CI Release

asyncmy is the fastest asyncio MySQL/MariaDB driver for Python. It keeps the familiar aiomysql API while rewriting the entire protocol core in Cython — down to pointer-level packet parsing. In our benchmarks it outperforms every driver tested, including the C-based synchronous mysqlclient.

Features

  • 🚀 Fastest in every benchmark — reads large result sets 2.1x faster than mysqlclient and 5x faster than aiomysql/pymysql (details)
  • 🔌 Drop-in aiomysql replacement — same API, same cursors (DictCursor, SSCursor), same pool semantics
  • 🧬 Server-side prepared statements (binary protocol) via conn.prepare() — no client-side escaping, no text parsing; large scans another ~35% faster than the text protocol
  • C-speed protocol core — rows are parsed in bulk from the receive buffer in a single C loop, values decode straight from wire bytes via the CPython C-API
  • 🏊 Built-in connection poolasyncmy.create_pool(), no extra dependency, 2x aiomysql's pooled throughput
  • 📡 MySQL replication protocol over asyncio (BinLogStream)
  • CI-tested on MySQL and MariaDB (workflow)

Benchmark

asyncmy ranks #1 in all four scenarios against mysqlclient, pymysql, and aiomysql (warmup + best-of-3, see methodology):

Test asyncmy Rank Performance
Large Result Set (33k rows, all types) 🏆 #1/4 0.030s — 2.2x faster than mysqlclient, 5.3x faster than aiomysql
Connection Pool (2k queries) 🏆 #1/2 ~17,000 qps — 2x aiomysql's throughput
Concurrent Queries (50 connections) 🏆 #1/2 ~8,000 qps — 1.6x faster than aiomysql
Batch Insert (10k rows) 🏆 #1/4 ~107,000 rows/sec — fastest of all four drivers

The protocol core is engineered for zero waste on the hot path:

  • Bulk packet parsing: one socket read serves hundreds of row packets, parsed in a single C loop with no event-loop round-trips
  • Pointer-based protocol reads: integers and length-encoded values are read directly from raw memory, no struct calls
  • Direct row decoding: cell values decode straight from the receive buffer via the CPython C-API (PyUnicode_DecodeUTF8, PyTuple_New), skipping intermediate objects
  • Zero-decode numeric/temporal columns: int/float/datetime values parse directly from bytes, and dates are built with the C datetime API
  • Escape fast path: strings without special characters are returned as-is, no translation pass

📊 View detailed benchmarks →

Install

Requirements: Python ≥ 3.9

pip install asyncmy

Windows

asyncmy uses Cython extensions; on Windows you need Microsoft C++ Build Tools to build them.

  1. Download Microsoft C++ Build Tools.

  2. Open CMD as Administrator (recommended) and cd to the folder where the installer was downloaded.

  3. Rename the installer (e.g. vs_buildtools__XXXXXXXXX.XXXXXXXXXX.exe) to vs_buildtools.exe for convenience.

  4. Run (ensure ~5–6GB free disk space):

    vs_buildtools.exe --norestart --passive --downloadThenInstall --includeRecommended --add Microsoft.VisualStudio.Workload.NativeDesktop --add Microsoft.VisualStudio.Workload.VCTools --add Microsoft.VisualStudio.Workload.MSBuildTools
    
  5. Wait for installation to complete, then restart your computer.

  6. Install asyncmy:

    pip install asyncmy
    

You can uninstall the Build Tools afterward if desired.

Usage

connect

Use asyncmy.connect() for a single connection. For many concurrent connections, use a connection pool.

import asyncio
import os

from asyncmy import connect
from asyncmy.cursors import DictCursor


async def main():
    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(main())

Prepared statements (binary protocol)

For repeated queries, server-side prepared statements skip client-side escaping entirely and read results in MySQL's binary protocol — numeric and temporal columns decode natively with no text parsing. Placeholders use native ? syntax.

stmt = await conn.prepare("SELECT id, name FROM users WHERE id = ?")
result = await stmt.execute((42,))
print(result.rows)           # tuple of row tuples
print(result.affected_rows)  # for INSERT/UPDATE/DELETE
await stmt.close()

# or as a context manager
async with await conn.prepare("SELECT ? + ?") as stmt:
    result = await stmt.execute((1, 2))

Transparent mode: pass stmt_cache_size=N to connect()/create_pool() and regular cursor.execute("... %s ...", args) calls automatically run as cached server-side prepared statements — no code changes needed (ORMs benefit too). Queries the server can't prepare fall back to the text protocol silently.

pool = await asyncmy.create_pool(stmt_cache_size=128, ...)

Note: with the binary protocol, FLOAT columns return the exact stored value rather than the text protocol's decimal-rounded rendering, which is why this is opt-in.

Pool

For multiple connections, use a connection pool. Pass the same kwargs as connect() (e.g. host, user, password).

import asyncio
import asyncmy


async def main():
    pool = await asyncmy.create_pool(host="localhost", user="root", password="")
    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(main())

Type checking

asyncmy ships py.typed and stubs for its compiled modules, so mypy and Pylance resolve the API without extra configuration:

conn = await asyncmy.connect(host="localhost", user="root")   # -> Connection
async with conn.cursor() as cur:
    rows = await cur.fetchall()                               # -> list[Any]

Contributors: make stubs regenerates the stubs after changing a .pyx signature. make check runs stubtest, which compares every stub against the compiled module and fails on drift.

Rotating credentials

Some credentials expire while a pooled connection outlives them — AWS RDS IAM auth tokens last 15 minutes, for instance. Pass password_creator instead of password and it is consulted before every connection attempt, including the ones the pool makes on its own when it recycles or reconnects:

import boto3

client = boto3.client("rds")


def rds_auth_token():
    return client.generate_db_auth_token(
        DBHostname="mydb.cluster.amazonaws.com",
        Port=3306,
        DBUsername="dbuser",
        Region="us-east-1",
    )


pool = await asyncmy.create_pool(
    host="mydb.cluster.amazonaws.com",
    user="dbuser",
    password_creator=rds_auth_token,
)

The callable may be a plain function or return an awaitable, and must return str or bytes. If both password and password_creator are given, the creator wins.

Statement logging

echo=True logs every statement and its duration to the asyncmy logger at INFO level. Nothing appears until logging is configured — logging.basicConfig(level=logging.INFO) at minimum, since the root logger defaults to WARNING.

For anything beyond that, pass query_callback. It is called as callback(cursor, query, elapsed_ms) after every successful statement, with the duration as a float in milliseconds:

import logging

logger = logging.getLogger("myapp.sql")


def log_slow_queries(cursor, query, elapsed_ms):
    if elapsed_ms > 100:
        logger.warning("[%sms] %s", elapsed_ms, query)


conn = await asyncmy.connect(host="localhost", user="root", query_callback=log_slow_queries)

executemany and callproc report once for the whole call rather than once per row. The callback is independent of echo: set both and you get the log line and the callback.

Replication

asyncmy supports the MySQL replication protocol (like python-mysql-replication) over asyncio.

import asyncio

from asyncmy import connect
from asyncmy.replication import BinLogStream


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

    stream = BinLogStream(
        conn,
        ctl_conn,
        server_id=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(main())

Acknowledgments

asyncmy builds on these projects:

License

Apache-2.0

Download files

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

Source Distribution

asyncmy-0.2.14.tar.gz (92.9 kB view details)

Uploaded Source

Built Distributions

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

asyncmy-0.2.14-cp314-cp314t-win_amd64.whl (2.6 MB view details)

Uploaded CPython 3.14tWindows x86-64

asyncmy-0.2.14-cp314-cp314t-win32.whl (2.4 MB view details)

Uploaded CPython 3.14tWindows x86

asyncmy-0.2.14-cp314-cp314t-musllinux_1_2_x86_64.whl (10.7 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

asyncmy-0.2.14-cp314-cp314t-musllinux_1_2_aarch64.whl (10.7 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

asyncmy-0.2.14-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (10.9 MB view details)

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

asyncmy-0.2.14-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (11.3 MB view details)

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

asyncmy-0.2.14-cp314-cp314t-macosx_11_0_arm64.whl (2.8 MB view details)

Uploaded CPython 3.14tmacOS 11.0+ ARM64

asyncmy-0.2.14-cp314-cp314t-macosx_10_15_x86_64.whl (2.8 MB view details)

Uploaded CPython 3.14tmacOS 10.15+ x86-64

asyncmy-0.2.14-cp314-cp314-win_amd64.whl (2.0 MB view details)

Uploaded CPython 3.14Windows x86-64

asyncmy-0.2.14-cp314-cp314-win32.whl (1.9 MB view details)

Uploaded CPython 3.14Windows x86

asyncmy-0.2.14-cp314-cp314-musllinux_1_2_x86_64.whl (6.1 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

asyncmy-0.2.14-cp314-cp314-musllinux_1_2_aarch64.whl (6.0 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

asyncmy-0.2.14-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (6.2 MB view details)

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

asyncmy-0.2.14-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (6.2 MB view details)

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

asyncmy-0.2.14-cp314-cp314-macosx_11_0_arm64.whl (2.1 MB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

asyncmy-0.2.14-cp314-cp314-macosx_10_15_x86_64.whl (2.1 MB view details)

Uploaded CPython 3.14macOS 10.15+ x86-64

asyncmy-0.2.14-cp313-cp313t-win_amd64.whl (2.6 MB view details)

Uploaded CPython 3.13tWindows x86-64

asyncmy-0.2.14-cp313-cp313t-win32.whl (2.4 MB view details)

Uploaded CPython 3.13tWindows x86

asyncmy-0.2.14-cp313-cp313t-musllinux_1_2_x86_64.whl (10.7 MB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ x86-64

asyncmy-0.2.14-cp313-cp313t-musllinux_1_2_aarch64.whl (10.7 MB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARM64

asyncmy-0.2.14-cp313-cp313t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (11.0 MB view details)

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

asyncmy-0.2.14-cp313-cp313t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (11.2 MB view details)

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

asyncmy-0.2.14-cp313-cp313t-macosx_11_0_arm64.whl (2.8 MB view details)

Uploaded CPython 3.13tmacOS 11.0+ ARM64

asyncmy-0.2.14-cp313-cp313t-macosx_10_13_x86_64.whl (2.8 MB view details)

Uploaded CPython 3.13tmacOS 10.13+ x86-64

asyncmy-0.2.14-cp313-cp313-win_amd64.whl (1.9 MB view details)

Uploaded CPython 3.13Windows x86-64

asyncmy-0.2.14-cp313-cp313-win32.whl (1.8 MB view details)

Uploaded CPython 3.13Windows x86

asyncmy-0.2.14-cp313-cp313-musllinux_1_2_x86_64.whl (6.1 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

asyncmy-0.2.14-cp313-cp313-musllinux_1_2_aarch64.whl (6.0 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

asyncmy-0.2.14-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (6.2 MB view details)

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

asyncmy-0.2.14-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (6.2 MB view details)

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

asyncmy-0.2.14-cp313-cp313-macosx_11_0_arm64.whl (2.0 MB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

asyncmy-0.2.14-cp313-cp313-macosx_10_13_x86_64.whl (2.1 MB view details)

Uploaded CPython 3.13macOS 10.13+ x86-64

asyncmy-0.2.14-cp312-cp312-win_amd64.whl (1.9 MB view details)

Uploaded CPython 3.12Windows x86-64

asyncmy-0.2.14-cp312-cp312-win32.whl (1.8 MB view details)

Uploaded CPython 3.12Windows x86

asyncmy-0.2.14-cp312-cp312-musllinux_1_2_x86_64.whl (6.2 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

asyncmy-0.2.14-cp312-cp312-musllinux_1_2_aarch64.whl (6.0 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

asyncmy-0.2.14-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (6.3 MB view details)

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

asyncmy-0.2.14-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (6.2 MB view details)

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

asyncmy-0.2.14-cp312-cp312-macosx_11_0_arm64.whl (2.0 MB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

asyncmy-0.2.14-cp312-cp312-macosx_10_13_x86_64.whl (2.1 MB view details)

Uploaded CPython 3.12macOS 10.13+ x86-64

asyncmy-0.2.14-cp311-cp311-win_amd64.whl (2.0 MB view details)

Uploaded CPython 3.11Windows x86-64

asyncmy-0.2.14-cp311-cp311-win32.whl (1.9 MB view details)

Uploaded CPython 3.11Windows x86

asyncmy-0.2.14-cp311-cp311-musllinux_1_2_x86_64.whl (6.3 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

asyncmy-0.2.14-cp311-cp311-musllinux_1_2_aarch64.whl (6.1 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

asyncmy-0.2.14-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (6.4 MB view details)

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

asyncmy-0.2.14-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (6.3 MB view details)

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

asyncmy-0.2.14-cp311-cp311-macosx_11_0_arm64.whl (2.1 MB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

asyncmy-0.2.14-cp311-cp311-macosx_10_9_x86_64.whl (2.1 MB view details)

Uploaded CPython 3.11macOS 10.9+ x86-64

asyncmy-0.2.14-cp310-cp310-win_amd64.whl (2.0 MB view details)

Uploaded CPython 3.10Windows x86-64

asyncmy-0.2.14-cp310-cp310-win32.whl (1.9 MB view details)

Uploaded CPython 3.10Windows x86

asyncmy-0.2.14-cp310-cp310-musllinux_1_2_x86_64.whl (6.0 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

asyncmy-0.2.14-cp310-cp310-musllinux_1_2_aarch64.whl (5.9 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

asyncmy-0.2.14-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (6.1 MB view details)

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

asyncmy-0.2.14-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (6.0 MB view details)

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

asyncmy-0.2.14-cp310-cp310-macosx_11_0_arm64.whl (2.1 MB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

asyncmy-0.2.14-cp310-cp310-macosx_10_9_x86_64.whl (2.1 MB view details)

Uploaded CPython 3.10macOS 10.9+ x86-64

asyncmy-0.2.14-cp39-cp39-win_amd64.whl (2.0 MB view details)

Uploaded CPython 3.9Windows x86-64

asyncmy-0.2.14-cp39-cp39-win32.whl (1.9 MB view details)

Uploaded CPython 3.9Windows x86

asyncmy-0.2.14-cp39-cp39-musllinux_1_2_x86_64.whl (6.0 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ x86-64

asyncmy-0.2.14-cp39-cp39-musllinux_1_2_aarch64.whl (5.9 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

asyncmy-0.2.14-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (6.1 MB view details)

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

asyncmy-0.2.14-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (6.1 MB view details)

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

asyncmy-0.2.14-cp39-cp39-macosx_11_0_arm64.whl (2.1 MB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

asyncmy-0.2.14-cp39-cp39-macosx_10_9_x86_64.whl (2.1 MB view details)

Uploaded CPython 3.9macOS 10.9+ x86-64

File details

Details for the file asyncmy-0.2.14.tar.gz.

File metadata

  • Download URL: asyncmy-0.2.14.tar.gz
  • Upload date:
  • Size: 92.9 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for asyncmy-0.2.14.tar.gz
Algorithm Hash digest
SHA256 d058195574cc889f3f773686f7e17d71693641f9ac0386ae59ae623532a841ff
MD5 208a39583596424a384807c22c5e8601
BLAKE2b-256 ca234a77a7776d161e29ff5607d2f33605c9cd4f6be9f9e9cf19c25ee0d5ec1e

See more details on using hashes here.

File details

Details for the file asyncmy-0.2.14-cp314-cp314t-win_amd64.whl.

File metadata

  • Download URL: asyncmy-0.2.14-cp314-cp314t-win_amd64.whl
  • Upload date:
  • Size: 2.6 MB
  • Tags: CPython 3.14t, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for asyncmy-0.2.14-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 b086030b0f647c622c675c090a377fdc6ce94421dc71efa745613df175fd4bff
MD5 e7ddf8b7020c033ba18c69791969d68c
BLAKE2b-256 e0e7690e3d13935cedb5238556624ea33b25f08cf34e4596cfea0814175c0296

See more details on using hashes here.

File details

Details for the file asyncmy-0.2.14-cp314-cp314t-win32.whl.

File metadata

  • Download URL: asyncmy-0.2.14-cp314-cp314t-win32.whl
  • Upload date:
  • Size: 2.4 MB
  • Tags: CPython 3.14t, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for asyncmy-0.2.14-cp314-cp314t-win32.whl
Algorithm Hash digest
SHA256 3ef392a9c7e6d9821a3f265880dab960737aa8e3eccb74a529bca86914a7b712
MD5 e743c2f99ff981e3cf93fef5701e3cdd
BLAKE2b-256 1f1ec8b459576b2211f06ce940de89ec188912e13d60e7e9bd18bf92c0143210

See more details on using hashes here.

File details

Details for the file asyncmy-0.2.14-cp314-cp314t-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for asyncmy-0.2.14-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 62e86e132d4f3b429015c81efd6ed0dfed43cd6820d7c3dd4599cb9bff0d8c44
MD5 aa89d57693637dad79f203957c2ea3eb
BLAKE2b-256 184cca564c154040c284e8233233660e5f02359b48be20b4b1ce245a71f0d16e

See more details on using hashes here.

File details

Details for the file asyncmy-0.2.14-cp314-cp314t-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for asyncmy-0.2.14-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 568c3f75403043431a4ccf5f7de5148753d4d3f1d23a2ab76e5bedad270163d1
MD5 c4a7957f4cf7c069d0bab0daa1b1e18b
BLAKE2b-256 e5242359601008327dff0f09ec507db85830469e690d0582e15c2d4f69289821

See more details on using hashes here.

File details

Details for the file asyncmy-0.2.14-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for asyncmy-0.2.14-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 b0b5b2287c873eda34a449e752eaadc1f23f67e41e74ec01c30e207873ceb8b6
MD5 f3f7a2a2d1d3e69cc587230126d03090
BLAKE2b-256 f8ff9de0a1ed33dc368d38793ef760003e8cd92b062b9a5c243002f8068752b5

See more details on using hashes here.

File details

Details for the file asyncmy-0.2.14-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for asyncmy-0.2.14-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 d36816da461bb2d6d5ac910cb07ab83527c0b94cc98753c88b070ebecec77cd0
MD5 165c49657c8d7c9d82cfdbf1f5dfd07e
BLAKE2b-256 c415668855756814f6551d023ae07d90a77047eee4f9d5aa55ba8e90ddcb0dc0

See more details on using hashes here.

File details

Details for the file asyncmy-0.2.14-cp314-cp314t-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for asyncmy-0.2.14-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 3f1ea30352fa047f7000cbf56eda605bb8fad5d331bbbf41956d459e00e5e148
MD5 4021c8be0532d668efe3bf8ba580a2dd
BLAKE2b-256 605efe7ab0c4398f99e5397566cea513c91db5d739166080c72b445e51a82495

See more details on using hashes here.

File details

Details for the file asyncmy-0.2.14-cp314-cp314t-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for asyncmy-0.2.14-cp314-cp314t-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 5af65cfe97d33efc6697ebc056c714f09eb741555c9fc6d73ce0d9651618484d
MD5 2e12191aa222f3d6b17af356bf8abddd
BLAKE2b-256 aa896e6979f8c014ea445facd52168bf4a2871886e4e7c73d856c99ec65f60ce

See more details on using hashes here.

File details

Details for the file asyncmy-0.2.14-cp314-cp314-win_amd64.whl.

File metadata

  • Download URL: asyncmy-0.2.14-cp314-cp314-win_amd64.whl
  • Upload date:
  • Size: 2.0 MB
  • Tags: CPython 3.14, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for asyncmy-0.2.14-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 5e5210c013d15c6c01d384d7b1607678f3118121a3ce78c69c4e7ab564c41d8f
MD5 12eb832efd107dbfaf0e2056b4101424
BLAKE2b-256 faddaff1b47247bde3b638124ffbde4c0f3b1f8728dd0ba24c51bdc3f4b93b1b

See more details on using hashes here.

File details

Details for the file asyncmy-0.2.14-cp314-cp314-win32.whl.

File metadata

  • Download URL: asyncmy-0.2.14-cp314-cp314-win32.whl
  • Upload date:
  • Size: 1.9 MB
  • Tags: CPython 3.14, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for asyncmy-0.2.14-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 e4755698751e6f04632abf48ee0d9b8882fb369ae21cb14de6c152d0dc1019c7
MD5 40f22acd0ea9de176dc49c8864761eff
BLAKE2b-256 3e1b6f990217f27e7490dbf31120e67bd8fcf746e7045ef592fd0ab507e0a7d9

See more details on using hashes here.

File details

Details for the file asyncmy-0.2.14-cp314-cp314-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for asyncmy-0.2.14-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 9062b7fdd0e14c32e1fac2114fd72a2d4a4677506a6d1a8a522917ec5c4cf0e0
MD5 09e2e568fbf7b0a83d685309b65c9ed5
BLAKE2b-256 4af795910a5c49239b9c186e9eaee899b56c89e8a29ff91c89fc319952c6b33a

See more details on using hashes here.

File details

Details for the file asyncmy-0.2.14-cp314-cp314-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for asyncmy-0.2.14-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 c46ba9453332bf45e580122ad9bb69657fbb50dbb9684b76ad10d83498372311
MD5 91ab84f012fecc137e73450094f22eb3
BLAKE2b-256 b50ddb165a9d359627c57ba49ad8494bf2a24c4affe96e4bc4322b98fa6179e5

See more details on using hashes here.

File details

Details for the file asyncmy-0.2.14-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for asyncmy-0.2.14-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 5d116cd2b5d5715c8cda7c2af1238bf9b36dca210558b0fa309ae9c587369335
MD5 2e72b7d7139c077244835d678fa99224
BLAKE2b-256 fe50abbd49ab1d7e4ce88cf4dc777624d7e5778279acefd78e605dde71da6922

See more details on using hashes here.

File details

Details for the file asyncmy-0.2.14-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for asyncmy-0.2.14-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 e83bc138424ff4cce01fd5ef9eb624cc98c417105a85375a67e8bbabdb426a55
MD5 bd6c97f1e2fa504ad888ab108bc81561
BLAKE2b-256 bf6d904eb0c5a0eb0230b9d06a43e5f3fd26db3f9685d835bfa9e948d4dba26d

See more details on using hashes here.

File details

Details for the file asyncmy-0.2.14-cp314-cp314-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for asyncmy-0.2.14-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 2d2d98de92eb22d702fd5fa6dc9a39ca20b1de49e5a71437f8e5b13b04a5b7ec
MD5 cdeb937530a934490c031384f07d8ee8
BLAKE2b-256 cb81341f29110611b0f42ad7f266966df26f2975159425d94aa22627e494c5e8

See more details on using hashes here.

File details

Details for the file asyncmy-0.2.14-cp314-cp314-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for asyncmy-0.2.14-cp314-cp314-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 74b803d60b00ea476d13912756c2b26f5cc4d70501d1d1c1437f0515bddf8f65
MD5 319fed21d795be4e6b25157cdf2c2f21
BLAKE2b-256 6f89733f2cb87224e318c573fd05854ae8b9d21de722dafbc9bf6902e7e131e5

See more details on using hashes here.

File details

Details for the file asyncmy-0.2.14-cp313-cp313t-win_amd64.whl.

File metadata

  • Download URL: asyncmy-0.2.14-cp313-cp313t-win_amd64.whl
  • Upload date:
  • Size: 2.6 MB
  • Tags: CPython 3.13t, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for asyncmy-0.2.14-cp313-cp313t-win_amd64.whl
Algorithm Hash digest
SHA256 fb0c5ae02f9e5f360cb645fa02f613c0136ac7488ee4677bb05197546b4a6af1
MD5 ee8ef032bfe05dd243ddc0ad107d8eb6
BLAKE2b-256 eb0255dd20ec5910e62757fa48248285bbb124a29e2be9e62b27bce7bcffd39b

See more details on using hashes here.

File details

Details for the file asyncmy-0.2.14-cp313-cp313t-win32.whl.

File metadata

  • Download URL: asyncmy-0.2.14-cp313-cp313t-win32.whl
  • Upload date:
  • Size: 2.4 MB
  • Tags: CPython 3.13t, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for asyncmy-0.2.14-cp313-cp313t-win32.whl
Algorithm Hash digest
SHA256 d23f172c101542b5bc93c19dd49ca683eea3211884696c64af89370241e26591
MD5 5e09540bf039b6c2791fefe5c57fff28
BLAKE2b-256 0c7265bda5a44d48c540483bcfda961e472fd3d36d41778db77a06ecafa8042d

See more details on using hashes here.

File details

Details for the file asyncmy-0.2.14-cp313-cp313t-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for asyncmy-0.2.14-cp313-cp313t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 d31e61fac2520319894af6951614e6d82f5c0a0207ab02ae2408ffc69583b669
MD5 2291c3c41db2f35c4636fdfe8cfb01f2
BLAKE2b-256 e7951eeae27be8ac5102d6c7113e757639562d5f46dd33bcbf75d7460a7753ac

See more details on using hashes here.

File details

Details for the file asyncmy-0.2.14-cp313-cp313t-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for asyncmy-0.2.14-cp313-cp313t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 b4c4b52d74e97b323d989d430d115f8d42b6c357ef9f6013790014965b3c2188
MD5 ee603f9f7ab5d354846f4f9b0c5125e0
BLAKE2b-256 684d131d88e9be4d5d86e5ac038041e2f091f86d9f2eb23ef31efc28fec356bb

See more details on using hashes here.

File details

Details for the file asyncmy-0.2.14-cp313-cp313t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for asyncmy-0.2.14-cp313-cp313t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 00e6b2d37da51e10cd9057df18455d7de6acb03b04bdce1d973b7bbf9efb8356
MD5 c4e95b6d38182fd7253a2ce6158b0d55
BLAKE2b-256 6ea14564fe3f8ef28a86e8cbc5f6a59349155aadf0345641bae6b0013e8f8e78

See more details on using hashes here.

File details

Details for the file asyncmy-0.2.14-cp313-cp313t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for asyncmy-0.2.14-cp313-cp313t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 f258d918994ff6c39d01fec17a53de950aa521e70fffe2f9bca8e6c09efe4a06
MD5 f3c6cac236ec435a4a5b392d3efdeaf2
BLAKE2b-256 074b8565b440e7e580454aa2fc9fa4b8b4db8131e86502af846192d04d5cfde0

See more details on using hashes here.

File details

Details for the file asyncmy-0.2.14-cp313-cp313t-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for asyncmy-0.2.14-cp313-cp313t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 1c1c56750503b4a98737124e5e6f98a077349f897430c612e7b71994fdfa1fb1
MD5 026adba769dd67501a2926d99cae67a6
BLAKE2b-256 d940c7bcb17220a59709dfd6a2002661276e4d8ad2623b0ffb590a661b7e69b5

See more details on using hashes here.

File details

Details for the file asyncmy-0.2.14-cp313-cp313t-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for asyncmy-0.2.14-cp313-cp313t-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 23d6cdfbab90c8b0e5da7499b17422de0008d881179650d15d6b3a7fd7f7321e
MD5 51baf876f08c1801df9593c69cddb0db
BLAKE2b-256 8de4a67bd7df92f587702eaf8d9a031574fe15acc075e14dffa0d400c89619b6

See more details on using hashes here.

File details

Details for the file asyncmy-0.2.14-cp313-cp313-win_amd64.whl.

File metadata

  • Download URL: asyncmy-0.2.14-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 1.9 MB
  • Tags: CPython 3.13, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for asyncmy-0.2.14-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 fa1d887afa1b5deabad254a864bbfb9e0818810e522cd1037efc1b14823c5007
MD5 f2eda229f6ed202d27902dfbe03c8680
BLAKE2b-256 8cff6380c67ea2dd61902ea0704511defd1d15aa68f8965611c4f23e85850588

See more details on using hashes here.

File details

Details for the file asyncmy-0.2.14-cp313-cp313-win32.whl.

File metadata

  • Download URL: asyncmy-0.2.14-cp313-cp313-win32.whl
  • Upload date:
  • Size: 1.8 MB
  • Tags: CPython 3.13, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for asyncmy-0.2.14-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 969570b5ea070662fc178cd84e58b2d3de791499a5275f2e5f2a2fb31a829666
MD5 606af76e30fb05162d27b9ae5c187105
BLAKE2b-256 b2a9a62afa69effe2f6407699c0dee22e242469be3fcf2231c0846eb89f9abe9

See more details on using hashes here.

File details

Details for the file asyncmy-0.2.14-cp313-cp313-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for asyncmy-0.2.14-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 bc0403d1b7625557f966ae16b9798d72d20a6293d6d0989118b8f21261adcb02
MD5 9a7789f585a3ba556d4b53917c694e3b
BLAKE2b-256 d2c0f0a151ee093f8829859b2957934f1654ded7e97d3b8fb8584ed2b6ba246f

See more details on using hashes here.

File details

Details for the file asyncmy-0.2.14-cp313-cp313-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for asyncmy-0.2.14-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 4f88d48947ce41ffe4e0488fa80b9d8b745c422a61133e07d250413974e709d3
MD5 8a4b8cb17efa1a85138da92d8f4764e3
BLAKE2b-256 79752e69a287a4d3dcdfd783eb5ac736253ce457d73d39ce21c276b834a1dff2

See more details on using hashes here.

File details

Details for the file asyncmy-0.2.14-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for asyncmy-0.2.14-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 8a9f6cad22be74180bb9ae9569c54bf72e72bf8dad8ec6d5d66e835e6d579651
MD5 c719140c4e77cd9066943f317d701b72
BLAKE2b-256 acfac501774450db4a18aac1f5d0d47d96fdff54b4836616efd6c8ccf1415e56

See more details on using hashes here.

File details

Details for the file asyncmy-0.2.14-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for asyncmy-0.2.14-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 d3b4ed3cb126fa9615c98aa4cfe9f22a75af08ab06253aabedd6c293a9544e9c
MD5 ac7d5449a14f3a7b2dd9d2922abc8a60
BLAKE2b-256 56c7a375c219f6bffd4bfd3bb1ead40120127b44ca5ef48f40e61b29bb1e755a

See more details on using hashes here.

File details

Details for the file asyncmy-0.2.14-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for asyncmy-0.2.14-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 e0551a8470b84f9114d359a0bb8e24584d00a42c379a80ae943d338da8b5f5b7
MD5 8c091de066ef7c6b820d5defeceb026f
BLAKE2b-256 17b295698fcaff9a23464f594c506ad1d4a7f7fc5c4d8b6af47c26f604661b68

See more details on using hashes here.

File details

Details for the file asyncmy-0.2.14-cp313-cp313-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for asyncmy-0.2.14-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 d073fd93612fecfb02218e8a190a0e2f8cac764a24d95752c335244c83b2b9e4
MD5 d30852cf979a36d654daf273324aff48
BLAKE2b-256 19022955b846d1241ed03884e384f8fe301d4cdf65294774acad1b64ecd8985e

See more details on using hashes here.

File details

Details for the file asyncmy-0.2.14-cp312-cp312-win_amd64.whl.

File metadata

  • Download URL: asyncmy-0.2.14-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 1.9 MB
  • Tags: CPython 3.12, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for asyncmy-0.2.14-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 999546ded3238150b62d62454f9ee1203368db7673095993f2132b907798ec41
MD5 88ff293c3cb8c9f1d69bf5fa0786c70a
BLAKE2b-256 ac7f50a56182750805bb08ef7af712138ff5c31a3cf297b4c757b1133f00d259

See more details on using hashes here.

File details

Details for the file asyncmy-0.2.14-cp312-cp312-win32.whl.

File metadata

  • Download URL: asyncmy-0.2.14-cp312-cp312-win32.whl
  • Upload date:
  • Size: 1.8 MB
  • Tags: CPython 3.12, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for asyncmy-0.2.14-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 63b3f5f052a9b4cbd837a2a867f954f6e437979a7c74a663ac39f911f9da45ce
MD5 aacfe5d6da63291d1d7b1be10fa6bd30
BLAKE2b-256 2fdd90e169494e0998ecd57f55a4b39ee6aeb470d8299503d283903b1286e79a

See more details on using hashes here.

File details

Details for the file asyncmy-0.2.14-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for asyncmy-0.2.14-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 a20a8f063d279b96f9ed2d391d7ade82bb3ecda375e21d388c110f979e8cc478
MD5 6981fbf9e51165570b54bb2b914f38cb
BLAKE2b-256 3795bb9ea684700d66972767b9a4bef85cc5d0816f2ca45dd48fa86940a5bf88

See more details on using hashes here.

File details

Details for the file asyncmy-0.2.14-cp312-cp312-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for asyncmy-0.2.14-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 91c4188713db7ab3840e854fe812b1bbffa773073315d0f614884ddcbcc0519a
MD5 afcef9a578db21379034141aa1cfca6f
BLAKE2b-256 9b025c6a018b1377a4a5ebd1f6cf3b58e325fd35c1c83f1be50041eb1a45f40b

See more details on using hashes here.

File details

Details for the file asyncmy-0.2.14-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for asyncmy-0.2.14-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 fd8e23d2eab3d9249a206f2446e2896ef99893d03ccda900ba5e17018fd44136
MD5 359003d10c140139cab2fdb4de40f531
BLAKE2b-256 ba3e315a16d189ba13be874cf63d3e7b88f472b5750da908269ab5a22d8d5e7f

See more details on using hashes here.

File details

Details for the file asyncmy-0.2.14-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for asyncmy-0.2.14-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 07d9ae2805fdc53cdd38dc4a1e7fb01a35dfcdf6c15664f05c81e7a2703b90b9
MD5 6f3c881fdfea13ba55ae82f56345015d
BLAKE2b-256 1e218f1213ee2567ad7fe5ff51f4bb764ef528ccbaae11a0d57f66f8a4ad1bcd

See more details on using hashes here.

File details

Details for the file asyncmy-0.2.14-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for asyncmy-0.2.14-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 9405dbd5daeed8878a770b9c068201cb52cd0eac1bc1c453e73ad4b5bdb79916
MD5 ee99465f6b0de9ba1ae24bfbb1aa2850
BLAKE2b-256 eb54e9f7a0c67c933c406d703d31016d5b0e1c872602ac36d1cfaaf0a2ab5104

See more details on using hashes here.

File details

Details for the file asyncmy-0.2.14-cp312-cp312-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for asyncmy-0.2.14-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 9c4d3a7982a7a97dcbc9f895f2e9846edd401dd882c5fc24e6587e6b06215f75
MD5 957dd5a9d34dff1248ce2d4aabd5746c
BLAKE2b-256 15c87b18cf514d2ee509381e6e72fd1818c5d52e53f2eb4b7ce4e3fb59cc11a0

See more details on using hashes here.

File details

Details for the file asyncmy-0.2.14-cp311-cp311-win_amd64.whl.

File metadata

  • Download URL: asyncmy-0.2.14-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 2.0 MB
  • Tags: CPython 3.11, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for asyncmy-0.2.14-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 960edb3ffe5c9d44e565f491e4558b49d32b1110281b92ab4a10ba2321df856c
MD5 53548e1409db0a99a38b5363b312cacf
BLAKE2b-256 b321b1547f84dd790400e69f5f93e23a5eaebb9f72ffd6c6e2ff8dc2ab6514ff

See more details on using hashes here.

File details

Details for the file asyncmy-0.2.14-cp311-cp311-win32.whl.

File metadata

  • Download URL: asyncmy-0.2.14-cp311-cp311-win32.whl
  • Upload date:
  • Size: 1.9 MB
  • Tags: CPython 3.11, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for asyncmy-0.2.14-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 f84c88a33a4a6b02714ce2b1ac2f012db3f6f570fa2746e6b73335541fc33966
MD5 499eab49639372a3c7d09eabba52c097
BLAKE2b-256 4dd064fabfddc7d261094e7739d9c8ad95a8dc57f4be94735008b5085f8d7d08

See more details on using hashes here.

File details

Details for the file asyncmy-0.2.14-cp311-cp311-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for asyncmy-0.2.14-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 04e52efa263ece430b3fc17f3dbb0c4b75c7c098a0e4557a5dc4899d28b29409
MD5 d29745bbeab17a9e73e8969a125d73ff
BLAKE2b-256 2fcdcdff739af31037de179bc930f1fd4069a409bf801ee2b2fe02bda519afdb

See more details on using hashes here.

File details

Details for the file asyncmy-0.2.14-cp311-cp311-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for asyncmy-0.2.14-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 46f6452448762cd1d8699a9f41c1da955c58d6ecbe1eb63e4b34858530294aeb
MD5 345614a101554d5bae25974d3cbbf29e
BLAKE2b-256 84f1cbf4604b4127075d351a11302e3a9e30aa7b18a2f9dce011dcec849c22f5

See more details on using hashes here.

File details

Details for the file asyncmy-0.2.14-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for asyncmy-0.2.14-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 9f0c1b334b3dea18d8d7ae461af9ecba91983fa4aea8732c2f78ea854f64ea9f
MD5 4f11022b8341c2a0526a61814571af27
BLAKE2b-256 2cbbda4acba71b91c35b8237808ccd73a545e8cae065b3ca3e09a9eda15ec7aa

See more details on using hashes here.

File details

Details for the file asyncmy-0.2.14-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for asyncmy-0.2.14-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 0cf53a89fc5b8572d90bd549fb427373b04a11b064fbdb619e65d440d6e1109d
MD5 4019b302b8cff897c38fb1cb116498c1
BLAKE2b-256 58646cc4d505a040749a25009114c7f1c77ce28676ae563eeaa192dc555b429a

See more details on using hashes here.

File details

Details for the file asyncmy-0.2.14-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for asyncmy-0.2.14-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 f36c7f94e97a90bfd860a94971eaf31dd4f01f8e4f19991e549535c99dd62287
MD5 86f2ba2be9efc037a1e128caef0fd539
BLAKE2b-256 43b8478f4524cecc1b101f5e00688a8575199a9d28a5dada8054cf0acd95af14

See more details on using hashes here.

File details

Details for the file asyncmy-0.2.14-cp311-cp311-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for asyncmy-0.2.14-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 1e1776aeab4259b832c919f9ecfb1e8fe6df7a05d4ad6a1091928a6539a3e784
MD5 c5abf8eb4668b331af067355af577868
BLAKE2b-256 84f7f3c304b28fe80b47c42f71e009258fedfb2db46b77cfee760ee2da4adeab

See more details on using hashes here.

File details

Details for the file asyncmy-0.2.14-cp310-cp310-win_amd64.whl.

File metadata

  • Download URL: asyncmy-0.2.14-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 2.0 MB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for asyncmy-0.2.14-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 420a72054031586f1dc76de2bc471c3634c0a833eb7b2be5c29ea77c2e5819bd
MD5 5278ad395d2109930fd17fff0fc6509b
BLAKE2b-256 3eeceb0507dd1d959c85ef4c9f0f36528b9262bcc419c1eb8a4e15fe382a46bb

See more details on using hashes here.

File details

Details for the file asyncmy-0.2.14-cp310-cp310-win32.whl.

File metadata

  • Download URL: asyncmy-0.2.14-cp310-cp310-win32.whl
  • Upload date:
  • Size: 1.9 MB
  • Tags: CPython 3.10, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for asyncmy-0.2.14-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 703a1bf9808745f42b630c41ecf5ccbd17f99f4a45001683064b524cef2ffe76
MD5 cb480df08cbfc5aff81759e445f714c4
BLAKE2b-256 630aa07e20e0c01e44454953e58ab603c2993435254499cda0192d60590807cb

See more details on using hashes here.

File details

Details for the file asyncmy-0.2.14-cp310-cp310-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for asyncmy-0.2.14-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 bc8f526d90fe6746a9d80f5822b3d60d41a6ac38fd9fd2f0141f31218be573fe
MD5 87332379a73f2405be10507fa7af0740
BLAKE2b-256 1fbe4fb7e0b040185b3c3a33904a25f7aa1953ff48156bda6b13386cb8aef943

See more details on using hashes here.

File details

Details for the file asyncmy-0.2.14-cp310-cp310-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for asyncmy-0.2.14-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 393b7741bc7714721c049c9706cb1965b947d7076b6e713c94f74ca1382bcb38
MD5 b06897c240bb2b15dfeea9cf2d9f5c33
BLAKE2b-256 0203c5feaa51fb728194e20ad0d736d3dc33b94b3ea195e5d8c29977b9a0809e

See more details on using hashes here.

File details

Details for the file asyncmy-0.2.14-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for asyncmy-0.2.14-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 c09809a5ef2f37bce5faec636f670108726bd02530b7cacc5ee6450ec7d8787d
MD5 7acd7b9e2c2f56b301d1f7aca98325c1
BLAKE2b-256 aa4741f837124e3b03a2831d1436cb9043d7ebb74084a1fc3b5e2663b2ea9cf8

See more details on using hashes here.

File details

Details for the file asyncmy-0.2.14-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for asyncmy-0.2.14-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 83567b8500b5ab00a753433370590ef0b1f11717194a29255903c095ebfb96ab
MD5 a85fdc6e594570c9c4757e4fd651525d
BLAKE2b-256 7d7472f457d73a81568af193971e870eb9503660b2fecb6510aa4a401c84cc99

See more details on using hashes here.

File details

Details for the file asyncmy-0.2.14-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for asyncmy-0.2.14-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 1fad30f706ab1a9ae402360b19288e35f1788c59ef24c565a994d856ab352a50
MD5 5a202af676f7f4446f193b557619bc42
BLAKE2b-256 2f190bfb642152a9a9cbeed726cf37b1025f81211810a14e4dc7a12d907f06ee

See more details on using hashes here.

File details

Details for the file asyncmy-0.2.14-cp310-cp310-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for asyncmy-0.2.14-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 f127fef5f1ebb3143c4af179aa18ee00f9cb8b93ecdf4003aae11b255f464af5
MD5 31fd1189c356a0c5d78e6cc826d12661
BLAKE2b-256 a3cdec23179a123764196318f3301cd5bede3ff30a1f59544d79766935cce775

See more details on using hashes here.

File details

Details for the file asyncmy-0.2.14-cp39-cp39-win_amd64.whl.

File metadata

  • Download URL: asyncmy-0.2.14-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 2.0 MB
  • Tags: CPython 3.9, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for asyncmy-0.2.14-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 96b0cc4ff3fc6550084f74be64a481ad9bb3edfde9e0f5a3430ad9dc3de3b81f
MD5 6361879245a788f97db57789ce4e4d2c
BLAKE2b-256 50b587328d640147cc2764928821f9f8013d60941e828c784132162e512b20cb

See more details on using hashes here.

File details

Details for the file asyncmy-0.2.14-cp39-cp39-win32.whl.

File metadata

  • Download URL: asyncmy-0.2.14-cp39-cp39-win32.whl
  • Upload date:
  • Size: 1.9 MB
  • Tags: CPython 3.9, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for asyncmy-0.2.14-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 f320edc93f62df539e8e48d1f1039387856635a6550e05a1cba5642ce9b48702
MD5 188866d3bc3d9b47331c3297de6a1e41
BLAKE2b-256 363586dd6ba6a7547c467f428f3d8ade8ec6a15dd7430c71c44e9b43b0ba0d7f

See more details on using hashes here.

File details

Details for the file asyncmy-0.2.14-cp39-cp39-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for asyncmy-0.2.14-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 bd05da2f082070a4ca2089bad47ee82850de81c3f509909b1c1b4c7260500a59
MD5 07df34825b0accf2312815a533f380b1
BLAKE2b-256 54a49fca042c789d3588fc13357c0b93ab960e14007bfc074c64a35e28aea2dd

See more details on using hashes here.

File details

Details for the file asyncmy-0.2.14-cp39-cp39-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for asyncmy-0.2.14-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 036c8eb15155fbd5a863c1d7449914e273111aa43ab566727dc69712daa2c202
MD5 2cef22bab494f3fffe9434ff34d62236
BLAKE2b-256 8b30f650a1b3804bddd9faa68309a2cd4f26a33357cb336a4257d8e376868b20

See more details on using hashes here.

File details

Details for the file asyncmy-0.2.14-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for asyncmy-0.2.14-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 a21d2cda1e98391743160446542c24660095a225196687a5126b2c0f8326685b
MD5 f07aeff811e1822343173b0812e794f1
BLAKE2b-256 26c2bcfc506607eb967639fffceb262b22a6f740fb8c0944c7f00ad889c8eca2

See more details on using hashes here.

File details

Details for the file asyncmy-0.2.14-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for asyncmy-0.2.14-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 d3a15aca6a55de1f9e69ba80ba60befcc34477cdf8addf4c3f232813a364ac63
MD5 413d356d6755d633d23d1f76673714ec
BLAKE2b-256 b97f8c55f32b5fdce84842e976710130ce6ea440011190d7843d8a99a03e0af2

See more details on using hashes here.

File details

Details for the file asyncmy-0.2.14-cp39-cp39-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for asyncmy-0.2.14-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 ee8dce45c9c3d25de4186916f4914e24929cc8c60301e85973685d47f98cc910
MD5 b597bd0cf7e785dc8ce327c00a2e7822
BLAKE2b-256 9bab8ca1a3783fefb63e9bb53f17f4cf7fd526b65c9c933b1fc933c2ca13a655

See more details on using hashes here.

File details

Details for the file asyncmy-0.2.14-cp39-cp39-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for asyncmy-0.2.14-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 b71c2490c701065f817b72af1bb653bb933b69e4ec124547993e2b24437c7df2
MD5 8c46de1c48db9ad4960340051c448c1f
BLAKE2b-256 57848b6946f6ce94bece1e145aee97ecd211d3a637c611a36f8662fa8d536004

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page