Skip to main content

A data frame and data grammar library

Project description

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 │
# └─────┴──────┘

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

tabeline-0.7.1.tar.gz (197.2 kB view details)

Uploaded Source

Built Distributions

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

tabeline-0.7.1-cp314-cp314-win_amd64.whl (20.3 MB view details)

Uploaded CPython 3.14Windows x86-64

tabeline-0.7.1-cp314-cp314-manylinux_2_35_x86_64.whl (21.7 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.35+ x86-64

tabeline-0.7.1-cp314-cp314-manylinux_2_35_aarch64.whl (22.1 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.35+ ARM64

tabeline-0.7.1-cp314-cp314-macosx_11_0_arm64.whl (20.2 MB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

tabeline-0.7.1-cp314-cp314-macosx_10_12_x86_64.whl (21.2 MB view details)

Uploaded CPython 3.14macOS 10.12+ x86-64

tabeline-0.7.1-cp313-cp313-win_amd64.whl (20.3 MB view details)

Uploaded CPython 3.13Windows x86-64

tabeline-0.7.1-cp313-cp313-manylinux_2_35_x86_64.whl (21.8 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.35+ x86-64

tabeline-0.7.1-cp313-cp313-manylinux_2_35_aarch64.whl (22.1 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.35+ ARM64

tabeline-0.7.1-cp313-cp313-macosx_11_0_arm64.whl (20.2 MB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

tabeline-0.7.1-cp313-cp313-macosx_10_12_x86_64.whl (21.2 MB view details)

Uploaded CPython 3.13macOS 10.12+ x86-64

tabeline-0.7.1-cp312-cp312-win_amd64.whl (20.3 MB view details)

Uploaded CPython 3.12Windows x86-64

tabeline-0.7.1-cp312-cp312-manylinux_2_35_x86_64.whl (21.8 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.35+ x86-64

tabeline-0.7.1-cp312-cp312-manylinux_2_35_aarch64.whl (22.1 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.35+ ARM64

tabeline-0.7.1-cp312-cp312-macosx_11_0_arm64.whl (20.2 MB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

tabeline-0.7.1-cp312-cp312-macosx_10_12_x86_64.whl (21.2 MB view details)

Uploaded CPython 3.12macOS 10.12+ x86-64

tabeline-0.7.1-cp311-cp311-win_amd64.whl (20.3 MB view details)

Uploaded CPython 3.11Windows x86-64

tabeline-0.7.1-cp311-cp311-manylinux_2_35_x86_64.whl (21.8 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.35+ x86-64

tabeline-0.7.1-cp311-cp311-manylinux_2_35_aarch64.whl (22.2 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.35+ ARM64

tabeline-0.7.1-cp311-cp311-macosx_11_0_arm64.whl (20.2 MB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

tabeline-0.7.1-cp311-cp311-macosx_10_12_x86_64.whl (21.2 MB view details)

Uploaded CPython 3.11macOS 10.12+ x86-64

tabeline-0.7.1-cp310-cp310-win_amd64.whl (20.3 MB view details)

Uploaded CPython 3.10Windows x86-64

tabeline-0.7.1-cp310-cp310-manylinux_2_35_x86_64.whl (21.8 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.35+ x86-64

tabeline-0.7.1-cp310-cp310-manylinux_2_35_aarch64.whl (22.1 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.35+ ARM64

tabeline-0.7.1-cp310-cp310-macosx_11_0_arm64.whl (20.2 MB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

tabeline-0.7.1-cp310-cp310-macosx_10_12_x86_64.whl (21.2 MB view details)

Uploaded CPython 3.10macOS 10.12+ x86-64

File details

Details for the file tabeline-0.7.1.tar.gz.

File metadata

  • Download URL: tabeline-0.7.1.tar.gz
  • Upload date:
  • Size: 197.2 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for tabeline-0.7.1.tar.gz
Algorithm Hash digest
SHA256 c526aee951cb7420ce3799c2008f3113f1faae8ccc9cef75209d23d0fdcd5292
MD5 e8339136b1dcb2dd7d5e3acade8de00e
BLAKE2b-256 a3f939bad5ba0f167e18ac46761acefff77a00fbcee57199bd6abbfd405406de

See more details on using hashes here.

Provenance

The following attestation bundles were made for tabeline-0.7.1.tar.gz:

Publisher: release.yml on drhagen/tabeline

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file tabeline-0.7.1-cp314-cp314-win_amd64.whl.

File metadata

  • Download URL: tabeline-0.7.1-cp314-cp314-win_amd64.whl
  • Upload date:
  • Size: 20.3 MB
  • Tags: CPython 3.14, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for tabeline-0.7.1-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 c676c2b555dd7c926635a89917569e81ccfc9a608ce4645292560bc9cd678577
MD5 d643ec7a1515247a3882b42df600162d
BLAKE2b-256 839835edc6bb9d12cec9faf26493f76c956606fce2f487ac82a20b80172dffd0

See more details on using hashes here.

Provenance

The following attestation bundles were made for tabeline-0.7.1-cp314-cp314-win_amd64.whl:

Publisher: release.yml on drhagen/tabeline

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file tabeline-0.7.1-cp314-cp314-manylinux_2_35_x86_64.whl.

File metadata

File hashes

Hashes for tabeline-0.7.1-cp314-cp314-manylinux_2_35_x86_64.whl
Algorithm Hash digest
SHA256 7c397de12309803de7a9b282ca25ea88e84cc707f5928d28e0dfc71f2041eb95
MD5 43da83b7507ba45cc699604b96a3c121
BLAKE2b-256 1621fa21177dff9400ba99e80bf46579f03639291dc5507e1f95041121e8235d

See more details on using hashes here.

Provenance

The following attestation bundles were made for tabeline-0.7.1-cp314-cp314-manylinux_2_35_x86_64.whl:

Publisher: release.yml on drhagen/tabeline

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file tabeline-0.7.1-cp314-cp314-manylinux_2_35_aarch64.whl.

File metadata

File hashes

Hashes for tabeline-0.7.1-cp314-cp314-manylinux_2_35_aarch64.whl
Algorithm Hash digest
SHA256 7e27491434ffc353dab6b1e7ca9e65e4713bae64d4b7bc2ec8cb26b2d49a7e7a
MD5 f19323d86369276996be73c48907b002
BLAKE2b-256 10b4f32fbdedd0c72d7347b77e22a2ec9d2c0334b8b07371abf5424bfedaf4cf

See more details on using hashes here.

Provenance

The following attestation bundles were made for tabeline-0.7.1-cp314-cp314-manylinux_2_35_aarch64.whl:

Publisher: release.yml on drhagen/tabeline

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file tabeline-0.7.1-cp314-cp314-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for tabeline-0.7.1-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 e180779a70966c4dbbcada5e1e53e12df1f031133ac093bed350ac7edb684cfc
MD5 88a72e0c6fb5ae2b5088a8d390874399
BLAKE2b-256 3c7669e50015905e34688bd8e29015524fd621497455473898a037e5153055e0

See more details on using hashes here.

Provenance

The following attestation bundles were made for tabeline-0.7.1-cp314-cp314-macosx_11_0_arm64.whl:

Publisher: release.yml on drhagen/tabeline

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file tabeline-0.7.1-cp314-cp314-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for tabeline-0.7.1-cp314-cp314-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 ee07b294f08e6808d2aacbb3b49f0ff86c5cd25b24e86c87cdb020327d9222bb
MD5 3728fc732c5d80a69986bf40341c5c4f
BLAKE2b-256 3132f144f74ee120eeacd4abcc21244d30a1dc824f829acfc119d70cb0ec7eac

See more details on using hashes here.

Provenance

The following attestation bundles were made for tabeline-0.7.1-cp314-cp314-macosx_10_12_x86_64.whl:

Publisher: release.yml on drhagen/tabeline

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file tabeline-0.7.1-cp313-cp313-win_amd64.whl.

File metadata

  • Download URL: tabeline-0.7.1-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 20.3 MB
  • Tags: CPython 3.13, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for tabeline-0.7.1-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 46c4671647411cfd6811a2c610c14f7b3aa7063f4751811323112003a4b9c46e
MD5 473e46c814a95189ef90610d28f7e116
BLAKE2b-256 f48fe33a7f08a7cd9bc009b01e40b9ae0e922d19bb136800ac52d788a049db56

See more details on using hashes here.

Provenance

The following attestation bundles were made for tabeline-0.7.1-cp313-cp313-win_amd64.whl:

Publisher: release.yml on drhagen/tabeline

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file tabeline-0.7.1-cp313-cp313-manylinux_2_35_x86_64.whl.

File metadata

File hashes

Hashes for tabeline-0.7.1-cp313-cp313-manylinux_2_35_x86_64.whl
Algorithm Hash digest
SHA256 54881e8d6b908226f04361ecf0bd9f0c4384f59b46348c393bb2badc855ebb7a
MD5 189f9c67a0513d314038df33d48a9a63
BLAKE2b-256 01fd192bf347454a93a74fe90ccc55052679d61c647ab03c2dd3a69696ec086f

See more details on using hashes here.

Provenance

The following attestation bundles were made for tabeline-0.7.1-cp313-cp313-manylinux_2_35_x86_64.whl:

Publisher: release.yml on drhagen/tabeline

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file tabeline-0.7.1-cp313-cp313-manylinux_2_35_aarch64.whl.

File metadata

File hashes

Hashes for tabeline-0.7.1-cp313-cp313-manylinux_2_35_aarch64.whl
Algorithm Hash digest
SHA256 d5345f0543f992717edcd6bff3e27bc2ab9ffc757e547623fde82ca9f7e897fe
MD5 7323022b93cad15f5af7842bbeb90cf7
BLAKE2b-256 5f6c879e474bfdba8444c98845f667fb84931f4a43b131dcb0449818be7e773a

See more details on using hashes here.

Provenance

The following attestation bundles were made for tabeline-0.7.1-cp313-cp313-manylinux_2_35_aarch64.whl:

Publisher: release.yml on drhagen/tabeline

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file tabeline-0.7.1-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for tabeline-0.7.1-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 ca3e50174103f2d1358da5338ea569d75ff1fba440bd717f91f162b78b813861
MD5 90129d0b03a5ea9123dad9bb9ddeba0a
BLAKE2b-256 942c96ccd662cce715316ac73e7d5f08a966d5162a0c272ae0feb54e6ad3f37a

See more details on using hashes here.

Provenance

The following attestation bundles were made for tabeline-0.7.1-cp313-cp313-macosx_11_0_arm64.whl:

Publisher: release.yml on drhagen/tabeline

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file tabeline-0.7.1-cp313-cp313-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for tabeline-0.7.1-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 ce88d465dc145d3e20b3a26a0933cfad0c047fb707a1b23dbd1b5988bf0315a6
MD5 10ac6b89b6b79226a9312efd633fd102
BLAKE2b-256 28ae3c8363d7b21d5793a13e22066255f2789ebb645f685eab87cb588f2b6be0

See more details on using hashes here.

Provenance

The following attestation bundles were made for tabeline-0.7.1-cp313-cp313-macosx_10_12_x86_64.whl:

Publisher: release.yml on drhagen/tabeline

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file tabeline-0.7.1-cp312-cp312-win_amd64.whl.

File metadata

  • Download URL: tabeline-0.7.1-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 20.3 MB
  • Tags: CPython 3.12, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for tabeline-0.7.1-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 69e082360c38e8817e01a2ed0bf99620839e5b0b180f07ab482f73ab893bd3ce
MD5 d9bd453469cfc85ff28b99c4637fbdd8
BLAKE2b-256 9e3d0c5f9464e561bec41796a0ac77251acfaaa777326957a611bd702a3472de

See more details on using hashes here.

Provenance

The following attestation bundles were made for tabeline-0.7.1-cp312-cp312-win_amd64.whl:

Publisher: release.yml on drhagen/tabeline

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file tabeline-0.7.1-cp312-cp312-manylinux_2_35_x86_64.whl.

File metadata

File hashes

Hashes for tabeline-0.7.1-cp312-cp312-manylinux_2_35_x86_64.whl
Algorithm Hash digest
SHA256 1571d3dac05a8d771e010f16ae6662eb8cc7f7a85582dca89431a2ba6f7b12eb
MD5 1da95828f71be0670d100ff979e6c501
BLAKE2b-256 6a38debed4ee180e9b12076bf49f94eeb74b52bb6a839358fbb1f7335d3038a4

See more details on using hashes here.

Provenance

The following attestation bundles were made for tabeline-0.7.1-cp312-cp312-manylinux_2_35_x86_64.whl:

Publisher: release.yml on drhagen/tabeline

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file tabeline-0.7.1-cp312-cp312-manylinux_2_35_aarch64.whl.

File metadata

File hashes

Hashes for tabeline-0.7.1-cp312-cp312-manylinux_2_35_aarch64.whl
Algorithm Hash digest
SHA256 9114fb1a91687b1f80c13bf66b98f2155303b2609c5147f3c7bec09056e774fd
MD5 53906d20d16a8ae00ca085839e42fac3
BLAKE2b-256 0e4e033940c845c8be1bf16229ca2682220a306acca0b56346727f252b45a253

See more details on using hashes here.

Provenance

The following attestation bundles were made for tabeline-0.7.1-cp312-cp312-manylinux_2_35_aarch64.whl:

Publisher: release.yml on drhagen/tabeline

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file tabeline-0.7.1-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for tabeline-0.7.1-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 d158f4e9143f46c28c8efbd3d613cb18114abe76b86ffca8a33b968df51be949
MD5 8fc4119c6346fc13499d8f14153038db
BLAKE2b-256 f521a7bb0f6e5e316c547b2db8c4799fd3b1d22ccb05b41266daf83d066ddf2c

See more details on using hashes here.

Provenance

The following attestation bundles were made for tabeline-0.7.1-cp312-cp312-macosx_11_0_arm64.whl:

Publisher: release.yml on drhagen/tabeline

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file tabeline-0.7.1-cp312-cp312-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for tabeline-0.7.1-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 6cd4d899828b00785138e32ace9469a64965bbdaa58c5a80205d0b7ebc46c7c5
MD5 01d8ed70c36b13076eaf85ca3b1d21a7
BLAKE2b-256 da4ab2ed7b05643326b758339d762ffccf0af272c3965d3b50f37c7841a2c3f7

See more details on using hashes here.

Provenance

The following attestation bundles were made for tabeline-0.7.1-cp312-cp312-macosx_10_12_x86_64.whl:

Publisher: release.yml on drhagen/tabeline

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file tabeline-0.7.1-cp311-cp311-win_amd64.whl.

File metadata

  • Download URL: tabeline-0.7.1-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 20.3 MB
  • Tags: CPython 3.11, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for tabeline-0.7.1-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 0d72bb45738219f229024969ecd79d23eb4bf8116e69c76931ff5a0968a720e4
MD5 904051a5f657a4a99cc9faa382160a0d
BLAKE2b-256 d20cf5f3e75d4219c0bb4a2538b25b0fb6e1c16b8732219bfe6d98b8cbfb01ba

See more details on using hashes here.

Provenance

The following attestation bundles were made for tabeline-0.7.1-cp311-cp311-win_amd64.whl:

Publisher: release.yml on drhagen/tabeline

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file tabeline-0.7.1-cp311-cp311-manylinux_2_35_x86_64.whl.

File metadata

File hashes

Hashes for tabeline-0.7.1-cp311-cp311-manylinux_2_35_x86_64.whl
Algorithm Hash digest
SHA256 d6ea71b3ba909fd827df88f69fe1b495e124e75703b97cbdb2a05b692857d964
MD5 ad4fe6dee284b408124596de4b0d86cd
BLAKE2b-256 2726515b5e36d7316dc46c92a574da25211a0c223e14287215bc2cbeb340ad1c

See more details on using hashes here.

Provenance

The following attestation bundles were made for tabeline-0.7.1-cp311-cp311-manylinux_2_35_x86_64.whl:

Publisher: release.yml on drhagen/tabeline

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file tabeline-0.7.1-cp311-cp311-manylinux_2_35_aarch64.whl.

File metadata

File hashes

Hashes for tabeline-0.7.1-cp311-cp311-manylinux_2_35_aarch64.whl
Algorithm Hash digest
SHA256 633fe40d322eb2dbf358942a0189e07c19030c5961ab99ae92dac1e1ec0445c0
MD5 65841215430f7f00602ad800c6236eb3
BLAKE2b-256 722875c23404f517444473f415c5327aae64e774c7b37191e8592835ebefe8e5

See more details on using hashes here.

Provenance

The following attestation bundles were made for tabeline-0.7.1-cp311-cp311-manylinux_2_35_aarch64.whl:

Publisher: release.yml on drhagen/tabeline

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file tabeline-0.7.1-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for tabeline-0.7.1-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 d1d01c2f5c691c974201b16f79233f016c7c2c5e2b55cc3b3cbc19f4397278c4
MD5 abbc1facc32da70fe3e0d03fd693e38a
BLAKE2b-256 62e00d51fbdac81a02e3a80faf99e83c4f75ed677f9c31147600442617c2b126

See more details on using hashes here.

Provenance

The following attestation bundles were made for tabeline-0.7.1-cp311-cp311-macosx_11_0_arm64.whl:

Publisher: release.yml on drhagen/tabeline

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file tabeline-0.7.1-cp311-cp311-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for tabeline-0.7.1-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 0f056f28ec9c42827b6c9a2b410f2c021a5d558f272dc231006982a39755ca16
MD5 6d725609d2b468ccbaffc6c76ee96d0b
BLAKE2b-256 15860e295742a81225c8872ac5631cd82876b5786cc0775adc2f550bf35dfc40

See more details on using hashes here.

Provenance

The following attestation bundles were made for tabeline-0.7.1-cp311-cp311-macosx_10_12_x86_64.whl:

Publisher: release.yml on drhagen/tabeline

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file tabeline-0.7.1-cp310-cp310-win_amd64.whl.

File metadata

  • Download URL: tabeline-0.7.1-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 20.3 MB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for tabeline-0.7.1-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 7863c0780cb7b02be413d143f618d8566f419b7cc545330a82c2a0f510cd5e1d
MD5 48abaa716103189840b0807ec740395c
BLAKE2b-256 86dc29152489fe69adee6dcb10a6727c0ab7e0b4c473a3de27f82a1ab4292934

See more details on using hashes here.

Provenance

The following attestation bundles were made for tabeline-0.7.1-cp310-cp310-win_amd64.whl:

Publisher: release.yml on drhagen/tabeline

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file tabeline-0.7.1-cp310-cp310-manylinux_2_35_x86_64.whl.

File metadata

File hashes

Hashes for tabeline-0.7.1-cp310-cp310-manylinux_2_35_x86_64.whl
Algorithm Hash digest
SHA256 ae846b6c610f9ddf8375b83ebce73b85021cf772230f50431b5dbd6dcbdac329
MD5 9cd8433974d033f8ebd400d6187582e8
BLAKE2b-256 e305adc0cd38185b5bc3890bf50358dc5e3a0d335d51b74ead289e11932e722d

See more details on using hashes here.

Provenance

The following attestation bundles were made for tabeline-0.7.1-cp310-cp310-manylinux_2_35_x86_64.whl:

Publisher: release.yml on drhagen/tabeline

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file tabeline-0.7.1-cp310-cp310-manylinux_2_35_aarch64.whl.

File metadata

File hashes

Hashes for tabeline-0.7.1-cp310-cp310-manylinux_2_35_aarch64.whl
Algorithm Hash digest
SHA256 b9eca3c9275bac4a8bfec256fc1ef18ec234999d607beba78fdefac31329cff4
MD5 a1c2abc637fdb4707a2b41c76895b6b2
BLAKE2b-256 bcce014062171bccc3d665891d83575034206dcba58eca05d23cfa927a3cb6c5

See more details on using hashes here.

Provenance

The following attestation bundles were made for tabeline-0.7.1-cp310-cp310-manylinux_2_35_aarch64.whl:

Publisher: release.yml on drhagen/tabeline

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file tabeline-0.7.1-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for tabeline-0.7.1-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 4124d482512d5e38a54d4defe08177c1387a73c6a633e4bd23ec2cce7e266fe3
MD5 8dcb14f145205f8faa10c81b40a0903c
BLAKE2b-256 bd72fa4a9a4149e1de318327ee2509316cae5c5ef40302e3351664a8f995bd24

See more details on using hashes here.

Provenance

The following attestation bundles were made for tabeline-0.7.1-cp310-cp310-macosx_11_0_arm64.whl:

Publisher: release.yml on drhagen/tabeline

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file tabeline-0.7.1-cp310-cp310-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for tabeline-0.7.1-cp310-cp310-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 38771ca6488a449fd9de550f69842f983d7adcb2645d4c788b0f4add5fd8770b
MD5 1e719368d2e6227ff5bb976516359a13
BLAKE2b-256 589a3fb8190e4b73209e81dc8e45bc180b9d3398143d35a83736b5af4c926738

See more details on using hashes here.

Provenance

The following attestation bundles were made for tabeline-0.7.1-cp310-cp310-macosx_10_12_x86_64.whl:

Publisher: release.yml on drhagen/tabeline

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

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