Skip to main content

Tabeline

Tabeline is a data frame and data grammar library. You write the expressions in strings and supply them to methods on the DataFrame class. The strings are parsed by Parsita and converted into Polars for execution.

Tabeline draws inspiration from dplyr, the data grammar of R's tidyverse, especially for its methods names. The filter, mutate, group_by, and summarize methods should all feel familiar. But Tabeline is as proper a Python library as can be, using methods instead of pipes, like is standard in R.

Tabeline uses Polars under the hood, but adds a lot of handling of edge cases from Polars, which otherwise result in crashes or behavior that is not type stable.

See the Documentation for the full user guide.

Installation

It is recommended to install Tabeline from PyPI using pip.

pip install tabeline

Motivating example

from tabeline import DataFrame

# Construct a data frame using clean syntax
# from_csv, from_pandas, and from_polars are also available 
df = DataFrame(
    id=[0, 0, 0, 0, 1, 1, 1, 1, 1],
    t=[0, 6, 12, 24, 0, 6, 12, 24, 48],
    y=[0, 2, 3, 1, 0, 4, 3, 2, 1],
)

# Use data grammar methods and string expressions to define
# transformed data frames
analysis = (
    df
    .filter("t <= 24")
    .group_by("id")
    .summarize(auc="trapz(t, y)")
)

print(analysis)
# shape: (2, 2)
# ┌─────┬──────┐
# │ id  ┆ auc  │
# │ --- ┆ ---  │
# │ i64 ┆ f64  │
# ╞═════╪══════╡
# │ 0   ┆ 45.0 │
# ├╌╌╌╌╌┼╌╌╌╌╌╌┤
# │ 1   ┆ 63.0 │
# └─────┴──────┘

Release files for tabeline 0.7.1

For a detailed explanation of source distributions (sdists) and built distributions (wheels), please see the package formats documentation.

Source distribution (sdist)

Source distribution for tabeline 0.7.1
File Size Uploaded
tabeline-0.7.1.tar.gz 197.2 kB Details

Built distributions (wheels)

Table of built distributions (wheels) for tabeline 0.7.1
File
tabeline-0.7.1-cp314-cp314-win_amd64.whl CPython 3.14 CPython 3.14 Windows x86-64 Details
tabeline-0.7.1-cp314-cp314-manylinux_2_35_x86_64.whl CPython 3.14 CPython 3.14 Linux glibc 2.35+ x86-64 Details
tabeline-0.7.1-cp314-cp314-manylinux_2_35_aarch64.whl CPython 3.14 CPython 3.14 Linux glibc 2.35+ ARM64 Details
tabeline-0.7.1-cp314-cp314-macosx_11_0_arm64.whl CPython 3.14 CPython 3.14 macOS 11.0+ ARM64 Details
tabeline-0.7.1-cp314-cp314-macosx_10_12_x86_64.whl CPython 3.14 CPython 3.14 macOS 10.12+ x86-64 Details
tabeline-0.7.1-cp313-cp313-win_amd64.whl CPython 3.13 CPython 3.13 Windows x86-64 Details
tabeline-0.7.1-cp313-cp313-manylinux_2_35_x86_64.whl CPython 3.13 CPython 3.13 Linux glibc 2.35+ x86-64 Details
tabeline-0.7.1-cp313-cp313-manylinux_2_35_aarch64.whl CPython 3.13 CPython 3.13 Linux glibc 2.35+ ARM64 Details
tabeline-0.7.1-cp313-cp313-macosx_11_0_arm64.whl CPython 3.13 CPython 3.13 macOS 11.0+ ARM64 Details
tabeline-0.7.1-cp313-cp313-macosx_10_12_x86_64.whl CPython 3.13 CPython 3.13 macOS 10.12+ x86-64 Details
tabeline-0.7.1-cp312-cp312-win_amd64.whl CPython 3.12 CPython 3.12 Windows x86-64 Details
tabeline-0.7.1-cp312-cp312-manylinux_2_35_x86_64.whl CPython 3.12 CPython 3.12 Linux glibc 2.35+ x86-64 Details
tabeline-0.7.1-cp312-cp312-manylinux_2_35_aarch64.whl CPython 3.12 CPython 3.12 Linux glibc 2.35+ ARM64 Details
tabeline-0.7.1-cp312-cp312-macosx_11_0_arm64.whl CPython 3.12 CPython 3.12 macOS 11.0+ ARM64 Details
tabeline-0.7.1-cp312-cp312-macosx_10_12_x86_64.whl CPython 3.12 CPython 3.12 macOS 10.12+ x86-64 Details
tabeline-0.7.1-cp311-cp311-win_amd64.whl CPython 3.11 CPython 3.11 Windows x86-64 Details
tabeline-0.7.1-cp311-cp311-manylinux_2_35_x86_64.whl CPython 3.11 CPython 3.11 Linux glibc 2.35+ x86-64 Details
tabeline-0.7.1-cp311-cp311-manylinux_2_35_aarch64.whl CPython 3.11 CPython 3.11 Linux glibc 2.35+ ARM64 Details
tabeline-0.7.1-cp311-cp311-macosx_11_0_arm64.whl CPython 3.11 CPython 3.11 macOS 11.0+ ARM64 Details
tabeline-0.7.1-cp311-cp311-macosx_10_12_x86_64.whl CPython 3.11 CPython 3.11 macOS 10.12+ x86-64 Details
tabeline-0.7.1-cp310-cp310-win_amd64.whl CPython 3.10 CPython 3.10 Windows x86-64 Details
tabeline-0.7.1-cp310-cp310-manylinux_2_35_x86_64.whl CPython 3.10 CPython 3.10 Linux glibc 2.35+ x86-64 Details
tabeline-0.7.1-cp310-cp310-manylinux_2_35_aarch64.whl CPython 3.10 CPython 3.10 Linux glibc 2.35+ ARM64 Details
tabeline-0.7.1-cp310-cp310-macosx_11_0_arm64.whl CPython 3.10 CPython 3.10 macOS 11.0+ ARM64 Details
tabeline-0.7.1-cp310-cp310-macosx_10_12_x86_64.whl CPython 3.10 CPython 3.10 macOS 10.12+ x86-64 Details

