Skip to main content

Ultra-fast terminal table renderer written in C

Project description

⚡ speedtable

speedtable is an ultra-fast, C-based terminal table renderer for Python.
Designed for large datasets and low-latency rendering — with beautiful Rich-style Unicode output.

💡 Perfect for CLI tools, dataset previews, or any place you need fast + styled tables.


🚀 Features

  • Blazing-fast C implementation 🔥
  • Unicode box-style table formatting (like Rich’s HEAVY_HEAD)
  • Bold, colored headers with optional column type labels
  • Customizable:
    • Header color
    • Border color
    • Body text color
    • Type label color
    • Title text and color (italicized, centered above the table)

📦 Installation

pip install speedtable

🧪 Example Usage

import speedtable

table_data = {
    "columns": [
        {"name": "ID", "type": "int"},
        {"name": "Name", "type": "str"},
        {"name": "Age", "type": "int"}
    ],
    "rows": [
        {"ID": 1, "Name": "Luke", "Age": 21},
        {"ID": 2, "Name": "Joe", "Age": 45},
        {"ID": 3, "Name": "Alice", "Age": 56}
    ]
}

print(speedtable.render_table(
    table_data,
    header_color="green",
    border_color="magenta",
    body_color="white",
    type_color="red",
    title_text="Test Table",
    title_color="cyan"
))

📷 Output

SpeedTable Demo


🎨 Supported Color Names

Name Description
black Standard black
red Standard red
green Standard green
yellow Standard yellow
blue Standard blue
magenta Standard magenta
cyan Standard cyan
white Standard white
bright_black Gray (dim)
bold_red Bright bold red
bold_white Bold white (great for headers)

✨ Headers are always bold, and titles are always italicized.


💡 Why speedtable?

The Python rich library is beautiful, but may be too slow for rendering large tables in CLI environments.
speedtable gives you the same polished aesthetic — at native speed.


📄 License

MIT © Luke Canada

Project details


Download files

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

Source Distribution

speedtable-1.0.4.tar.gz (36.5 kB view details)

Uploaded Source

Built Distributions

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

speedtable-1.0.4-pp311-pypy311_pp73-win_amd64.whl (16.7 kB view details)

Uploaded PyPyWindows x86-64

