Skip to main content

Segment a table from an image

Project description

Banner
Segmentation of tables from images

PyPi version of taulu GitHub Actions Workflow Status

Documentation

Data Requirements

This package assumes that you are working with images of tables that have clearly visible rules (the lines that divide the table into cells).

To fully utilize the automated workflow, your tables should include a recognizable header. This header will be used to identify the position of the first cell in the input image and determine the expected widths of the table's cells.

For optimal segmentation, ensure that the tables are rotated so the borders are approximately vertical and horizontal. Minor page warping is acceptable.

Installation

Using pip

pip install taulu

Using uv

uv add taulu

Usage

from taulu import Taulu
import os


def setup():
    # create an Annotation file of the headers in the image
    # (one for the left header, one for the right)
    # and store them in the examples directory
    print("Annotating the LEFT header...")
    Taulu.annotate("../data/table_00.png", "table_00_header_left.png")

    print("Annotating the RIGHT header...")
    Taulu.annotate("../data/table_00.png", "table_00_header_right.png")


def main():
    taulu = Taulu(("table_00_header_left.png", "table_00_header_right.png"))
    table = taulu.segment_table("../data/table_00.png", 0.8, debug_view=True)

    table.show_cells("../data/table_00.png")


if __name__ == "__main__":
    if os.path.exists("table_00_header_left.png") and os.path.exists(
        "table_00_header_right.png"
    ):
        main()
    else:
        setup()
        main()

This file can be found at examples/example.py. To run it, clone this repository, create a uv project, and run the script:

git clone git@github.com:GhentCDH/taulu.git
cd taulu
uv init --no-workspace --bare
uv run example.py

During this example, you will need to annotate the header image. You do this by simply clicking twice per line, once for each endpoint. It does not matter in which order you annotate the lines. Example:

Table Header Annotation Example

Below is an example of table cell identification using the Taulu package:

Table Cell Identification Example

Workflow

This package is structured in a modular way, with several components that work together.

The Taulu class combines the components into one simple API, as seen in Usage

The algorithm identifies the header's location in the input image, which provides a starting point. From there, it scans the image to find intersections of the rules (borders) and segments the image into cells accordingly.

The output is a TableGrid object that contains the detected intersections and which defines some useful methods, enabling you to segment the image into rows, columns, and cells.

The main classes are:

  • HeaderAligner: Uses template matching to identify the header's location in the input images.
  • HeaderTemplate: Stores header template information by reading an annotation JSON file. You can create this file by running HeaderTemplate.annotate_image.
  • GridDetector: Processes the image to identify intersections of horizontal and vertical lines (borders). To see its progress, you can run it with debug_view=True. This should allow you to tune the parameters to your data.

Parameters and Methods

The taulu algorithm has a number of parameters which you might need to tune in order for it to fit your data's characteristics. The following is a summary of the most important parameters and how you could tune them to your data.

Taulu

  • header_path: a path of the header image which has an annotation associated with it. The annotation is assumed to have the same path, but with a json suffix (this is the case when created with Taulu.annotate). When working with images that have two tables (or one table, split across two pages), you can supply a tuple of the left and right header images.

  • kernel_size, cross_width: The GridDetector uses a kernel to detect intersections of rules in the image. The kernel looks like this:

    kernel diagram

    The goal is to make this kernel look like the actual corners in your images after thresholding and dilation. The example script shows the dilated result (because debug_view=True), which you can use to estimate the cross_width and kernel_size values that fit your image. Note that the optimal values will depend on the morph_size parameter too.

  • morph_size: The GridDetector uses a dilation step in order to connect lines in the image that might be broken up after thresholding. With a larger morph_size, larger gaps in the lines will be connected, but it will also lead to much thicker lines. As a result, this parameter affects the optimal cross_width and cross_height.

  • region: This parameter influences the search algorithm. The algorithm has a rough idea of where the next corner point should be. At that location, the algorithm then finds the best match that is within a square of size region around that point, and selects that as the detected corner. Visualized:

    search algorithm region

    A larger region will be more forgiving for warping or other artefacts, but could lead to false positives too. You can see this region as blue squares when running the segmentation with debug_view=True

  • sauvola_k: This parameter adjusts the threshold that is used when binarizing the image. The larger sauvola_k more pixels will be mapped to zero. You should increase this parameter until most of the noise is gone in your image, without removing too many pixels from the actual lines of the table.