Total release size: 528.2 MB

Release files / tabeline-0.7.1.tar.gz

Download URL tabeline-0.7.1.tar.gz
Size 197.2 kB
Tags Source
SHA-256 checksum
How to use checksums
c526aee951cb7420ce3799c2008f3113f1faae8ccc9cef75209d23d0fdcd5292
BLAKE2b-256 checksum
How to use checksums
a3f939bad5ba0f167e18ac46761acefff77a00fbcee57199bd6abbfd405406de
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.12

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Apr 14, 2026.

Transparency log

Release files / tabeline-0.7.1-cp314-cp314-win_amd64.whl

Download URL tabeline-0.7.1-cp314-cp314-win_amd64.whl
Size 20.3 MB
Tags CPython 3.14 Windows x86-64
SHA-256 checksum
How to use checksums
c676c2b555dd7c926635a89917569e81ccfc9a608ce4645292560bc9cd678577
BLAKE2b-256 checksum
How to use checksums
839835edc6bb9d12cec9faf26493f76c956606fce2f487ac82a20b80172dffd0
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.12

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Apr 14, 2026.

Transparency log

Release files / tabeline-0.7.1-cp314-cp314-manylinux_2_35_x86_64.whl

Download URL tabeline-0.7.1-cp314-cp314-manylinux_2_35_x86_64.whl
Size 21.7 MB
Tags CPython 3.14 Linux glibc 2.35+ x86-64
SHA-256 checksum
How to use checksums
7c397de12309803de7a9b282ca25ea88e84cc707f5928d28e0dfc71f2041eb95
BLAKE2b-256 checksum
How to use checksums
1621fa21177dff9400ba99e80bf46579f03639291dc5507e1f95041121e8235d
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.12

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Apr 14, 2026.

Transparency log

Release files / tabeline-0.7.1-cp314-cp314-manylinux_2_35_aarch64.whl

Download URL tabeline-0.7.1-cp314-cp314-manylinux_2_35_aarch64.whl
Size 22.1 MB
Tags CPython 3.14 Linux glibc 2.35+ ARM64
SHA-256 checksum
How to use checksums
7e27491434ffc353dab6b1e7ca9e65e4713bae64d4b7bc2ec8cb26b2d49a7e7a
BLAKE2b-256 checksum
How to use checksums
10b4f32fbdedd0c72d7347b77e22a2ec9d2c0334b8b07371abf5424bfedaf4cf
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.12

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Apr 14, 2026.

Transparency log

Release files / tabeline-0.7.1-cp314-cp314-macosx_11_0_arm64.whl

Download URL tabeline-0.7.1-cp314-cp314-macosx_11_0_arm64.whl
Size 20.2 MB
Tags CPython 3.14 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
e180779a70966c4dbbcada5e1e53e12df1f031133ac093bed350ac7edb684cfc
BLAKE2b-256 checksum
How to use checksums
3c7669e50015905e34688bd8e29015524fd621497455473898a037e5153055e0
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.12

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Apr 14, 2026.

Transparency log

