asyncmy — The fastest asyncio MySQL/MariaDB driver
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
mysqlclientand 5x faster thanaiomysql/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 pool —
asyncmy.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
structcalls - 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/datetimevalues 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
Install
Requirements: Python ≥ 3.9
pip install asyncmy
Windows
asyncmy uses Cython extensions; on Windows you need Microsoft C++ Build Tools to build them.
-
Download Microsoft C++ Build Tools.
-
Open CMD as Administrator (recommended) and
cdto the folder where the installer was downloaded. -
Rename the installer (e.g.
vs_buildtools__XXXXXXXXX.XXXXXXXXXX.exe) tovs_buildtools.exefor convenience. -
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
-
Wait for installation to complete, then restart your computer.
-
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:
- PyMySQL — pure Python MySQL client
- aiomysql — asyncio MySQL driver
- python-mysql-replication — MySQL replication protocol (pure Python, on top of PyMySQL)
License
Release files for asyncmy 0.2.15
For a detailed explanation of source distributions (sdists) and built distributions (wheels), please see the package formats documentation.
Source distribution (sdist)
| File | Size | Uploaded | |
|---|---|---|---|
| asyncmy-0.2.15.tar.gz | 94.1 kB | Details |
Built distributions (wheels)
Total release size: 328.0 MB
Release files / asyncmy-0.2.15.tar.gz
| Download URL | asyncmy-0.2.15.tar.gz |
|---|---|
| Size | 94.1 kB |
| Tags | Source |
|
SHA-256 checksum How to use checksums |
5f6c6fb6543c4c4190d6f3d3db44bc4cae2f925a9df2ba79855edba3db899733
|
|
BLAKE2b-256 checksum How to use checksums |
08590c275a3b5bfca49958283a6a2b10cf0ea5d6dbe9861acc08f4b58decc391
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/7.0.0 CPython/3.13.14
|
Release files / asyncmy-0.2.15-cp314-cp314t-win_amd64.whl
| Download URL | asyncmy-0.2.15-cp314-cp314t-win_amd64.whl |
|---|---|
| Size | 2.8 MB |
| Tags | CPython 3.14 CPython 3.14 free-threading Windows x86-64 |
|
SHA-256 checksum How to use checksums |
c21caa044f5b016cb24e161db612509deefed5e96debfe6cb0042a369a6d8a83
|
|
BLAKE2b-256 checksum How to use checksums |
67de08ae6a155a4018b9d688e5afcf370c513e5a5ed0d021474030eb5ae35d90
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/7.0.0 CPython/3.13.14
|
Release files / asyncmy-0.2.15-cp314-cp314t-win32.whl
| Download URL | asyncmy-0.2.15-cp314-cp314t-win32.whl |
|---|---|
| Size | 2.6 MB |
| Tags | CPython 3.14 CPython 3.14 free-threading Windows x86-32 |
|
SHA-256 checksum How to use checksums |
d912f4f66b1841f1c4649b4438b834e1223685f7fb2f2b86c6b659fba8f57192
|
|
BLAKE2b-256 checksum How to use checksums |
3fae9bce18e533d58a167d918a716963edeb882fef96b8ca8674bf30b4cc61cc
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/7.0.0 CPython/3.13.14
|
Release files / asyncmy-0.2.15-cp314-cp314t-musllinux_1_2_x86_64.whl
| Download URL | asyncmy-0.2.15-cp314-cp314t-musllinux_1_2_x86_64.whl |
|---|---|
| Size | 11.5 MB |
| Tags | CPython 3.14 CPython 3.14 free-threading Linux musl 1.2+ x86-64 |
|
SHA-256 checksum How to use checksums |
b1c5aa1b18e7b56baa9af2c5d8f44cb030579f4375ab363cb884abdf20fe3134
|
|
BLAKE2b-256 checksum How to use checksums |
3b119a0f08e6b10b2881387124e8a464ffcf31491b0da7313f633a69d0961f22
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/7.0.0 CPython/3.13.14
|
Release files / asyncmy-0.2.15-cp314-cp314t-musllinux_1_2_aarch64.whl
| Download URL | asyncmy-0.2.15-cp314-cp314t-musllinux_1_2_aarch64.whl |
|---|---|
| Size | 11.6 MB |
| Tags | CPython 3.14 CPython 3.14 free-threading Linux musl 1.2+ ARM64 |
|
SHA-256 checksum How to use checksums |
044f7b23574560ab2aeb0a6f9609ea4071064cdb8f3a036d59e0381624f750d7
|
|
BLAKE2b-256 checksum How to use checksums |
a4ac974d076c9a4d40286446e90c93ab681806e6f87b9d58f53719c35feca67d
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/7.0.0 CPython/3.13.14
|
Release files / asyncmy-0.2.15-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
| Download URL | asyncmy-0.2.15-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl |
|---|---|
| Size | 11.9 MB |
| Tags | CPython 3.14 CPython 3.14 free-threading Linux glibc 2.17+ x86-64 Linux glibc 2.28+ x86-64 |
|
SHA-256 checksum How to use checksums |
2262a9cc261f963817650888569cfd1f4190b52edb6d8a552f58e81eaf325ad5
|
|
BLAKE2b-256 checksum How to use checksums |
0b0beab69a613d89c1c572535c8d05f6ea066a84052dfa5391653fc4725fd0e7
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/7.0.0 CPython/3.13.14
|
Release files / asyncmy-0.2.15-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
| Download URL | asyncmy-0.2.15-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl |
|---|---|
| Size | 12.3 MB |
| Tags | CPython 3.14 CPython 3.14 free-threading Linux glibc 2.17+ ARM64 Linux glibc 2.28+ ARM64 |
|
SHA-256 checksum How to use checksums |
5664f8c84b0df923a3d8da6c37b35e89e1a79033b062caf51ed3696440cc0e77
|
|
BLAKE2b-256 checksum How to use checksums |
05a656059ddaf209ea161d08b9b1433b86d9ce05e2f0dac76748905b7a5dde0d
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/7.0.0 CPython/3.13.14
|
Release files / asyncmy-0.2.15-cp314-cp314t-macosx_11_0_arm64.whl
| Download URL | asyncmy-0.2.15-cp314-cp314t-macosx_11_0_arm64.whl |
|---|---|
| Size | 3.0 MB |
| Tags | CPython 3.14 CPython 3.14 free-threading macOS 11.0+ ARM64 |
|
SHA-256 checksum How to use checksums |
14f8dffa1e33487161e3184c19230619b58b2b44b422d82c7a11f34657e97cd6
|
|
BLAKE2b-256 checksum How to use checksums |
26ab51ef2220bafd42194bf892b19af8163f2f9ab02b96ff40a766442528dc33
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/7.0.0 CPython/3.13.14
|
Release files / asyncmy-0.2.15-cp314-cp314t-macosx_10_15_x86_64.whl
| Download URL | asyncmy-0.2.15-cp314-cp314t-macosx_10_15_x86_64.whl |
|---|---|
| Size | 3.1 MB |
| Tags | CPython 3.14 CPython 3.14 free-threading macOS 10.15+ x86-64 |
|
SHA-256 checksum How to use checksums |
d6df56688874c0425be8a5b1a5cbfe5c6569ba7b1c83751877285de2345258d9
|
|
BLAKE2b-256 checksum How to use checksums |
981e993bb3c898061171b090eb489c9fb70d7cb3ea4d04966abe07d8593c2faf
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/7.0.0 CPython/3.13.14
|
Release files / asyncmy-0.2.15-cp314-cp314-win_amd64.whl
| Download URL | asyncmy-0.2.15-cp314-cp314-win_amd64.whl |
|---|---|
| Size | 2.1 MB |
| Tags | CPython 3.14 Windows x86-64 |
|
SHA-256 checksum How to use checksums |
bd2940a8dcafdbe33b44e9182ea89ac915df55d7bc262458c55767f93536d687
|
|
BLAKE2b-256 checksum How to use checksums |
4b6654326af737c046ebda2019ad0873cc3443db6c0a89d1667bf1dd2ef4a92a
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/7.0.0 CPython/3.13.14
|
Release files / asyncmy-0.2.15-cp314-cp314-win32.whl
| Download URL | asyncmy-0.2.15-cp314-cp314-win32.whl |
|---|---|
| Size | 2.0 MB |
| Tags | CPython 3.14 Windows x86-32 |
|
SHA-256 checksum How to use checksums |
2daa3dfd055c58b38417c05219113658e79950e7de3f842264c9450ea186fda5
|
|
BLAKE2b-256 checksum How to use checksums |
30c34737b25912359dacc0e31262643f53a5d52d0eaa871744073dc4ddc27390
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/7.0.0 CPython/3.13.14
|
Release files / asyncmy-0.2.15-cp314-cp314-musllinux_1_2_x86_64.whl
| Download URL | asyncmy-0.2.15-cp314-cp314-musllinux_1_2_x86_64.whl |
|---|---|
| Size | 6.5 MB |
| Tags | CPython 3.14 Linux musl 1.2+ x86-64 |
|
SHA-256 checksum How to use checksums |
52cb2b8976d651a3f33574b0d63dd291521fd34850b661e0eda698150e02c8ad
|
|
BLAKE2b-256 checksum How to use checksums |
2380d5f30c1d82a34f1bdfb19b132d4d8907b2740fa0a25772d13c09681161c5
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/7.0.0 CPython/3.13.14
|
Release files / asyncmy-0.2.15-cp314-cp314-musllinux_1_2_aarch64.whl
| Download URL | asyncmy-0.2.15-cp314-cp314-musllinux_1_2_aarch64.whl |
|---|---|
| Size | 6.4 MB |
| Tags | CPython 3.14 Linux musl 1.2+ ARM64 |
|
SHA-256 checksum How to use checksums |
765d7ba88c6fdf82cace82fc24812f2d459f1139cd1a77be1c98ce39109174b0
|
|
BLAKE2b-256 checksum How to use checksums |
962b494be28ff68493898bb93f16a30a6bc1edfbae0733bb652ce218e18eb9ae
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/7.0.0 CPython/3.13.14
|
Release files / asyncmy-0.2.15-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
| Download URL | asyncmy-0.2.15-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl |
|---|---|
| Size | 6.7 MB |
| Tags | CPython 3.14 Linux glibc 2.17+ x86-64 Linux glibc 2.28+ x86-64 |
|
SHA-256 checksum How to use checksums |
6654f88f11becb6b41aa1b0467eb94797f3a9afb341c15de6f52816957a06ba7
|
|
BLAKE2b-256 checksum How to use checksums |
4907a3b3fb8ad2dc050e2a8fa87a1769ca855595b6ccd8f8d815904afae8611d
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/7.0.0 CPython/3.13.14
|
Release files / asyncmy-0.2.15-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
| Download URL | asyncmy-0.2.15-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl |
|---|---|
| Size | 6.7 MB |
| Tags | CPython 3.14 Linux glibc 2.17+ ARM64 Linux glibc 2.28+ ARM64 |
|
SHA-256 checksum How to use checksums |
467112e8e79ab4d0418b47765b73c3242ca22e7e12555e24e4eb3151dbf5d0e9
|
|
BLAKE2b-256 checksum How to use checksums |
7175517d6e61efb35c7352e45dd8ca722977a7451f242c97c07b90aa00be3d9e
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/7.0.0 CPython/3.13.14
|
Release files / asyncmy-0.2.15-cp314-cp314-macosx_11_0_arm64.whl
| Download URL | asyncmy-0.2.15-cp314-cp314-macosx_11_0_arm64.whl |
|---|---|
| Size | 2.2 MB |
| Tags | CPython 3.14 macOS 11.0+ ARM64 |
|
SHA-256 checksum How to use checksums |
7b24b8a93269fd60948f70fdf5ee093f2eafc8c9fa121b86f294ef63eba885d7
|
|
BLAKE2b-256 checksum How to use checksums |
88a1ecf010bdde2327fa7d3fa09e212f7044f22834cd0980f6e3c44f9679c5c4
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/7.0.0 CPython/3.13.14
|
Release files / asyncmy-0.2.15-cp314-cp314-macosx_10_15_x86_64.whl
| Download URL | asyncmy-0.2.15-cp314-cp314-macosx_10_15_x86_64.whl |
|---|---|
| Size | 2.2 MB |
| Tags | CPython 3.14 macOS 10.15+ x86-64 |
|
SHA-256 checksum How to use checksums |
0381e45a674847751d7b26e6a22534fd27ff5c91ae8bf3618113b605decd2489
|
|
BLAKE2b-256 checksum How to use checksums |
f46e7b0cac0cb7171feef4882a7bd52a928a5023ad890b251d6aab7362f6d24a
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/7.0.0 CPython/3.13.14
|
Release files / asyncmy-0.2.15-cp313-cp313t-win_amd64.whl
| Download URL | asyncmy-0.2.15-cp313-cp313t-win_amd64.whl |
|---|---|
| Size | 2.7 MB |
| Tags | CPython 3.13 CPython 3.13 free-threading Windows x86-64 |
|
SHA-256 checksum How to use checksums |
5e9e20614481ea87cd05b1a7ece56d0d5fb855f9cf5c5308572055e6f4dfe803
|
|
BLAKE2b-256 checksum How to use checksums |
fb9a4d9810419e6693d0ab19b0ecad4380a4963487ae2dc80dad70280b79557a
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/7.0.0 CPython/3.13.14
|
Release files / asyncmy-0.2.15-cp313-cp313t-win32.whl
| Download URL | asyncmy-0.2.15-cp313-cp313t-win32.whl |
|---|---|
| Size | 2.6 MB |
| Tags | CPython 3.13 CPython 3.13 free-threading Windows x86-32 |
|
SHA-256 checksum How to use checksums |
b352363aace7bbdf245f79f925837a2a9540d360d89bc699ca21f1cbc29170a9
|
|
BLAKE2b-256 checksum How to use checksums |
4d21013419723c7ed1793e31ffe68b7dca79a993c77c348056513ea82614a149
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/7.0.0 CPython/3.13.14
|
Release files / asyncmy-0.2.15-cp313-cp313t-musllinux_1_2_x86_64.whl
| Download URL | asyncmy-0.2.15-cp313-cp313t-musllinux_1_2_x86_64.whl |
|---|---|
| Size | 11.6 MB |
| Tags | CPython 3.13 CPython 3.13 free-threading Linux musl 1.2+ x86-64 |
|
SHA-256 checksum How to use checksums |
633f894a3d64cefe98ff21f186e488f54213802f0e2dcd4c7fe7fd7221d5afad
|
|
BLAKE2b-256 checksum How to use checksums |
a263bcad813ab176b530469e2a273b4026668b40acb302a320271d7305b03e77
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/7.0.0 CPython/3.13.14
|
Release files / asyncmy-0.2.15-cp313-cp313t-musllinux_1_2_aarch64.whl
| Download URL | asyncmy-0.2.15-cp313-cp313t-musllinux_1_2_aarch64.whl |
|---|---|
| Size | 11.6 MB |
| Tags | CPython 3.13 CPython 3.13 free-threading Linux musl 1.2+ ARM64 |
|
SHA-256 checksum How to use checksums |
fd6b291829e4cd89be9e24d0950e7d5d8e92f8497f2a6fcef6e0a12836277e6d
|
|
BLAKE2b-256 checksum How to use checksums |
8a74409e3cca43042a21bf450de0f7470210b311fb57161bc2172bad58a8dc57
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/7.0.0 CPython/3.13.14
|
Release files / asyncmy-0.2.15-cp313-cp313t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
| Download URL | asyncmy-0.2.15-cp313-cp313t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl |
|---|---|
| Size | 12.0 MB |
| Tags | CPython 3.13 CPython 3.13 free-threading Linux glibc 2.17+ x86-64 Linux glibc 2.28+ x86-64 |
|
SHA-256 checksum How to use checksums |
842f5290f63de6e3506df6ca524dd06c64e6a189a3387a888a6df9a493298eeb
|
|
BLAKE2b-256 checksum How to use checksums |
95ad1e33df451227dda0c77a4f7046efb83543539ced0fa814a275ead663714d
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/7.0.0 CPython/3.13.14
|
Release files / asyncmy-0.2.15-cp313-cp313t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
| Download URL | asyncmy-0.2.15-cp313-cp313t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl |
|---|---|
| Size | 12.3 MB |
| Tags | CPython 3.13 CPython 3.13 free-threading Linux glibc 2.17+ ARM64 Linux glibc 2.28+ ARM64 |
|
SHA-256 checksum How to use checksums |
1759a1ca7ea2fd41205c876fa373907ac88a7a17b5d983f88113238275bb9b80
|
|
BLAKE2b-256 checksum How to use checksums |
3c10bc52b5e298b4e6a56209121f338d14cd7b9877a55c811d0a956226da73d4
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/7.0.0 CPython/3.13.14
|
Release files / asyncmy-0.2.15-cp313-cp313t-macosx_11_0_arm64.whl
| Download URL | asyncmy-0.2.15-cp313-cp313t-macosx_11_0_arm64.whl |
|---|---|
| Size | 3.0 MB |
| Tags | CPython 3.13 CPython 3.13 free-threading macOS 11.0+ ARM64 |
|
SHA-256 checksum How to use checksums |
17d9516e6c4dafdf748e07e188230d169e6091d1162e80fedff093b58ab49d40
|
|
BLAKE2b-256 checksum How to use checksums |
3d5dd0de2615c608fb4be8cd7c6a28eca448bbeb53dc447dcc49b6c3f920d16b
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/7.0.0 CPython/3.13.14
|
Release files / asyncmy-0.2.15-cp313-cp313t-macosx_10_13_x86_64.whl
| Download URL | asyncmy-0.2.15-cp313-cp313t-macosx_10_13_x86_64.whl |
|---|---|
| Size | 3.1 MB |
| Tags | CPython 3.13 CPython 3.13 free-threading macOS 10.13+ x86-64 |
|
SHA-256 checksum How to use checksums |
26727e6d8217a99add1b0318e059eaba46186297f6c95debac8424883c8f0a4e
|
|
BLAKE2b-256 checksum How to use checksums |
89465c78b8084c23b9f52458e2850f41d487015fb59353daf738ada50f9ab20f
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/7.0.0 CPython/3.13.14
|
Release files / asyncmy-0.2.15-cp313-cp313-win_amd64.whl
| Download URL | asyncmy-0.2.15-cp313-cp313-win_amd64.whl |
|---|---|
| Size | 2.1 MB |
| Tags | CPython 3.13 Windows x86-64 |
|
SHA-256 checksum How to use checksums |
82e399299fadcce52b4d55b73e370c3f5e9d9ee7be08c71dd75af841eece4143
|
|
BLAKE2b-256 checksum How to use checksums |
6a40cabc3e8e2d2c56911539cea10b8914ed5d115f2317406582c85ce8c79b8c
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/7.0.0 CPython/3.13.14
|
Release files / asyncmy-0.2.15-cp313-cp313-win32.whl
| Download URL | asyncmy-0.2.15-cp313-cp313-win32.whl |
|---|---|
| Size | 2.0 MB |
| Tags | CPython 3.13 Windows x86-32 |
|
SHA-256 checksum How to use checksums |
d3c684fb7fcd3cfe781cf1edcba02fe68847aaa11e970b94739135d6b32d7261
|
|
BLAKE2b-256 checksum How to use checksums |
25ea556e42de74523b5184cabc65c45b49cf78765d6f6369a6425797e81f168f
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/7.0.0 CPython/3.13.14
|
Release files / asyncmy-0.2.15-cp313-cp313-musllinux_1_2_x86_64.whl
| Download URL | asyncmy-0.2.15-cp313-cp313-musllinux_1_2_x86_64.whl |
|---|---|
| Size | 6.6 MB |
| Tags | CPython 3.13 Linux musl 1.2+ x86-64 |
|
SHA-256 checksum How to use checksums |
a3da758ba12988f056818a0e99766119190bc6f7f158b476b00b0b81170835cb
|
|
BLAKE2b-256 checksum How to use checksums |
592242eb97c5adf10b94016b2bdc9fadf7dd6420ae0f37838d153533e30ae462
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/7.0.0 CPython/3.13.14
|
Release files / asyncmy-0.2.15-cp313-cp313-musllinux_1_2_aarch64.whl
| Download URL | asyncmy-0.2.15-cp313-cp313-musllinux_1_2_aarch64.whl |
|---|---|
| Size | 6.4 MB |
| Tags | CPython 3.13 Linux musl 1.2+ ARM64 |
|
SHA-256 checksum How to use checksums |
6fb4803234716214b7ca0e6c30a44bbf6879ff7bf274b6448d58693452dc23b1
|
|
BLAKE2b-256 checksum How to use checksums |
97d354f03e44b49043e7bc66d9a40e35b6ba56b17869f58a006d62f874b55f0c
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/7.0.0 CPython/3.13.14
|
Release files / asyncmy-0.2.15-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
| Download URL | asyncmy-0.2.15-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl |
|---|---|
| Size | 6.8 MB |
| Tags | CPython 3.13 Linux glibc 2.17+ x86-64 Linux glibc 2.28+ x86-64 |
|
SHA-256 checksum How to use checksums |
865540d52de7321920836df1fa228d653c648f22b486756a041d32957574c468
|
|
BLAKE2b-256 checksum How to use checksums |
ed972b063f72c26a535bf23169f2e35542f1f1ebea226bb8fdcd49bff07bf2af
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/7.0.0 CPython/3.13.14
|
Release files / asyncmy-0.2.15-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
| Download URL | asyncmy-0.2.15-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl |
|---|---|
| Size | 6.7 MB |
| Tags | CPython 3.13 Linux glibc 2.17+ ARM64 Linux glibc 2.28+ ARM64 |
|
SHA-256 checksum How to use checksums |
2f8fbeed4a933efdf86391a468642fefce86bf6324112eed7fa57e057eed1ed9
|
|
BLAKE2b-256 checksum How to use checksums |
00d7ddde3f97647f0a1297715f2a889ab8424efacb8b63641311af7455ed84d9
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/7.0.0 CPython/3.13.14
|
Release files / asyncmy-0.2.15-cp313-cp313-macosx_11_0_arm64.whl
| Download URL | asyncmy-0.2.15-cp313-cp313-macosx_11_0_arm64.whl |
|---|---|
| Size | 2.2 MB |
| Tags | CPython 3.13 macOS 11.0+ ARM64 |
|
SHA-256 checksum How to use checksums |
694808a0bc29456e7406fc97847c1f706ba5ffe544359f2a9cf4e201c6245682
|
|
BLAKE2b-256 checksum How to use checksums |
84eae15fccdbf8e917b3dab9f9c599b491016f4eeef118d0fbc22dd291de5c10
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/7.0.0 CPython/3.13.14
|
Release files / asyncmy-0.2.15-cp313-cp313-macosx_10_13_x86_64.whl
| Download URL | asyncmy-0.2.15-cp313-cp313-macosx_10_13_x86_64.whl |
|---|---|
| Size | 2.2 MB |
| Tags | CPython 3.13 macOS 10.13+ x86-64 |
|
SHA-256 checksum How to use checksums |
80a5d3a4d622847d77877b751857ba3b5893a38201963b048f4535ab32791821
|
|
BLAKE2b-256 checksum How to use checksums |
666cad0b38d87241a0465867e9f5978f4b8cccbd3d2adb63ae2cd9fc55dd7e8b
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/7.0.0 CPython/3.13.14
|
Release files / asyncmy-0.2.15-cp312-cp312-win_amd64.whl
| Download URL | asyncmy-0.2.15-cp312-cp312-win_amd64.whl |
|---|---|
| Size | 2.1 MB |
| Tags | CPython 3.12 Windows x86-64 |
|
SHA-256 checksum How to use checksums |
fb33a4d88ee542400976f125479c330628cefbe2b9d42693d71fe215b7392e55
|
|
BLAKE2b-256 checksum How to use checksums |
fc29ece2e511f64d1cd1590f57baf42e79cafed180922c00765956f3da8d8ec0
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/7.0.0 CPython/3.13.14
|
Release files / asyncmy-0.2.15-cp312-cp312-win32.whl
| Download URL | asyncmy-0.2.15-cp312-cp312-win32.whl |
|---|---|
| Size | 2.0 MB |
| Tags | CPython 3.12 Windows x86-32 |
|
SHA-256 checksum How to use checksums |
b9055f81d25d35dc9a3cefd626430ddb7bd27fd617bfa172669bc62d361d9d81
|
|
BLAKE2b-256 checksum How to use checksums |
741afff3b3682816af77390848f904035e32ac2bc21de25790a618affb4fb8db
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/7.0.0 CPython/3.13.14
|
Release files / asyncmy-0.2.15-cp312-cp312-musllinux_1_2_x86_64.whl
| Download URL | asyncmy-0.2.15-cp312-cp312-musllinux_1_2_x86_64.whl |
|---|---|
| Size | 6.6 MB |
| Tags | CPython 3.12 Linux musl 1.2+ x86-64 |
|
SHA-256 checksum How to use checksums |
b7433636becbcdd64f483d3e5e2e377e993ffeedf3ee678c0049e9941ba584ef
|
|
BLAKE2b-256 checksum How to use checksums |
70efbb9d7a6277240f018e229e8a8bcd8285fe8aa1d147d93ab755e9c82f1da4
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/7.0.0 CPython/3.13.14
|
Release files / asyncmy-0.2.15-cp312-cp312-musllinux_1_2_aarch64.whl
| Download URL | asyncmy-0.2.15-cp312-cp312-musllinux_1_2_aarch64.whl |
|---|---|
| Size | 6.5 MB |
| Tags | CPython 3.12 Linux musl 1.2+ ARM64 |
|
SHA-256 checksum How to use checksums |
05bd7d64a688e2174a0c033690242f973ad850771b9b9befd4c4528c9f75b4ef
|
|
BLAKE2b-256 checksum How to use checksums |
927ff058dc048a0abcd068b8f147ce7d856251d42aa9f9248d25398aa3ddf832
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/7.0.0 CPython/3.13.14
|
Release files / asyncmy-0.2.15-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
| Download URL | asyncmy-0.2.15-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl |
|---|---|
| Size | 6.8 MB |
| Tags | CPython 3.12 Linux glibc 2.17+ x86-64 Linux glibc 2.28+ x86-64 |
|
SHA-256 checksum How to use checksums |
f4ac016595754427d99c6830518ff78048be4f1a639ae2e87c34bc722f615819
|
|
BLAKE2b-256 checksum How to use checksums |
d78ef90ddc391067ad2236e96cb21aa642f95952d10a7e9367caf97100567794
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/7.0.0 CPython/3.13.14
|
Release files / asyncmy-0.2.15-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
| Download URL | asyncmy-0.2.15-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl |
|---|---|
| Size | 6.8 MB |
| Tags | CPython 3.12 Linux glibc 2.17+ ARM64 Linux glibc 2.28+ ARM64 |
|
SHA-256 checksum How to use checksums |
b94f1ad3b593981d65fd4cb1458db2806c9aea4d455600b378b9c2a466487580
|
|
BLAKE2b-256 checksum How to use checksums |
3373291b9502b13ea38e75e4257461773b95b7cccfadb226b586c15438d9ba1b
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/7.0.0 CPython/3.13.14
|
Release files / asyncmy-0.2.15-cp312-cp312-macosx_11_0_arm64.whl
| Download URL | asyncmy-0.2.15-cp312-cp312-macosx_11_0_arm64.whl |
|---|---|
| Size | 2.2 MB |
| Tags | CPython 3.12 macOS 11.0+ ARM64 |
|
SHA-256 checksum How to use checksums |
9663d6ace79eecbfb5a4ef5393e7ccea883541954ea60da7cb37c386d53fc428
|
|
BLAKE2b-256 checksum How to use checksums |
3a8d8b4b770c18d86d5292ee697858294539142aac96d69c46ff5393e2333cf5
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/7.0.0 CPython/3.13.14
|
Release files / asyncmy-0.2.15-cp312-cp312-macosx_10_13_x86_64.whl
| Download URL | asyncmy-0.2.15-cp312-cp312-macosx_10_13_x86_64.whl |
|---|---|
| Size | 2.2 MB |
| Tags | CPython 3.12 macOS 10.13+ x86-64 |
|
SHA-256 checksum How to use checksums |
3e08d3ee06eb01560db24390dce342ada2c1c6a22b2381cba4db16deac24f948
|
|
BLAKE2b-256 checksum How to use checksums |
ded6f7896a4058f6759c4027bb920255d6e14543695eeab57e31cf0a462ca4d4
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/7.0.0 CPython/3.13.14
|
Release files / asyncmy-0.2.15-cp311-cp311-win_amd64.whl
| Download URL | asyncmy-0.2.15-cp311-cp311-win_amd64.whl |
|---|---|
| Size | 2.1 MB |
| Tags | CPython 3.11 Windows x86-64 |
|
SHA-256 checksum How to use checksums |
f8757246b4ff5b3ee3df1ad74371c421bb95b7d8f4816cfd1796760b78a34b27
|
|
BLAKE2b-256 checksum How to use checksums |
a247e8ec1737d91d6cb59ba81b8eadf6f051df9027c2dc546a83516097303198
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/7.0.0 CPython/3.13.14
|
Release files / asyncmy-0.2.15-cp311-cp311-win32.whl
| Download URL | asyncmy-0.2.15-cp311-cp311-win32.whl |
|---|---|
| Size | 2.0 MB |
| Tags | CPython 3.11 Windows x86-32 |
|
SHA-256 checksum How to use checksums |
87225513ffdfd589f1e95257395dca77d8ced3e296d5c4e41232d175991cb581
|
|
BLAKE2b-256 checksum How to use checksums |
6aedd7a0cf6033dbfc340463908496e3792ef332648d97ae73c338c479781c51
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/7.0.0 CPython/3.13.14
|
Release files / asyncmy-0.2.15-cp311-cp311-musllinux_1_2_x86_64.whl
| Download URL | asyncmy-0.2.15-cp311-cp311-musllinux_1_2_x86_64.whl |
|---|---|
| Size | 6.7 MB |
| Tags | CPython 3.11 Linux musl 1.2+ x86-64 |
|
SHA-256 checksum How to use checksums |
92855b35567a2baa16516f62d43dedfbf8027465dc84ee34bcf4670709f732b4
|
|
BLAKE2b-256 checksum How to use checksums |
bae9149fafc72ef34c9463a90c13ddfe99bb96b299bb6fc379de48d639a5de2a
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/7.0.0 CPython/3.13.14
|
Release files / asyncmy-0.2.15-cp311-cp311-musllinux_1_2_aarch64.whl
| Download URL | asyncmy-0.2.15-cp311-cp311-musllinux_1_2_aarch64.whl |
|---|---|
| Size | 6.7 MB |
| Tags | CPython 3.11 Linux musl 1.2+ ARM64 |
|
SHA-256 checksum How to use checksums |
2e6fa714c9424472e71960592f68ef72801db3c8ddbd21949cef3e6ee497c89b
|
|
BLAKE2b-256 checksum How to use checksums |
a7a2b36a0d25f7e59a2a14ee1bf0937b7643e3526a106d756647c6ea78cd5685
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/7.0.0 CPython/3.13.14
|
Release files / asyncmy-0.2.15-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
| Download URL | asyncmy-0.2.15-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl |
|---|---|
| Size | 6.9 MB |
| Tags | CPython 3.11 Linux glibc 2.17+ x86-64 Linux glibc 2.28+ x86-64 |
|
SHA-256 checksum How to use checksums |
931856be1637f93393c03e7d7e10603b395dbe5c7c724a4638421556329baee0
|
|
BLAKE2b-256 checksum How to use checksums |
cf932c9ae762c6ea73e5a9f4099e1d38a6b91edf8b2e7f446d119f541e17b0fe
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/7.0.0 CPython/3.13.14
|
Release files / asyncmy-0.2.15-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
| Download URL | asyncmy-0.2.15-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl |
|---|---|
| Size | 6.9 MB |
| Tags | CPython 3.11 Linux glibc 2.17+ ARM64 Linux glibc 2.28+ ARM64 |
|
SHA-256 checksum How to use checksums |
16589ccc6baa0f1f99077e78fb4a95b1f11df8ae624d47a134debbe8a7d14bde
|
|
BLAKE2b-256 checksum How to use checksums |
0e22db58bb734446818f1b364210e017b8fb502e35dfcd13c4ac701b8109ba3c
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/7.0.0 CPython/3.13.14
|
Release files / asyncmy-0.2.15-cp311-cp311-macosx_11_0_arm64.whl
| Download URL | asyncmy-0.2.15-cp311-cp311-macosx_11_0_arm64.whl |
|---|---|
| Size | 2.2 MB |
| Tags | CPython 3.11 macOS 11.0+ ARM64 |
|
SHA-256 checksum How to use checksums |
e878e102530a7e8e7cb60038d1247ab08d275a8de6e43d374e5b931e7186ab00
|
|
BLAKE2b-256 checksum How to use checksums |
ae5b59e19241492f00388730e15a4db8b9fb7e899bfab2ff428550f9350504b9
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/7.0.0 CPython/3.13.14
|
Release files / asyncmy-0.2.15-cp311-cp311-macosx_10_9_x86_64.whl
| Download URL | asyncmy-0.2.15-cp311-cp311-macosx_10_9_x86_64.whl |
|---|---|
| Size | 2.3 MB |
| Tags | CPython 3.11 macOS 10.9+ x86-64 |
|
SHA-256 checksum How to use checksums |
c6132f3568cdcf653a58a71b2a8ce402956fba30ecb12663ce1e02dae2aa17ad
|
|
BLAKE2b-256 checksum How to use checksums |
a2d118147bd8694da82dec87b8740270da460aacd6288cffb6f8ae0b5b5df8db
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/7.0.0 CPython/3.13.14
|
Release files / asyncmy-0.2.15-cp310-cp310-win_amd64.whl
| Download URL | asyncmy-0.2.15-cp310-cp310-win_amd64.whl |
|---|---|
| Size | 2.1 MB |
| Tags | CPython 3.10 Windows x86-64 |
|
SHA-256 checksum How to use checksums |
d702f858cee7b8d3e2473ce21b5db8a5b3bc0dbb6cc72c413f3d5b08f804dd5e
|
|
BLAKE2b-256 checksum How to use checksums |
2a3b7f206be95d26c9d244a1a84555bbd8f4443202453a835b0f9e3ef07a7576
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/7.0.0 CPython/3.13.14
|
Release files / asyncmy-0.2.15-cp310-cp310-win32.whl
| Download URL | asyncmy-0.2.15-cp310-cp310-win32.whl |
|---|---|
| Size | 2.0 MB |
| Tags | CPython 3.10 Windows x86-32 |
|
SHA-256 checksum How to use checksums |
22b897b25e70c11abad03af9434d94812dd3e89ef94cba3cbd4e06692a7b51b6
|
|
BLAKE2b-256 checksum How to use checksums |
d10babb35e0f7dc22a254f9f91985350fa306a34cc5a3e9a3c681abe8d939150
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/7.0.0 CPython/3.13.14
|
Release files / asyncmy-0.2.15-cp310-cp310-musllinux_1_2_x86_64.whl
| Download URL | asyncmy-0.2.15-cp310-cp310-musllinux_1_2_x86_64.whl |
|---|---|
| Size | 6.5 MB |
| Tags | CPython 3.10 Linux musl 1.2+ x86-64 |
|
SHA-256 checksum How to use checksums |
5a87fa350a5e70a6b7d0f30601b0bd8133bf1b53d09251648b80022607ecfe68
|
|
BLAKE2b-256 checksum How to use checksums |
1f36fcb600c797a73a5d7700fccc0bcecd3e6c7f0bdc58d5b8f21401444663cf
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/7.0.0 CPython/3.13.14
|
Release files / asyncmy-0.2.15-cp310-cp310-musllinux_1_2_aarch64.whl
| Download URL | asyncmy-0.2.15-cp310-cp310-musllinux_1_2_aarch64.whl |
|---|---|
| Size | 6.4 MB |
| Tags | CPython 3.10 Linux musl 1.2+ ARM64 |
|
SHA-256 checksum How to use checksums |
e3f932a7b8f503d1d481afd677f3376fbfe8dfaa10a4f322569fdd0e54a148e8
|
|
BLAKE2b-256 checksum How to use checksums |
1362dfd0511a162850372037fe32282b68af71f66af17e38753525ca3ec5d789
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/7.0.0 CPython/3.13.14
|
Release files / asyncmy-0.2.15-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
| Download URL | asyncmy-0.2.15-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl |
|---|---|
| Size | 6.6 MB |
| Tags | CPython 3.10 Linux glibc 2.17+ x86-64 Linux glibc 2.28+ x86-64 |
|
SHA-256 checksum How to use checksums |
c818e3ab5ea5734ad26847d6ba277f3aaa14786bb6f917fc6662b77bff743224
|
|
BLAKE2b-256 checksum How to use checksums |
aa39ebe2fccb103a7100766d936f740a9187e388eae81c42bd7b1f4394738a36
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/7.0.0 CPython/3.13.14
|
Release files / asyncmy-0.2.15-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
| Download URL | asyncmy-0.2.15-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl |
|---|---|
| Size | 6.6 MB |
| Tags | CPython 3.10 Linux glibc 2.17+ ARM64 Linux glibc 2.28+ ARM64 |
|
SHA-256 checksum How to use checksums |
b765466e888f6e0b92ed52ac48552cf855e814663746c39aa53b6ce93eb48e8a
|
|
BLAKE2b-256 checksum How to use checksums |
341b0475dfd332525acfb65285d279c22502ba51c04d217916c26a03cd7a2b77
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/7.0.0 CPython/3.13.14
|
Release files / asyncmy-0.2.15-cp310-cp310-macosx_11_0_arm64.whl
| Download URL | asyncmy-0.2.15-cp310-cp310-macosx_11_0_arm64.whl |
|---|---|
| Size | 2.2 MB |
| Tags | CPython 3.10 macOS 11.0+ ARM64 |
|
SHA-256 checksum How to use checksums |
ce00e4fff3e656cb3f2a4de5804a37951ef26afa3d920050d15875dcdabc0bc5
|
|
BLAKE2b-256 checksum How to use checksums |
45f6456202aba8c0aa86af8d9cfe34f10694a9b9d3a30863657d91455109c317
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/7.0.0 CPython/3.13.14
|
Release files / asyncmy-0.2.15-cp310-cp310-macosx_10_9_x86_64.whl
| Download URL | asyncmy-0.2.15-cp310-cp310-macosx_10_9_x86_64.whl |
|---|---|
| Size | 2.3 MB |
| Tags | CPython 3.10 macOS 10.9+ x86-64 |
|
SHA-256 checksum How to use checksums |
d2d7f6243b07770c409caf38adc09ef51e88460c6690c6181edfa7f0efb1fe68
|
|
BLAKE2b-256 checksum How to use checksums |
68fecf2c73c3d7d7081cb6f0fcd27135c8972d2ac464731dc88dcba5cdc3eb2e
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/7.0.0 CPython/3.13.14
|
Release files / asyncmy-0.2.15-cp39-cp39-win_amd64.whl
| Download URL | asyncmy-0.2.15-cp39-cp39-win_amd64.whl |
|---|---|
| Size | 2.1 MB |
| Tags | CPython 3.9 Windows x86-64 |
|
SHA-256 checksum How to use checksums |
bf3705b9b3df65452ad405c7aad98a929e5dddfc4a61bbf1859c1a83b4274d36
|
|
BLAKE2b-256 checksum How to use checksums |
e46ac65b850ccdaf0cae633b7fd020a5be1b8cabf7384177f28e5f2a2c6c2ab0
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/7.0.0 CPython/3.13.14
|
Release files / asyncmy-0.2.15-cp39-cp39-win32.whl
| Download URL | asyncmy-0.2.15-cp39-cp39-win32.whl |
|---|---|
| Size | 2.0 MB |
| Tags | CPython 3.9 Windows x86-32 |
|
SHA-256 checksum How to use checksums |
3af5c7ab271b84c1af285834384143ede73b3e3a55e2a3fa8341fa7193c94bbe
|
|
BLAKE2b-256 checksum How to use checksums |
380fe6c07a62aa4e07b9c73568efbf58ac93018753a372d3d4973d106784690a
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/7.0.0 CPython/3.13.14
|
Release files / asyncmy-0.2.15-cp39-cp39-musllinux_1_2_x86_64.whl
| Download URL | asyncmy-0.2.15-cp39-cp39-musllinux_1_2_x86_64.whl |
|---|---|
| Size | 6.5 MB |
| Tags | CPython 3.9 Linux musl 1.2+ x86-64 |
|
SHA-256 checksum How to use checksums |
c633ea87b8e5e4f8848665f49a597e14f1a71f330e35a7064b1776402e599450
|
|
BLAKE2b-256 checksum How to use checksums |
23df1bac72ea07f37398212d541c913a6a7b0de1b8a4719efd5bae0d04f42e42
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/7.0.0 CPython/3.13.14
|
Release files / asyncmy-0.2.15-cp39-cp39-musllinux_1_2_aarch64.whl
| Download URL | asyncmy-0.2.15-cp39-cp39-musllinux_1_2_aarch64.whl |
|---|---|
| Size | 6.4 MB |
| Tags | CPython 3.9 Linux musl 1.2+ ARM64 |
|
SHA-256 checksum How to use checksums |
7f72bb61b7465e6bef2f5a405323eefc836e3647a4f25bb99cbfdb492e9157d0
|
|
BLAKE2b-256 checksum How to use checksums |
2fc65f9224c52e2e279f9d6f57d819f1b9617a6ecc458ac3a1f7a7a9d9fbe6e6
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/7.0.0 CPython/3.13.14
|
Release files / asyncmy-0.2.15-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
| Download URL | asyncmy-0.2.15-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl |
|---|---|
| Size | 6.6 MB |
| Tags | CPython 3.9 Linux glibc 2.17+ x86-64 Linux glibc 2.28+ x86-64 |
|
SHA-256 checksum How to use checksums |
bd453ade892e29f5415b1c33ab46a13668540454d011f3898706950db95de378
|
|
BLAKE2b-256 checksum How to use checksums |
fe79aee0a035978fc73a42d911ee1f65b63c88cf06d98b5a5527ca04c03b2155
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/7.0.0 CPython/3.13.14
|
Release files / asyncmy-0.2.15-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
| Download URL | asyncmy-0.2.15-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl |
|---|---|
| Size | 6.6 MB |
| Tags | CPython 3.9 Linux glibc 2.17+ ARM64 Linux glibc 2.28+ ARM64 |
|
SHA-256 checksum How to use checksums |
39db6881054e4173246b24c8fac7b2eca29b6608546fcc502e112342014576b9
|
|
BLAKE2b-256 checksum How to use checksums |
8769c5e3638d774629cc7b9e54efd202516fa8337dd109bb5dd2f4f10dd8c009
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/7.0.0 CPython/3.13.14
|
Release files / asyncmy-0.2.15-cp39-cp39-macosx_11_0_arm64.whl
| Download URL | asyncmy-0.2.15-cp39-cp39-macosx_11_0_arm64.whl |
|---|---|
| Size | 2.2 MB |
| Tags | CPython 3.9 macOS 11.0+ ARM64 |
|
SHA-256 checksum How to use checksums |
41d3ce6907d0df6c2592c3af3027047cbc2f93308d7b98277f3193a64d3e3cb0
|
|
BLAKE2b-256 checksum How to use checksums |
560b3c904861c5b4b8909055032d0aa656dc499ec4151b409758158d637473f0
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/7.0.0 CPython/3.13.14
|
Release files / asyncmy-0.2.15-cp39-cp39-macosx_10_9_x86_64.whl
| Download URL | asyncmy-0.2.15-cp39-cp39-macosx_10_9_x86_64.whl |
|---|---|
| Size | 2.3 MB |
| Tags | CPython 3.9 macOS 10.9+ x86-64 |
|
SHA-256 checksum How to use checksums |
9a4a58eeffbff605413094afa8690963319adbe177af092585c3b448d96591ce
|
|
BLAKE2b-256 checksum How to use checksums |
044d6728c43452bf1fe529b04a001884c68370a9f03be4293fa55dae50f8f79a
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/7.0.0 CPython/3.13.14
|