These methods are the most useful:

  • Taulu.annotate: create an annotation file for a header image. This requires an image of a table with a clear header. Taulu will first ask you to crop the header in the image (by clicking four points, one for each corner). Then, it will ask you to annotate the lines in the header (by clicking two points per line, one for each endpoint). The annotation file will be saved as a json file and a png with the same name.
  • Taulu.segment_table: given an input image, segment into a TableGrid object.
    • cell_height_factor: a float or a list of floats that determine the expected height of each row in the table, relative to the height of the header. If the list is shorter than the number of rows, the last value will be repeated for the remaining rows. If a single float is given, it will be used for all rows.

TableGrid

Taulu.segment_table returns a TableGrid instance, which you can use to get information about the location and bounding box of cells in your image.

These methods are the most useful:

  • save: save the TableGrid object as a json file
  • from_saved: restore a TableGrid object from a json file
  • cell: given a location in the image ((tuple[float, float]), return the cell index (row, column)
  • cell_polygon: get the polygon (left top, right top, right bottom, left bottom) of the cell in the image
  • region: given a start and end cell, get the polygon that surrounds all cells in between (inclusive range)
  • highlight_all_cells: highlight all cell edges on an image
  • show_cells: interactively highlight cells you click on in the image (in an OpenCV window)
  • crop_cell and crop_region: crop the image to the supplied cell or region

Credits

Development by Ghent Centre for Digital Humanities - Ghent University. Funded by the GhentCDH research projects.

Landscape

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

taulu-2.1.0.tar.gz (13.2 MB view details)

Uploaded Source

Built Distributions

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

taulu-2.1.0-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (450.2 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ s390x

taulu-2.1.0-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (448.4 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ppc64le

taulu-2.1.0-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (406.5 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

taulu-2.1.0-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (392.0 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

taulu-2.1.0-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (451.2 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ s390x

taulu-2.1.0-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (448.2 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ppc64le

taulu-2.1.0-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (406.3 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

taulu-2.1.0-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (391.7 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

taulu-2.1.0-cp313-cp313t-win_amd64.whl (267.7 kB view details)

Uploaded CPython 3.13tWindows x86-64

taulu-2.1.0-cp313-cp313t-win32.whl (258.1 kB view details)

Uploaded CPython 3.13tWindows x86

taulu-2.1.0-cp313-cp313t-musllinux_1_2_x86_64.whl (616.2 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ x86-64

taulu-2.1.0-cp313-cp313t-musllinux_1_2_i686.whl (639.8 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ i686

taulu-2.1.0-cp313-cp313t-musllinux_1_2_armv7l.whl (669.3 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARMv7l

taulu-2.1.0-cp313-cp313t-musllinux_1_2_aarch64.whl (569.2 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARM64

taulu-2.1.0-cp313-cp313t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (403.9 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ x86-64

taulu-2.1.0-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl (442.9 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ s390x

taulu-2.1.0-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (441.5 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ppc64le

taulu-2.1.0-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (399.9 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ARMv7l

taulu-2.1.0-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (386.3 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ARM64

taulu-2.1.0-cp313-cp313t-manylinux_2_12_i686.manylinux2010_i686.whl (423.2 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.12+ i686

taulu-2.1.0-cp313-cp313t-macosx_11_0_arm64.whl (348.4 kB view details)

Uploaded CPython 3.13tmacOS 11.0+ ARM64

taulu-2.1.0-cp39-abi3-win_amd64.whl (272.9 kB view details)

Uploaded CPython 3.9+Windows x86-64

taulu-2.1.0-cp39-abi3-win32.whl (262.3 kB view details)

Uploaded CPython 3.9+Windows x86

taulu-2.1.0-cp39-abi3-musllinux_1_2_x86_64.whl (623.5 kB view details)

Uploaded CPython 3.9+musllinux: musl 1.2+ x86-64

taulu-2.1.0-cp39-abi3-musllinux_1_2_i686.whl (647.0 kB view details)

Uploaded CPython 3.9+musllinux: musl 1.2+ i686

taulu-2.1.0-cp39-abi3-musllinux_1_2_armv7l.whl (677.4 kB view details)

Uploaded CPython 3.9+musllinux: musl 1.2+ ARMv7l

taulu-2.1.0-cp39-abi3-musllinux_1_2_aarch64.whl (575.0 kB view details)

Uploaded CPython 3.9+musllinux: musl 1.2+ ARM64

taulu-2.1.0-cp39-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (410.7 kB view details)

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

taulu-2.1.0-cp39-abi3-manylinux_2_17_s390x.manylinux2014_s390x.whl (451.7 kB view details)

Uploaded CPython 3.9+manylinux: glibc 2.17+ s390x

taulu-2.1.0-cp39-abi3-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (448.5 kB view details)

Uploaded CPython 3.9+manylinux: glibc 2.17+ ppc64le

taulu-2.1.0-cp39-abi3-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (406.9 kB view details)

Uploaded CPython 3.9+manylinux: glibc 2.17+ ARMv7l

taulu-2.1.0-cp39-abi3-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (392.4 kB view details)

Uploaded CPython 3.9+manylinux: glibc 2.17+ ARM64

taulu-2.1.0-cp39-abi3-manylinux_2_12_i686.manylinux2010_i686.whl (430.1 kB view details)

Uploaded CPython 3.9+manylinux: glibc 2.12+ i686

taulu-2.1.0-cp39-abi3-macosx_11_0_arm64.whl (353.3 kB view details)

Uploaded CPython 3.9+macOS 11.0+ ARM64

File details

Details for the file taulu-2.1.0.tar.gz.

File metadata

  • Download URL: taulu-2.1.0.tar.gz
  • Upload date:
  • Size: 13.2 MB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.9.24 {"installer":{"name":"uv","version":"0.9.24","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for taulu-2.1.0.tar.gz
Algorithm Hash digest
SHA256 0ab36f3916e1ccc208433ba507199bc989f040e18f600e2ada4297e326b4d9ac
MD5 e9d8dcdb8fd0930507e51def7b506500
BLAKE2b-256 6d5d9c1cbeb838713e28c21fb0d2cf880acb8beb9525f3b25bfbff86a1e54791

See more details on using hashes here.

File details

Details for the file taulu-2.1.0-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

  • Download URL: taulu-2.1.0-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
  • Upload date:
  • Size: 450.2 kB
  • Tags: PyPy, manylinux: glibc 2.17+ s390x
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.9.24 {"installer":{"name":"uv","version":"0.9.24","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for taulu-2.1.0-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 417b768d96d7179d852f8400e70edc753dc5ef97a01c911238650501de7deac0
MD5 3bd16a68c6acdb04624bf0f578fab517
BLAKE2b-256 1b8daa98b830c0a91626d8abd894fe2c996b41a11b1a79c27f6731b6a94bce19

See more details on using hashes here.

File details

Details for the file taulu-2.1.0-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

  • Download URL: taulu-2.1.0-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
  • Upload date:
  • Size: 448.4 kB
  • Tags: PyPy, manylinux: glibc 2.17+ ppc64le
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.9.24 {"installer":{"name":"uv","version":"0.9.24","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for taulu-2.1.0-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 f5a0cec62a30fe8bd262532800683747d8c64304625179fb40111dc8bfc520a8
MD5 0423101d670a6c8374bb58679da05635
BLAKE2b-256 0f3c7050222e24b97cc7ee8567fe4307299d852b7ff48992da54d595ad452ac2

See more details on using hashes here.

File details

Details for the file taulu-2.1.0-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

  • Download URL: taulu-2.1.0-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
  • Upload date:
  • Size: 406.5 kB
  • Tags: PyPy, manylinux: glibc 2.17+ ARMv7l
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.9.24 {"installer":{"name":"uv","version":"0.9.24","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for taulu-2.1.0-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 5415f26672cff42fce21e9d6c315cf388204e6f2d658528c874f539f74e21600
MD5 88ce9f19bac524b6daa5d3e555f499aa
BLAKE2b-256 324e110c36711535df282ce297d56f63d7102f779f4b9b3d0e9ff7f1f086b32d

See more details on using hashes here.

File details

Details for the file taulu-2.1.0-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

  • Download URL: taulu-2.1.0-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
  • Upload date:
  • Size: 392.0 kB
  • Tags: PyPy, manylinux: glibc 2.17+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.9.24 {"installer":{"name":"uv","version":"0.9.24","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for taulu-2.1.0-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 ea4135d76716ce82d21427250de08926da4ef97cd31e61117d1e3f19ec2727b4
MD5 e8cff05d5b8cd7bdf18e81d54856fbf3
BLAKE2b-256 0a878adacb34344ba0a4d2761b38fb87dc660cc5fba8270b8c3e7e96e34dc1cf

See more details on using hashes here.

File details

Details for the file taulu-2.1.0-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

  • Download URL: taulu-2.1.0-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
  • Upload date:
  • Size: 451.2 kB
  • Tags: PyPy, manylinux: glibc 2.17+ s390x
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.9.24 {"installer":{"name":"uv","version":"0.9.24","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for taulu-2.1.0-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 aaa1d306622c1b022a91d97ec48fa7d32163fe4a86ef7f172ef46276aa05a00a
MD5 f7848e2a7ddfc693d1fcf4650a7daf7a
BLAKE2b-256 0319799a7e26cb64816b55fa308ded5bed0c0edc5278cfd09c7d97c9083937ed

See more details on using hashes here.

File details

Details for the file taulu-2.1.0-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

  • Download URL: taulu-2.1.0-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
  • Upload date:
  • Size: 448.2 kB
  • Tags: PyPy, manylinux: glibc 2.17+ ppc64le
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.9.24 {"installer":{"name":"uv","version":"0.9.24","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for taulu-2.1.0-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 8ad1d3cde00dee154f9b50c1ff6173151536a328b32e66e3a81e01a5640ce457
MD5 9381b5b044284b6eea708166a9d5a875
BLAKE2b-256 2072f1e9224666db804ae2fe1a13f0d15a7a312188b430b8e0425fcedb2c2b50

See more details on using hashes here.

File details

Details for the file taulu-2.1.0-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

  • Download URL: taulu-2.1.0-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
  • Upload date:
  • Size: 406.3 kB
  • Tags: PyPy, manylinux: glibc 2.17+ ARMv7l
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.9.24 {"installer":{"name":"uv","version":"0.9.24","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for taulu-2.1.0-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 41ec06145d84be0616091660a001a6aae6b8c39e5b8970c5d56773b474572c07
MD5 65803f69b8273467b0a4bfb23ad6e66c
BLAKE2b-256 38c7753acad2c885db154de29f266edbc4f3c502587834e1d8eb6e9575d2350a

See more details on using hashes here.

File details

Details for the file taulu-2.1.0-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

  • Download URL: taulu-2.1.0-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
  • Upload date:
  • Size: 391.7 kB
  • Tags: PyPy, manylinux: glibc 2.17+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.9.24 {"installer":{"name":"uv","version":"0.9.24","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for taulu-2.1.0-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 7a480abc40602151d97d8a182b9f4bb592ea067ae4a02a02e4cc2bf1b6809e6d
MD5 109205e1d3a2f6ca94a165a71a4333be
BLAKE2b-256 e54f4ff8d2c8008c5996a5e8b597c7d87d5981150044fe2eede442cd8d32d584

See more details on using hashes here.

File details

Details for the file taulu-2.1.0-cp313-cp313t-win_amd64.whl.

File metadata

  • Download URL: taulu-2.1.0-cp313-cp313t-win_amd64.whl
  • Upload date:
  • Size: 267.7 kB
  • Tags: CPython 3.13t, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.9.24 {"installer":{"name":"uv","version":"0.9.24","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for taulu-2.1.0-cp313-cp313t-win_amd64.whl
Algorithm Hash digest
SHA256 e58e4b721e40795bcf5e50252aae747610453d88fad11201996d241cd49b4ad6
MD5 2c6303ddf124aea13c1f41678b81a3e3
BLAKE2b-256 f19212c5f6ab93e6a965a296ab42470dc27ae2436618cbc55429e58c977041f5

See more details on using hashes here.

File details

Details for the file taulu-2.1.0-cp313-cp313t-win32.whl.

File metadata

  • Download URL: taulu-2.1.0-cp313-cp313t-win32.whl
  • Upload date:
  • Size: 258.1 kB
  • Tags: CPython 3.13t, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.9.24 {"installer":{"name":"uv","version":"0.9.24","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for taulu-2.1.0-cp313-cp313t-win32.whl
Algorithm Hash digest
SHA256 708cc8af880a506b21178578b7efe7a648543920788b942602f38b431157644f
MD5 07472984638f4325387fd3f90b7483a9
BLAKE2b-256 bdd4105dd82fea50c5f8316bf63801f8b0415834827ebb5d44246ef121dcaf16

See more details on using hashes here.

File details

Details for the file taulu-2.1.0-cp313-cp313t-musllinux_1_2_x86_64.whl.

File metadata

  • Download URL: taulu-2.1.0-cp313-cp313t-musllinux_1_2_x86_64.whl
  • Upload date:
  • Size: 616.2 kB
  • Tags: CPython 3.13t, musllinux: musl 1.2+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.9.24 {"installer":{"name":"uv","version":"0.9.24","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for taulu-2.1.0-cp313-cp313t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 3bc18cfebcddfd0f123bbd905f139d15db999690dd26cbb0ae16681714135541
MD5 417595008ccfd8a5c7cdd895d417022d
BLAKE2b-256 1924fd9193671f8736232ee841fb98158c7ccfc8ac2885ccb7cf32f7af91f80f

See more details on using hashes here.

File details

Details for the file taulu-2.1.0-cp313-cp313t-musllinux_1_2_i686.whl.

File metadata

  • Download URL: taulu-2.1.0-cp313-cp313t-musllinux_1_2_i686.whl
  • Upload date:
  • Size: 639.8 kB
  • Tags: CPython 3.13t, musllinux: musl 1.2+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.9.24 {"installer":{"name":"uv","version":"0.9.24","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for taulu-2.1.0-cp313-cp313t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 eb5006dac35b537f10770a382d346265bcc63187c724a93b88588f10b6dc80ee
MD5 6b34065dba651a76d2272a9c120f4fc5
BLAKE2b-256 09be518d18ab1a2ad998cc8aa1cb572702a6dc63dc94d0190112318daf7bfa6f

See more details on using hashes here.

File details

Details for the file taulu-2.1.0-cp313-cp313t-musllinux_1_2_armv7l.whl.

File metadata

  • Download URL: taulu-2.1.0-cp313-cp313t-musllinux_1_2_armv7l.whl
  • Upload date:
  • Size: 669.3 kB
  • Tags: CPython 3.13t, musllinux: musl 1.2+ ARMv7l
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.9.24 {"installer":{"name":"uv","version":"0.9.24","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for taulu-2.1.0-cp313-cp313t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 67b0751ea0088e36d4aa039cfc02b17c0f78b3be5cc4bd76a68b6d616613d04a
MD5 e3cb644845c7ed66249a35323807551d
BLAKE2b-256 20dad3f14545bd59e2ae3b401606e3c6fb49165764ee3031345a281b9e40a3ac

See more details on using hashes here.

File details

Details for the file taulu-2.1.0-cp313-cp313t-musllinux_1_2_aarch64.whl.

File metadata

  • Download URL: taulu-2.1.0-cp313-cp313t-musllinux_1_2_aarch64.whl
  • Upload date:
  • Size: 569.2 kB
  • Tags: CPython 3.13t, musllinux: musl 1.2+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.9.24 {"installer":{"name":"uv","version":"0.9.24","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for taulu-2.1.0-cp313-cp313t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 3a6dfab97a13e8d150f046aa55aa2259945249a486bc774bf089115c59a94e3a
MD5 3441389bdff6bb6f86bfdd20aca3c78f
BLAKE2b-256 e2b11b9f0664f37c77578f03e5ea65c424e5c8e79d7e4a069413dd798f90fc52

See more details on using hashes here.

File details

Details for the file taulu-2.1.0-cp313-cp313t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

  • Download URL: taulu-2.1.0-cp313-cp313t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
  • Upload date:
  • Size: 403.9 kB
  • Tags: CPython 3.13t, manylinux: glibc 2.17+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.9.24 {"installer":{"name":"uv","version":"0.9.24","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for taulu-2.1.0-cp313-cp313t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 0e5b9a26d1ddc9fd691f56d4fa21a5f71b84630457a3d19eea1b428c0ff7cd05
MD5 4a699d6cbda9d9fcf43aa325679c1efb
BLAKE2b-256 0359ed1c52670d8cf43b6ea25a7926346806b907a2dca565ba2fdf1ccbd5b8b1

See more details on using hashes here.

File details

Details for the file taulu-2.1.0-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

  • Download URL: taulu-2.1.0-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl
  • Upload date:
  • Size: 442.9 kB
  • Tags: CPython 3.13t, manylinux: glibc 2.17+ s390x
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.9.24 {"installer":{"name":"uv","version":"0.9.24","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for taulu-2.1.0-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 037978b5e6a78b430d09e4976dba2b9ccb691c6a18077076cf1dfdde7234ee72
MD5 e31921b83d873b28954057ae7f501e77
BLAKE2b-256 203e788aeeeafe2b3258452315eb4d97bbf5b7a828f7c139316c2ef98873ed10

See more details on using hashes here.

File details

Details for the file taulu-2.1.0-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

  • Download URL: taulu-2.1.0-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
  • Upload date:
  • Size: 441.5 kB
  • Tags: CPython 3.13t, manylinux: glibc 2.17+ ppc64le
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.9.24 {"installer":{"name":"uv","version":"0.9.24","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for taulu-2.1.0-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 75fb809e3e07e356b88fe673733822c22fb938dab1dff8462e60b20e1c059471
MD5 d04696dc71d29a591e03982ab8bfd133
BLAKE2b-256 7c8431ea498cba3f41a054516bbc66ad44aa11afeca5f7ac2f1bd2b6eba8d750

See more details on using hashes here.

File details

Details for the file taulu-2.1.0-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

  • Download URL: taulu-2.1.0-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
  • Upload date:
  • Size: 399.9 kB
  • Tags: CPython 3.13t, manylinux: glibc 2.17+ ARMv7l
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.9.24 {"installer":{"name":"uv","version":"0.9.24","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for taulu-2.1.0-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 970912724391d8c39e4973e457915b32cab971db05d5c979ebdd079f33726b2a
MD5 b60115153ff5c09cb730c5ccccee70d2
BLAKE2b-256 6e76e313c38c3ffeee8e0d486792135fd067f0604467961851b0f03bbdb455c6

See more details on using hashes here.

File details

Details for the file taulu-2.1.0-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

  • Download URL: taulu-2.1.0-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
  • Upload date:
  • Size: 386.3 kB
  • Tags: CPython 3.13t, manylinux: glibc 2.17+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.9.24 {"installer":{"name":"uv","version":"0.9.24","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for taulu-2.1.0-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 2b39f08151c3433ea1db5b1d9e9620a0a2610e46c7703155d319fbcf91c547de
MD5 f606fc155feb20e6cd7962c57af417ca
BLAKE2b-256 50ed325b4e7e44ce59c2611f92be30d6fa5f68ed292e68a938534e193f1989c3

See more details on using hashes here.

File details

Details for the file taulu-2.1.0-cp313-cp313t-manylinux_2_12_i686.manylinux2010_i686.whl.

File metadata

  • Download URL: taulu-2.1.0-cp313-cp313t-manylinux_2_12_i686.manylinux2010_i686.whl
  • Upload date:
  • Size: 423.2 kB
  • Tags: CPython 3.13t, manylinux: glibc 2.12+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.9.24 {"installer":{"name":"uv","version":"0.9.24","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for taulu-2.1.0-cp313-cp313t-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 20fa75e09ae8ba3ca1064f62601ed58bf978e75f91fce53acaa5b956b5e5f64a
MD5 49480dbbe6cb433f1c7dfcc83260d5bf
BLAKE2b-256 e239016be9f9832cbf2a6785db6fff93f0fcc840d1f13d3f508fa6b1bbbcb53a

See more details on using hashes here.

File details

Details for the file taulu-2.1.0-cp313-cp313t-macosx_11_0_arm64.whl.

File metadata

  • Download URL: taulu-2.1.0-cp313-cp313t-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 348.4 kB
  • Tags: CPython 3.13t, macOS 11.0+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.9.24 {"installer":{"name":"uv","version":"0.9.24","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for taulu-2.1.0-cp313-cp313t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 a96313c094704754c4a1e64b6ecc7485161c51fc127b90524673ca47c6479306
MD5 fa84e91e62016104ebc50bad1333dbcb
BLAKE2b-256 edecc9d60d6409190e1cbf44244ab48a3b1fc47c3d806857796dc5afcdd8343a

See more details on using hashes here.

File details

Details for the file taulu-2.1.0-cp39-abi3-win_amd64.whl.

File metadata

  • Download URL: taulu-2.1.0-cp39-abi3-win_amd64.whl
  • Upload date:
  • Size: 272.9 kB
  • Tags: CPython 3.9+, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.9.24 {"installer":{"name":"uv","version":"0.9.24","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for taulu-2.1.0-cp39-abi3-win_amd64.whl
Algorithm Hash digest
SHA256 d1297e8b820b90c013b4d12aeef7ad097f8825176d23b9da5131e2297507bcd9
MD5 1f67ad342d2414d376738b6a20b724b7
BLAKE2b-256 e9c3872e643883ad1cfe2d0902a7ce353bbac627f85255a94c369df3a0416aad

See more details on using hashes here.

File details

Details for the file taulu-2.1.0-cp39-abi3-win32.whl.

File metadata

  • Download URL: taulu-2.1.0-cp39-abi3-win32.whl
  • Upload date:
  • Size: 262.3 kB
  • Tags: CPython 3.9+, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.9.24 {"installer":{"name":"uv","version":"0.9.24","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for taulu-2.1.0-cp39-abi3-win32.whl
Algorithm Hash digest
SHA256 421e63953bff7deee518813daed22ef22a584eb34b407365b841d71cfeaf057f
MD5 0f254e2388bd4a318e34f41d5a88f18b
BLAKE2b-256 556222204da4ba11b0b7662c9a7e0b6a49e54d4a055007bc6e878ff68473944c

See more details on using hashes here.

File details

Details for the file taulu-2.1.0-cp39-abi3-musllinux_1_2_x86_64.whl.

File metadata

  • Download URL: taulu-2.1.0-cp39-abi3-musllinux_1_2_x86_64.whl
  • Upload date:
  • Size: 623.5 kB
  • Tags: CPython 3.9+, musllinux: musl 1.2+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.9.24 {"installer":{"name":"uv","version":"0.9.24","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for taulu-2.1.0-cp39-abi3-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 e4c9929afc0fb9ffb63aad060e5081f694fdef2d72491e27b5789d8e0b858070
MD5 b3822d3ddc8192bd5767588ddd4b891e
BLAKE2b-256 76123b2b5dabe7b4dc3af76749decc17a7c2bcf5f84eeee40ba37f4d1b17a67f

See more details on using hashes here.

File details

Details for the file taulu-2.1.0-cp39-abi3-musllinux_1_2_i686.whl.

File metadata

  • Download URL: taulu-2.1.0-cp39-abi3-musllinux_1_2_i686.whl
  • Upload date:
  • Size: 647.0 kB
  • Tags: CPython 3.9+, musllinux: musl 1.2+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.9.24 {"installer":{"name":"uv","version":"0.9.24","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for taulu-2.1.0-cp39-abi3-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 8283e886b2d468c7528dbc73d97e9432adc3b97b8bdb6256dbbe1ba68a78e8ac
MD5 4c98279e4a6505bc0cc05af876ef8d54
BLAKE2b-256 5b92d7df1b70ad8d06fcc77eabafeb09c2cbbcb968a23f739a1a0aee1c54a764

See more details on using hashes here.

File details

Details for the file taulu-2.1.0-cp39-abi3-musllinux_1_2_armv7l.whl.

File metadata

  • Download URL: taulu-2.1.0-cp39-abi3-musllinux_1_2_armv7l.whl
  • Upload date:
  • Size: 677.4 kB
  • Tags: CPython 3.9+, musllinux: musl 1.2+ ARMv7l
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.9.24 {"installer":{"name":"uv","version":"0.9.24","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for taulu-2.1.0-cp39-abi3-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 d470204a4f5557e13c7a5f39b30678d3534dc41925167932aca9f1d2ddf1f126
MD5 39a7bd73dea2ea8223bb90798aa71946
BLAKE2b-256 4d02c996b6a561ece6f9ac67ca9ce29da10fe6013055f80fbc4b172ae9e438bc

See more details on using hashes here.

File details

Details for the file taulu-2.1.0-cp39-abi3-musllinux_1_2_aarch64.whl.

File metadata

  • Download URL: taulu-2.1.0-cp39-abi3-musllinux_1_2_aarch64.whl
  • Upload date:
  • Size: 575.0 kB
  • Tags: CPython 3.9+, musllinux: musl 1.2+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.9.24 {"installer":{"name":"uv","version":"0.9.24","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for taulu-2.1.0-cp39-abi3-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 4c9a968e97976dc200439e772b79ed5ebd55e03a673ee5043440e76bf604a8c9
MD5 924d87f002cf71dad84c976a3594c2c2
BLAKE2b-256 1f9216e5a72dee453427e7b321ff395bd045f842a8323bf7a0e7eb6c1cec4b41

See more details on using hashes here.

File details

Details for the file taulu-2.1.0-cp39-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

  • Download URL: taulu-2.1.0-cp39-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
  • Upload date:
  • Size: 410.7 kB
  • Tags: CPython 3.9+, manylinux: glibc 2.17+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.9.24 {"installer":{"name":"uv","version":"0.9.24","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for taulu-2.1.0-cp39-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 2f1e9b9984b9e7b5e81364efe561623c8ef871760beda43cc9916a5ad20d0f11
MD5 e5bd3fd7d4fdcdaab88affc2318d8f43
BLAKE2b-256 0cc4694e717b392f79be9617d834b9d2fb3134e582177cea7d7b9c348678bab8

See more details on using hashes here.

File details

Details for the file taulu-2.1.0-cp39-abi3-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

  • Download URL: taulu-2.1.0-cp39-abi3-manylinux_2_17_s390x.manylinux2014_s390x.whl
  • Upload date:
  • Size: 451.7 kB
  • Tags: CPython 3.9+, manylinux: glibc 2.17+ s390x
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.9.24 {"installer":{"name":"uv","version":"0.9.24","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for taulu-2.1.0-cp39-abi3-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 d7b91a03c75b3020d9749d57c9bea1db811613f443691f75ef510f80c5930b77
MD5 42e269c851e3b01b4b4e904eb73b7e63
BLAKE2b-256 db03c16f5ee8f484ca81ad013f1307dad3dc95f5a46fe3c1ac493af51268614d

See more details on using hashes here.

File details

Details for the file taulu-2.1.0-cp39-abi3-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

  • Download URL: taulu-2.1.0-cp39-abi3-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
  • Upload date:
  • Size: 448.5 kB
  • Tags: CPython 3.9+, manylinux: glibc 2.17+ ppc64le
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.9.24 {"installer":{"name":"uv","version":"0.9.24","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for taulu-2.1.0-cp39-abi3-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 07088bb1959970db6312afc9dd7f398b911e21cb602801bb923ad2ebff068df1
MD5 ae8496fed2f5735657a92211992b0bd3
BLAKE2b-256 54b36424c212e599259cb73c306f5387ec5c692ab327d6433a98abccb3183c8e

See more details on using hashes here.

File details

Details for the file taulu-2.1.0-cp39-abi3-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

  • Download URL: taulu-2.1.0-cp39-abi3-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
  • Upload date:
  • Size: 406.9 kB
  • Tags: CPython 3.9+, manylinux: glibc 2.17+ ARMv7l
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.9.24 {"installer":{"name":"uv","version":"0.9.24","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for taulu-2.1.0-cp39-abi3-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 a191e7052eac8729f65de72cd720a73b3309c86e960e0fcc2921c53404e35b0c
MD5 7fc729f94305eca89caa4b38efc8f2bf
BLAKE2b-256 a898a24444e8b314eec2a37f703123b9c9f5d999179824c8246845880b0b141a

See more details on using hashes here.

File details

Details for the file taulu-2.1.0-cp39-abi3-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

  • Download URL: taulu-2.1.0-cp39-abi3-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
  • Upload date:
  • Size: 392.4 kB
  • Tags: CPython 3.9+, manylinux: glibc 2.17+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.9.24 {"installer":{"name":"uv","version":"0.9.24","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for taulu-2.1.0-cp39-abi3-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 200aa4a526283f7f84e257fd5ce0d0123c8bea2ddef64a57dd24773ebf29a2a7
MD5 df54d71a3becbdc733b56183ca199700
BLAKE2b-256 f4fdd3c589ef61ce788536679168709ea8840289a30aad6c15b563358c46d718

See more details on using hashes here.

File details

Details for the file taulu-2.1.0-cp39-abi3-manylinux_2_12_i686.manylinux2010_i686.whl.

File metadata

  • Download URL: taulu-2.1.0-cp39-abi3-manylinux_2_12_i686.manylinux2010_i686.whl
  • Upload date:
  • Size: 430.1 kB
  • Tags: CPython 3.9+, manylinux: glibc 2.12+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.9.24 {"installer":{"name":"uv","version":"0.9.24","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for taulu-2.1.0-cp39-abi3-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 f231f8e6b784e2dc02e3492ff535bf33860e35f86bd171b887c7f1209ffa1d53
MD5 1446f068a5f7daefcb5a90cc3e7bbbf6
BLAKE2b-256 e89dbcd8438526e3a0210dd04be7b4b034f9dbab4120fedc1027c9f92ee4236c

See more details on using hashes here.

File details

Details for the file taulu-2.1.0-cp39-abi3-macosx_11_0_arm64.whl.

File metadata

  • Download URL: taulu-2.1.0-cp39-abi3-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 353.3 kB
  • Tags: CPython 3.9+, macOS 11.0+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.9.24 {"installer":{"name":"uv","version":"0.9.24","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for taulu-2.1.0-cp39-abi3-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 160840c3789881bd5a6caa5272a41a4df45e23f125552b43218a1470b8c11fb0
MD5 65bf1cca42c674e16487ff0d7c1887dc
BLAKE2b-256 8955bc9d7aa64fbebad547e0fa3c7866da56ccc7932d4b0cc6d4867c5429520f

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