Release files / tabeline-0.7.1-cp314-cp314-macosx_10_12_x86_64.whl

Download URL tabeline-0.7.1-cp314-cp314-macosx_10_12_x86_64.whl
Size 21.2 MB
Tags CPython 3.14 macOS 10.12+ x86-64
SHA-256 checksum
How to use checksums
ee07b294f08e6808d2aacbb3b49f0ff86c5cd25b24e86c87cdb020327d9222bb
BLAKE2b-256 checksum
How to use checksums
3132f144f74ee120eeacd4abcc21244d30a1dc824f829acfc119d70cb0ec7eac
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.12

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Apr 14, 2026.

Transparency log

Release files / tabeline-0.7.1-cp313-cp313-win_amd64.whl

Download URL tabeline-0.7.1-cp313-cp313-win_amd64.whl
Size 20.3 MB
Tags CPython 3.13 Windows x86-64
SHA-256 checksum
How to use checksums
46c4671647411cfd6811a2c610c14f7b3aa7063f4751811323112003a4b9c46e
BLAKE2b-256 checksum
How to use checksums
f48fe33a7f08a7cd9bc009b01e40b9ae0e922d19bb136800ac52d788a049db56
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.12

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Apr 14, 2026.

Transparency log

Release files / tabeline-0.7.1-cp313-cp313-manylinux_2_35_x86_64.whl

Download URL tabeline-0.7.1-cp313-cp313-manylinux_2_35_x86_64.whl
Size 21.8 MB
Tags CPython 3.13 Linux glibc 2.35+ x86-64
SHA-256 checksum
How to use checksums
54881e8d6b908226f04361ecf0bd9f0c4384f59b46348c393bb2badc855ebb7a
BLAKE2b-256 checksum
How to use checksums
01fd192bf347454a93a74fe90ccc55052679d61c647ab03c2dd3a69696ec086f
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.12

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Apr 14, 2026.

Transparency log

Release files / tabeline-0.7.1-cp313-cp313-manylinux_2_35_aarch64.whl

Download URL tabeline-0.7.1-cp313-cp313-manylinux_2_35_aarch64.whl
Size 22.1 MB
Tags CPython 3.13 Linux glibc 2.35+ ARM64
SHA-256 checksum
How to use checksums
d5345f0543f992717edcd6bff3e27bc2ab9ffc757e547623fde82ca9f7e897fe
BLAKE2b-256 checksum
How to use checksums
5f6c879e474bfdba8444c98845f667fb84931f4a43b131dcb0449818be7e773a
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.12

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Apr 14, 2026.

Transparency log

Release files / tabeline-0.7.1-cp313-cp313-macosx_11_0_arm64.whl

Download URL tabeline-0.7.1-cp313-cp313-macosx_11_0_arm64.whl
Size 20.2 MB
Tags CPython 3.13 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
ca3e50174103f2d1358da5338ea569d75ff1fba440bd717f91f162b78b813861
BLAKE2b-256 checksum
How to use checksums
942c96ccd662cce715316ac73e7d5f08a966d5162a0c272ae0feb54e6ad3f37a
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.12

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Apr 14, 2026.

Transparency log

Release files / tabeline-0.7.1-cp313-cp313-macosx_10_12_x86_64.whl

Download URL tabeline-0.7.1-cp313-cp313-macosx_10_12_x86_64.whl
Size 21.2 MB
Tags CPython 3.13 macOS 10.12+ x86-64
SHA-256 checksum
How to use checksums
ce88d465dc145d3e20b3a26a0933cfad0c047fb707a1b23dbd1b5988bf0315a6
BLAKE2b-256 checksum
How to use checksums
28ae3c8363d7b21d5793a13e22066255f2789ebb645f685eab87cb588f2b6be0
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.12

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Apr 14, 2026.

Transparency log

Release files / tabeline-0.7.1-cp312-cp312-win_amd64.whl

Download URL tabeline-0.7.1-cp312-cp312-win_amd64.whl
Size 20.3 MB
Tags CPython 3.12 Windows x86-64
SHA-256 checksum
How to use checksums
69e082360c38e8817e01a2ed0bf99620839e5b0b180f07ab482f73ab893bd3ce
BLAKE2b-256 checksum
How to use checksums
9e3d0c5f9464e561bec41796a0ac77251acfaaa777326957a611bd702a3472de
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.12

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Apr 14, 2026.

Transparency log

Release files / tabeline-0.7.1-cp312-cp312-manylinux_2_35_x86_64.whl

