This release is a pre-release and may not be stable for production use.
Key Features
Supports both client and server side of HTTP protocol.
Supports both client and server Web-Sockets out-of-the-box and avoids Callback Hell.
Provides Web-server with middlewares and plugable routing.
Getting started
Client
To get something from the web:
import aiohttp
import asyncio
async def main():
async with aiohttp.ClientSession() as session:
async with session.get('http://python.org') as response:
print("Status:", response.status)
print("Content-type:", response.headers['content-type'])
html = await response.text()
print("Body:", html[:15], "...")
loop = asyncio.get_event_loop()
loop.run_until_complete(main())
This prints:
Status: 200
Content-type: text/html; charset=utf-8
Body: <!doctype html> ...
Coming from requests ? Read why we need so many lines.
Server
An example using a simple server:
# examples/server_simple.py
from aiohttp import web
async def handle(request):
name = request.match_info.get('name', "Anonymous")
text = "Hello, " + name
return web.Response(text=text)
async def wshandle(request):
ws = web.WebSocketResponse()
await ws.prepare(request)
async for msg in ws:
if msg.type == web.WSMsgType.text:
await ws.send_str("Hello, {}".format(msg.data))
elif msg.type == web.WSMsgType.binary:
await ws.send_bytes(msg.data)
elif msg.type == web.WSMsgType.close:
break
return ws
app = web.Application()
app.add_routes([web.get('/', handle),
web.get('/echo', wshandle),
web.get('/{name}', handle)])
if __name__ == '__main__':
web.run_app(app)
Documentation
Demos
External links
Feel free to make a Pull Request for adding your link to these pages!
Communication channels
aio-libs discourse group: https://aio-libs.discourse.group
gitter chat https://gitter.im/aio-libs/Lobby
We support Stack Overflow. Please add aiohttp tag to your question there.
Requirements
Python >= 3.6
Optionally you may install the cChardet and aiodns libraries (highly recommended for sake of speed).
License
aiohttp is offered under the Apache 2 license.
Keepsafe
The aiohttp community would like to thank Keepsafe (https://www.getkeepsafe.com) for its support in the early days of the project.
Source code
The latest developer version is available in a GitHub repository: https://github.com/aio-libs/aiohttp
Benchmarks
If you are interested in efficiency, the AsyncIO community maintains a list of benchmarks on the official wiki: https://github.com/python/asyncio/wiki/Benchmarks
Release files for aiohttp 3.8.0b0
For a detailed explanation of source distributions (sdists) and built distributions (wheels), please see the package formats documentation.
Source distribution (sdist)
| File | Size | Uploaded | |
|---|---|---|---|
| aiohttp-3.8.0b0.tar.gz | 7.3 MB | Details |
Built distributions (wheels)
Total release size: 81.7 MB
Release files / aiohttp-3.8.0b0.tar.gz
| Download URL | aiohttp-3.8.0b0.tar.gz |
|---|---|
| Size | 7.3 MB |
| Tags | Source |
|
SHA-256 checksum How to use checksums |
1877c0aa9da644ac3e71f3027a14b551183e2ec63aaba7a99b972bfe33c569e5
|
|
BLAKE2b-256 checksum How to use checksums |
4498f2f185361d43e426d0f10580059931c7672f37529381e1ed4145c5c673c1
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/3.4.2 importlib_metadata/4.8.1 pkginfo/1.7.1 requests/2.22.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.8.10
|
Release files / aiohttp-3.8.0b0-cp310-cp310-win_amd64.whl
| Download URL | aiohttp-3.8.0b0-cp310-cp310-win_amd64.whl |
|---|---|
| Size | 571.4 kB |
| Tags | CPython 3.10 Windows x86-64 |
|
SHA-256 checksum How to use checksums |
cde759e38ef2e48f9d531477e8965288507af3c8f0e94eef6a46b245139da435
|
|
BLAKE2b-256 checksum How to use checksums |
8266d9b480193e27b1ebc9f0062795c137ac1c632d267f2da2c538225d1138d5
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/3.4.2 importlib_metadata/4.8.1 pkginfo/1.7.1 requests/2.22.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.8.10
|
Release files / aiohttp-3.8.0b0-cp310-cp310-win32.whl
| Download URL | aiohttp-3.8.0b0-cp310-cp310-win32.whl |
|---|---|
| Size | 550.8 kB |
| Tags | CPython 3.10 Windows x86-32 |
|
SHA-256 checksum How to use checksums |
c510e5171c1e10c9febc23487854b62b39a9ab33d1f77c57d41d54b78d882b8b
|
|
BLAKE2b-256 checksum How to use checksums |
b8d79c2bb22d144496a6563130ce75a2f41958910784d62a54942a3590406251
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/3.4.2 importlib_metadata/4.8.1 pkginfo/1.7.1 requests/2.22.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.8.10
|
Release files / aiohttp-3.8.0b0-cp310-cp310-musllinux_1_1_x86_64.whl
| Download URL | aiohttp-3.8.0b0-cp310-cp310-musllinux_1_1_x86_64.whl |
|---|---|
| Size | 1.3 MB |
| Tags | CPython 3.10 Linux musl 1.1+ x86-64 |
|
SHA-256 checksum How to use checksums |
600be86250a017394053d6bc55267f5a3c47baba1a0df27b3233def55d41fd9e
|
|
BLAKE2b-256 checksum How to use checksums |
7df8ae14fbdfd221469d810dbfca3d544d2728189e982a6849fc5e69522d7f0f
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/3.4.2 importlib_metadata/4.8.1 pkginfo/1.7.1 requests/2.22.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.8.10
|
Release files / aiohttp-3.8.0b0-cp310-cp310-musllinux_1_1_s390x.whl
| Download URL | aiohttp-3.8.0b0-cp310-cp310-musllinux_1_1_s390x.whl |
|---|---|
| Size | 1.3 MB |
| Tags | CPython 3.10 Linux musl 1.1+ IBM System/390x |
|
SHA-256 checksum How to use checksums |
c3e7f6b2176e1cb41ee582cade31e11880920528b23fa82c24e3333aa16a1abf
|
|
BLAKE2b-256 checksum How to use checksums |
40cae3f406317bad07fa64cec24bf0f446bdb1983cbc95678cd980f8fa84bf20
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/3.4.2 importlib_metadata/4.8.1 pkginfo/1.7.1 requests/2.22.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.8.10
|
Release files / aiohttp-3.8.0b0-cp310-cp310-musllinux_1_1_ppc64le.whl
| Download URL | aiohttp-3.8.0b0-cp310-cp310-musllinux_1_1_ppc64le.whl |
|---|---|
| Size | 1.3 MB |
| Tags | CPython 3.10 Linux musl 1.1+ PowerPC 64-le |
|
SHA-256 checksum How to use checksums |
c12f2f0e154514b09e1d1e7f3648129f16de435be4ae2e337add32362ce433ef
|
|
BLAKE2b-256 checksum How to use checksums |
333e092eed49b2d7703b215ce32ce111c6c57578eb42fbcbd9aa97e0b1a9e69a
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/3.4.2 importlib_metadata/4.8.1 pkginfo/1.7.1 requests/2.22.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.8.10
|
Release files / aiohttp-3.8.0b0-cp310-cp310-musllinux_1_1_i686.whl
| Download URL | aiohttp-3.8.0b0-cp310-cp310-musllinux_1_1_i686.whl |
|---|---|
| Size | 1.2 MB |
| Tags | CPython 3.10 Linux musl 1.1+ x86-32 |
|
SHA-256 checksum How to use checksums |
1ad17a644fb03fdd4a1979b9e2531622c8cca956b075c66ea28c1998a2f17e6b
|
|
BLAKE2b-256 checksum How to use checksums |
f12a387a0f714ae52f39b8c59545fa6100095f2a45f1caee4777af3e3938f5c8
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/3.4.2 importlib_metadata/4.8.1 pkginfo/1.7.1 requests/2.22.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.8.10
|
Release files / aiohttp-3.8.0b0-cp310-cp310-musllinux_1_1_aarch64.whl
| Download URL | aiohttp-3.8.0b0-cp310-cp310-musllinux_1_1_aarch64.whl |
|---|---|
| Size | 1.3 MB |
| Tags | CPython 3.10 Linux musl 1.1+ ARM64 |
|
SHA-256 checksum How to use checksums |
366b1699a0308596f39529e017e1a496a699fd1333f9bfe6221c45b090ad20f1
|
|
BLAKE2b-256 checksum How to use checksums |
024d7f1e07b0b8567d1570bffcc313bfbc2be3f38fd4777e65f08e97bdfc0520
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/3.4.2 importlib_metadata/4.8.1 pkginfo/1.7.1 requests/2.22.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.8.10
|
Release files / aiohttp-3.8.0b0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
| Download URL | aiohttp-3.8.0b0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl |
|---|---|
| Size | 1.3 MB |
| Tags | CPython 3.10 Linux glibc 2.17+ IBM System/390x |
|
SHA-256 checksum How to use checksums |
dfe5a0eddd157088c1f1951d4add3d59e3c86bba7613e9db719470561ea85b0f
|
|
BLAKE2b-256 checksum How to use checksums |
22f10a6506423601d853b07cf25e91c72f8b3a3f62aecb557507ff0c06a95f11
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/3.4.2 importlib_metadata/4.8.1 pkginfo/1.7.1 requests/2.22.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.8.10
|
Release files / aiohttp-3.8.0b0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
| Download URL | aiohttp-3.8.0b0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl |
|---|---|
| Size | 1.3 MB |
| Tags | CPython 3.10 Linux glibc 2.17+ PowerPC 64-le |
|
SHA-256 checksum How to use checksums |
f4b7a835bd9409d2bf7be43267d4e59edfad23ab4bd3b8c08d2bea2e6e2cff4e
|
|
BLAKE2b-256 checksum How to use checksums |
ba9b436bcbdd13628b9130445e7f761b7df9f2294948356fdaac6be4de3baf4b
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/3.4.2 importlib_metadata/4.8.1 pkginfo/1.7.1 requests/2.22.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.8.10
|
Release files / aiohttp-3.8.0b0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
| Download URL | aiohttp-3.8.0b0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl |
|---|---|
| Size | 1.3 MB |
| Tags | CPython 3.10 Linux glibc 2.17+ ARM64 |
|
SHA-256 checksum How to use checksums |
1a423a47525f23a718dd43e832071e6101313c60d68ffbad10da4898dc23678e
|
|
BLAKE2b-256 checksum How to use checksums |
981b9e0b34a1c344b236ef57889f3f0be24a149a7fa10deb9b4e5077eff12144
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/3.4.2 importlib_metadata/4.8.1 pkginfo/1.7.1 requests/2.22.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.8.10
|
Release files / aiohttp-3.8.0b0-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl
| Download URL | aiohttp-3.8.0b0-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl |
|---|---|
| Size | 1.2 MB |
| Tags | CPython 3.10 Linux glibc 2.12+ x86-64 Linux glibc 2.5+ x86-64 |
|
SHA-256 checksum How to use checksums |
741f886093b593133ddd11cad9fe1f75d433ce3447bd281137a957a366142088
|
|
BLAKE2b-256 checksum How to use checksums |
0287ecfc981ad2bd001539b13548702e68cfd6b62a6becd0f0d9e9be0a4d650a
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/3.4.2 importlib_metadata/4.8.1 pkginfo/1.7.1 requests/2.22.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.8.10
|
Release files / aiohttp-3.8.0b0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_12_i686.manylinux2010_i686.whl
| Download URL | aiohttp-3.8.0b0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_12_i686.manylinux2010_i686.whl |
|---|---|
| Size | 1.2 MB |
| Tags | CPython 3.10 Linux glibc 2.12+ x86-32 Linux glibc 2.5+ x86-32 |
|
SHA-256 checksum How to use checksums |
28d09b342a6f51f8f6e0d8e932240ad89bbc941ce1c382e1f1fe87464fa2fe32
|
|
BLAKE2b-256 checksum How to use checksums |
32494385b1dc1d4ffb06fe56be8ae0e0929f449accbe7303c0ccd304e29381de
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/3.4.2 importlib_metadata/4.8.1 pkginfo/1.7.1 requests/2.22.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.8.10
|
Release files / aiohttp-3.8.0b0-cp310-cp310-macosx_11_0_arm64.whl
| Download URL | aiohttp-3.8.0b0-cp310-cp310-macosx_11_0_arm64.whl |
|---|---|
| Size | 568.6 kB |
| Tags | CPython 3.10 macOS 11.0+ ARM64 |
|
SHA-256 checksum How to use checksums |
b232094045efbba1e2040c49e4f07296a114b582c9d15a5863279b58d75a8c6d
|
|
BLAKE2b-256 checksum How to use checksums |
d09d73957f389c7206b87eeef70df51a7af1ca8de8e6863f220bd0bcc8d62579
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/3.4.2 importlib_metadata/4.8.1 pkginfo/1.7.1 requests/2.22.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.8.10
|
Release files / aiohttp-3.8.0b0-cp310-cp310-macosx_10_9_x86_64.whl
| Download URL | aiohttp-3.8.0b0-cp310-cp310-macosx_10_9_x86_64.whl |
|---|---|
| Size | 591.4 kB |
| Tags | CPython 3.10 macOS 10.9+ x86-64 |
|
SHA-256 checksum How to use checksums |
7c97898b78c5ff1d35625aa72afbd177bf4c949b8b55cfa24296acd8dd6b777e
|
|
BLAKE2b-256 checksum How to use checksums |
6b296189c6df06811d6faf864725d9cf2a2cc9389c7615de07fc3db0175ca098
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/3.4.2 importlib_metadata/4.8.1 pkginfo/1.7.1 requests/2.22.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.8.10
|
Release files / aiohttp-3.8.0b0-cp310-cp310-macosx_10_9_universal2.whl
| Download URL | aiohttp-3.8.0b0-cp310-cp310-macosx_10_9_universal2.whl |
|---|---|
| Size | 745.3 kB |
| Tags | CPython 3.10 macOS 10.9+ universal2 (ARM64, x86-64) |
|
SHA-256 checksum How to use checksums |
a366d71f5bb179e17d5d2095806633e14e68af7166cb401e8021abace915e587
|
|
BLAKE2b-256 checksum How to use checksums |
c06454e5d96df9d337ff1f1d587c5340fa9e9dcdf3ae22fe2781d7be18bfc315
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/3.4.2 importlib_metadata/4.8.1 pkginfo/1.7.1 requests/2.22.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.8.10
|
Release files / aiohttp-3.8.0b0-cp39-cp39-win_amd64.whl
| Download URL | aiohttp-3.8.0b0-cp39-cp39-win_amd64.whl |
|---|---|
| Size | 571.2 kB |
| Tags | CPython 3.9 Windows x86-64 |
|
SHA-256 checksum How to use checksums |
7544498612ce91247f9ddb72e97d6413a9f88b05b67b6f3a0909497cbef3e8bb
|
|
BLAKE2b-256 checksum How to use checksums |
6b57e095febabc73d33f0ed645609a55eb4de0a5602e7d22c9f1274cb95546a6
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/3.4.2 importlib_metadata/4.8.1 pkginfo/1.7.1 requests/2.22.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.8.10
|
Release files / aiohttp-3.8.0b0-cp39-cp39-win32.whl
| Download URL | aiohttp-3.8.0b0-cp39-cp39-win32.whl |
|---|---|
| Size | 550.8 kB |
| Tags | CPython 3.9 Windows x86-32 |
|
SHA-256 checksum How to use checksums |
4991086a7ecf2b11c11f69a9296571c7086414f8fc2d4c422f8097f44731875f
|
|
BLAKE2b-256 checksum How to use checksums |
fb13317e86f632fb17249c4824109540cba1a0a94c03d9a2203e409b7e0fad80
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/3.4.2 importlib_metadata/4.8.1 pkginfo/1.7.1 requests/2.22.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.8.10
|
Release files / aiohttp-3.8.0b0-cp39-cp39-musllinux_1_1_x86_64.whl
| Download URL | aiohttp-3.8.0b0-cp39-cp39-musllinux_1_1_x86_64.whl |
|---|---|
| Size | 1.3 MB |
| Tags | CPython 3.9 Linux musl 1.1+ x86-64 |
|
SHA-256 checksum How to use checksums |
d3b8a7fd4939919b7f7da3507fece85330259fc40f3a06810acf9d30bb5022d7
|
|
BLAKE2b-256 checksum How to use checksums |
4325cd4ada935f2a0cb7da9ebf1917ce8d13f34648869543b0fe6fd91c9e02a5
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/3.4.2 importlib_metadata/4.8.1 pkginfo/1.7.1 requests/2.22.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.8.10
|
Release files / aiohttp-3.8.0b0-cp39-cp39-musllinux_1_1_s390x.whl
| Download URL | aiohttp-3.8.0b0-cp39-cp39-musllinux_1_1_s390x.whl |
|---|---|
| Size | 1.3 MB |
| Tags | CPython 3.9 Linux musl 1.1+ IBM System/390x |
|
SHA-256 checksum How to use checksums |
fe00030d33419dda4a52a1cfa2cb2254b10b6e2b90038d0f6d2d7819cd57bc92
|
|
BLAKE2b-256 checksum How to use checksums |
becd478c6b6171dbfc2a10a88b835734a411124e7ca08eb1e49ee5f579d0c472
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/3.4.2 importlib_metadata/4.8.1 pkginfo/1.7.1 requests/2.22.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.8.10
|
Release files / aiohttp-3.8.0b0-cp39-cp39-musllinux_1_1_ppc64le.whl
| Download URL | aiohttp-3.8.0b0-cp39-cp39-musllinux_1_1_ppc64le.whl |
|---|---|
| Size | 1.3 MB |
| Tags | CPython 3.9 Linux musl 1.1+ PowerPC 64-le |
|
SHA-256 checksum How to use checksums |
6d81cac9fb2ef36c02871b58f141015e1aa471901b54cd8b88c061516b7f39a9
|
|
BLAKE2b-256 checksum How to use checksums |
e26494b7836e9d2d96555b9b4417cbd6d9c74108c5eb9cb5525778c97fb15a27
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/3.4.2 importlib_metadata/4.8.1 pkginfo/1.7.1 requests/2.22.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.8.10
|
Release files / aiohttp-3.8.0b0-cp39-cp39-musllinux_1_1_i686.whl
| Download URL | aiohttp-3.8.0b0-cp39-cp39-musllinux_1_1_i686.whl |
|---|---|
| Size | 1.2 MB |
| Tags | CPython 3.9 Linux musl 1.1+ x86-32 |
|
SHA-256 checksum How to use checksums |
4e759b842b724fe802da33517f6edbb89c3c91a04b8163c01370af4cb15e56bd
|
|
BLAKE2b-256 checksum How to use checksums |
d7d613bbb3d67d87f85e4b5c60e7f3b1dea38428bba2164fbb300531e35ee77d
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/3.4.2 importlib_metadata/4.8.1 pkginfo/1.7.1 requests/2.22.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.8.10
|
Release files / aiohttp-3.8.0b0-cp39-cp39-musllinux_1_1_aarch64.whl
| Download URL | aiohttp-3.8.0b0-cp39-cp39-musllinux_1_1_aarch64.whl |
|---|---|
| Size | 1.3 MB |
| Tags | CPython 3.9 Linux musl 1.1+ ARM64 |
|
SHA-256 checksum How to use checksums |
489cd7cc6d12855906f1c4078b44df81a0eb0d3e2d6cf1ffd8a04dae779ba2b5
|
|
BLAKE2b-256 checksum How to use checksums |
247199d74c704e411001d2b2335515ac30b25d8d8339ab48231aeb6213a110ad
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/3.4.2 importlib_metadata/4.8.1 pkginfo/1.7.1 requests/2.22.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.8.10
|
Release files / aiohttp-3.8.0b0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
| Download URL | aiohttp-3.8.0b0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl |
|---|---|
| Size | 1.3 MB |
| Tags | CPython 3.9 Linux glibc 2.17+ IBM System/390x |
|
SHA-256 checksum How to use checksums |
e6fe79c60ccdfd2349c6d1030d07e86a395b836c92465c1c8864af7175595b7a
|
|
BLAKE2b-256 checksum How to use checksums |
da86ecf44707bc81a72f5b82999403a57d21b831464d0dd1edfaba4baee27092
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/3.4.2 importlib_metadata/4.8.1 pkginfo/1.7.1 requests/2.22.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.8.10
|
Release files / aiohttp-3.8.0b0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
| Download URL | aiohttp-3.8.0b0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl |
|---|---|
| Size | 1.3 MB |
| Tags | CPython 3.9 Linux glibc 2.17+ PowerPC 64-le |
|
SHA-256 checksum How to use checksums |
2dd6bec13182b63c15afabeb42805f1ed32a5188b1baa005eb71ade7101a7fb9
|
|
BLAKE2b-256 checksum How to use checksums |
fa3bbac955adab69be6be3d68410366ef76b03c41c3c3d9afc3dc2d13e0bbc8b
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/3.4.2 importlib_metadata/4.8.1 pkginfo/1.7.1 requests/2.22.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.8.10
|
Release files / aiohttp-3.8.0b0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
| Download URL | aiohttp-3.8.0b0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl |
|---|---|
| Size | 1.3 MB |
| Tags | CPython 3.9 Linux glibc 2.17+ ARM64 |
|
SHA-256 checksum How to use checksums |
26d6f55c56a185288a795acb350f7323657a06f2b97a83368ddef84f2b6ef196
|
|
BLAKE2b-256 checksum How to use checksums |
0e27f9a5dbf562681b1bc60dd09afe5a1fdee78f71eb0d957da79defa092dead
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/3.4.2 importlib_metadata/4.8.1 pkginfo/1.7.1 requests/2.22.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.8.10
|
Release files / aiohttp-3.8.0b0-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl
| Download URL | aiohttp-3.8.0b0-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl |
|---|---|
| Size | 1.2 MB |
| Tags | CPython 3.9 Linux glibc 2.12+ x86-64 Linux glibc 2.5+ x86-64 |
|
SHA-256 checksum How to use checksums |
d34ccbc30f75679c8ea1f51577c53820dc2f33736368a44562f7f3cd67814080
|
|
BLAKE2b-256 checksum How to use checksums |
4eb6a2c4407d5fcf80176e7cd686fe4e88e86b6d8842a427cd67718e176df511
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/3.4.2 importlib_metadata/4.8.1 pkginfo/1.7.1 requests/2.22.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.8.10
|
Release files / aiohttp-3.8.0b0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_12_i686.manylinux2010_i686.whl
| Download URL | aiohttp-3.8.0b0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_12_i686.manylinux2010_i686.whl |
|---|---|
| Size | 1.2 MB |
| Tags | CPython 3.9 Linux glibc 2.12+ x86-32 Linux glibc 2.5+ x86-32 |
|
SHA-256 checksum How to use checksums |
a67bee21339317c821ae9c1cfe9f5dbbc34d76690fa5518b20d63fe12a23dd58
|
|
BLAKE2b-256 checksum How to use checksums |
6be9f58ae2896c067aca9bc6dfe6069b1f3038d6da34340c807344f5c9ff1732
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/3.4.2 importlib_metadata/4.8.1 pkginfo/1.7.1 requests/2.22.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.8.10
|
Release files / aiohttp-3.8.0b0-cp39-cp39-macosx_11_0_arm64.whl
| Download URL | aiohttp-3.8.0b0-cp39-cp39-macosx_11_0_arm64.whl |
|---|---|
| Size | 568.4 kB |
| Tags | CPython 3.9 macOS 11.0+ ARM64 |
|
SHA-256 checksum How to use checksums |
f02613e77e579a8bb11e4a60ad1aa89aec626671d05972cb8b6befb9f4fb14b2
|
|
BLAKE2b-256 checksum How to use checksums |
0a1f23bb2b625616307f31890401d5ca9e13a44a4550ecc668a97251bb5be03a
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/3.4.2 importlib_metadata/4.8.1 pkginfo/1.7.1 requests/2.22.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.8.10
|
Release files / aiohttp-3.8.0b0-cp39-cp39-macosx_10_9_x86_64.whl
| Download URL | aiohttp-3.8.0b0-cp39-cp39-macosx_10_9_x86_64.whl |
|---|---|
| Size | 591.1 kB |
| Tags | CPython 3.9 macOS 10.9+ x86-64 |
|
SHA-256 checksum How to use checksums |
a4bbb2be7d04e564d2b4eb9a615bde57cd56e550e648f11acc4a3b354d43f0c3
|
|
BLAKE2b-256 checksum How to use checksums |
073b8cc237f5d841e18b3ca20f4165abf3c150a68c5450c1a53dc33683ce98e3
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/3.4.2 importlib_metadata/4.8.1 pkginfo/1.7.1 requests/2.22.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.8.10
|
Release files / aiohttp-3.8.0b0-cp39-cp39-macosx_10_9_universal2.whl
| Download URL | aiohttp-3.8.0b0-cp39-cp39-macosx_10_9_universal2.whl |
|---|---|
| Size | 744.8 kB |
| Tags | CPython 3.9 macOS 10.9+ universal2 (ARM64, x86-64) |
|
SHA-256 checksum How to use checksums |
da7d583fd4a5bc3bd0f8e816e6d1fe5ba9ee723c76b0139f6ac56743f756c663
|
|
BLAKE2b-256 checksum How to use checksums |
f0ec1257f4767865162eeaaa538519856708ebef9396685cd390b45a31163fa8
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/3.4.2 importlib_metadata/4.8.1 pkginfo/1.7.1 requests/2.22.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.8.10
|
Release files / aiohttp-3.8.0b0-cp38-cp38-win_amd64.whl
| Download URL | aiohttp-3.8.0b0-cp38-cp38-win_amd64.whl |
|---|---|
| Size | 572.3 kB |
| Tags | CPython 3.8 Windows x86-64 |
|
SHA-256 checksum How to use checksums |
88c1b766e69bbf1cea250d8efd707c280c15f47b080467f7501f07be8f2cbae3
|
|
BLAKE2b-256 checksum How to use checksums |
f093fabc76155ec3764746e36e2a324b9aa47591a9fc13ee6d9a5dfb6eb925a1
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/3.4.2 importlib_metadata/4.8.1 pkginfo/1.7.1 requests/2.22.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.8.10
|
Release files / aiohttp-3.8.0b0-cp38-cp38-win32.whl
| Download URL | aiohttp-3.8.0b0-cp38-cp38-win32.whl |
|---|---|
| Size | 551.6 kB |
| Tags | CPython 3.8 Windows x86-32 |
|
SHA-256 checksum How to use checksums |
6edb42ed6d7fc82a1dae21600175c642e5b91d86620913f430d1c55f51995a7f
|
|
BLAKE2b-256 checksum How to use checksums |
e8e6b1430f1a6d5ce06beb667577a0a262a52eb8f6a8c1aa0e25bf72dae49b1c
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/3.4.2 importlib_metadata/4.8.1 pkginfo/1.7.1 requests/2.22.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.8.10
|
Release files / aiohttp-3.8.0b0-cp38-cp38-musllinux_1_1_x86_64.whl
| Download URL | aiohttp-3.8.0b0-cp38-cp38-musllinux_1_1_x86_64.whl |
|---|---|
| Size | 1.3 MB |
| Tags | CPython 3.8 Linux musl 1.1+ x86-64 |
|
SHA-256 checksum How to use checksums |
44edbc23d26d0db09f470056a5f8d5c0e138a79869852be93a86c03b85c20dc5
|
|
BLAKE2b-256 checksum How to use checksums |
7d61711955836eee4cce054d543f0151b6c21dbde4e73f948d0c82804f036e33
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/3.4.2 importlib_metadata/4.8.1 pkginfo/1.7.1 requests/2.22.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.8.10
|
Release files / aiohttp-3.8.0b0-cp38-cp38-musllinux_1_1_s390x.whl
| Download URL | aiohttp-3.8.0b0-cp38-cp38-musllinux_1_1_s390x.whl |
|---|---|
| Size | 1.4 MB |
| Tags | CPython 3.8 Linux musl 1.1+ IBM System/390x |
|
SHA-256 checksum How to use checksums |
680eaa83e9eac4c788c8df9dd42e8c9789da9ad060f7931382aafe28a5067811
|
|
BLAKE2b-256 checksum How to use checksums |
e091a4aa891dcf14b16804bed44e1353b920ef2f7b3b47fb846b8383ffcbb3c9
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/3.4.2 importlib_metadata/4.8.1 pkginfo/1.7.1 requests/2.22.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.8.10
|
Release files / aiohttp-3.8.0b0-cp38-cp38-musllinux_1_1_ppc64le.whl
| Download URL | aiohttp-3.8.0b0-cp38-cp38-musllinux_1_1_ppc64le.whl |
|---|---|
| Size | 1.3 MB |
| Tags | CPython 3.8 Linux musl 1.1+ PowerPC 64-le |
|
SHA-256 checksum How to use checksums |
3119f61824f65783ba33cf0c4ab6dd2871d304fb6e51104864a86bed5477aee3
|
|
BLAKE2b-256 checksum How to use checksums |
bd4fcda0267fb68f665c587877bf8c88d39659766103d8eef441b954c982ddbb
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/3.4.2 importlib_metadata/4.8.1 pkginfo/1.7.1 requests/2.22.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.8.10
|
Release files / aiohttp-3.8.0b0-cp38-cp38-musllinux_1_1_i686.whl
| Download URL | aiohttp-3.8.0b0-cp38-cp38-musllinux_1_1_i686.whl |
|---|---|
| Size | 1.3 MB |
| Tags | CPython 3.8 Linux musl 1.1+ x86-32 |
|
SHA-256 checksum How to use checksums |
09d3066ad2e2f50432b5df73c88e9b4ec0fa2daf9fde8fe785487c76550b1d39
|
|
BLAKE2b-256 checksum How to use checksums |
f545c93fcf5858dac82275447f1dcfe3ba58b9b18d280b070403b1b47d62b3e2
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/3.4.2 importlib_metadata/4.8.1 pkginfo/1.7.1 requests/2.22.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.8.10
|
Release files / aiohttp-3.8.0b0-cp38-cp38-musllinux_1_1_aarch64.whl
| Download URL | aiohttp-3.8.0b0-cp38-cp38-musllinux_1_1_aarch64.whl |
|---|---|
| Size | 1.3 MB |
| Tags | CPython 3.8 Linux musl 1.1+ ARM64 |
|
SHA-256 checksum How to use checksums |
6b2f5369e658ec9d4529658a432c4bf988092eb3f81e1d24613ae1987d960eab
|
|
BLAKE2b-256 checksum How to use checksums |
92b2fe62f6fb2bd8580127fefd0c591fb58c62dd787413ddbfb6eb6c8b5113a9
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/3.4.2 importlib_metadata/4.8.1 pkginfo/1.7.1 requests/2.22.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.8.10
|
Release files / aiohttp-3.8.0b0-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl
| Download URL | aiohttp-3.8.0b0-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl |
|---|---|
| Size | 1.3 MB |
| Tags | CPython 3.8 Linux glibc 2.17+ IBM System/390x |
|
SHA-256 checksum How to use checksums |
9103fbadd38408e7a07cb544d398e67d217b01d7a10dc27fd3743dbc2748b75e
|
|
BLAKE2b-256 checksum How to use checksums |
da931ed85560f9271417d3ce861440f9959714d372b087e9f983fbba56b2e776
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/3.4.2 importlib_metadata/4.8.1 pkginfo/1.7.1 requests/2.22.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.8.10
|
Release files / aiohttp-3.8.0b0-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
| Download URL | aiohttp-3.8.0b0-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl |
|---|---|
| Size | 1.3 MB |
| Tags | CPython 3.8 Linux glibc 2.17+ PowerPC 64-le |
|
SHA-256 checksum How to use checksums |
15c0cf061be891d2e81bf5de4522be6db749f01cb4217ae864c2684c2b87814c
|
|
BLAKE2b-256 checksum How to use checksums |
7c50c941ecb0503f8bafa4e922a1b7862823fcdb8bf366e53f2d4f7978f07c2a
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/3.4.2 importlib_metadata/4.8.1 pkginfo/1.7.1 requests/2.22.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.8.10
|
Release files / aiohttp-3.8.0b0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
| Download URL | aiohttp-3.8.0b0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl |
|---|---|
| Size | 1.3 MB |
| Tags | CPython 3.8 Linux glibc 2.17+ ARM64 |
|
SHA-256 checksum How to use checksums |
b351ea6cb34bf2bf6c7d2565391b67c1f704520dcf98936f22ad5fd2f2ef8bd8
|
|
BLAKE2b-256 checksum How to use checksums |
e6454a354a2552f4f40580c1560ab5a227f2514fe6579851ea18c2995b914190
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/3.4.2 importlib_metadata/4.8.1 pkginfo/1.7.1 requests/2.22.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.8.10
|
Release files / aiohttp-3.8.0b0-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl
| Download URL | aiohttp-3.8.0b0-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl |
|---|---|
| Size | 1.3 MB |
| Tags | CPython 3.8 Linux glibc 2.12+ x86-64 Linux glibc 2.5+ x86-64 |
|
SHA-256 checksum How to use checksums |
856ea1f5966d7ccb0d1e4ae7846cc813ffb969b51d3b5ed739b5674d90eebbe3
|
|
BLAKE2b-256 checksum How to use checksums |
a71eef36d17ae0f1d3f4c5fd60d755e1c006017d07cc29d53ea567cdb3e9fa6a
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/3.4.2 importlib_metadata/4.8.1 pkginfo/1.7.1 requests/2.22.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.8.10
|
Release files / aiohttp-3.8.0b0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_12_i686.manylinux2010_i686.whl
| Download URL | aiohttp-3.8.0b0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_12_i686.manylinux2010_i686.whl |
|---|---|
| Size | 1.2 MB |
| Tags | CPython 3.8 Linux glibc 2.12+ x86-32 Linux glibc 2.5+ x86-32 |
|
SHA-256 checksum How to use checksums |
edd2408840473ed86a03e7591b1840b2e76bf2d21119a0c8469442e6a1013c38
|
|
BLAKE2b-256 checksum How to use checksums |
db4df4c10a45c1c67915038d14ef419b7c05bc54336e80b07ccce0b96af8404c
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/3.4.2 importlib_metadata/4.8.1 pkginfo/1.7.1 requests/2.22.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.8.10
|
Release files / aiohttp-3.8.0b0-cp38-cp38-macosx_11_0_arm64.whl
| Download URL | aiohttp-3.8.0b0-cp38-cp38-macosx_11_0_arm64.whl |
|---|---|
| Size | 568.0 kB |
| Tags | CPython 3.8 macOS 11.0+ ARM64 |
|
SHA-256 checksum How to use checksums |
71e17141946a5caf9a218e5eed8bbafeb0a912c6b9e9597a3da2ec3ffbfb5c76
|
|
BLAKE2b-256 checksum How to use checksums |
73e77f870097e8bfe999b2199bd89a497a0511386f6bb17a441a4e2684f0d789
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/3.4.2 importlib_metadata/4.8.1 pkginfo/1.7.1 requests/2.22.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.8.10
|
Release files / aiohttp-3.8.0b0-cp38-cp38-macosx_10_9_x86_64.whl
| Download URL | aiohttp-3.8.0b0-cp38-cp38-macosx_10_9_x86_64.whl |
|---|---|
| Size | 590.4 kB |
| Tags | CPython 3.8 macOS 10.9+ x86-64 |
|
SHA-256 checksum How to use checksums |
62444dd7305926b5d1bf3f48af710a6226280e3716b4200e3138c0359e6f8758
|
|
BLAKE2b-256 checksum How to use checksums |
afb64bdd3457f8d3db1fc4d7caef792705d1d602633e8143457581bbb43d93ac
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/3.4.2 importlib_metadata/4.8.1 pkginfo/1.7.1 requests/2.22.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.8.10
|
Release files / aiohttp-3.8.0b0-cp38-cp38-macosx_10_9_universal2.whl
| Download URL | aiohttp-3.8.0b0-cp38-cp38-macosx_10_9_universal2.whl |
|---|---|
| Size | 743.8 kB |
| Tags | CPython 3.8 macOS 10.9+ universal2 (ARM64, x86-64) |
|
SHA-256 checksum How to use checksums |
e04f78a6a2fdc34b1c33c7a9d919a841fa1c535f02177b9ef43f0ab3db2769ae
|
|
BLAKE2b-256 checksum How to use checksums |
41a1141e65cb9d8f633e7777576654bf444c592cbea5f1bbce59a16e6e21cc14
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/3.4.2 importlib_metadata/4.8.1 pkginfo/1.7.1 requests/2.22.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.8.10
|
Release files / aiohttp-3.8.0b0-cp37-cp37m-win_amd64.whl
| Download URL | aiohttp-3.8.0b0-cp37-cp37m-win_amd64.whl |
|---|---|
| Size | 568.2 kB |
| Tags | CPython 3.7 CPython 3.7 pymalloc Windows x86-64 |
|
SHA-256 checksum How to use checksums |
f72121b684ba1f0a8a9609bbfceb8c4b0118b10524eb565f9792ef6e9e28a531
|
|
BLAKE2b-256 checksum How to use checksums |
aec0bbb431ab63807e33bfe8b508df2e5ae487cca149ca320dbc05db9ebdc1a0
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/3.4.2 importlib_metadata/4.8.1 pkginfo/1.7.1 requests/2.22.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.8.10
|
Release files / aiohttp-3.8.0b0-cp37-cp37m-win32.whl
| Download URL | aiohttp-3.8.0b0-cp37-cp37m-win32.whl |
|---|---|
| Size | 548.2 kB |
| Tags | CPython 3.7 CPython 3.7 pymalloc Windows x86-32 |
|
SHA-256 checksum How to use checksums |
4a71259fc788ec8a8e1cb1f6c90bb285367836691c96e25f69bf98eef35f80bd
|
|
BLAKE2b-256 checksum How to use checksums |
a6d9caf613b5e2435bb124c254db353ce847a1ada984f9e6f83a86462959a036
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/3.4.2 importlib_metadata/4.8.1 pkginfo/1.7.1 requests/2.22.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.8.10
|
Release files / aiohttp-3.8.0b0-cp37-cp37m-musllinux_1_1_x86_64.whl
| Download URL | aiohttp-3.8.0b0-cp37-cp37m-musllinux_1_1_x86_64.whl |
|---|---|
| Size | 1.2 MB |
| Tags | CPython 3.7 CPython 3.7 pymalloc Linux musl 1.1+ x86-64 |
|
SHA-256 checksum How to use checksums |
f942aedee46609394e8903e05e4029dc287ff42002be432fc7032176d82b4449
|
|
BLAKE2b-256 checksum How to use checksums |
097f78d17540d5fbd789f9a66af0c763437f613b12716ffdff7af84250150894
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/3.4.2 importlib_metadata/4.8.1 pkginfo/1.7.1 requests/2.22.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.8.10
|
Release files / aiohttp-3.8.0b0-cp37-cp37m-musllinux_1_1_s390x.whl
| Download URL | aiohttp-3.8.0b0-cp37-cp37m-musllinux_1_1_s390x.whl |
|---|---|
| Size | 1.3 MB |
| Tags | CPython 3.7 CPython 3.7 pymalloc Linux musl 1.1+ IBM System/390x |
|
SHA-256 checksum How to use checksums |
f4a6be09c1865b9d6659d27f0d5bcd861f8c3343e3addbc370247d66e695836e
|
|
BLAKE2b-256 checksum How to use checksums |
eb79e2580ebe784bf7d2b307f718300a58873a0735c6b6bfaee7cd96bf310698
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/3.4.2 importlib_metadata/4.8.1 pkginfo/1.7.1 requests/2.22.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.8.10
|
Release files / aiohttp-3.8.0b0-cp37-cp37m-musllinux_1_1_ppc64le.whl
| Download URL | aiohttp-3.8.0b0-cp37-cp37m-musllinux_1_1_ppc64le.whl |
|---|---|
| Size | 1.2 MB |
| Tags | CPython 3.7 CPython 3.7 pymalloc Linux musl 1.1+ PowerPC 64-le |
|
SHA-256 checksum How to use checksums |
1dbf266f70a7ece89fdfcf6b800534385ea944e441bbbaa0a1ec98088d1ef456
|
|
BLAKE2b-256 checksum How to use checksums |
34971a0223086a4cc775b21d78ea3b990b44a9b13a7ecc1f32977caecc0e02aa
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/3.4.2 importlib_metadata/4.8.1 pkginfo/1.7.1 requests/2.22.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.8.10
|
Release files / aiohttp-3.8.0b0-cp37-cp37m-musllinux_1_1_i686.whl
| Download URL | aiohttp-3.8.0b0-cp37-cp37m-musllinux_1_1_i686.whl |
|---|---|
| Size | 1.2 MB |
| Tags | CPython 3.7 CPython 3.7 pymalloc Linux musl 1.1+ x86-32 |
|
SHA-256 checksum How to use checksums |
d2b35fdae4aa9889a81d7047160692155f25dc2ae398b45947f398436844f3f6
|
|
BLAKE2b-256 checksum How to use checksums |
810a23e9818bf229cbf5aadfa6f9bbd3da21c63524755283c10dd18f3c468459
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/3.4.2 importlib_metadata/4.8.1 pkginfo/1.7.1 requests/2.22.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.8.10
|
Release files / aiohttp-3.8.0b0-cp37-cp37m-musllinux_1_1_aarch64.whl
| Download URL | aiohttp-3.8.0b0-cp37-cp37m-musllinux_1_1_aarch64.whl |
|---|---|
| Size | 1.2 MB |
| Tags | CPython 3.7 CPython 3.7 pymalloc Linux musl 1.1+ ARM64 |
|
SHA-256 checksum How to use checksums |
b5c9be827ce9446513c0d35a92e228edd38e3d18d71b0d3b3f15baae3f68ddcb
|
|
BLAKE2b-256 checksum How to use checksums |
9a4b643b8b31c6eac230add0ce2b34ed905302265caf8412300d20df50f7be79
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/3.4.2 importlib_metadata/4.8.1 pkginfo/1.7.1 requests/2.22.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.8.10
|
Release files / aiohttp-3.8.0b0-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl
| Download URL | aiohttp-3.8.0b0-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl |
|---|---|
| Size | 1.2 MB |
| Tags | CPython 3.7 CPython 3.7 pymalloc Linux glibc 2.17+ IBM System/390x |
|
SHA-256 checksum How to use checksums |
46ffe95cef6604e0c4517fbf500e6f6ae4977e872a3561754a90d5dd0ad9f960
|
|
BLAKE2b-256 checksum How to use checksums |
5121e126c22b5e209dee9125db22f11e72caa1893773b45311840f3e4f126615
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/3.4.2 importlib_metadata/4.8.1 pkginfo/1.7.1 requests/2.22.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.8.10
|
Release files / aiohttp-3.8.0b0-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
| Download URL | aiohttp-3.8.0b0-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl |
|---|---|
| Size | 1.2 MB |
| Tags | CPython 3.7 CPython 3.7 pymalloc Linux glibc 2.17+ PowerPC 64-le |
|
SHA-256 checksum How to use checksums |
86884b67b28a5e5888775db4a5a238b1a6b4afb2ffe92975850bf4e9a94b2c2a
|
|
BLAKE2b-256 checksum How to use checksums |
6e8f62729760a2d90c6b8fd60b85e9c168a712059d8681e757248db48adb9962
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/3.4.2 importlib_metadata/4.8.1 pkginfo/1.7.1 requests/2.22.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.8.10
|
Release files / aiohttp-3.8.0b0-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
| Download URL | aiohttp-3.8.0b0-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl |
|---|---|
| Size | 1.2 MB |
| Tags | CPython 3.7 CPython 3.7 pymalloc Linux glibc 2.17+ ARM64 |
|
SHA-256 checksum How to use checksums |
eec2464fece785f6f17b1da3cb42c6e3ed73bb16647393e782fc2ba7ea648996
|
|
BLAKE2b-256 checksum How to use checksums |
ca37b32eb1c7c6fd028d667d4f7ba746d46090002da4a16d54f14a759f8e6ee8
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/3.4.2 importlib_metadata/4.8.1 pkginfo/1.7.1 requests/2.22.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.8.10
|
Release files / aiohttp-3.8.0b0-cp37-cp37m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl
| Download URL | aiohttp-3.8.0b0-cp37-cp37m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl |
|---|---|
| Size | 1.1 MB |
| Tags | CPython 3.7 CPython 3.7 pymalloc Linux glibc 2.12+ x86-64 Linux glibc 2.5+ x86-64 |
|
SHA-256 checksum How to use checksums |
d3add5dfed1cef30599c884d096b193ab7f96b20b7e773f8356ca2fb31530096
|
|
BLAKE2b-256 checksum How to use checksums |
4110b488096e495c94adb3a47957851ca31d489cd469417bee8a3b0c3def3b9d
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/3.4.2 importlib_metadata/4.8.1 pkginfo/1.7.1 requests/2.22.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.8.10
|
Release files / aiohttp-3.8.0b0-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_12_i686.manylinux2010_i686.whl
| Download URL | aiohttp-3.8.0b0-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_12_i686.manylinux2010_i686.whl |
|---|---|
| Size | 1.1 MB |
| Tags | CPython 3.7 CPython 3.7 pymalloc Linux glibc 2.12+ x86-32 Linux glibc 2.5+ x86-32 |
|
SHA-256 checksum How to use checksums |
74b87354c05c5226cfaf219c583a53ea53f14d0fea74c6e1aa3e8465a5395a2c
|
|
BLAKE2b-256 checksum How to use checksums |
63f9f5f40bd67adf6f68d91a9ee63ad5f1b660603c45e13a5a823c3ad645591a
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/3.4.2 importlib_metadata/4.8.1 pkginfo/1.7.1 requests/2.22.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.8.10
|
Release files / aiohttp-3.8.0b0-cp37-cp37m-macosx_10_9_x86_64.whl
| Download URL | aiohttp-3.8.0b0-cp37-cp37m-macosx_10_9_x86_64.whl |
|---|---|
| Size | 587.1 kB |
| Tags | CPython 3.7 CPython 3.7 pymalloc macOS 10.9+ x86-64 |
|
SHA-256 checksum How to use checksums |
7de6084febcd497b38f6fe76dc427b988a53a52d788ca0cced4e6908919b5a65
|
|
BLAKE2b-256 checksum How to use checksums |
2c1b7c1521449e4aa799ec04da1e35e23e272baeb05fa9fdc63fec073dfa26c6
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/3.4.2 importlib_metadata/4.8.1 pkginfo/1.7.1 requests/2.22.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.8.10
|
Release files / aiohttp-3.8.0b0-cp36-cp36m-win_amd64.whl
| Download URL | aiohttp-3.8.0b0-cp36-cp36m-win_amd64.whl |
|---|---|
| Size | 567.4 kB |
| Tags | CPython 3.6 CPython 3.6 pymalloc Windows x86-64 |
|
SHA-256 checksum How to use checksums |
027f238261dd89e2b3e0b04225cfc115092dabab82e51ae547453395361a08c2
|
|
BLAKE2b-256 checksum How to use checksums |
65855546684a1a1e811e5f62b9ba5ecb306b2e2fcfa71fea6d423cdd34a103d8
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/3.4.2 importlib_metadata/4.8.1 pkginfo/1.7.1 requests/2.22.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.8.10
|
Release files / aiohttp-3.8.0b0-cp36-cp36m-win32.whl
| Download URL | aiohttp-3.8.0b0-cp36-cp36m-win32.whl |
|---|---|
| Size | 547.8 kB |
| Tags | CPython 3.6 CPython 3.6 pymalloc Windows x86-32 |
|
SHA-256 checksum How to use checksums |
efe99d7e3fb0beae8fd7c6afae5fb57fc92029129b9fccbd617a9c1cd565e27d
|
|
BLAKE2b-256 checksum How to use checksums |
a8ca35babce7ff174cc037de4a60bc8c1d634c2fbe0795009a610a6f4f1a6887
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/3.4.2 importlib_metadata/4.8.1 pkginfo/1.7.1 requests/2.22.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.8.10
|
Release files / aiohttp-3.8.0b0-cp36-cp36m-musllinux_1_1_x86_64.whl
| Download URL | aiohttp-3.8.0b0-cp36-cp36m-musllinux_1_1_x86_64.whl |
|---|---|
| Size | 1.2 MB |
| Tags | CPython 3.6 CPython 3.6 pymalloc Linux musl 1.1+ x86-64 |
|
SHA-256 checksum How to use checksums |
a530fd8b5c3dac637b460630958a3282d819cc7cce76f87d570ca1e435dd9a2e
|
|
BLAKE2b-256 checksum How to use checksums |
caa05ddb1602d1f3cbf371dbb26b97db1a31a623c54d607d6c5c8459c632e245
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/3.4.2 importlib_metadata/4.8.1 pkginfo/1.7.1 requests/2.22.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.8.10
|
Release files / aiohttp-3.8.0b0-cp36-cp36m-musllinux_1_1_s390x.whl
| Download URL | aiohttp-3.8.0b0-cp36-cp36m-musllinux_1_1_s390x.whl |
|---|---|
| Size | 1.3 MB |
| Tags | CPython 3.6 CPython 3.6 pymalloc Linux musl 1.1+ IBM System/390x |
|
SHA-256 checksum How to use checksums |
73752bdbffa520e79261ed2b951b6686003cc71e231fa69c273525d2cd22883e
|
|
BLAKE2b-256 checksum How to use checksums |
16184792fe152db1706e247f78dbcb48f0bd5107ea1c50931dbdd733ba68955c
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/3.4.2 importlib_metadata/4.8.1 pkginfo/1.7.1 requests/2.22.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.8.10
|
Release files / aiohttp-3.8.0b0-cp36-cp36m-musllinux_1_1_ppc64le.whl
| Download URL | aiohttp-3.8.0b0-cp36-cp36m-musllinux_1_1_ppc64le.whl |
|---|---|
| Size | 1.2 MB |
| Tags | CPython 3.6 CPython 3.6 pymalloc Linux musl 1.1+ PowerPC 64-le |
|
SHA-256 checksum How to use checksums |
be745ec891a25994f9adea3491349a30fc2201da0e0ffb55048fe7e75b339a67
|
|
BLAKE2b-256 checksum How to use checksums |
3a58a3e87ac4798f9df8b8754b97844e2deff9e7bb77311c21f55b3faac02255
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/3.4.2 importlib_metadata/4.8.1 pkginfo/1.7.1 requests/2.22.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.8.10
|
Release files / aiohttp-3.8.0b0-cp36-cp36m-musllinux_1_1_i686.whl
| Download URL | aiohttp-3.8.0b0-cp36-cp36m-musllinux_1_1_i686.whl |
|---|---|
| Size | 1.2 MB |
| Tags | CPython 3.6 CPython 3.6 pymalloc Linux musl 1.1+ x86-32 |
|
SHA-256 checksum How to use checksums |
37f717b7d06b314c64f689c89f3f6ecd5c136a2159fdfc5ecd2eb8fbb25e138f
|
|
BLAKE2b-256 checksum How to use checksums |
6586ce354fcd78e1cede66da9b9d7192d338bea6c63bdd213217bcd5efdacb08
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/3.4.2 importlib_metadata/4.8.1 pkginfo/1.7.1 requests/2.22.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.8.10
|
Release files / aiohttp-3.8.0b0-cp36-cp36m-musllinux_1_1_aarch64.whl
| Download URL | aiohttp-3.8.0b0-cp36-cp36m-musllinux_1_1_aarch64.whl |
|---|---|
| Size | 1.2 MB |
| Tags | CPython 3.6 CPython 3.6 pymalloc Linux musl 1.1+ ARM64 |
|
SHA-256 checksum How to use checksums |
4e4a5484f14563132615d1e8c21592b6e7c8886a8f27434572aaf229f54e2f08
|
|
BLAKE2b-256 checksum How to use checksums |
09a4c9586249cbd8eba23e179e37ba7aebf85bf220d5377779c279a77d31d4b8
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/3.4.2 importlib_metadata/4.8.1 pkginfo/1.7.1 requests/2.22.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.8.10
|
Release files / aiohttp-3.8.0b0-cp36-cp36m-manylinux_2_17_s390x.manylinux2014_s390x.whl
| Download URL | aiohttp-3.8.0b0-cp36-cp36m-manylinux_2_17_s390x.manylinux2014_s390x.whl |
|---|---|
| Size | 1.2 MB |
| Tags | CPython 3.6 CPython 3.6 pymalloc Linux glibc 2.17+ IBM System/390x |
|
SHA-256 checksum How to use checksums |
3a0561575fdd6ddd1f8bc3730c1a06223db7ef71e3069fbf5b34b5b6f3aeb416
|
|
BLAKE2b-256 checksum How to use checksums |
adfef4cd69fa5e297c043e2ad58924faab36d98fea1aa48ac1f668c1e5e4923e
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/3.4.2 importlib_metadata/4.8.1 pkginfo/1.7.1 requests/2.22.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.8.10
|
Release files / aiohttp-3.8.0b0-cp36-cp36m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
| Download URL | aiohttp-3.8.0b0-cp36-cp36m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl |
|---|---|
| Size | 1.2 MB |
| Tags | CPython 3.6 CPython 3.6 pymalloc Linux glibc 2.17+ PowerPC 64-le |
|
SHA-256 checksum How to use checksums |
3f44d1d9d3ff2fbfdd519151d79f1f5cf8186d0291dc717a4866734334ebd1a6
|
|
BLAKE2b-256 checksum How to use checksums |
855dbd0d12014473848264e1b48605a33417aa2e1cddf4fa2608e116f52d142b
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/3.4.2 importlib_metadata/4.8.1 pkginfo/1.7.1 requests/2.22.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.8.10
|
Release files / aiohttp-3.8.0b0-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
| Download URL | aiohttp-3.8.0b0-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl |
|---|---|
| Size | 1.2 MB |
| Tags | CPython 3.6 CPython 3.6 pymalloc Linux glibc 2.17+ ARM64 |
|
SHA-256 checksum How to use checksums |
aadff1c7ce77fa007429fe5268644de6ea783f93d72c634f473639713e11b194
|
|
BLAKE2b-256 checksum How to use checksums |
2155db1c0bc346b4a40d0ab1b82bf0e4a8710717c93570f9b1d69d023c53591d
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/3.4.2 importlib_metadata/4.8.1 pkginfo/1.7.1 requests/2.22.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.8.10
|
Release files / aiohttp-3.8.0b0-cp36-cp36m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl
| Download URL | aiohttp-3.8.0b0-cp36-cp36m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl |
|---|---|
| Size | 1.1 MB |
| Tags | CPython 3.6 CPython 3.6 pymalloc Linux glibc 2.12+ x86-64 Linux glibc 2.5+ x86-64 |
|
SHA-256 checksum How to use checksums |
9dd23be08d5892a004ec97bf463944e93ec798ad68cb4ba3988e67740c3ac091
|
|
BLAKE2b-256 checksum How to use checksums |
a5c7e11e723d2ad63ee70f82f8b33fcf3db0d1ecd64db10c4f611d093a4cd6ff
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/3.4.2 importlib_metadata/4.8.1 pkginfo/1.7.1 requests/2.22.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.8.10
|
Release files / aiohttp-3.8.0b0-cp36-cp36m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_12_i686.manylinux2010_i686.whl
| Download URL | aiohttp-3.8.0b0-cp36-cp36m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_12_i686.manylinux2010_i686.whl |
|---|---|
| Size | 1.1 MB |
| Tags | CPython 3.6 CPython 3.6 pymalloc Linux glibc 2.12+ x86-32 Linux glibc 2.5+ x86-32 |
|
SHA-256 checksum How to use checksums |
7872c018a20f1a34ad40416aca83c781ecb37fb828dcbf6891d5983834057991
|
|
BLAKE2b-256 checksum How to use checksums |
97a66d13fcc31a983e031db9d995d40d1168e15a54a0256378cab549999d082e
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/3.4.2 importlib_metadata/4.8.1 pkginfo/1.7.1 requests/2.22.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.8.10
|
Release files / aiohttp-3.8.0b0-cp36-cp36m-macosx_10_9_x86_64.whl
| Download URL | aiohttp-3.8.0b0-cp36-cp36m-macosx_10_9_x86_64.whl |
|---|---|
| Size | 587.2 kB |
| Tags | CPython 3.6 CPython 3.6 pymalloc macOS 10.9+ x86-64 |
|
SHA-256 checksum How to use checksums |
c22bcccdc0602165d186c60514ffb4c133e43ae73351c17b566efadd4b196100
|
|
BLAKE2b-256 checksum How to use checksums |
f8bd211ddc21fddf7fdf391e61876dfd49362ff9141179c606aadcdc60009e6b
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/3.4.2 importlib_metadata/4.8.1 pkginfo/1.7.1 requests/2.22.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.8.10
|