This release is a pre-release and may not be stable for production use.
Tornado Web Server
Tornado is a Python web framework and asynchronous networking library, originally developed at FriendFeed. By using non-blocking network I/O, Tornado can scale to tens of thousands of open connections, making it ideal for long polling, WebSockets, and other applications that require a long-lived connection to each user.
Hello, world
Here is a simple “Hello, world” example web app for Tornado:
import asyncio
import tornado
class MainHandler(tornado.web.RequestHandler):
def get(self):
self.write("Hello, world")
def make_app():
return tornado.web.Application([
(r"/", MainHandler),
])
async def main():
app = make_app()
app.listen(8888)
await asyncio.Event().wait()
if __name__ == "__main__":
asyncio.run(main())
This example does not use any of Tornado’s asynchronous features; for that see this simple chat room.
Documentation
Documentation and links to additional resources are available at https://www.tornadoweb.org
Release files for tornado 6.6a1
For a detailed explanation of source distributions (sdists) and built distributions (wheels), please see the package formats documentation.
Source distribution (sdist)
| File | Size | Uploaded | |
|---|---|---|---|
| tornado-6.6a1.tar.gz | 558.0 kB | Details |
Built distributions (wheels)
| File | Reset | |||
|---|---|---|---|---|
| tornado-6.6a1-cp315-cp315t-win_arm64.whl | CPython 3.15 | CPython 3.15 free-threading | Windows ARM64 | Details |
| tornado-6.6a1-cp315-cp315t-win_amd64.whl | CPython 3.15 | CPython 3.15 free-threading | Windows x86-64 | Details |
| tornado-6.6a1-cp315-cp315t-win32.whl | CPython 3.15 | CPython 3.15 free-threading | Windows x86-32 | Details |
| tornado-6.6a1-cp315-cp315t-musllinux_1_2_x86_64.whl | CPython 3.15 | CPython 3.15 free-threading | Linux musl 1.2+ x86-64 | Details |
| tornado-6.6a1-cp315-cp315t-musllinux_1_2_s390x.whl | CPython 3.15 | CPython 3.15 free-threading | Linux musl 1.2+ IBM System/390x | Details |
| tornado-6.6a1-cp315-cp315t-musllinux_1_2_riscv64.whl | CPython 3.15 | CPython 3.15 free-threading | Linux musl 1.2+ RISC-V 64 | Details |
| tornado-6.6a1-cp315-cp315t-musllinux_1_2_ppc64le.whl | CPython 3.15 | CPython 3.15 free-threading | Linux musl 1.2+ PowerPC 64-le | Details |
| tornado-6.6a1-cp315-cp315t-musllinux_1_2_aarch64.whl | CPython 3.15 | CPython 3.15 free-threading | Linux musl 1.2+ ARM64 | Details |
| tornado-6.6a1-cp315-cp315t-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl | CPython 3.15 | CPython 3.15 free-threading | Linux glibc 2.31+ RISC-V 64, Linux glibc 2.39+ RISC-V 64 | Details |
| tornado-6.6a1-cp315-cp315t-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl | CPython 3.15 | CPython 3.15 free-threading | Linux glibc 2.17+ IBM System/390x, Linux glibc 2.28+ IBM System/390x | Details |
| tornado-6.6a1-cp315-cp315t-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl | CPython 3.15 | CPython 3.15 free-threading | Linux glibc 2.28+ PowerPC 64-le, Linux glibc 2.17+ PowerPC 64-le | Details |
| tornado-6.6a1-cp315-cp315t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl | CPython 3.15 | CPython 3.15 free-threading | Linux glibc 2.17+ ARM64, Linux glibc 2.28+ ARM64 | Details |
| tornado-6.6a1-cp315-cp315t-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl | CPython 3.15 | CPython 3.15 free-threading | Linux glibc 2.5+ x86-64, Linux glibc 2.28+ x86-64 | Details |
| tornado-6.6a1-cp315-cp315t-macosx_10_15_universal2.whl | CPython 3.15 | CPython 3.15 free-threading | macOS 10.15+ universal2 (ARM64, x86-64) | Details |
| tornado-6.6a1-cp314-cp314t-win_arm64.whl | CPython 3.14 | CPython 3.14 free-threading | Windows ARM64 | Details |
| tornado-6.6a1-cp314-cp314t-win_amd64.whl | CPython 3.14 | CPython 3.14 free-threading | Windows x86-64 | Details |
| tornado-6.6a1-cp314-cp314t-win32.whl | CPython 3.14 | CPython 3.14 free-threading | Windows x86-32 | Details |
| tornado-6.6a1-cp314-cp314t-musllinux_1_2_x86_64.whl | CPython 3.14 | CPython 3.14 free-threading | Linux musl 1.2+ x86-64 | Details |
| tornado-6.6a1-cp314-cp314t-musllinux_1_2_s390x.whl | CPython 3.14 | CPython 3.14 free-threading | Linux musl 1.2+ IBM System/390x | Details |
| tornado-6.6a1-cp314-cp314t-musllinux_1_2_riscv64.whl | CPython 3.14 | CPython 3.14 free-threading | Linux musl 1.2+ RISC-V 64 | Details |
| tornado-6.6a1-cp314-cp314t-musllinux_1_2_ppc64le.whl | CPython 3.14 | CPython 3.14 free-threading | Linux musl 1.2+ PowerPC 64-le | Details |
| tornado-6.6a1-cp314-cp314t-musllinux_1_2_aarch64.whl | CPython 3.14 | CPython 3.14 free-threading | Linux musl 1.2+ ARM64 | Details |
| tornado-6.6a1-cp314-cp314t-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl | CPython 3.14 | CPython 3.14 free-threading | Linux glibc 2.31+ RISC-V 64, Linux glibc 2.39+ RISC-V 64 | Details |
| tornado-6.6a1-cp314-cp314t-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl | CPython 3.14 | CPython 3.14 free-threading | Linux glibc 2.17+ IBM System/390x, Linux glibc 2.28+ IBM System/390x | Details |
| tornado-6.6a1-cp314-cp314t-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl | CPython 3.14 | CPython 3.14 free-threading | Linux glibc 2.17+ PowerPC 64-le, Linux glibc 2.28+ PowerPC 64-le | Details |
| tornado-6.6a1-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl | CPython 3.14 | CPython 3.14 free-threading | Linux glibc 2.17+ ARM64, Linux glibc 2.28+ ARM64 | Details |
| tornado-6.6a1-cp314-cp314t-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl | CPython 3.14 | CPython 3.14 free-threading | Linux glibc 2.5+ x86-64, Linux glibc 2.28+ x86-64 | Details |
| tornado-6.6a1-cp314-cp314t-macosx_10_15_universal2.whl | CPython 3.14 | CPython 3.14 free-threading | macOS 10.15+ universal2 (ARM64, x86-64) | Details |
| tornado-6.6a1-cp311-abi3-win_arm64.whl | CPython 3.11 | abi3 | Windows ARM64 | Details |
| tornado-6.6a1-cp311-abi3-win_amd64.whl | CPython 3.11 | abi3 | Windows x86-64 | Details |
| tornado-6.6a1-cp311-abi3-win32.whl | CPython 3.11 | abi3 | Windows x86-32 | Details |
| tornado-6.6a1-cp311-abi3-musllinux_1_2_x86_64.whl | CPython 3.11 | abi3 | Linux musl 1.2+ x86-64 | Details |
| tornado-6.6a1-cp311-abi3-musllinux_1_2_s390x.whl | CPython 3.11 | abi3 | Linux musl 1.2+ IBM System/390x | Details |
| tornado-6.6a1-cp311-abi3-musllinux_1_2_riscv64.whl | CPython 3.11 | abi3 | Linux musl 1.2+ RISC-V 64 | Details |
| tornado-6.6a1-cp311-abi3-musllinux_1_2_ppc64le.whl | CPython 3.11 | abi3 | Linux musl 1.2+ PowerPC 64-le | Details |
| tornado-6.6a1-cp311-abi3-musllinux_1_2_aarch64.whl | CPython 3.11 | abi3 | Linux musl 1.2+ ARM64 | Details |
| tornado-6.6a1-cp311-abi3-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl | CPython 3.11 | abi3 | Linux glibc 2.39+ RISC-V 64, Linux glibc 2.31+ RISC-V 64 | Details |
| tornado-6.6a1-cp311-abi3-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl | CPython 3.11 | abi3 | Linux glibc 2.17+ IBM System/390x, Linux glibc 2.28+ IBM System/390x | Details |
| tornado-6.6a1-cp311-abi3-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl | CPython 3.11 | abi3 | Linux glibc 2.28+ PowerPC 64-le, Linux glibc 2.17+ PowerPC 64-le | Details |
| tornado-6.6a1-cp311-abi3-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl | CPython 3.11 | abi3 | Linux glibc 2.28+ ARM64, Linux glibc 2.17+ ARM64 | Details |
| tornado-6.6a1-cp311-abi3-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl | CPython 3.11 | abi3 | Linux glibc 2.5+ x86-64, Linux glibc 2.28+ x86-64 | Details |
| tornado-6.6a1-cp311-abi3-macosx_10_9_universal2.whl | CPython 3.11 | abi3 | macOS 10.9+ universal2 (ARM64, x86-64) | Details |
Total release size: 20.5 MB
Release files / tornado-6.6a1.tar.gz
| Download URL | tornado-6.6a1.tar.gz |
|---|---|
| Size | 558.0 kB |
| Tags | Source |
|
SHA-256 checksum How to use checksums |
e905d45d2ff9e196a0bf4d560b2e7ce9c58dffb4cfcfcc80747087ab0b3ec93c
|
|
BLAKE2b-256 checksum How to use checksums |
cab3347e5bd24ef06673d44b0f853491adf780fe6ff5d389b842b3384c96acc6
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
twine/7.0.0 CPython/3.13.14
|
Provenance
Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.
PyPI Publish Attestation
PyPI verified that this artifact, at this checksum, originated from the publisher listed below.
Signed by GitHub Actions, verified by PyPI on Sep 22, 2026.
Transparency logRelease files / tornado-6.6a1-cp315-cp315t-win_arm64.whl
| Download URL | tornado-6.6a1-cp315-cp315t-win_arm64.whl |
|---|---|
| Size | 472.7 kB |
| Tags | CPython 3.15 CPython 3.15 free-threading Windows ARM64 |
|
SHA-256 checksum How to use checksums |
b538e5522364f668667826eec1a579b82b2cb973b636daf00be6cd8e65aa4b69
|
|
BLAKE2b-256 checksum How to use checksums |
fc146c7a911d18ac7c797f62549b3067ebee7dd1a953520276f640d905419da4
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
twine/7.0.0 CPython/3.13.14
|
Provenance
Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.
PyPI Publish Attestation
PyPI verified that this artifact, at this checksum, originated from the publisher listed below.
Signed by GitHub Actions, verified by PyPI on Sep 22, 2026.
Transparency logRelease files / tornado-6.6a1-cp315-cp315t-win_amd64.whl
| Download URL | tornado-6.6a1-cp315-cp315t-win_amd64.whl |
|---|---|
| Size | 473.0 kB |
| Tags | CPython 3.15 CPython 3.15 free-threading Windows x86-64 |
|
SHA-256 checksum How to use checksums |
00805c21cdab5bdb1383428661261aac5182b3067bf43ff52c2142d0d71d5a90
|
|
BLAKE2b-256 checksum How to use checksums |
c4522a4da1c01e3ae481881b48382bd491e65799ddfd50653a938ee3aa70931d
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
twine/7.0.0 CPython/3.13.14
|
Provenance
Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.
PyPI Publish Attestation
PyPI verified that this artifact, at this checksum, originated from the publisher listed below.
Signed by GitHub Actions, verified by PyPI on Sep 22, 2026.
Transparency logRelease files / tornado-6.6a1-cp315-cp315t-win32.whl
| Download URL | tornado-6.6a1-cp315-cp315t-win32.whl |
|---|---|
| Size | 472.7 kB |
| Tags | CPython 3.15 CPython 3.15 free-threading Windows x86-32 |
|
SHA-256 checksum How to use checksums |
6af327f297d8660827b488e9b658cce8b2fde18fedd38fca084a93a4e92961c7
|
|
BLAKE2b-256 checksum How to use checksums |
c7f6b058bc62a5320b2f924345d9c8cc83c528da2e97fb5c04574fcd7eb41bdd
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
twine/7.0.0 CPython/3.13.14
|
Provenance
Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.
PyPI Publish Attestation
PyPI verified that this artifact, at this checksum, originated from the publisher listed below.
Signed by GitHub Actions, verified by PyPI on Sep 22, 2026.
Transparency logRelease files / tornado-6.6a1-cp315-cp315t-musllinux_1_2_x86_64.whl
| Download URL | tornado-6.6a1-cp315-cp315t-musllinux_1_2_x86_64.whl |
|---|---|
| Size | 475.4 kB |
| Tags | CPython 3.15 CPython 3.15 free-threading Linux musl 1.2+ x86-64 |
|
SHA-256 checksum How to use checksums |
ccf93a1a69ac54c16ac46e45aa5b5b3123839245dabfecbd7546d22831313f89
|
|
BLAKE2b-256 checksum How to use checksums |
0b24d7a636e5a3879242bdbde80a7ddf75c2b888c6be097595bfd64fce76fdf3
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
twine/7.0.0 CPython/3.13.14
|
Provenance
Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.
PyPI Publish Attestation
PyPI verified that this artifact, at this checksum, originated from the publisher listed below.
Signed by GitHub Actions, verified by PyPI on Sep 22, 2026.
Transparency logRelease files / tornado-6.6a1-cp315-cp315t-musllinux_1_2_s390x.whl
| Download URL | tornado-6.6a1-cp315-cp315t-musllinux_1_2_s390x.whl |
|---|---|
| Size | 475.4 kB |
| Tags | CPython 3.15 CPython 3.15 free-threading Linux musl 1.2+ IBM System/390x |
|
SHA-256 checksum How to use checksums |
7bb8c290407a08d963b61cdc68e14b68ffd125c901b53aea8978597cb6b6cb8b
|
|
BLAKE2b-256 checksum How to use checksums |
627e9a3e4f9c43c820c594248c3eb6e0d15c136259f8619afde43501fead7f59
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
twine/7.0.0 CPython/3.13.14
|
Provenance
Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.
PyPI Publish Attestation
PyPI verified that this artifact, at this checksum, originated from the publisher listed below.
Signed by GitHub Actions, verified by PyPI on Sep 22, 2026.
Transparency logRelease files / tornado-6.6a1-cp315-cp315t-musllinux_1_2_riscv64.whl
| Download URL | tornado-6.6a1-cp315-cp315t-musllinux_1_2_riscv64.whl |
|---|---|
| Size | 475.4 kB |
| Tags | CPython 3.15 CPython 3.15 free-threading Linux musl 1.2+ RISC-V 64 |
|
SHA-256 checksum How to use checksums |
1cc4015ef2664fdcdf3f1edf31e94828c4fec8c7d4068a1e74fd972a01e3dacc
|
|
BLAKE2b-256 checksum How to use checksums |
3889195d1c91d1b2e2228f522230755e53918a958cd9950c8142ce27964f57ff
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
twine/7.0.0 CPython/3.13.14
|
Provenance
Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.
PyPI Publish Attestation
PyPI verified that this artifact, at this checksum, originated from the publisher listed below.
Signed by GitHub Actions, verified by PyPI on Sep 22, 2026.
Transparency logRelease files / tornado-6.6a1-cp315-cp315t-musllinux_1_2_ppc64le.whl
| Download URL | tornado-6.6a1-cp315-cp315t-musllinux_1_2_ppc64le.whl |
|---|---|
| Size | 476.1 kB |
| Tags | CPython 3.15 CPython 3.15 free-threading Linux musl 1.2+ PowerPC 64-le |
|
SHA-256 checksum How to use checksums |
f8520e544febd1c1e84382bd040b677deb90f0c5b118b9b97c6a0b9801a0b5d4
|
|
BLAKE2b-256 checksum How to use checksums |
b6dba6efcbbddc0d1e2e14d7896eae5ce051dbf764af6b03e6c57c46d9ffc89a
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
twine/7.0.0 CPython/3.13.14
|
Provenance
Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.
PyPI Publish Attestation
PyPI verified that this artifact, at this checksum, originated from the publisher listed below.
Signed by GitHub Actions, verified by PyPI on Sep 22, 2026.
Transparency logRelease files / tornado-6.6a1-cp315-cp315t-musllinux_1_2_aarch64.whl
| Download URL | tornado-6.6a1-cp315-cp315t-musllinux_1_2_aarch64.whl |
|---|---|
| Size | 476.1 kB |
| Tags | CPython 3.15 CPython 3.15 free-threading Linux musl 1.2+ ARM64 |
|
SHA-256 checksum How to use checksums |
4e0e1bcf2cc6b426e01ae6f31147cb195dd937eb11c33f520797e4b64f9f3352
|
|
BLAKE2b-256 checksum How to use checksums |
ca4d7ca079874db32769f365bdb36b6bc4febea2ea3c670998599fe9ee0c6f3d
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
twine/7.0.0 CPython/3.13.14
|
Provenance
Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.
PyPI Publish Attestation
PyPI verified that this artifact, at this checksum, originated from the publisher listed below.
Signed by GitHub Actions, verified by PyPI on Sep 22, 2026.
Transparency logRelease files / tornado-6.6a1-cp315-cp315t-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
| Download URL | tornado-6.6a1-cp315-cp315t-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl |
|---|---|
| Size | 473.9 kB |
| Tags | CPython 3.15 CPython 3.15 free-threading Linux glibc 2.31+ RISC-V 64 Linux glibc 2.39+ RISC-V 64 |
|
SHA-256 checksum How to use checksums |
282806ffa495bd2c8515666b298a55d1082a3b8fdc1fc277b3c3882fa85e6b95
|
|
BLAKE2b-256 checksum How to use checksums |
2f30a479a34fa422d29aec0e8e40cdecbb17cc4cc305613ce29d410e0fb963c1
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
twine/7.0.0 CPython/3.13.14
|
Provenance
Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.
PyPI Publish Attestation
PyPI verified that this artifact, at this checksum, originated from the publisher listed below.
Signed by GitHub Actions, verified by PyPI on Sep 22, 2026.
Transparency logRelease files / tornado-6.6a1-cp315-cp315t-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl
| Download URL | tornado-6.6a1-cp315-cp315t-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl |
|---|---|
| Size | 475.4 kB |
| Tags | CPython 3.15 CPython 3.15 free-threading Linux glibc 2.17+ IBM System/390x Linux glibc 2.28+ IBM System/390x |
|
SHA-256 checksum How to use checksums |
c1fc85a2e3b451b4624a8e6edede837e27d3cbce85672c1f44f3581aa47589fd
|
|
BLAKE2b-256 checksum How to use checksums |
74c73a2915b26e24681191ab13b95f7ff8f63bbd3e081a5b1a78ac228c481ddb
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
twine/7.0.0 CPython/3.13.14
|
Provenance
Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.
PyPI Publish Attestation
PyPI verified that this artifact, at this checksum, originated from the publisher listed below.
Signed by GitHub Actions, verified by PyPI on Sep 22, 2026.
Transparency logRelease files / tornado-6.6a1-cp315-cp315t-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl
| Download URL | tornado-6.6a1-cp315-cp315t-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl |
|---|---|
| Size | 476.5 kB |
| Tags | CPython 3.15 CPython 3.15 free-threading Linux glibc 2.17+ PowerPC 64-le Linux glibc 2.28+ PowerPC 64-le |
|
SHA-256 checksum How to use checksums |
27a1493990bc2e68f04874a50384ca98005c5e67304cc1a4a796eaa0d6f15b55
|
|
BLAKE2b-256 checksum How to use checksums |
b8bbbcad87f0900ae6368480a9628a32ec04b28b49ad27ef96dbce7006ca3d11
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
twine/7.0.0 CPython/3.13.14
|
Provenance
Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.
PyPI Publish Attestation
PyPI verified that this artifact, at this checksum, originated from the publisher listed below.
Signed by GitHub Actions, verified by PyPI on Sep 22, 2026.
Transparency logRelease files / tornado-6.6a1-cp315-cp315t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
| Download URL | tornado-6.6a1-cp315-cp315t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl |
|---|---|
| Size | 476.4 kB |
| Tags | CPython 3.15 CPython 3.15 free-threading Linux glibc 2.17+ ARM64 Linux glibc 2.28+ ARM64 |
|
SHA-256 checksum How to use checksums |
265710ad83343895b614ceb1fbbbed089dc1ee79e7f136cd17883cf2e817d886
|
|
BLAKE2b-256 checksum How to use checksums |
ecf88a64c3660d1889c4806e836759f770332c65e76353473f2818aa4eb63f68
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
twine/7.0.0 CPython/3.13.14
|
Provenance
Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.
PyPI Publish Attestation
PyPI verified that this artifact, at this checksum, originated from the publisher listed below.
Signed by GitHub Actions, verified by PyPI on Sep 22, 2026.
Transparency logRelease files / tornado-6.6a1-cp315-cp315t-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
| Download URL | tornado-6.6a1-cp315-cp315t-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl |
|---|---|
| Size | 475.3 kB |
| Tags | CPython 3.15 CPython 3.15 free-threading Linux glibc 2.28+ x86-64 Linux glibc 2.5+ x86-64 |
|
SHA-256 checksum How to use checksums |
9808151409f63f3fc2f93894fd7f7a15637ae3466c7b3ee5aa17da5d8491d269
|
|
BLAKE2b-256 checksum How to use checksums |
c70ecf452e4787eb004951ca5269eaeebd7775d20795a4642fa385646d633110
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
twine/7.0.0 CPython/3.13.14
|
Provenance
Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.
PyPI Publish Attestation
PyPI verified that this artifact, at this checksum, originated from the publisher listed below.
Signed by GitHub Actions, verified by PyPI on Sep 22, 2026.
Transparency logRelease files / tornado-6.6a1-cp315-cp315t-macosx_10_15_universal2.whl
| Download URL | tornado-6.6a1-cp315-cp315t-macosx_10_15_universal2.whl |
|---|---|
| Size | 471.0 kB |
| Tags | CPython 3.15 CPython 3.15 free-threading macOS 10.15+ universal2 (ARM64, x86-64) |
|
SHA-256 checksum How to use checksums |
042b83a1d6f1558d6b4078b81572fc0f5fccf3287c85d3ebbf2b83b6025bc9da
|
|
BLAKE2b-256 checksum How to use checksums |
ae5aaa24542dd04286abf95e6e22627b97f2a2a2d99d37103a333ae57ac8f25c
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
twine/7.0.0 CPython/3.13.14
|
Provenance
Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.
PyPI Publish Attestation
PyPI verified that this artifact, at this checksum, originated from the publisher listed below.
Signed by GitHub Actions, verified by PyPI on Sep 22, 2026.
Transparency logRelease files / tornado-6.6a1-cp314-cp314t-win_arm64.whl
| Download URL | tornado-6.6a1-cp314-cp314t-win_arm64.whl |
|---|---|
| Size | 472.7 kB |
| Tags | CPython 3.14 CPython 3.14 free-threading Windows ARM64 |
|
SHA-256 checksum How to use checksums |
e5b85d22e8063f54c75dac6e97e029008a3bbf8027439f29eb40e798793c28ef
|
|
BLAKE2b-256 checksum How to use checksums |
43baac86a0e5512ce63b445d77bbe79859e66bdb1e0ecee87f7c27f5a3896ef2
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
twine/7.0.0 CPython/3.13.14
|
Provenance
Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.
PyPI Publish Attestation
PyPI verified that this artifact, at this checksum, originated from the publisher listed below.
Signed by GitHub Actions, verified by PyPI on Sep 22, 2026.
Transparency logRelease files / tornado-6.6a1-cp314-cp314t-win_amd64.whl
| Download URL | tornado-6.6a1-cp314-cp314t-win_amd64.whl |
|---|---|
| Size | 473.0 kB |
| Tags | CPython 3.14 CPython 3.14 free-threading Windows x86-64 |
|
SHA-256 checksum How to use checksums |
da579066ba371a69f4e9b3f06d906f11e7bd0a9775ad30d6ea02023ed7bae7e8
|
|
BLAKE2b-256 checksum How to use checksums |
9a67b903c28d999bbd4d6179c678588aeab11de2aaeb5895d9a0fa1c7ed8e2d4
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
twine/7.0.0 CPython/3.13.14
|
Provenance
Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.
PyPI Publish Attestation
PyPI verified that this artifact, at this checksum, originated from the publisher listed below.
Signed by GitHub Actions, verified by PyPI on Sep 22, 2026.
Transparency logRelease files / tornado-6.6a1-cp314-cp314t-win32.whl
| Download URL | tornado-6.6a1-cp314-cp314t-win32.whl |
|---|---|
| Size | 472.7 kB |
| Tags | CPython 3.14 CPython 3.14 free-threading Windows x86-32 |
|
SHA-256 checksum How to use checksums |
ab6dc34315a8a4309abc6febbafc76f94524d5e0b6cf7bdeac79f82df50ccc1a
|
|
BLAKE2b-256 checksum How to use checksums |
5075ffe94061721f1251d83d729479fc7c8214bdfa8c0299cd83bcbda3b6b8a2
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
twine/7.0.0 CPython/3.13.14
|
Provenance
Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.
PyPI Publish Attestation
PyPI verified that this artifact, at this checksum, originated from the publisher listed below.
Signed by GitHub Actions, verified by PyPI on Sep 22, 2026.
Transparency logRelease files / tornado-6.6a1-cp314-cp314t-musllinux_1_2_x86_64.whl
| Download URL | tornado-6.6a1-cp314-cp314t-musllinux_1_2_x86_64.whl |
|---|---|
| Size | 475.2 kB |
| Tags | CPython 3.14 CPython 3.14 free-threading Linux musl 1.2+ x86-64 |
|
SHA-256 checksum How to use checksums |
eb985dfcf6a027c6efbda70844b3e6ad44edaf63937604e74298dbcbee2c430a
|
|
BLAKE2b-256 checksum How to use checksums |
10c019ee56d3070f6b731d311ed0f6ceebe6e2bea33eeb79978dc87c88404576
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
twine/7.0.0 CPython/3.13.14
|
Provenance
Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.
PyPI Publish Attestation
PyPI verified that this artifact, at this checksum, originated from the publisher listed below.
Signed by GitHub Actions, verified by PyPI on Sep 22, 2026.
Transparency logRelease files / tornado-6.6a1-cp314-cp314t-musllinux_1_2_s390x.whl
| Download URL | tornado-6.6a1-cp314-cp314t-musllinux_1_2_s390x.whl |
|---|---|
| Size | 475.2 kB |
| Tags | CPython 3.14 CPython 3.14 free-threading Linux musl 1.2+ IBM System/390x |
|
SHA-256 checksum How to use checksums |
0e1fc4cfa47a2d9ab14afc82b0542bc24ff759cd0ed53a6f6ca03d17b46ed9f7
|
|
BLAKE2b-256 checksum How to use checksums |
c9a00479affbf98c57f8a28825f2d8020a6c7c6e0045407548aef2f5871af174
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
twine/7.0.0 CPython/3.13.14
|
Provenance
Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.
PyPI Publish Attestation
PyPI verified that this artifact, at this checksum, originated from the publisher listed below.
Signed by GitHub Actions, verified by PyPI on Sep 22, 2026.
Transparency logRelease files / tornado-6.6a1-cp314-cp314t-musllinux_1_2_riscv64.whl
| Download URL | tornado-6.6a1-cp314-cp314t-musllinux_1_2_riscv64.whl |
|---|---|
| Size | 475.1 kB |
| Tags | CPython 3.14 CPython 3.14 free-threading Linux musl 1.2+ RISC-V 64 |
|
SHA-256 checksum How to use checksums |
e24698e59b1c1fc1d4dccf4517dbb2d5fcb07399aa487fa14e6a9ee4a737690c
|
|
BLAKE2b-256 checksum How to use checksums |
e97a8c05a1b8161a763916063e734a32ca5daa2a93911b457e2a7e51e9f86b62
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
twine/7.0.0 CPython/3.13.14
|
Provenance
Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.
PyPI Publish Attestation
PyPI verified that this artifact, at this checksum, originated from the publisher listed below.
Signed by GitHub Actions, verified by PyPI on Sep 22, 2026.
Transparency logRelease files / tornado-6.6a1-cp314-cp314t-musllinux_1_2_ppc64le.whl
| Download URL | tornado-6.6a1-cp314-cp314t-musllinux_1_2_ppc64le.whl |
|---|---|
| Size | 475.9 kB |
| Tags | CPython 3.14 CPython 3.14 free-threading Linux musl 1.2+ PowerPC 64-le |
|
SHA-256 checksum How to use checksums |
ade0fcc4fe50e6fbe3cecb4027b40d1a6c6f468296838e9a33dde31a69fd5e94
|
|
BLAKE2b-256 checksum How to use checksums |
c910d9ee7571e9e7758d75569ecc1230c2b048d194bfc36ad6be8a72b3e83813
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
twine/7.0.0 CPython/3.13.14
|
Provenance
Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.
PyPI Publish Attestation
PyPI verified that this artifact, at this checksum, originated from the publisher listed below.
Signed by GitHub Actions, verified by PyPI on Sep 22, 2026.
Transparency logRelease files / tornado-6.6a1-cp314-cp314t-musllinux_1_2_aarch64.whl
| Download URL | tornado-6.6a1-cp314-cp314t-musllinux_1_2_aarch64.whl |
|---|---|
| Size | 475.9 kB |
| Tags | CPython 3.14 CPython 3.14 free-threading Linux musl 1.2+ ARM64 |
|
SHA-256 checksum How to use checksums |
d1b0efbd6324ce5ea807a465a5303d5f42c8fb8ea0cdb70ab1cb105e7c90e28e
|
|
BLAKE2b-256 checksum How to use checksums |
37ee7d5b6e9582af9e26bd9ab7e4628d30251b4af7b9eed95ae36c94ca811545
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
twine/7.0.0 CPython/3.13.14
|
Provenance
Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.
PyPI Publish Attestation
PyPI verified that this artifact, at this checksum, originated from the publisher listed below.
Signed by GitHub Actions, verified by PyPI on Sep 22, 2026.
Transparency logRelease files / tornado-6.6a1-cp314-cp314t-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
| Download URL | tornado-6.6a1-cp314-cp314t-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl |
|---|---|
| Size | 473.6 kB |
| Tags | CPython 3.14 CPython 3.14 free-threading Linux glibc 2.31+ RISC-V 64 Linux glibc 2.39+ RISC-V 64 |
|
SHA-256 checksum How to use checksums |
ef777fe24a3cc2dd403e97653aef50d0ab4bf39be17f7514af0741be8c86196b
|
|
BLAKE2b-256 checksum How to use checksums |
82d400e37b60341290e8f29db8350eaff590002ac57668acb22d68b5cf5c7ab5
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
twine/7.0.0 CPython/3.13.14
|
Provenance
Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.
PyPI Publish Attestation
PyPI verified that this artifact, at this checksum, originated from the publisher listed below.
Signed by GitHub Actions, verified by PyPI on Sep 22, 2026.
Transparency logRelease files / tornado-6.6a1-cp314-cp314t-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl
| Download URL | tornado-6.6a1-cp314-cp314t-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl |
|---|---|
| Size | 475.3 kB |
| Tags | CPython 3.14 CPython 3.14 free-threading Linux glibc 2.17+ IBM System/390x Linux glibc 2.28+ IBM System/390x |
|
SHA-256 checksum How to use checksums |
431b3bc95b5391de97e93c0e5460781784f26b179016e711931f5a2cd02d9fd9
|
|
BLAKE2b-256 checksum How to use checksums |
6284d5d8dd70598150c6d6d942eb093ddf1b21a7dd0aaad3980961db4852cb76
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
twine/7.0.0 CPython/3.13.14
|
Provenance
Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.
PyPI Publish Attestation
PyPI verified that this artifact, at this checksum, originated from the publisher listed below.
Signed by GitHub Actions, verified by PyPI on Sep 22, 2026.
Transparency logRelease files / tornado-6.6a1-cp314-cp314t-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl
| Download URL | tornado-6.6a1-cp314-cp314t-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl |
|---|---|
| Size | 476.4 kB |
| Tags | CPython 3.14 CPython 3.14 free-threading Linux glibc 2.17+ PowerPC 64-le Linux glibc 2.28+ PowerPC 64-le |
|
SHA-256 checksum How to use checksums |
a8d0e5fc4cb1ec3283cc76bfc28e8672fa3376d820d823519452d37c7bd755d3
|
|
BLAKE2b-256 checksum How to use checksums |
c66659da4b63435c7ff48e279c5b66be4103f622cc2b5cf3e32095411fb335ef
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
twine/7.0.0 CPython/3.13.14
|
Provenance
Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.
PyPI Publish Attestation
PyPI verified that this artifact, at this checksum, originated from the publisher listed below.
Signed by GitHub Actions, verified by PyPI on Sep 22, 2026.
Transparency logRelease files / tornado-6.6a1-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
| Download URL | tornado-6.6a1-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl |
|---|---|
| Size | 476.1 kB |
| 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 |
e79489956fa5b046f20e6f9eb30f8185f87f7df429c58d2e441e2c5cf19662cc
|
|
BLAKE2b-256 checksum How to use checksums |
4f58d46a4f2a4d334307f406652f1e563b270eb3a4dc0b55ced012de6268c610
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
twine/7.0.0 CPython/3.13.14
|
Provenance
Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.
PyPI Publish Attestation
PyPI verified that this artifact, at this checksum, originated from the publisher listed below.
Signed by GitHub Actions, verified by PyPI on Sep 22, 2026.
Transparency logRelease files / tornado-6.6a1-cp314-cp314t-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
| Download URL | tornado-6.6a1-cp314-cp314t-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl |
|---|---|
| Size | 475.1 kB |
| Tags | CPython 3.14 CPython 3.14 free-threading Linux glibc 2.28+ x86-64 Linux glibc 2.5+ x86-64 |
|
SHA-256 checksum How to use checksums |
8c409278dbeb9a70b6228e390046b19edc27a004b3767854c48cc216936c155c
|
|
BLAKE2b-256 checksum How to use checksums |
dcdc19873bc4ae6619844cc5829911481b870e4db4a22f72287d25d00b0118be
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
twine/7.0.0 CPython/3.13.14
|
Provenance
Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.
PyPI Publish Attestation
PyPI verified that this artifact, at this checksum, originated from the publisher listed below.
Signed by GitHub Actions, verified by PyPI on Sep 22, 2026.
Transparency logRelease files / tornado-6.6a1-cp314-cp314t-macosx_10_15_universal2.whl
| Download URL | tornado-6.6a1-cp314-cp314t-macosx_10_15_universal2.whl |
|---|---|
| Size | 470.9 kB |
| Tags | CPython 3.14 CPython 3.14 free-threading macOS 10.15+ universal2 (ARM64, x86-64) |
|
SHA-256 checksum How to use checksums |
22ddc893ab3204ceb711c197ce5affdf74edbfabf1a607a291df87ea2005640a
|
|
BLAKE2b-256 checksum How to use checksums |
8bb1cbe70b014bf2ee46f9d262ca16ed3221c218c391994198ab108fb0996517
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
twine/7.0.0 CPython/3.13.14
|
Provenance
Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.
PyPI Publish Attestation
PyPI verified that this artifact, at this checksum, originated from the publisher listed below.
Signed by GitHub Actions, verified by PyPI on Sep 22, 2026.
Transparency logRelease files / tornado-6.6a1-cp311-abi3-win_arm64.whl
| Download URL | tornado-6.6a1-cp311-abi3-win_arm64.whl |
|---|---|
| Size | 472.8 kB |
| Tags | CPython 3.11 Windows ARM64 abi3 |
|
SHA-256 checksum How to use checksums |
a22f2bf353082c3f8a264582e0c29f889a3fdc2c5d67f627a38af5044530c53f
|
|
BLAKE2b-256 checksum How to use checksums |
9b17f651dd1b7fb6044a861d60b2de62a72a97c262bdbf3e2cfde747b8f5e02b
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
twine/7.0.0 CPython/3.13.14
|
Provenance
Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.
PyPI Publish Attestation
PyPI verified that this artifact, at this checksum, originated from the publisher listed below.
Signed by GitHub Actions, verified by PyPI on Sep 22, 2026.
Transparency logRelease files / tornado-6.6a1-cp311-abi3-win_amd64.whl
| Download URL | tornado-6.6a1-cp311-abi3-win_amd64.whl |
|---|---|
| Size | 473.1 kB |
| Tags | CPython 3.11 Windows x86-64 abi3 |
|
SHA-256 checksum How to use checksums |
c99e6d13a9a5c47e4d79a42d8736353a18fddcf278b272b73e2fc28f45c48625
|
|
BLAKE2b-256 checksum How to use checksums |
c0abcd9c3ce948a364a2c6b5dabb61c32a15cef6fa66be2be78fe3d072b957c6
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
twine/7.0.0 CPython/3.13.14
|
Provenance
Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.
PyPI Publish Attestation
PyPI verified that this artifact, at this checksum, originated from the publisher listed below.
Signed by GitHub Actions, verified by PyPI on Sep 22, 2026.
Transparency logRelease files / tornado-6.6a1-cp311-abi3-win32.whl
| Download URL | tornado-6.6a1-cp311-abi3-win32.whl |
|---|---|
| Size | 472.9 kB |
| Tags | CPython 3.11 Windows x86-32 abi3 |
|
SHA-256 checksum How to use checksums |
08900130d78fae0aad991ead35689fa338bb9997c5f84a26c1c06819fba8bd16
|
|
BLAKE2b-256 checksum How to use checksums |
7eec1e10e933d1920e3fbad360eecdc951554bff4b3dad27f2c47a9116ed4921
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
twine/7.0.0 CPython/3.13.14
|
Provenance
Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.
PyPI Publish Attestation
PyPI verified that this artifact, at this checksum, originated from the publisher listed below.
Signed by GitHub Actions, verified by PyPI on Sep 22, 2026.
Transparency logRelease files / tornado-6.6a1-cp311-abi3-musllinux_1_2_x86_64.whl
| Download URL | tornado-6.6a1-cp311-abi3-musllinux_1_2_x86_64.whl |
|---|---|
| Size | 472.3 kB |
| Tags | CPython 3.11 Linux musl 1.2+ x86-64 abi3 |
|
SHA-256 checksum How to use checksums |
eadb9064d4293b72244d8193e179530c9f1de8a583203d8c4481d53785928d25
|
|
BLAKE2b-256 checksum How to use checksums |
132c108f253950ab706df72d7658947ae5ac8a8b39889445e4276ffe0a2c6023
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
twine/7.0.0 CPython/3.13.14
|
Provenance
Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.
PyPI Publish Attestation
PyPI verified that this artifact, at this checksum, originated from the publisher listed below.
Signed by GitHub Actions, verified by PyPI on Sep 22, 2026.
Transparency logRelease files / tornado-6.6a1-cp311-abi3-musllinux_1_2_s390x.whl
| Download URL | tornado-6.6a1-cp311-abi3-musllinux_1_2_s390x.whl |
|---|---|
| Size | 472.3 kB |
| Tags | CPython 3.11 Linux musl 1.2+ IBM System/390x abi3 |
|
SHA-256 checksum How to use checksums |
605aa29bed090b19eb4213838f42bf363877d664d2eff5be03d6a188427ad47d
|
|
BLAKE2b-256 checksum How to use checksums |
435d7d0e5e2f258680736fc842390b10bd8371f64aae8c444c74d64804023518
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
twine/7.0.0 CPython/3.13.14
|
Provenance
Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.
PyPI Publish Attestation
PyPI verified that this artifact, at this checksum, originated from the publisher listed below.
Signed by GitHub Actions, verified by PyPI on Sep 22, 2026.
Transparency logRelease files / tornado-6.6a1-cp311-abi3-musllinux_1_2_riscv64.whl
| Download URL | tornado-6.6a1-cp311-abi3-musllinux_1_2_riscv64.whl |
|---|---|
| Size | 472.1 kB |
| Tags | CPython 3.11 Linux musl 1.2+ RISC-V 64 abi3 |
|
SHA-256 checksum How to use checksums |
1e902882e160fabaf508fd517d293845fa7eb2ff85812fdd4ef7f67a676ba21b
|
|
BLAKE2b-256 checksum How to use checksums |
ef2b1489a29f593d769823edaa77840615040e5b104ebde55f90c68e383981b1
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
twine/7.0.0 CPython/3.13.14
|
Provenance
Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.
PyPI Publish Attestation
PyPI verified that this artifact, at this checksum, originated from the publisher listed below.
Signed by GitHub Actions, verified by PyPI on Sep 22, 2026.
Transparency logRelease files / tornado-6.6a1-cp311-abi3-musllinux_1_2_ppc64le.whl
| Download URL | tornado-6.6a1-cp311-abi3-musllinux_1_2_ppc64le.whl |
|---|---|
| Size | 473.0 kB |
| Tags | CPython 3.11 Linux musl 1.2+ PowerPC 64-le abi3 |
|
SHA-256 checksum How to use checksums |
decde84c3f51bc1c222420ae8d0aed5ee1a81bfe1b34d6dd6adac3bfaa1b6618
|
|
BLAKE2b-256 checksum How to use checksums |
4a4584517225d7b4a9033b103a084e58718d8cdae65888b60df6717ca9c188d9
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
twine/7.0.0 CPython/3.13.14
|
Provenance
Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.
PyPI Publish Attestation
PyPI verified that this artifact, at this checksum, originated from the publisher listed below.
Signed by GitHub Actions, verified by PyPI on Sep 22, 2026.
Transparency logRelease files / tornado-6.6a1-cp311-abi3-musllinux_1_2_aarch64.whl
| Download URL | tornado-6.6a1-cp311-abi3-musllinux_1_2_aarch64.whl |
|---|---|
| Size | 472.9 kB |
| Tags | CPython 3.11 Linux musl 1.2+ ARM64 abi3 |
|
SHA-256 checksum How to use checksums |
fcd46ad67006a7df0140131f42b6a69b6328fcdead9616dbb1e25ca202ac4129
|
|
BLAKE2b-256 checksum How to use checksums |
d831be22f72415ec164511bdc823d19a9d66593d5ce1d604faa82cd86f7e3367
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
twine/7.0.0 CPython/3.13.14
|
Provenance
Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.
PyPI Publish Attestation
PyPI verified that this artifact, at this checksum, originated from the publisher listed below.
Signed by GitHub Actions, verified by PyPI on Sep 22, 2026.
Transparency logRelease files / tornado-6.6a1-cp311-abi3-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
| Download URL | tornado-6.6a1-cp311-abi3-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl |
|---|---|
| Size | 470.6 kB |
| Tags | CPython 3.11 Linux glibc 2.31+ RISC-V 64 Linux glibc 2.39+ RISC-V 64 abi3 |
|
SHA-256 checksum How to use checksums |
8ba2f65de0b273bad1a0f9618b471a18b270ab6eeef5317271f649f920596e16
|
|
BLAKE2b-256 checksum How to use checksums |
e92e67e3e0a61e8593bc6cdf4fe34eceb3d7c402f5b329de860da39edc72bcad
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
twine/7.0.0 CPython/3.13.14
|
Provenance
Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.
PyPI Publish Attestation
PyPI verified that this artifact, at this checksum, originated from the publisher listed below.
Signed by GitHub Actions, verified by PyPI on Sep 22, 2026.
Transparency logRelease files / tornado-6.6a1-cp311-abi3-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl
| Download URL | tornado-6.6a1-cp311-abi3-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl |
|---|---|
| Size | 472.2 kB |
| Tags | CPython 3.11 Linux glibc 2.17+ IBM System/390x Linux glibc 2.28+ IBM System/390x abi3 |
|
SHA-256 checksum How to use checksums |
b6bb6815a2537f22cea6dee67f295354ead865318dcb57191ea7b36ba4e0ff1f
|
|
BLAKE2b-256 checksum How to use checksums |
154cbb951688cba83458826b68cfc8f61d658954b14fe2bb35d2c26fb4ecc3b0
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
twine/7.0.0 CPython/3.13.14
|
Provenance
Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.
PyPI Publish Attestation
PyPI verified that this artifact, at this checksum, originated from the publisher listed below.
Signed by GitHub Actions, verified by PyPI on Sep 22, 2026.
Transparency logRelease files / tornado-6.6a1-cp311-abi3-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl
| Download URL | tornado-6.6a1-cp311-abi3-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl |
|---|---|
| Size | 473.2 kB |
| Tags | CPython 3.11 Linux glibc 2.17+ PowerPC 64-le Linux glibc 2.28+ PowerPC 64-le abi3 |
|
SHA-256 checksum How to use checksums |
3e76f50f0b53271ede5d7714493e55689419827163d57c84adfa72e3403cc161
|
|
BLAKE2b-256 checksum How to use checksums |
4805fba714ed9f7073f69c09a128e202b9ccfc763d923fdb76e08b0e24ce0ee5
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
twine/7.0.0 CPython/3.13.14
|
Provenance
Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.
PyPI Publish Attestation
PyPI verified that this artifact, at this checksum, originated from the publisher listed below.
Signed by GitHub Actions, verified by PyPI on Sep 22, 2026.
Transparency logRelease files / tornado-6.6a1-cp311-abi3-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
| Download URL | tornado-6.6a1-cp311-abi3-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl |
|---|---|
| Size | 473.0 kB |
| Tags | CPython 3.11 Linux glibc 2.17+ ARM64 Linux glibc 2.28+ ARM64 abi3 |
|
SHA-256 checksum How to use checksums |
5598fea241b5810c4eeef5b5c3215501e84dfb9246c130471a6290ee56bfedfa
|
|
BLAKE2b-256 checksum How to use checksums |
1e4744e28246e96b03c4511ecbc39b319d4d9305c77f66e7f775ac9068a5c55d
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
twine/7.0.0 CPython/3.13.14
|
Provenance
Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.
PyPI Publish Attestation
PyPI verified that this artifact, at this checksum, originated from the publisher listed below.
Signed by GitHub Actions, verified by PyPI on Sep 22, 2026.
Transparency logRelease files / tornado-6.6a1-cp311-abi3-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
| Download URL | tornado-6.6a1-cp311-abi3-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl |
|---|---|
| Size | 472.1 kB |
| Tags | CPython 3.11 Linux glibc 2.28+ x86-64 Linux glibc 2.5+ x86-64 abi3 |
|
SHA-256 checksum How to use checksums |
be7c6a859fb4fe316ba56e661bd17c2dd2cb864425892a9b152d8235e74fc680
|
|
BLAKE2b-256 checksum How to use checksums |
5f39c0d4882ee0b03431e89bb84cc2c2b08bce3c66f6f4c06df2053db2e45825
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
twine/7.0.0 CPython/3.13.14
|
Provenance
Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.
PyPI Publish Attestation
PyPI verified that this artifact, at this checksum, originated from the publisher listed below.
Signed by GitHub Actions, verified by PyPI on Sep 22, 2026.
Transparency logRelease files / tornado-6.6a1-cp311-abi3-macosx_10_9_universal2.whl
| Download URL | tornado-6.6a1-cp311-abi3-macosx_10_9_universal2.whl |
|---|---|
| Size | 470.8 kB |
| Tags | CPython 3.11 abi3 macOS 10.9+ universal2 (ARM64, x86-64) |
|
SHA-256 checksum How to use checksums |
fd3e94d9e119f983d9ffc1b06dac0b7010306dda834b5769ae72688a3631a69b
|
|
BLAKE2b-256 checksum How to use checksums |
6da58d2a0673aa45376dc0d16a593abee707313ff919a22c10b33d02a7347e8b
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
twine/7.0.0 CPython/3.13.14
|
Provenance
Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.
PyPI Publish Attestation
PyPI verified that this artifact, at this checksum, originated from the publisher listed below.
Signed by GitHub Actions, verified by PyPI on Sep 22, 2026.
Transparency log