Download URL tabeline-0.7.1-cp312-cp312-manylinux_2_35_x86_64.whl
Size 21.8 MB
Tags CPython 3.12 Linux glibc 2.35+ x86-64
SHA-256 checksum
How to use checksums
1571d3dac05a8d771e010f16ae6662eb8cc7f7a85582dca89431a2ba6f7b12eb
BLAKE2b-256 checksum
How to use checksums
6a38debed4ee180e9b12076bf49f94eeb74b52bb6a839358fbb1f7335d3038a4
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.12

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Apr 14, 2026.

Transparency log

Release files / tabeline-0.7.1-cp312-cp312-manylinux_2_35_aarch64.whl

Download URL tabeline-0.7.1-cp312-cp312-manylinux_2_35_aarch64.whl
Size 22.1 MB
Tags CPython 3.12 Linux glibc 2.35+ ARM64
SHA-256 checksum
How to use checksums
9114fb1a91687b1f80c13bf66b98f2155303b2609c5147f3c7bec09056e774fd
BLAKE2b-256 checksum
How to use checksums
0e4e033940c845c8be1bf16229ca2682220a306acca0b56346727f252b45a253
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.12

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Apr 14, 2026.

Transparency log

Release files / tabeline-0.7.1-cp312-cp312-macosx_11_0_arm64.whl

Download URL tabeline-0.7.1-cp312-cp312-macosx_11_0_arm64.whl
Size 20.2 MB
Tags CPython 3.12 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
d158f4e9143f46c28c8efbd3d613cb18114abe76b86ffca8a33b968df51be949
BLAKE2b-256 checksum
How to use checksums
f521a7bb0f6e5e316c547b2db8c4799fd3b1d22ccb05b41266daf83d066ddf2c
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.12

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Apr 14, 2026.

Transparency log

Release files / tabeline-0.7.1-cp312-cp312-macosx_10_12_x86_64.whl

Download URL tabeline-0.7.1-cp312-cp312-macosx_10_12_x86_64.whl
Size 21.2 MB
Tags CPython 3.12 macOS 10.12+ x86-64
SHA-256 checksum
How to use checksums
6cd4d899828b00785138e32ace9469a64965bbdaa58c5a80205d0b7ebc46c7c5
BLAKE2b-256 checksum
How to use checksums
da4ab2ed7b05643326b758339d762ffccf0af272c3965d3b50f37c7841a2c3f7
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.12

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Apr 14, 2026.

Transparency log

Release files / tabeline-0.7.1-cp311-cp311-win_amd64.whl

Download URL tabeline-0.7.1-cp311-cp311-win_amd64.whl
Size 20.3 MB
Tags CPython 3.11 Windows x86-64
SHA-256 checksum
How to use checksums
0d72bb45738219f229024969ecd79d23eb4bf8116e69c76931ff5a0968a720e4
BLAKE2b-256 checksum
How to use checksums
d20cf5f3e75d4219c0bb4a2538b25b0fb6e1c16b8732219bfe6d98b8cbfb01ba
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.12

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Apr 14, 2026.

Transparency log

Release files / tabeline-0.7.1-cp311-cp311-manylinux_2_35_x86_64.whl

Download URL tabeline-0.7.1-cp311-cp311-manylinux_2_35_x86_64.whl
Size 21.8 MB
Tags CPython 3.11 Linux glibc 2.35+ x86-64
SHA-256 checksum
How to use checksums
d6ea71b3ba909fd827df88f69fe1b495e124e75703b97cbdb2a05b692857d964
BLAKE2b-256 checksum
How to use checksums
2726515b5e36d7316dc46c92a574da25211a0c223e14287215bc2cbeb340ad1c
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.12

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Apr 14, 2026.

Transparency log

Release files / tabeline-0.7.1-cp311-cp311-manylinux_2_35_aarch64.whl

Download URL tabeline-0.7.1-cp311-cp311-manylinux_2_35_aarch64.whl
Size 22.2 MB
Tags CPython 3.11 Linux glibc 2.35+ ARM64
SHA-256 checksum
How to use checksums
633fe40d322eb2dbf358942a0189e07c19030c5961ab99ae92dac1e1ec0445c0
BLAKE2b-256 checksum
How to use checksums
722875c23404f517444473f415c5327aae64e774c7b37191e8592835ebefe8e5
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.12

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Apr 14, 2026.

Transparency log

Release files / tabeline-0.7.1-cp311-cp311-macosx_11_0_arm64.whl

Download URL tabeline-0.7.1-cp311-cp311-macosx_11_0_arm64.whl
Size 20.2 MB
Tags CPython 3.11 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
d1d01c2f5c691c974201b16f79233f016c7c2c5e2b55cc3b3cbc19f4397278c4
BLAKE2b-256 checksum
How to use checksums
62e00d51fbdac81a02e3a80faf99e83c4f75ed677f9c31147600442617c2b126
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.12

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Apr 14, 2026.