speedtable-1.0.4-pp311-pypy311_pp73-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl (14.0 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64manylinux: glibc 2.5+ x86-64

speedtable-1.0.4-pp311-pypy311_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (14.5 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ i686manylinux: glibc 2.5+ i686

speedtable-1.0.4-pp311-pypy311_pp73-macosx_11_0_arm64.whl (13.8 kB view details)

Uploaded PyPymacOS 11.0+ ARM64

speedtable-1.0.4-pp310-pypy310_pp73-win_amd64.whl (16.7 kB view details)

Uploaded PyPyWindows x86-64

speedtable-1.0.4-pp310-pypy310_pp73-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl (14.0 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64manylinux: glibc 2.5+ x86-64

speedtable-1.0.4-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (14.5 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ i686manylinux: glibc 2.5+ i686

speedtable-1.0.4-pp310-pypy310_pp73-macosx_11_0_arm64.whl (13.8 kB view details)

Uploaded PyPymacOS 11.0+ ARM64

speedtable-1.0.4-pp39-pypy39_pp73-win_amd64.whl (16.7 kB view details)

Uploaded PyPyWindows x86-64

speedtable-1.0.4-pp39-pypy39_pp73-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl (14.0 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64manylinux: glibc 2.5+ x86-64

speedtable-1.0.4-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (14.5 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ i686manylinux: glibc 2.5+ i686

speedtable-1.0.4-pp39-pypy39_pp73-macosx_11_0_arm64.whl (13.8 kB view details)

Uploaded PyPymacOS 11.0+ ARM64

speedtable-1.0.4-pp38-pypy38_pp73-win_amd64.whl (16.6 kB view details)

Uploaded PyPyWindows x86-64

speedtable-1.0.4-pp38-pypy38_pp73-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl (13.8 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64manylinux: glibc 2.5+ x86-64

speedtable-1.0.4-pp38-pypy38_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (14.3 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ i686manylinux: glibc 2.5+ i686

speedtable-1.0.4-pp38-pypy38_pp73-macosx_11_0_arm64.whl (13.6 kB view details)

Uploaded PyPymacOS 11.0+ ARM64

speedtable-1.0.4-pp37-pypy37_pp73-win_amd64.whl (16.6 kB view details)

Uploaded PyPyWindows x86-64

speedtable-1.0.4-pp37-pypy37_pp73-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl (13.9 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64manylinux: glibc 2.5+ x86-64

speedtable-1.0.4-pp37-pypy37_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (14.4 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ i686manylinux: glibc 2.5+ i686

speedtable-1.0.4-cp313-cp313-win_amd64.whl (16.7 kB view details)

Uploaded CPython 3.13Windows x86-64

speedtable-1.0.4-cp313-cp313-win32.whl (15.7 kB view details)

Uploaded CPython 3.13Windows x86

speedtable-1.0.4-cp313-cp313-musllinux_1_2_x86_64.whl (28.1 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

speedtable-1.0.4-cp313-cp313-musllinux_1_2_i686.whl (26.7 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ i686

speedtable-1.0.4-cp313-cp313-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl (29.6 kB view details)

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

speedtable-1.0.4-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (28.0 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ i686manylinux: glibc 2.5+ i686

speedtable-1.0.4-cp313-cp313-macosx_11_0_arm64.whl (14.2 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

speedtable-1.0.4-cp312-cp312-win_amd64.whl (16.7 kB view details)

Uploaded CPython 3.12Windows x86-64

speedtable-1.0.4-cp312-cp312-win32.whl (15.7 kB view details)

Uploaded CPython 3.12Windows x86

speedtable-1.0.4-cp312-cp312-musllinux_1_2_x86_64.whl (28.0 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

speedtable-1.0.4-cp312-cp312-musllinux_1_2_i686.whl (26.6 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ i686

speedtable-1.0.4-cp312-cp312-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl (29.6 kB view details)

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

speedtable-1.0.4-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (28.0 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ i686manylinux: glibc 2.5+ i686

speedtable-1.0.4-cp312-cp312-macosx_11_0_arm64.whl (14.2 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

speedtable-1.0.4-cp311-cp311-win_amd64.whl (16.7 kB view details)

Uploaded CPython 3.11Windows x86-64

speedtable-1.0.4-cp311-cp311-win32.whl (15.7 kB view details)

Uploaded CPython 3.11Windows x86

speedtable-1.0.4-cp311-cp311-musllinux_1_2_x86_64.whl (27.8 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

speedtable-1.0.4-cp311-cp311-musllinux_1_2_i686.whl (26.4 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ i686

speedtable-1.0.4-cp311-cp311-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl (29.4 kB view details)

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

speedtable-1.0.4-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (27.8 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ i686manylinux: glibc 2.5+ i686

speedtable-1.0.4-cp311-cp311-macosx_11_0_arm64.whl (14.2 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

speedtable-1.0.4-cp310-cp310-win_amd64.whl (16.7 kB view details)

Uploaded CPython 3.10Windows x86-64

speedtable-1.0.4-cp310-cp310-win32.whl (15.7 kB view details)

Uploaded CPython 3.10Windows x86

speedtable-1.0.4-cp310-cp310-musllinux_1_2_x86_64.whl (27.6 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

speedtable-1.0.4-cp310-cp310-musllinux_1_2_i686.whl (26.3 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ i686

speedtable-1.0.4-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl (29.2 kB view details)

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

speedtable-1.0.4-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (27.6 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ i686manylinux: glibc 2.5+ i686

speedtable-1.0.4-cp310-cp310-macosx_11_0_arm64.whl (14.2 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

speedtable-1.0.4-cp39-cp39-win_amd64.whl (16.7 kB view details)

Uploaded CPython 3.9Windows x86-64

speedtable-1.0.4-cp39-cp39-win32.whl (15.7 kB view details)

Uploaded CPython 3.9Windows x86

speedtable-1.0.4-cp39-cp39-musllinux_1_2_x86_64.whl (27.4 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ x86-64

speedtable-1.0.4-cp39-cp39-musllinux_1_2_i686.whl (26.1 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ i686

speedtable-1.0.4-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl (29.1 kB view details)

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

speedtable-1.0.4-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (27.5 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ i686manylinux: glibc 2.5+ i686

speedtable-1.0.4-cp39-cp39-macosx_11_0_arm64.whl (14.2 kB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

speedtable-1.0.4-cp38-cp38-win_amd64.whl (16.6 kB view details)

Uploaded CPython 3.8Windows x86-64

speedtable-1.0.4-cp38-cp38-win32.whl (15.6 kB view details)

Uploaded CPython 3.8Windows x86

speedtable-1.0.4-cp38-cp38-musllinux_1_2_x86_64.whl (26.8 kB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ x86-64

speedtable-1.0.4-cp38-cp38-musllinux_1_2_i686.whl (25.6 kB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ i686

speedtable-1.0.4-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl (28.6 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ x86-64manylinux: glibc 2.5+ x86-64

speedtable-1.0.4-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (26.9 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ i686manylinux: glibc 2.5+ i686

speedtable-1.0.4-cp38-cp38-macosx_11_0_arm64.whl (13.9 kB view details)

Uploaded CPython 3.8macOS 11.0+ ARM64

speedtable-1.0.4-cp37-cp37m-win_amd64.whl (16.6 kB view details)

Uploaded CPython 3.7mWindows x86-64

speedtable-1.0.4-cp37-cp37m-win32.whl (15.6 kB view details)

Uploaded CPython 3.7mWindows x86

speedtable-1.0.4-cp37-cp37m-musllinux_1_2_x86_64.whl (26.6 kB view details)

Uploaded CPython 3.7mmusllinux: musl 1.2+ x86-64

speedtable-1.0.4-cp37-cp37m-musllinux_1_2_i686.whl (25.4 kB view details)

Uploaded CPython 3.7mmusllinux: musl 1.2+ i686

speedtable-1.0.4-cp37-cp37m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl (28.4 kB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.17+ x86-64manylinux: glibc 2.5+ x86-64

speedtable-1.0.4-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (26.7 kB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.17+ i686manylinux: glibc 2.5+ i686

File details

Details for the file speedtable-1.0.4.tar.gz.

File metadata

  • Download URL: speedtable-1.0.4.tar.gz
  • Upload date:
  • Size: 36.5 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for speedtable-1.0.4.tar.gz
Algorithm Hash digest
SHA256 7b758eed87499289b2bf45ff43a1371cfda0c6e349ddcf1f8427d8d71f263754
MD5 e10f174e2c4910ce5c929f0f1d3522cd
BLAKE2b-256 310e3d3bdedd22a6b3f2077f4b066d8869365a11ad706b30be06b3c8422efafd

See more details on using hashes here.

File details

Details for the file speedtable-1.0.4-pp311-pypy311_pp73-win_amd64.whl.

File metadata

File hashes

Hashes for speedtable-1.0.4-pp311-pypy311_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 83c2da692cff9c98974a4cb33909d68121d06acb2c3dedab1577cedbd3c996ba
MD5 c8ac3d5aeb7febb941c3449df9126549
BLAKE2b-256 bfa372f9f0b3eedf372e7d1e944b9b3c39d8195e6fcc5c83a136c1f47f232e08

See more details on using hashes here.

File details

Details for the file speedtable-1.0.4-pp311-pypy311_pp73-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for speedtable-1.0.4-pp311-pypy311_pp73-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 a5b5e36bdcae822d2e473683d8db97894c6d73dd5cb6db8d5ad419abe21b18d0
MD5 011251914d18418334e3dd45043681a7
BLAKE2b-256 75fdef369653734ac4bbde1fe3a567b70408adc692d266312d68f7eb5c79721b

See more details on using hashes here.

File details

Details for the file speedtable-1.0.4-pp311-pypy311_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for speedtable-1.0.4-pp311-pypy311_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 3b0d86be0cc9555468dbb39487b25915cd596fc890c34241c81427a85ab930f9
MD5 dd84850345a55fd02c2ed01e4da46d3e
BLAKE2b-256 060cefaa0afc13fc543b9a9e982023afad8c9a79b46b8ba0927927385c47797d

See more details on using hashes here.

File details

Details for the file speedtable-1.0.4-pp311-pypy311_pp73-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for speedtable-1.0.4-pp311-pypy311_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 90840d68219ded02f1a538b648847cc4f4833b392b8298aa1a138d01185f67d4
MD5 3070292e8206316d642961cdc8084aea
BLAKE2b-256 bbee977083ed9a23e4a19a120909f10985b87d468544fd6525c0c25035050672

See more details on using hashes here.

File details

Details for the file speedtable-1.0.4-pp310-pypy310_pp73-win_amd64.whl.

File metadata

File hashes

Hashes for speedtable-1.0.4-pp310-pypy310_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 84158f0fe989566ac8e2834793c630080e3006740543dbb2bb584ddc7e60ea11
MD5 dd41287f291b5573bead8822b606dbe8
BLAKE2b-256 1bdc624764cf4aacb9f43c0926db92062d234b182f72cfca1d6638a577292391

See more details on using hashes here.

File details

Details for the file speedtable-1.0.4-pp310-pypy310_pp73-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for speedtable-1.0.4-pp310-pypy310_pp73-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 084829740376cc29cb6b27d16e3cc557b3e7883aa6d9e3c0c30cd08c46dc919d
MD5 dd8ed580566b4925564af7da64f8edae
BLAKE2b-256 37402cbbbf9a069725b4347aa74fdce2d6e12e0e031ba1868b48a30cf4daddc9

See more details on using hashes here.

File details

Details for the file speedtable-1.0.4-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for speedtable-1.0.4-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 e4b9b2244118690d9a97d07ad3122e51fdddcf5159068c021611ae43ca8e6a23
MD5 37e53d7433307d794b461b839fc29a10
BLAKE2b-256 f2a940c1046db0b4b99eda4c6a2a5d5a5599d7b42cdd6854d33e4b530219aae2

See more details on using hashes here.

File details

Details for the file speedtable-1.0.4-pp310-pypy310_pp73-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for speedtable-1.0.4-pp310-pypy310_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 eaa3fd3d79cfefbc1c72442f21fb6ef76c3827b9db18301404940fd3c477055f
MD5 8c05b309804d46aa930fe7f9aa4213bf
BLAKE2b-256 a236971a8d0f7ee707e7e4fdcec7677f5c3ff0c538965406fa7ea3fda582cf53

See more details on using hashes here.

File details

Details for the file speedtable-1.0.4-pp39-pypy39_pp73-win_amd64.whl.

File metadata

File hashes

Hashes for speedtable-1.0.4-pp39-pypy39_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 1b161f8c8da985b3921e48a16ed6ee7e0a3fe0ab1b39a30986798050cda9f586
MD5 9bf77aca2f221ef53b841c5c3499e9aa
BLAKE2b-256 d609198a96cd49e21f54ea4062ec232ad9d4e110c27eb1cb28d6c294b379b121

See more details on using hashes here.

File details

Details for the file speedtable-1.0.4-pp39-pypy39_pp73-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for speedtable-1.0.4-pp39-pypy39_pp73-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 1cae884844dc877d08d4973d9286ac6d9750e4cda6252c6473970381bfcb537d
MD5 33f551cc9e7ce8f6a0ee02d2d3d896b6
BLAKE2b-256 ab396841377d552389b87039e6b58d29c9fa422aedcd331d3dd5633537c2cd5d

See more details on using hashes here.

File details

Details for the file speedtable-1.0.4-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for speedtable-1.0.4-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 147eb48aee8b76e4caa0c1d0ac0495e1d099d3d1bf7933c391addd1c73512e3a
MD5 59eb6f4621eec0f95df8604de3a72982
BLAKE2b-256 477c61ae3e305a4115f86cc7a8ba8304cc111d870f301f43fadb0cad185ad8cf

See more details on using hashes here.

File details

Details for the file speedtable-1.0.4-pp39-pypy39_pp73-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for speedtable-1.0.4-pp39-pypy39_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 f440de571f33513bab5b557d6b053ebc91079d7fa6adb969de162ef5c6b25a80
MD5 9804f579304c62717a420ef02d00bc00
BLAKE2b-256 b0ad54f099961ccd2d16a12f05060c05ab697cd03042e705ea0827baff87eb0e

See more details on using hashes here.

File details

Details for the file speedtable-1.0.4-pp38-pypy38_pp73-win_amd64.whl.

File metadata

File hashes

Hashes for speedtable-1.0.4-pp38-pypy38_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 b0ba893e762b9b1f85b89f65e54beec3108c4c3b830f3ff10a663e8a38c0ad6c
MD5 1876e87d4aba3ccf2acd628d4571b449
BLAKE2b-256 11c3acee0115328b362e0a86c9ef0be248a0692570dd32b90378de1d8f7b92a5

See more details on using hashes here.

File details

Details for the file speedtable-1.0.4-pp38-pypy38_pp73-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for speedtable-1.0.4-pp38-pypy38_pp73-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 2b5c45d82c0fc6ba0f135151fa9e462801c7b4aa25fa898e4c8e54962e6738d8
MD5 578412ad77d9da1a9fb230fc283a9851
BLAKE2b-256 2739963bc66770a942300552c1853f51b596f7e77789ba23109895eb47b05bc8

See more details on using hashes here.

File details

Details for the file speedtable-1.0.4-pp38-pypy38_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for speedtable-1.0.4-pp38-pypy38_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 32de038a840fbe7218ddb2676d306a3dd254bf22b30483036d866337e8ce0e09
MD5 a97274ee6738eee73bf80622201295e1
BLAKE2b-256 1adda6dab987ee0a64ec17493cc084f0da1aac6ed1d6162c11e190dbefd139e2

See more details on using hashes here.

File details

Details for the file speedtable-1.0.4-pp38-pypy38_pp73-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for speedtable-1.0.4-pp38-pypy38_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 03ab5ac4d7c747ca4dd1bf0a97ce1c02000b189a0a51c03f492043b01c445c71
MD5 5dd5fce2882574e45c19c8e67ec13aff
BLAKE2b-256 0706b0131350753b3c16cda9adca728c665b5d9addae3eae82093bb7cd1fd46e

See more details on using hashes here.

File details

Details for the file speedtable-1.0.4-pp37-pypy37_pp73-win_amd64.whl.

File metadata

File hashes

Hashes for speedtable-1.0.4-pp37-pypy37_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 d4d4d3440551c36ef881ff9219af6bce924086e2927303f33fbadb6f12e864e4
MD5 1d846b67a8cc9ecab6c14089e66705c4
BLAKE2b-256 bef87147405e24d5d1b2431d8151f7fcd7a2e50498995fd9456224729b0c572c

See more details on using hashes here.

File details

Details for the file speedtable-1.0.4-pp37-pypy37_pp73-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for speedtable-1.0.4-pp37-pypy37_pp73-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 de1ecca20b6c7306c0339bf3178de3d3978b08d7908a2edf2d9da8e65a86f86e
MD5 561639aabae74d3cdf9120551409378d
BLAKE2b-256 64a0d1c63cc3da0a1f3a7557e7c5b8abdf81f30a7ffbdf0692a01a6db73364eb

See more details on using hashes here.

File details

Details for the file speedtable-1.0.4-pp37-pypy37_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for speedtable-1.0.4-pp37-pypy37_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 e877b29d73b1b854623f92b4e8dc25981236afceb6326013f52ebe7e9887fc30
MD5 82d9506f9094016fb5f0184c6e51d847
BLAKE2b-256 72688b3cd8749e2922faeb91e15f853150887cf71fcd446ea8912b4a586cc190

See more details on using hashes here.

File details

Details for the file speedtable-1.0.4-cp313-cp313-win_amd64.whl.

File metadata

  • Download URL: speedtable-1.0.4-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 16.7 kB
  • Tags: CPython 3.13, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for speedtable-1.0.4-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 491da9794e31d742bb422ad9e592a675b4b287c5b2eacb60d82d64aeb7710c30
MD5 ebce5e3f3798959df9a391b02b39ff53
BLAKE2b-256 627f0fb74d1aff610703f466f2f658a88fea7b0090d39cff534b8952fcac2f83

See more details on using hashes here.

File details

Details for the file speedtable-1.0.4-cp313-cp313-win32.whl.

File metadata

  • Download URL: speedtable-1.0.4-cp313-cp313-win32.whl
  • Upload date:
  • Size: 15.7 kB
  • Tags: CPython 3.13, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for speedtable-1.0.4-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 4a8307a3b4822d25a222426629c4f0d6cc2855b770d7264d0173b1ab99288a78
MD5 ac5a73de019c7a63a0b0057dd600f3bf
BLAKE2b-256 428d62396cc059e3b346b7a725d1f21ff883906272b6e262cd6b46e7c4c53d3c

See more details on using hashes here.

File details

Details for the file speedtable-1.0.4-cp313-cp313-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for speedtable-1.0.4-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 62ce9cb85e09be237c326f5191c1b6f9422a41c6b4ee36489865f5b3065eaf43
MD5 9b8c950e28816604a0a4e315250b4884
BLAKE2b-256 cf58151e74e436ca1c26e1866ea4a746dfbd775d95b109211f2822cd5363806d

See more details on using hashes here.

File details

Details for the file speedtable-1.0.4-cp313-cp313-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for speedtable-1.0.4-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 321e46dc113a72ef310b486ec506c008949a41eb8096b7bd46b4fcfd2252b790
MD5 36b9a4a93a1c48329017bc3fc1769916
BLAKE2b-256 f219234d4a6de05653b00efddfe532945c33c842b8f5fab94ff6c207f824956f

See more details on using hashes here.

File details

Details for the file speedtable-1.0.4-cp313-cp313-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for speedtable-1.0.4-cp313-cp313-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 1299ab0dd249653e59ac27094f8493f92b645ffa371dd524615e338e20b12dcf
MD5 de73fdde468f986aabd7c2c4db7e0a57
BLAKE2b-256 e83d87f9ff8d71c49a8f82ded7ce2e5e93b6ac45bd86adccceb6d47eba83747b

See more details on using hashes here.

File details

Details for the file speedtable-1.0.4-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for speedtable-1.0.4-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 aaa67a9b4a00948cd706d20e7b42208f32ab45abedbf90673c1f61f941fd551e
MD5 b0dba837ae65f41dad26573ee021391e
BLAKE2b-256 1a4043803ad07bafb430262e7da880c8d21a1de03f68165fbd10af4956143198

See more details on using hashes here.

File details

Details for the file speedtable-1.0.4-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for speedtable-1.0.4-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 f1d2e48c5a32f1364ef558574754400b897c1c93c02519579fc5343d6fef6b3d
MD5 45f22a3b8ee9807b69458c06188beea0
BLAKE2b-256 455d6565977bc4c85f9ec55bead24f3387b6bcf46de1a7d82aa692320fe49ba0

See more details on using hashes here.

File details

Details for the file speedtable-1.0.4-cp312-cp312-win_amd64.whl.

File metadata

  • Download URL: speedtable-1.0.4-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 16.7 kB
  • Tags: CPython 3.12, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for speedtable-1.0.4-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 7abde238ea5c9aae1e717a7c1d676c3d00e18f6199467e71f94497d0e37575e3
MD5 3b2d4c233b22795b88a5dfbbb707a9bb
BLAKE2b-256 09673f7c9e013a4dee516b8abe53122e8ae94264d1dc24e2621de0578508454e

See more details on using hashes here.

File details

Details for the file speedtable-1.0.4-cp312-cp312-win32.whl.

File metadata

  • Download URL: speedtable-1.0.4-cp312-cp312-win32.whl
  • Upload date:
  • Size: 15.7 kB
  • Tags: CPython 3.12, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for speedtable-1.0.4-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 3eed1cbee874db45cfaebb0fab3d2ffb006e6f6b1cd56b0736adfdd2c5b5131f
MD5 aab052f34142ffef0528fdebe127a348
BLAKE2b-256 0d77dad50a5e74d7eac2fb1751e067def4abe430e0814be7f67d3dfad02f2af1

See more details on using hashes here.

File details

Details for the file speedtable-1.0.4-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for speedtable-1.0.4-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 92679f8ba55cf4ca753359b37b541b2805d3e3f3f21523b56f6a123d41a0f1ea
MD5 8f80ad75cc4eeda90d8ec7e6f4b1afb3
BLAKE2b-256 f8312fbc1da0557151af81e40fcef192ff06b802df38a5464574c9ec1569d234

See more details on using hashes here.

File details

Details for the file speedtable-1.0.4-cp312-cp312-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for speedtable-1.0.4-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 93d8fb72f13c5497d8ca30d669c3fa2bedff6c60e4a84434a3c2fd8d2f37e572
MD5 86efe974b75385bc71576c82c961944f
BLAKE2b-256 602c0e0a18036c2ebe882f08510bb8013c2cd856a31f084ab656f57ece94e642

See more details on using hashes here.

File details

Details for the file speedtable-1.0.4-cp312-cp312-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for speedtable-1.0.4-cp312-cp312-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 f468302ff0cabf9415967bcac5152be679dac9583f0b4d2e7b308360b8be452d
MD5 99972ef8f9362b8134058a888578b2f5
BLAKE2b-256 9d2f685307ef4d55c3c4d1cbf1d20331990faef3c95a674aa0a1472901f62db6

See more details on using hashes here.

File details

Details for the file speedtable-1.0.4-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for speedtable-1.0.4-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 54eab5048930fc7a7845efaec1e52375cf3f47cda25ef0d9e783a0d1a7c05ff6
MD5 5689b0915683e31e5140ec9b91f47c6d
BLAKE2b-256 ff0956c1fa33b476b8906e3ac8f26f33d7a6562b9fd2b91d30129f0dac8445cf

See more details on using hashes here.

File details

Details for the file speedtable-1.0.4-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for speedtable-1.0.4-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 f31d69ff2489d83616748e26312d8873016918455ac2bb31d9fc65eba8e552c8
MD5 205fda99e7ad26614700901361400a69
BLAKE2b-256 83c5a542abc0d3c0175687cdb99cc3261b788c7cc3e51e617bb79ca7cc81e1dc

See more details on using hashes here.

File details

Details for the file speedtable-1.0.4-cp311-cp311-win_amd64.whl.

File metadata

  • Download URL: speedtable-1.0.4-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 16.7 kB
  • Tags: CPython 3.11, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for speedtable-1.0.4-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 11a3357bd2330cb0ba11adc81ad5211f6f5048d4705cd05e59497d20ce03f339
MD5 de3eca65f1b58058d28bf4cb72cdbb5f
BLAKE2b-256 2f733d3d370a3bfe00b5d714a1b6fb83ce11a0e5d65aa3db73fb7cdca5b51002

See more details on using hashes here.

File details

Details for the file speedtable-1.0.4-cp311-cp311-win32.whl.

File metadata

  • Download URL: speedtable-1.0.4-cp311-cp311-win32.whl
  • Upload date:
  • Size: 15.7 kB
  • Tags: CPython 3.11, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for speedtable-1.0.4-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 78f492e21a94b015e1ba74888dc04ceba115135ecd847fc8874a32456d952e9b
MD5 bff7ba124659f4f91d558f17442e43f1
BLAKE2b-256 60e3c9c24372a0b5418c451d0cbc172c98fd9e597d9f028644a240d361faabbc

See more details on using hashes here.

File details

Details for the file speedtable-1.0.4-cp311-cp311-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for speedtable-1.0.4-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 14f97dcbb8d5faf69678b1c10a3c36743a4d1a1b896e7460c70f399d0bd64a0c
MD5 a081d35771a42e9c235f9c29610d52f5
BLAKE2b-256 6d7a8c6f74d53aa1d322d0fefc6e7bfd21672c8a57280b845e6e210be91e5925

See more details on using hashes here.

File details

Details for the file speedtable-1.0.4-cp311-cp311-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for speedtable-1.0.4-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 f3cb94ec97e9d3eceeadeb55b94c3602394b297407a4fa0c8b7df99a6f0787cd
MD5 e0de76c841fc653025d4397537cbdfe2
BLAKE2b-256 cbb71036f3a3d01eb0614623fffc0fd895071755f9982eab6ad49f1a134bca73

See more details on using hashes here.

File details

Details for the file speedtable-1.0.4-cp311-cp311-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for speedtable-1.0.4-cp311-cp311-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 29f3ce7c13cbf8e322fa8b2d21eeaecb9365f18560bc1b541ac4278d06e23aea
MD5 4703e3ce47bd5f09572230da564fc858
BLAKE2b-256 be8553103d8209411494d44dcd1f38e836739e74674145e7dcf8571f32a9a7ac

See more details on using hashes here.

File details

Details for the file speedtable-1.0.4-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for speedtable-1.0.4-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 ad05519c8c1e7a8d2be867fd4890c0117ae7040c9240e4cbcc516025c9572a24
MD5 daa1652649449e55ada5ff03a18bd52f
BLAKE2b-256 3fb466d243f0709ef4ef0be05a0881e36fe7b752fde148ae9495e6ee927a77f4

See more details on using hashes here.

File details

Details for the file speedtable-1.0.4-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for speedtable-1.0.4-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 204b53c6babcf5234952dc43e06504f3b302e32c83570b9a5365bb9f30aba49a
MD5 4cc9f3c14709be32e9d4b7b92f2cdfc1
BLAKE2b-256 abd1b8fbcf7a22b6c4229844d712921e219cec182041298328a09071d8ef23f1

See more details on using hashes here.

File details

Details for the file speedtable-1.0.4-cp310-cp310-win_amd64.whl.

File metadata

  • Download URL: speedtable-1.0.4-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 16.7 kB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for speedtable-1.0.4-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 01fd6f4e0565880a5406c3a162202dc9e66629e4ebcc58afdcd94b6880169716
MD5 3f64f2ec422d36f918af00d4cbe5c135
BLAKE2b-256 705653f247b75d42a4cc2dbc309272fdcb85e5f7675f5d527542bf531aa8590e

See more details on using hashes here.

File details

Details for the file speedtable-1.0.4-cp310-cp310-win32.whl.

File metadata

  • Download URL: speedtable-1.0.4-cp310-cp310-win32.whl
  • Upload date:
  • Size: 15.7 kB
  • Tags: CPython 3.10, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for speedtable-1.0.4-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 74df4ab665ee484e05d508109e43d85fe4df8760a4dd692af9ca57ba7a0d4ee5
MD5 b155d6caa133eeaf3bddda20cf294b16
BLAKE2b-256 e3e5ceae2974c196aa4ba008d2773260a82af791285ac007666a005b2dec0c30

See more details on using hashes here.

File details

Details for the file speedtable-1.0.4-cp310-cp310-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for speedtable-1.0.4-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 3bad79bd6954e8dd2c5ab88e5ec368601f722e063da8a68f51655bfac1e7a0b1
MD5 afbb2ec6674aa43c99b44874a954db1c
BLAKE2b-256 de310fcff7182085dd98fad8da2be083e6a23cbddb67949537e0b313312252bd

See more details on using hashes here.

File details

Details for the file speedtable-1.0.4-cp310-cp310-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for speedtable-1.0.4-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 41212cc6a367aef539686e103008ab7bb57da2d0811ee0afd411c414828605eb
MD5 5a4dee60d72a47ea8a4019648f88674f
BLAKE2b-256 772395886e4759a329f488a84c6c4cb12d5b7794658123c6b0ca28de5f99d77b

See more details on using hashes here.

File details

Details for the file speedtable-1.0.4-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for speedtable-1.0.4-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 ebdbcd81b178452b1d265743274a9de967add3f1339a328a17c87f61a415548b
MD5 b9abe017e16552a9e719241fe0c2c7ba
BLAKE2b-256 eb90e3753b9bc3002577d7b3e9d48d27e415788f5dc1507d3bdd4cee2d068c4e

See more details on using hashes here.

File details

Details for the file speedtable-1.0.4-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for speedtable-1.0.4-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 306ac8005bdf04570608dd70480521089be5360b67ba2fbb077f82cb566ebf53
MD5 a7239298cdc19a2de22279d3a5e76270
BLAKE2b-256 855b3dfa6b1fa8ddc17d3797a061f1649654185ee8783ce40e0f9fc81c903d82

See more details on using hashes here.

File details

Details for the file speedtable-1.0.4-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for speedtable-1.0.4-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 a1949fcde9c7a79ff27c51e259fd74f9aad292fa6deeaed9bfe4a099e6efc0ac
MD5 43eeb0e6853fd47936fae81b7e04f3b5
BLAKE2b-256 23e0ef1cb606c079e6887cf60beacb443fb176313cd2a009f4558df1b1ecab6b

See more details on using hashes here.

File details

Details for the file speedtable-1.0.4-cp39-cp39-win_amd64.whl.

File metadata

  • Download URL: speedtable-1.0.4-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 16.7 kB
  • Tags: CPython 3.9, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for speedtable-1.0.4-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 9712ab5ae8edbecba6bcac4c1484dbac1c0d3f9bfc38b49e4287996ff2856d29
MD5 fcbfcca6cbae9931545209e0b9b5ccff
BLAKE2b-256 5a378e4326d8febe349ebec238a7c80f10139699f7a9d36a075e4876d3637636

See more details on using hashes here.

File details

Details for the file speedtable-1.0.4-cp39-cp39-win32.whl.

File metadata

  • Download URL: speedtable-1.0.4-cp39-cp39-win32.whl
  • Upload date:
  • Size: 15.7 kB
  • Tags: CPython 3.9, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for speedtable-1.0.4-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 6673f313a443fac152333ee85c803f5bdd593479504c172047f734b9cfa577c2
MD5 7ab15be2a734564d3fcd230667b1e39a
BLAKE2b-256 7674187031838ec06f2701a6d6642ccd37dfa6e78814728f02dc965e0ad4ddaf

See more details on using hashes here.

File details

Details for the file speedtable-1.0.4-cp39-cp39-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for speedtable-1.0.4-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 0ff22bd0577966cf8d696d456b44993a589783710c966c4360cbecbf61006d13
MD5 9142d7976bacd5f40d7e6c401f6dc647
BLAKE2b-256 3dc1748232359ed653e1e40c06b0d75635592e4a6e584d8a27e356be00a345a1

See more details on using hashes here.

File details

Details for the file speedtable-1.0.4-cp39-cp39-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for speedtable-1.0.4-cp39-cp39-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 4e4c278e442229249b55cf1b8da6745be083a893f93866971aaa47b8accd5985
MD5 d3e36fef876f0bcd1229ec55439f4140
BLAKE2b-256 0eb3ff9b69938c083810f6c1476cb27738d513edc706d47566c150c76434f2b1

See more details on using hashes here.

File details

Details for the file speedtable-1.0.4-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for speedtable-1.0.4-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 1b42949701b3c7f111b1afc6c84cc4de80b1b8ec651f08faa5228f08e1300759
MD5 d93f33674c2fa9f85d31da0a092e376f
BLAKE2b-256 d582d3c4610c6222fb7e708747d47713be2b01d64e56b15af1f35d0eae223d60

See more details on using hashes here.

File details

Details for the file speedtable-1.0.4-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for speedtable-1.0.4-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 0bbf749d79950531d1c81c8800a9c9cdb9bd001285dd0346b4f749c943c15781
MD5 3c52d12440124d9092acf37a27c5827c
BLAKE2b-256 9c5e90c56ca7ee2c35b0542a74f4afb9e1d781fbde0b827e04b9f5d3c97d62c3

See more details on using hashes here.

File details

Details for the file speedtable-1.0.4-cp39-cp39-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for speedtable-1.0.4-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 dba9cbb6ccda5c89e51871dd1145f56b3e93df400ed28388164126881d890da7
MD5 56dcb442e8f769a6cdb4a0c9ddc4f5af
BLAKE2b-256 0c7d44295902793bb4dad207ff2c408502d69e4c2af560e1c9f50eb746a91f18

See more details on using hashes here.

File details

Details for the file speedtable-1.0.4-cp38-cp38-win_amd64.whl.

File metadata

  • Download URL: speedtable-1.0.4-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 16.6 kB
  • Tags: CPython 3.8, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for speedtable-1.0.4-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 a8c57c3d072650ca799acf263d4fa57771f41127f9426e6ce41175345ededb30
MD5 7a18b042c2a031ffea615f9f9872b6cd
BLAKE2b-256 20fe690b37d64f8c7f5ecd82a8c7de5a9f7989e5ea68907523cdefd39403aafc

See more details on using hashes here.

File details

Details for the file speedtable-1.0.4-cp38-cp38-win32.whl.

File metadata

  • Download URL: speedtable-1.0.4-cp38-cp38-win32.whl
  • Upload date:
  • Size: 15.6 kB
  • Tags: CPython 3.8, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for speedtable-1.0.4-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 97f3083b1aee2e06ed1e6af71c703812c8328c05bf4d5cc4c7634fd0197c25b2
MD5 20884b27c15e5c41c87a2b62240a6c12
BLAKE2b-256 7294cda8c7f383c61d1a8fd1dd838ffd1a2ff89a0315e3c78641a9ce10aedb9c

See more details on using hashes here.

File details

Details for the file speedtable-1.0.4-cp38-cp38-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for speedtable-1.0.4-cp38-cp38-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 d71bd4768c4148f64f2993c4523ea8df4e79416d53b0f59a8ea58e77b3e6a5bd
MD5 e8634e1191503646c54b720cd43d325e
BLAKE2b-256 8370ddb3f75cd176406dc8ae1aa9251ca6714092ef35c025534e67b6d93b2379

See more details on using hashes here.

File details

Details for the file speedtable-1.0.4-cp38-cp38-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for speedtable-1.0.4-cp38-cp38-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 1981e73699994766164407da3aefec7f22dfed60a10db4b1e6c23a6cc79385bb
MD5 fe94b12e975a05957692fc1eb1c4ba7f
BLAKE2b-256 6c173bedef3b7a4da3fbc77b46e26eea2fbdf17772770809fb0d8b7596b74c1d

See more details on using hashes here.

File details

Details for the file speedtable-1.0.4-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for speedtable-1.0.4-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 4ad140216ac9f8bb7e71a58c1ce273aed7b47f972485f41e30281b5ac0c1f8fb
MD5 a702f6ee54d117ca6615ddb0771c48eb
BLAKE2b-256 3e7a71dd4b86ace9d835835b82a6550946c62bc1d76590cd85cf2118cf97f42d

See more details on using hashes here.

File details

Details for the file speedtable-1.0.4-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for speedtable-1.0.4-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 64cbab66b05839807344636d398e9f3f770ac4ea0ce6c8371cff886c243a332e
MD5 ddfa41954608c7cc18acca19fc016439
BLAKE2b-256 c6abbd4062e1b1d599ac4aed7b66bff232fb92bad9792f3230849dd3f064a8b7

See more details on using hashes here.

File details

Details for the file speedtable-1.0.4-cp38-cp38-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for speedtable-1.0.4-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 d06774e6ed479208ed2a86f6694cc0fdd48a44b06233b8cf75f2af234a7637c5
MD5 ef4619c2c05cd18c0c9ae07c8e9bbf16
BLAKE2b-256 27adc87e219a6043e6f5840a73ecf2152844b3ea064e835b7b2e3bd68ad5f872

See more details on using hashes here.

File details

Details for the file speedtable-1.0.4-cp37-cp37m-win_amd64.whl.

File metadata

  • Download URL: speedtable-1.0.4-cp37-cp37m-win_amd64.whl
  • Upload date:
  • Size: 16.6 kB
  • Tags: CPython 3.7m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for speedtable-1.0.4-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 310945f213f9000ee23d593911d68c4b3171c8ebffb08bb26d42ef1a43eac06b
MD5 0881af5b7a9c7c6293faf3d7ec633b79
BLAKE2b-256 645b276df49ad73f19b08a245705de2b827a7b0cfc0992d19fc095522a69ce87

See more details on using hashes here.

File details

Details for the file speedtable-1.0.4-cp37-cp37m-win32.whl.

File metadata

  • Download URL: speedtable-1.0.4-cp37-cp37m-win32.whl
  • Upload date:
  • Size: 15.6 kB
  • Tags: CPython 3.7m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for speedtable-1.0.4-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 c7d58d2acab5461c2e8183e7d47e8c9ef52eeb96b6cb1de95ab13f355911092c
MD5 ce8f4a2420b325f17d3283b52f45fbac
BLAKE2b-256 5fdef71e1dbe16c2efe0ad82e0f5e25943fac95d6bb1bdd8b90c508a634cddbe

See more details on using hashes here.

File details

Details for the file speedtable-1.0.4-cp37-cp37m-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for speedtable-1.0.4-cp37-cp37m-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 3a9a85316941afea1ab425d8ff2ccc398d2bdb1c230a5044910d32baca19e0da
MD5 e291ac40a029b898d072a894c41f0a62
BLAKE2b-256 e51d5eec4c41af685a6d59c1a52bece384c33bd5b2def6fd601cc7f5ad83db6b

See more details on using hashes here.

File details

Details for the file speedtable-1.0.4-cp37-cp37m-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for speedtable-1.0.4-cp37-cp37m-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 593524b29394b91160ac8407bd81b29cb8deb4d010e4b7b305dfc199455933d4
MD5 135ae540bb23447c09db0c676482efa8
BLAKE2b-256 6ceb8ac13ecdc0a868a8a55da0af51f05df171833bb1295317b2f0130cfbebe3

See more details on using hashes here.

File details

Details for the file speedtable-1.0.4-cp37-cp37m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for speedtable-1.0.4-cp37-cp37m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 fdc1fd397e2e457fbc02b5fecd7e2198614dc742fd148434287b94c22f894b71
MD5 60f802b393db5d41729c9d32f6651c11
BLAKE2b-256 787da9e5286aa2acbeec073bee7c8d2415e7fdc5576596478b6239569292100a

See more details on using hashes here.

File details

Details for the file speedtable-1.0.4-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for speedtable-1.0.4-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 75c446e647e6410e835a8d0974b4f99bb0e336237e453927a61381ae96770885
MD5 b7ef79d4d27eae59a11577876b6c38e6
BLAKE2b-256 f1eec70ee26b8ecb657d15b96f169af97c4809a3faffb64240ec51b501d6c77e

See more details on using hashes here.

Supported by

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