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())

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.13.tar.gz (81.2 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.13-cp314-cp314t-win_amd64.whl (2.5 MB view details)

Uploaded CPython 3.14tWindows x86-64

asyncmy-0.2.13-cp314-cp314t-win32.whl (2.3 MB view details)

Uploaded CPython 3.14tWindows x86

asyncmy-0.2.13-cp314-cp314t-musllinux_1_2_x86_64.whl (10.5 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

asyncmy-0.2.13-cp314-cp314t-musllinux_1_2_aarch64.whl (10.5 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

asyncmy-0.2.13-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (10.7 MB view details)

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

asyncmy-0.2.13-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (11.0 MB view details)

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

asyncmy-0.2.13-cp314-cp314t-macosx_11_0_arm64.whl (2.7 MB view details)

Uploaded CPython 3.14tmacOS 11.0+ ARM64

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

Uploaded CPython 3.14tmacOS 10.15+ x86-64

asyncmy-0.2.13-cp314-cp314-win_amd64.whl (1.9 MB view details)

Uploaded CPython 3.14Windows x86-64

asyncmy-0.2.13-cp314-cp314-win32.whl (1.8 MB view details)

Uploaded CPython 3.14Windows x86

asyncmy-0.2.13-cp314-cp314-musllinux_1_2_x86_64.whl (6.0 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

asyncmy-0.2.13-cp314-cp314-musllinux_1_2_aarch64.whl (5.9 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

asyncmy-0.2.13-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (6.1 MB view details)

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

asyncmy-0.2.13-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (6.1 MB view details)

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

asyncmy-0.2.13-cp314-cp314-macosx_11_0_arm64.whl (2.0 MB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

asyncmy-0.2.13-cp314-cp314-macosx_10_15_x86_64.whl (2.0 MB view details)

Uploaded CPython 3.14macOS 10.15+ x86-64

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

Uploaded CPython 3.13Windows x86-64

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

Uploaded CPython 3.13Windows x86

asyncmy-0.2.13-cp313-cp313-musllinux_1_2_x86_64.whl (6.0 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

asyncmy-0.2.13-cp313-cp313-musllinux_1_2_aarch64.whl (5.8 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

asyncmy-0.2.13-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (6.1 MB view details)

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

asyncmy-0.2.13-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (6.0 MB view details)

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

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

Uploaded CPython 3.13macOS 11.0+ ARM64

asyncmy-0.2.13-cp313-cp313-macosx_10_13_x86_64.whl (2.0 MB view details)

Uploaded CPython 3.13macOS 10.13+ x86-64

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

Uploaded CPython 3.12Windows x86-64

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

Uploaded CPython 3.12Windows x86

asyncmy-0.2.13-cp312-cp312-musllinux_1_2_x86_64.whl (6.0 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

asyncmy-0.2.13-cp312-cp312-musllinux_1_2_aarch64.whl (5.9 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

asyncmy-0.2.13-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (6.1 MB view details)

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

asyncmy-0.2.13-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (6.1 MB view details)

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

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

Uploaded CPython 3.12macOS 11.0+ ARM64

asyncmy-0.2.13-cp312-cp312-macosx_10_13_x86_64.whl (2.0 MB view details)

Uploaded CPython 3.12macOS 10.13+ x86-64

asyncmy-0.2.13-cp311-cp311-win_amd64.whl (1.9 MB view details)

Uploaded CPython 3.11Windows x86-64

asyncmy-0.2.13-cp311-cp311-win32.whl (1.8 MB view details)

Uploaded CPython 3.11Windows x86

asyncmy-0.2.13-cp311-cp311-musllinux_1_2_x86_64.whl (6.1 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

asyncmy-0.2.13-cp311-cp311-musllinux_1_2_aarch64.whl (6.0 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

asyncmy-0.2.13-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (6.2 MB view details)

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

asyncmy-0.2.13-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (6.2 MB view details)

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

asyncmy-0.2.13-cp311-cp311-macosx_11_0_arm64.whl (2.0 MB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

asyncmy-0.2.13-cp311-cp311-macosx_10_9_x86_64.whl (2.0 MB view details)

Uploaded CPython 3.11macOS 10.9+ x86-64

asyncmy-0.2.13-cp310-cp310-win_amd64.whl (1.9 MB view details)

Uploaded CPython 3.10Windows x86-64

asyncmy-0.2.13-cp310-cp310-win32.whl (1.8 MB view details)

Uploaded CPython 3.10Windows x86

asyncmy-0.2.13-cp310-cp310-musllinux_1_2_x86_64.whl (5.8 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

asyncmy-0.2.13-cp310-cp310-musllinux_1_2_aarch64.whl (5.7 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

asyncmy-0.2.13-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (5.9 MB view details)

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

asyncmy-0.2.13-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (5.9 MB view details)

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

asyncmy-0.2.13-cp310-cp310-macosx_11_0_arm64.whl (2.0 MB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

asyncmy-0.2.13-cp310-cp310-macosx_10_9_x86_64.whl (2.0 MB view details)

Uploaded CPython 3.10macOS 10.9+ x86-64

asyncmy-0.2.13-cp39-cp39-win_amd64.whl (1.9 MB view details)

Uploaded CPython 3.9Windows x86-64

asyncmy-0.2.13-cp39-cp39-win32.whl (1.8 MB view details)

Uploaded CPython 3.9Windows x86

asyncmy-0.2.13-cp39-cp39-musllinux_1_2_x86_64.whl (5.9 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ x86-64

asyncmy-0.2.13-cp39-cp39-musllinux_1_2_aarch64.whl (5.7 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

asyncmy-0.2.13-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (6.0 MB view details)

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

asyncmy-0.2.13-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (5.9 MB view details)

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

asyncmy-0.2.13-cp39-cp39-macosx_11_0_arm64.whl (2.0 MB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

asyncmy-0.2.13-cp39-cp39-macosx_10_9_x86_64.whl (2.0 MB view details)

Uploaded CPython 3.9macOS 10.9+ x86-64

File details

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

File metadata

  • Download URL: asyncmy-0.2.13.tar.gz
  • Upload date:
  • Size: 81.2 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.13.tar.gz
Algorithm Hash digest
SHA256 80e08499e8c051319f0b8ad345c5fd54428a7855560922604b064b38123f30eb
MD5 420fde21e075db12f2a2f3ddd872625b
BLAKE2b-256 7f04efff513d57a03b7561c52c8b83f1ae6eb513e8a5d820b50a08ed9a4ed281

See more details on using hashes here.

File details

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

File metadata

  • Download URL: asyncmy-0.2.13-cp314-cp314t-win_amd64.whl
  • Upload date:
  • Size: 2.5 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.13-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 5f3ded9bb30e53177dcead95b58c990828eb17fd089292de41d5b9494261119c
MD5 0ce2c8589d6a81be148e33c729b71ee4
BLAKE2b-256 116c3e252936e06fa1579db852f00488d0f551e1b94ddd8b2d3f6c196ad5928e

See more details on using hashes here.

File details

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

File metadata

  • Download URL: asyncmy-0.2.13-cp314-cp314t-win32.whl
  • Upload date:
  • Size: 2.3 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.13-cp314-cp314t-win32.whl
Algorithm Hash digest
SHA256 093196be55319523273987654df4183efb357cdb62ba0f85ed1b79fe9280990d
MD5 1e9bed7097c8b1a4bd5ec565365accf8
BLAKE2b-256 bd4188f60687c919eb0804a6b7c982ef1e668bef14026a85a9e45d7fe9161253

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for asyncmy-0.2.13-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 e15c8d243f200ed97440b8ca7ede62031825d49b086dcb219b83e0fe3508de47
MD5 1a11b4d825ba7a301d217f7d487f6588
BLAKE2b-256 3360da678dbabc32ead842bca01f383766d9276fdf73cfee4178f02cc7c580b5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for asyncmy-0.2.13-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 9378ec6dea2f7ef11c2610e3032a09202900453757b41928350d9e1bee418f1a
MD5 0362744cb9bd8ece9dcfc225e08c27aa
BLAKE2b-256 6e8e5262fd72029324a86b1fca0d593338f3234bbb5d481d71c7cc2fbedf14b3

See more details on using hashes here.

File details

Details for the file asyncmy-0.2.13-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.13-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 eed110c32fe150fe1144d257cf5be1af6f90df3810cb2c50fb7b7203d87ad7ac
MD5 b9927cfab9662052ae94e258ab5ed4b3
BLAKE2b-256 745a812566ff6ac1f60a4a6e0ce273d6fdfc2a7d9ad83ae2c6cb2c00036dbf8f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for asyncmy-0.2.13-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 a3cd99b666eb1bf8f5cad3b3473ef66dca0cf09d1cc6720b8c9ebc5351a24ea2
MD5 2ce79f3f2d8de87047715d1aa1d070e4
BLAKE2b-256 ebf66f8ce8302eca207137d1c940828f2b1561ab788159ff973d358ac75f1d9b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for asyncmy-0.2.13-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 763f4ecf2fa77c1951e6f49987ef2c88f86cb96cc9096dfa15b9bb0a10fc9789
MD5 c1af6266e2c067573c48ab94f3f607e8
BLAKE2b-256 a02267bf81a4735fa68e3e2f88c9f6b47a0006cce533fd5369befa0a7e78841b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for asyncmy-0.2.13-cp314-cp314t-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 41c3acb2d3cad8f9ee307caccb72b8fee1d1b4bb42b690038b6d4f86c1e6e991
MD5 63788c1d6b7dedc30256632ad4d28d5c
BLAKE2b-256 c34abb922bf95a9bde96d526ad701961187a4af10c999fcda199bf4cfd78b580

See more details on using hashes here.

File details

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

File metadata

  • Download URL: asyncmy-0.2.13-cp314-cp314-win_amd64.whl
  • Upload date:
  • Size: 1.9 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.13-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 73c27b896765fbda9ba4dd322c0a02d769f0282288cb7c9b98acf3898a4dca5b
MD5 914a005135a62bdc69dacba20c5b87cf
BLAKE2b-256 496430db5537156e76f06323aa9103c095d99ecbe23fd6e88dae9301dd2472ca

See more details on using hashes here.

File details

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

File metadata

  • Download URL: asyncmy-0.2.13-cp314-cp314-win32.whl
  • Upload date:
  • Size: 1.8 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.13-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 dec5f7844c9ce28af4f11c27073f891dbac5da73e6eba32f72aecafe307d5d7a
MD5 1e1f28901586e4cf1ae3c5b2124cc1e6
BLAKE2b-256 6c2a320c7706794f9c6c085c8839262e2644060cdd35ca42dea754681e0a6b7c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for asyncmy-0.2.13-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 210a2d3fc49964e017ab7babacfb3011a0ac726151596ca6c68e235517bdd64c
MD5 aa4fdbdf1fb741870f5ee674f9dc680f
BLAKE2b-256 e0232b1122dd8652528bda6930cebe33b92e892df3dd07e3820208d6d8fe8c6a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for asyncmy-0.2.13-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 f1cc62a10fa74fc2f12c3cd6c6343d8d80498fd5d8b3c569e07816fbaa3f920c
MD5 332a7bce13275446b89949d1c7934eca
BLAKE2b-256 7d675090d1c8afa2f2c4db6c2340d43367276b7aaca9d0c9dacefe70d9c2f7ed

See more details on using hashes here.

File details

Details for the file asyncmy-0.2.13-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.13-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 3e01e1ac826c65b21c91bb45fcb2c02418545b48ce12c6178793d42e30ed17af
MD5 fed0b931ebe8c46360a282cad17100d9
BLAKE2b-256 a0cf3da00766f560694f9e56f406d98af8bb7bde9b17787063d9810dc90f60ac

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for asyncmy-0.2.13-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 94d4726b39be89f194233964a69620ee3532879b054722347315310bbff13f4a
MD5 1726b22dc6d43deed7431eb1dd5d633c
BLAKE2b-256 fba25a6a9b0e340f6562c94b43d594f5f4d71935ac3e620aeef957bd1d84e303

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for asyncmy-0.2.13-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 beda30d3623b73ec06b14793e880f95414eb7588c457e8c960dc07e4d96731ef
MD5 4dd93a07e4f0179ed349dd3ca517c7db
BLAKE2b-256 0ac32f4fbef7639bae9fbf042c2ecbbd9978d13870a8dbbb78d4718b0c240afb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for asyncmy-0.2.13-cp314-cp314-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 532a838d957fd9ab06fa9e16b397733cb9bce1f3bbc8b2ba7c9bf95e194a1f07
MD5 2d7ad6ef9bc929ba85698ef60b6ef788
BLAKE2b-256 bf3d82eda2a8b2a9f8974ff109c025840db6b27ae6143241a6e7f6acffe62fe8

See more details on using hashes here.

File details

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

File metadata

  • Download URL: asyncmy-0.2.13-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.13-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 ff99fa22406e12c9a03136668e135b88852666d5fc454083222d76b4686db7fc
MD5 ebcd15614fa1000eb0e288bbbc123ef3
BLAKE2b-256 7642af479d14fdaff23b721f8d32d80772a7080227af371eb701046bab21fabb

See more details on using hashes here.

File details

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

File metadata

  • Download URL: asyncmy-0.2.13-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.13-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 5aade29f03209a8cfe9878469a9bc397b13c4e419ceb8fd118a883a2e2eb7252
MD5 0d09324575cd338406e9b3b89ae9b8c5
BLAKE2b-256 371322bd530160742e0986fd4a093ab9ed17aa7e597b45a64e32699c8a77732e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for asyncmy-0.2.13-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 df45175cc86c61843bcb1bb14a2834eb246f73e8350a2332e63e10e5b1c84293
MD5 1d320646a7de93039e0e85f810d1eb75
BLAKE2b-256 c64b6c2e5bb7a1ca8d0a8a922045e024a6621d3f9a8d3ea2ba91de136bb6ceb2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for asyncmy-0.2.13-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 2db1387359506eb810170bb92b341a7a6372cb206caa593dacebc61973410f7c
MD5 e4af66e07b7199253ebdb49dc1816d68
BLAKE2b-256 48fbf056d3464beea5c1cca030d7dd42e826f1a72c73bf3db09716d51a446acf

See more details on using hashes here.

File details

Details for the file asyncmy-0.2.13-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.13-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 867e0a0a9f5f81733373b3395283435cbab32b62b9f1bf8a3b8a79965ec547df
MD5 3223a365aa04e2ee08a0a0461a1b9982
BLAKE2b-256 6fb5a5ea9fbcd1c37ab22963263bec11e43d748f5bca7ead1c37424f14480780

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for asyncmy-0.2.13-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 4700e9af63c7c7c78cbdf8374a9b9203d4e326aebdf3d183e3ddf4e623b0b1cf
MD5 620fe5ed2002a3c34252d0566b6bd23b
BLAKE2b-256 322dbde0d7031ded9982008122288f214301f78357f2831c36051740c47a5a31

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for asyncmy-0.2.13-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 7a55d2167a8d8c21d92ee82fdba22285af21ca31a4151c0096fef11fe8be7e41
MD5 2b860c003fabd22fb8b37468e0b702e6
BLAKE2b-256 123e1f6d2d0c6be59280a00f29b098c0a70bbf9a37fae1193a6b533604d6b780

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for asyncmy-0.2.13-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 d2c57ae78ea9497fa45e93744678d92df3cd7db7ec696b5d8ece48dd157e77f2
MD5 264bc435de565ba21088f09718bae8ca
BLAKE2b-256 cd82b47d8fe64160071172ff43e57b5ee069a07ccba6a7c4cf5b4b94c7c3b677

See more details on using hashes here.

File details

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

File metadata

  • Download URL: asyncmy-0.2.13-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.13-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 60463e8ead66d8fa6ea23eb64b6fb9b9d7b5dac7241d779cfb1c7b0d47d11dfa
MD5 e1d880f80d0f2e8c90f44429630164be
BLAKE2b-256 7ee80845a3601dcfffa896474c58771ad2e9dd3b8dcf0ab91af3413635bc81f3

See more details on using hashes here.

File details

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

File metadata

  • Download URL: asyncmy-0.2.13-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.13-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 409a490d9a3084fda99ab44f881a3b6e42087a612dcf95591a313a2ce88e1f9c
MD5 50197cb578c0a03be98da0d29a3f16a5
BLAKE2b-256 f0f0092b7a5b3980957cb76a2019e4623b45275dcd6d6f8b2d8b98aee8038fcc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for asyncmy-0.2.13-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 6d6d5bf3cd4c86b71fe034f5e4b4c33c1f8fc011c4f63001f8a38828d39a0a35
MD5 00f4754dcbeadde841f13f1c0298fc18
BLAKE2b-256 82b7f0286501ff319f26ee3d0b57c50cb5def8dbbd939abab73b3335b7e0407d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for asyncmy-0.2.13-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 172a397a7202e3d0f2f5477d54b406fef30c4ade457ddd32b52b342b0364d4c3
MD5 7d41f3aa7a334a40eca509f2defa5708
BLAKE2b-256 5809e599f5bcb1e2087910491ee26cfab3ac7869c00153390c76b8d16e307aee

See more details on using hashes here.

File details

Details for the file asyncmy-0.2.13-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.13-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 cf8b56548e43379f48d1081cf05812238785a17962f45e4065f3d2bb2216ebd1
MD5 997c09135bc5920e8447145bce8bea11
BLAKE2b-256 fe688fe878c556cf7c93cff0ca50df939222da56c73932cf9bc458fd115cafb4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for asyncmy-0.2.13-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 e861c58dcf44f7140b9eb9a562f3d3257981f6fcab5fa786142dcf4d02fa5a80
MD5 791336837ce5c6b3ff47d838f6466719
BLAKE2b-256 adb41e89a64e31f07cd4f4b268e90716a9e72e1cd9d4f476e547686bfa03b965

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for asyncmy-0.2.13-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 e555ce208438a35b6de1c2cae9b40ccf60e7cb942676d3b7f9b1509124cf5359
MD5 260a2b99f0914e2b76b912ebfc35851c
BLAKE2b-256 144884d8dadb5ec6b98fe781c2b0b09a902bb8e01f9f5a2c9a237b76e9cf45b6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for asyncmy-0.2.13-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 5768829af32f99a8a9eae30c9858f679d039eafd0a532fb3cc9902ea32ebf184
MD5 a55ce2cbedb6edf7d98d2584bc35eff1
BLAKE2b-256 3256b7e3de73941e54dddfcb429cdaca8b8f15a7a2bebea29c43c00ea70c3a79

See more details on using hashes here.

File details

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

File metadata

  • Download URL: asyncmy-0.2.13-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 1.9 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.13-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 c391bce8ed027da57c7f18dab62a7c69b73aad1993867030b2ad8152c48d73f8
MD5 4eaf68cbcfa6b06bd73ff8a5b283d448
BLAKE2b-256 d1ffd3b582201cbb51a5bda082e6cc796583dad1c7038aefb9e0c15999bda502

See more details on using hashes here.

File details

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

File metadata

  • Download URL: asyncmy-0.2.13-cp311-cp311-win32.whl
  • Upload date:
  • Size: 1.8 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.13-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 651918d05117c1b2d905082f6f8659d46fe37f5fd1ff97e9207b99ffc2d3b422
MD5 78a7d3b54bfdf68584c9a405716aad8e
BLAKE2b-256 f9a8965ea8cafa35ea84d8bf79bc385e28152a39542623c9dc55509401342851

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for asyncmy-0.2.13-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 732ff010cd5c86cef901d96e04e17d7dba7922b665488c7b5b03181bed4e16af
MD5 8287117a565320e8a32bf88641547256
BLAKE2b-256 8994572aec0d5605bd22b636e097bfe1a676d9508ddc8aeeee2eed2fab3dd94d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for asyncmy-0.2.13-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 d5f4be71645862b44f9e115ee0f20c7848c461ca700d8398933ce6ccdc2c14bb
MD5 188e21e6d4962b625296efc4cfd0478e
BLAKE2b-256 fb510a9ba523346c3569738fd985230b9b9bd99dacf8d29de27db8afd4392203

See more details on using hashes here.

File details

Details for the file asyncmy-0.2.13-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.13-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 bd14ff2cff1e4387c4b8b3d10a7447013bb12ca0e147959d04eccf06aed88075
MD5 eacfb22f67d8bf1de465fbe9a849840d
BLAKE2b-256 b2d0e2ce3496766642362e35ab93545c7c5fc31f69cbe34e47de4846faf26f7e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for asyncmy-0.2.13-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 5b19be2f644de9f9b2ee050965352efb2c69c7b2ca31c830c8a17035cf6e50c4
MD5 38f7890251eaab90fec3e712100545d4
BLAKE2b-256 e4f42bc10ce51d804f7a7b1672b5294e1e9c40eddeb06e9a8e22a0f2c39fc75b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for asyncmy-0.2.13-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 21bed348bece55655b646d8602b34783fa9dd6bbb2c9fa89929f88290876cf2d
MD5 1950ab19492a53e7ef86067fabe98b6a
BLAKE2b-256 3059cd58e0b4b49ee2ba110b11886576c7fd07d588feb9cfe30e2ce8ef6e691b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for asyncmy-0.2.13-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 41cad52d4ce0f759b4c0e83d735f8d45e164c40b1b5bc9388e113c61632eb564
MD5 00c963edf9f0747ef356121882f8a2d2
BLAKE2b-256 364e8465545c748816f2065fa789588041812677c78d36fdcc9496c0b4d6f455

See more details on using hashes here.

File details

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

File metadata

  • Download URL: asyncmy-0.2.13-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 1.9 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.13-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 e576ae9ae1bea1019103fadc8695edcdfffaf9d42d44dbcb71212f475442edcc
MD5 61944c6b4f63c998b513062062117558
BLAKE2b-256 2aeecd2089f90d2f476ccfceb9193c762a93c74ca42fce93aa573f50b54c2b4d

See more details on using hashes here.

File details

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

File metadata

  • Download URL: asyncmy-0.2.13-cp310-cp310-win32.whl
  • Upload date:
  • Size: 1.8 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.13-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 ea02eb93f3f2cdc1be06b98b2b4a0bbd1dbfe4e2e8fae8e75d0bb13ef4d37dc8
MD5 8b1b2c6d7a236a01a5cfc2e42ba69352
BLAKE2b-256 23c2e2c7517392fac1d6664c691561573364f0ad2410ec86a13e5e6aefcd0326

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for asyncmy-0.2.13-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 63b981ab142457aa5eb67ed371105e34f811df8f73645b03f5e201c9d137cceb
MD5 c009b3c3334c3983d27a356d2747d9e6
BLAKE2b-256 c183c08151a49e2afc07df46dcdd8c87a3e49ab720c04351ab9e3e3e7df9d5f7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for asyncmy-0.2.13-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 32b1abbc774096044dacdbfbfaae29ef019f7eaa07357faf1d2bc0272cc375db
MD5 bf4c8795b79fbf4f413d36da5a344293
BLAKE2b-256 a74c89b8124549b1df11af5b560e3e36f457836cb1c75837efb86d500c5cdd23

See more details on using hashes here.

File details

Details for the file asyncmy-0.2.13-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.13-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 ea2c8debcf8f3e52dabeea8563c7e6419c3314aabbd537a6c3b518f159b95b32
MD5 dfaade39337d190bab8121ea74fddd18
BLAKE2b-256 7fd6f12cb541bf1222af73bf523bd8d4e1f6f42598c24c09c6f32049a33bbe0d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for asyncmy-0.2.13-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 242c6f5bf2c4c11ea10c569b4758ca089a94b5da53f8802865d36097d5880bee
MD5 a5f7d13573cb23f61c9eefefd919091b
BLAKE2b-256 0d08723c8ca65dc5dc12ef5dcf15ff4a76e5f63f3f48bcd0eef3fccf15050cca

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for asyncmy-0.2.13-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 3d84d70fa34fbe1f3435dabe0870eb87ea081e39b92c53ef52c9376aeee5e244
MD5 a5f5486ac9792716b146530d49ce5537
BLAKE2b-256 d9e3bab62723644b88cdee7e2faedd65bf75c7efca50013c187bb52fba5bbcf7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for asyncmy-0.2.13-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 05dd42b40a5c0a93eb0b86b48ef0a93f729d958f8bf5d11ee29ee93b28697599
MD5 a365b4444cfd5948b75b8bf620e1097e
BLAKE2b-256 534c81ba510fe5c8fd37874bcdacda3fff40ad111951d1a36ee6ed2ff829a352

See more details on using hashes here.

File details

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

File metadata

  • Download URL: asyncmy-0.2.13-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 1.9 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.13-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 8b5330059571e59752c45cc2e4e02a1318c3715034f07570efa42baae813b5a6
MD5 5bcdc6d148f63db09cf01f59b6f17371
BLAKE2b-256 525f0e3e1953111abada9fa7200f3f554f7b1afb212f0aace062e29a519f79d9

See more details on using hashes here.

File details

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

File metadata

  • Download URL: asyncmy-0.2.13-cp39-cp39-win32.whl
  • Upload date:
  • Size: 1.8 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.13-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 e8016bb73d24ebfe1c97f77d8f1bc29988b3ba81e3131b19c2cd77496b6ddc7b
MD5 d0d182f51f5acdde06c16edfd8219cc0
BLAKE2b-256 ef02b0267a5118bc01753d61632618f39fc49887300b3ac59910e2c99dcb7137

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for asyncmy-0.2.13-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 441db9473bbc5c086d097cf84916e87ee48e4d6ca51bc74c4e9214b13cebd204
MD5 7a616681d77a865ef7ac3f4c4edb3f07
BLAKE2b-256 22992b3776d2554effa73f1d172c532746b63deafb5a9bf86bdf51c4b77cb705

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for asyncmy-0.2.13-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 523f9c32573f05a8c07fdba00b7266d5eee27be571f7d7b281b1044f2a6341f0
MD5 c167fe2aa8036b1bda68be2758dc79c2
BLAKE2b-256 e14e20b3f7a5886642fee422485b74301160586e8fa2ee98e6e6bebb7426ad14

See more details on using hashes here.

File details

Details for the file asyncmy-0.2.13-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.13-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 051bc48dd84bf70014e0a6e350be9aa451b0ef87e6448873ca94e35c0b0ab197
MD5 adacfc4e0e00e20fb911449e11cf2a12
BLAKE2b-256 0083d2f9bf74f5dabaa9ee1a8ae159b8d3856d8fee77180208fb2ec35109b92c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for asyncmy-0.2.13-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 28ed0ab5478b7892f06b63a8d6ce358c09959f7fbc4b957095992e5f4a991cc3
MD5 79c302e2a76336d3cf43f3a4412d76fa
BLAKE2b-256 baf90935c1cc4549a098340cc9cb9dd2485b94b1e4acede3fe1890ee2b365164

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for asyncmy-0.2.13-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 b755e38905340d03f548014e0a9f95608b9e4ecf865d14e1e022b76a23afc38b
MD5 4608803173f09c8f29cccb3c709254d8
BLAKE2b-256 2e058a74c5e5972bb9d09d08c483fe688b97ee6d34a91fb10558d2353ee9ce71

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for asyncmy-0.2.13-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 86ff20991867442d36215cf956327d2aaae11b0163cb3dda8d845fd503ecdb09
MD5 9c866ec41314679796381857cfc785cc
BLAKE2b-256 f7a0f8393d46cf89d0702b4c301e5a14cac650592727921a44a012599da58bca

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