Transparency log

Release files / tabeline-0.7.1-cp311-cp311-macosx_10_12_x86_64.whl

Download URL tabeline-0.7.1-cp311-cp311-macosx_10_12_x86_64.whl
Size 21.2 MB
Tags CPython 3.11 macOS 10.12+ x86-64
SHA-256 checksum
How to use checksums
0f056f28ec9c42827b6c9a2b410f2c021a5d558f272dc231006982a39755ca16
BLAKE2b-256 checksum
How to use checksums
15860e295742a81225c8872ac5631cd82876b5786cc0775adc2f550bf35dfc40
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.12

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Apr 14, 2026.

Transparency log

Release files / tabeline-0.7.1-cp310-cp310-win_amd64.whl

Download URL tabeline-0.7.1-cp310-cp310-win_amd64.whl
Size 20.3 MB
Tags CPython 3.10 Windows x86-64
SHA-256 checksum
How to use checksums
7863c0780cb7b02be413d143f618d8566f419b7cc545330a82c2a0f510cd5e1d
BLAKE2b-256 checksum
How to use checksums
86dc29152489fe69adee6dcb10a6727c0ab7e0b4c473a3de27f82a1ab4292934
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.12

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Apr 14, 2026.

Transparency log

Release files / tabeline-0.7.1-cp310-cp310-manylinux_2_35_x86_64.whl

Download URL tabeline-0.7.1-cp310-cp310-manylinux_2_35_x86_64.whl
Size 21.8 MB
Tags CPython 3.10 Linux glibc 2.35+ x86-64
SHA-256 checksum
How to use checksums
ae846b6c610f9ddf8375b83ebce73b85021cf772230f50431b5dbd6dcbdac329
BLAKE2b-256 checksum
How to use checksums
e305adc0cd38185b5bc3890bf50358dc5e3a0d335d51b74ead289e11932e722d
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.12

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Apr 14, 2026.

Transparency log

Release files / tabeline-0.7.1-cp310-cp310-manylinux_2_35_aarch64.whl

Download URL tabeline-0.7.1-cp310-cp310-manylinux_2_35_aarch64.whl
Size 22.1 MB
Tags CPython 3.10 Linux glibc 2.35+ ARM64
SHA-256 checksum
How to use checksums
b9eca3c9275bac4a8bfec256fc1ef18ec234999d607beba78fdefac31329cff4
BLAKE2b-256 checksum
How to use checksums
bcce014062171bccc3d665891d83575034206dcba58eca05d23cfa927a3cb6c5
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.12

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Apr 14, 2026.

Transparency log

Release files / tabeline-0.7.1-cp310-cp310-macosx_11_0_arm64.whl

Download URL tabeline-0.7.1-cp310-cp310-macosx_11_0_arm64.whl
Size 20.2 MB
Tags CPython 3.10 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
4124d482512d5e38a54d4defe08177c1387a73c6a633e4bd23ec2cce7e266fe3
BLAKE2b-256 checksum
How to use checksums
bd72fa4a9a4149e1de318327ee2509316cae5c5ef40302e3351664a8f995bd24
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.12

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Apr 14, 2026.

Transparency log

Release files / tabeline-0.7.1-cp310-cp310-macosx_10_12_x86_64.whl

Download URL tabeline-0.7.1-cp310-cp310-macosx_10_12_x86_64.whl
Size 21.2 MB
Tags CPython 3.10 macOS 10.12+ x86-64
SHA-256 checksum
How to use checksums
38771ca6488a449fd9de550f69842f983d7adcb2645d4c788b0f4add5fd8770b
BLAKE2b-256 checksum
How to use checksums
589a3fb8190e4b73209e81dc8e45bc180b9d3398143d35a83736b5af4c926738
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.12

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Apr 14, 2026.

Transparency log

Release history Release notifications | RSS feed

This release

0.7.1 This release

26 release files

0.6.3

26 release files

0.6.2

21 release files

0.6.1

21 release files

0.6.0

21 release files

0.5.0

2 release files

0.4.0

2 release files

0.3.2

2 release files

0.3.1

2 release files

0.3.0

2 release files

0.2.0

2 release files

0.1.1

2 release files

0.1.0

2 release files

Anthropic, PBC Visionary sponsor Bloomberg Visionary sponsor Hudson River Trading Visionary sponsor Meta Visionary sponsor NVIDIA Visionary sponsor Microsoft Sustainability sponsor Depot Continuous Integration AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page