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.0.tar.gz (196.6 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.0-cp314-cp314-win_amd64.whl (20.7 MB view details)

Uploaded CPython 3.14Windows x86-64

tabeline-0.7.0-cp314-cp314-manylinux_2_35_x86_64.whl (22.0 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.35+ x86-64

tabeline-0.7.0-cp314-cp314-manylinux_2_35_aarch64.whl (22.4 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.35+ ARM64

tabeline-0.7.0-cp314-cp314-macosx_11_0_arm64.whl (20.5 MB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

tabeline-0.7.0-cp314-cp314-macosx_10_12_x86_64.whl (21.4 MB view details)

Uploaded CPython 3.14macOS 10.12+ x86-64

tabeline-0.7.0-cp313-cp313-win_amd64.whl (20.7 MB view details)

Uploaded CPython 3.13Windows x86-64

tabeline-0.7.0-cp313-cp313-manylinux_2_35_x86_64.whl (22.0 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.35+ x86-64

tabeline-0.7.0-cp313-cp313-manylinux_2_35_aarch64.whl (22.4 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.35+ ARM64

tabeline-0.7.0-cp313-cp313-macosx_11_0_arm64.whl (20.5 MB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

tabeline-0.7.0-cp313-cp313-macosx_10_12_x86_64.whl (21.4 MB view details)

Uploaded CPython 3.13macOS 10.12+ x86-64

tabeline-0.7.0-cp312-cp312-win_amd64.whl (20.7 MB view details)

Uploaded CPython 3.12Windows x86-64

tabeline-0.7.0-cp312-cp312-manylinux_2_35_x86_64.whl (22.0 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.35+ x86-64

tabeline-0.7.0-cp312-cp312-manylinux_2_35_aarch64.whl (22.4 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.35+ ARM64

tabeline-0.7.0-cp312-cp312-macosx_11_0_arm64.whl (20.5 MB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

tabeline-0.7.0-cp312-cp312-macosx_10_12_x86_64.whl (21.4 MB view details)

Uploaded CPython 3.12macOS 10.12+ x86-64

tabeline-0.7.0-cp311-cp311-win_amd64.whl (20.7 MB view details)

Uploaded CPython 3.11Windows x86-64

tabeline-0.7.0-cp311-cp311-manylinux_2_35_x86_64.whl (22.0 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.35+ x86-64

tabeline-0.7.0-cp311-cp311-manylinux_2_35_aarch64.whl (22.4 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.35+ ARM64

tabeline-0.7.0-cp311-cp311-macosx_11_0_arm64.whl (20.5 MB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

tabeline-0.7.0-cp311-cp311-macosx_10_12_x86_64.whl (21.5 MB view details)

Uploaded CPython 3.11macOS 10.12+ x86-64

tabeline-0.7.0-cp310-cp310-win_amd64.whl (20.7 MB view details)

Uploaded CPython 3.10Windows x86-64

tabeline-0.7.0-cp310-cp310-manylinux_2_35_x86_64.whl (22.0 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.35+ x86-64

tabeline-0.7.0-cp310-cp310-manylinux_2_35_aarch64.whl (22.4 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.35+ ARM64

tabeline-0.7.0-cp310-cp310-macosx_11_0_arm64.whl (20.5 MB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

tabeline-0.7.0-cp310-cp310-macosx_10_12_x86_64.whl (21.5 MB view details)

Uploaded CPython 3.10macOS 10.12+ x86-64

File details

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

File metadata

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

File hashes

Hashes for tabeline-0.7.0.tar.gz
Algorithm Hash digest
SHA256 eab0ab00e234eed52ecb4f76ae17e7911fdcdb4ff2c3a1bcc908659a8d47bf9a
MD5 91b6b60504cb4b1da123dbc19cf09198
BLAKE2b-256 4519dc363a3135387874ca49c777c1a543fab1d076b15a7e67899d4473b98dcf

See more details on using hashes here.

Provenance

The following attestation bundles were made for tabeline-0.7.0.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.0-cp314-cp314-win_amd64.whl.

File metadata

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

File hashes

Hashes for tabeline-0.7.0-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 42ad93e2cac9eb46822ad2d8a6b53473df93c52dda1371c7a2c135bacb77e2da
MD5 901e2ea2dde771760baeb6cccac7b027
BLAKE2b-256 5329995d3a12a691579c39c4b3808d9a3ab6d80de1b7aba2af59ceb1dbddfe12

See more details on using hashes here.

Provenance

The following attestation bundles were made for tabeline-0.7.0-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.0-cp314-cp314-manylinux_2_35_x86_64.whl.

File metadata

File hashes

Hashes for tabeline-0.7.0-cp314-cp314-manylinux_2_35_x86_64.whl
Algorithm Hash digest
SHA256 ad7bf1781583bd7895594de611defcebc9a3463dcdfabb316a6c0edde0928e8c
MD5 bf7c90b49d41df934f24b65832d2a5cb
BLAKE2b-256 9dc41b4bc641a473d8d9782c7e81b2709d7d4e9a68b6d73e38373e5f98ec04c9

See more details on using hashes here.

Provenance

The following attestation bundles were made for tabeline-0.7.0-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.0-cp314-cp314-manylinux_2_35_aarch64.whl.

File metadata

File hashes

Hashes for tabeline-0.7.0-cp314-cp314-manylinux_2_35_aarch64.whl
Algorithm Hash digest
SHA256 7d5dcb520099581f0a704de9d0da9f069544012480ff535b00d3614b4faa7ebc
MD5 0be454271f1afce2be734f0bdd378b87
BLAKE2b-256 ad780dd5c3fea4012f465c6f6662a8372595c7c7145e55a92ef9714daa1882dc

See more details on using hashes here.

Provenance

The following attestation bundles were made for tabeline-0.7.0-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.0-cp314-cp314-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for tabeline-0.7.0-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 f60dde92be56185c89ae6bf1c600b16218fa5ad5973d5bd3345532e28694a75c
MD5 4db6a06619d1ea03f3384f230bcbb779
BLAKE2b-256 294aa2b7120a4306d9caacc5bd683290e09aa1f296f5517807d8c26eec20c21a

See more details on using hashes here.

Provenance

The following attestation bundles were made for tabeline-0.7.0-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.0-cp314-cp314-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for tabeline-0.7.0-cp314-cp314-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 33eec324c6fcc706a0848771afe0d66b4867f56f273d7fbb4125570f1c57f09d
MD5 95412d4ceb35942931c7ccc01855837d
BLAKE2b-256 da5ef152d919ad3d2d4afd93e0c8f59055030c587dc86f686728ae7bde336fa0

See more details on using hashes here.

Provenance

The following attestation bundles were made for tabeline-0.7.0-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.0-cp313-cp313-win_amd64.whl.

File metadata

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

File hashes

Hashes for tabeline-0.7.0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 bc874a2c321f1f5f81dce9c8428bed6626f0debf8b0b327483fcc67be5633369
MD5 23bb3887e7cd2814fed64d7b3549a2c7
BLAKE2b-256 44b22265e7f622cfd89dda9e56ca24b4aad023ce8cc2a6b74cd83ecdc22b9972

See more details on using hashes here.

Provenance

The following attestation bundles were made for tabeline-0.7.0-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.0-cp313-cp313-manylinux_2_35_x86_64.whl.

File metadata

File hashes

Hashes for tabeline-0.7.0-cp313-cp313-manylinux_2_35_x86_64.whl
Algorithm Hash digest
SHA256 9816db2e513ba785f4427170a81a89816037970d6d22315aeedc237a91b8872a
MD5 9547f6dd3a51ee4e177371b6bde4dade
BLAKE2b-256 75697d6c155f5e2cc833c499218cb1072e762c358f37ac132bfd95c93a44dc9d

See more details on using hashes here.

Provenance

The following attestation bundles were made for tabeline-0.7.0-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.0-cp313-cp313-manylinux_2_35_aarch64.whl.

File metadata

File hashes

Hashes for tabeline-0.7.0-cp313-cp313-manylinux_2_35_aarch64.whl
Algorithm Hash digest
SHA256 1ec4298f57c217126632f18375db4365d4154c29ddd434c1d9965cd78e851938
MD5 0543c1ccc28b4a6796781af4d0eef20f
BLAKE2b-256 4479f6d6a6ae9227e619f9b22e4994c97030346031c038bcffae93188f08a541

See more details on using hashes here.

Provenance

The following attestation bundles were made for tabeline-0.7.0-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.0-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for tabeline-0.7.0-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 449b7d1c5e2b70aa6e316b257a78ce6ebb3c3ea97f1daab41ad6e6c8985c2d71
MD5 63a28eedc7949e8d44e6ac77874a4f70
BLAKE2b-256 077efa06d7654a6574ac4a61b154651ff1c637f0321a2c1dcd820648e74ce604

See more details on using hashes here.

Provenance

The following attestation bundles were made for tabeline-0.7.0-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.0-cp313-cp313-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for tabeline-0.7.0-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 41243c54264773b770bb1a1820c617169f55fb9c5cac7ebfada2d00282d9cb20
MD5 c7fa86699831968f50cad900788a4478
BLAKE2b-256 126d95878580c2454b434e84dd8a16a1b927d382151c8848b937bfb49ce39a30

See more details on using hashes here.

Provenance

The following attestation bundles were made for tabeline-0.7.0-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.0-cp312-cp312-win_amd64.whl.

File metadata

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

File hashes

Hashes for tabeline-0.7.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 a7208b519c3c5cdbe992fedd4cbc4e310a14e5c3c2db099d8d08377da038d8ee
MD5 a8b970005cc28e29ae7adb9f41cf8068
BLAKE2b-256 17fe4f3fe0485d372d0485d0d120718e254bd8f4cd7571229049a640d610e47b

See more details on using hashes here.

Provenance

The following attestation bundles were made for tabeline-0.7.0-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.0-cp312-cp312-manylinux_2_35_x86_64.whl.

File metadata

File hashes

Hashes for tabeline-0.7.0-cp312-cp312-manylinux_2_35_x86_64.whl
Algorithm Hash digest
SHA256 2cde0e8dc76be1c71558ccc27460b4444aed9ad19e94ab0a0b55ad365c70df77
MD5 d5f96cb2d9e82d03a343415cbc356372
BLAKE2b-256 9a3bcd2a1fed53ab4fbe06e69ef191e297579fd9bd10a24a425f9a46ec03bd00

See more details on using hashes here.

Provenance

The following attestation bundles were made for tabeline-0.7.0-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.0-cp312-cp312-manylinux_2_35_aarch64.whl.

File metadata

File hashes

Hashes for tabeline-0.7.0-cp312-cp312-manylinux_2_35_aarch64.whl
Algorithm Hash digest
SHA256 47910120b2b6b4885c3bbc316bee509e3d3decacef800f2eed5daa72ccbb9beb
MD5 c1cb3f16ea00e4fc889f0560a936a7d3
BLAKE2b-256 c5b2024bc8eaa59a85ea69901acdb7858b958464df0668a8c185b59f7cf77982

See more details on using hashes here.

Provenance

The following attestation bundles were made for tabeline-0.7.0-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.0-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for tabeline-0.7.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 6deca8202a2bb731df2b936fd678dde2146408f4a68661733d7def0fa73bc9b3
MD5 b5c6f00151620967b17bb44199125969
BLAKE2b-256 4a4e80baa1ba16f7b177294b6b6d228499634afa67edce9abab44328c13c61db

See more details on using hashes here.

Provenance

The following attestation bundles were made for tabeline-0.7.0-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.0-cp312-cp312-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for tabeline-0.7.0-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 088190136470bc4f2c0c3362011ce6250aeb9dfb2ab7686f7f288c645c1bfb93
MD5 70160cf372f3aa28c8399a26914658b7
BLAKE2b-256 d1334ed8e1a18a994b8680e29c7b8a3704f4270d104ded7f0dc08c391d6ccbcb

See more details on using hashes here.

Provenance

The following attestation bundles were made for tabeline-0.7.0-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.0-cp311-cp311-win_amd64.whl.

File metadata

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

File hashes

Hashes for tabeline-0.7.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 63bb354384767c7cfc5c19efcc29e39b1669296f58d577bb5203cae338181182
MD5 cb1b9475b1bc1c5d26537bb41184b6b6
BLAKE2b-256 5475e59c066a472055abce8d4f36f3bffa537821bbbe1cd365fda6b504f7efff

See more details on using hashes here.

Provenance

The following attestation bundles were made for tabeline-0.7.0-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.0-cp311-cp311-manylinux_2_35_x86_64.whl.

File metadata

File hashes

Hashes for tabeline-0.7.0-cp311-cp311-manylinux_2_35_x86_64.whl
Algorithm Hash digest
SHA256 cc9966be58ec83a80831b2e94a85b746177a22d119688adedc42d9e61bc20fcb
MD5 23f05f56186297ad184303f2e2bb4fc7
BLAKE2b-256 bea0700fffeba62feca6a7f566a5fe6f13ace4be01d23d1ce4bbcfd47d219b76

See more details on using hashes here.

Provenance

The following attestation bundles were made for tabeline-0.7.0-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.0-cp311-cp311-manylinux_2_35_aarch64.whl.

File metadata

File hashes

Hashes for tabeline-0.7.0-cp311-cp311-manylinux_2_35_aarch64.whl
Algorithm Hash digest
SHA256 2a3278866098fa94f3fd332dd6a75a1f224a0c77b96a2f4f2686e1c3b7b083ad
MD5 af76c3b05bf2c7b11b2a19f72df23075
BLAKE2b-256 451484aee57d70461295043f66a64ef6dcb3240c5746b9126634c5fadfd382d0

See more details on using hashes here.

Provenance

The following attestation bundles were made for tabeline-0.7.0-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.0-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for tabeline-0.7.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 2d52285668ee33b4b5b8ed3b4b6453ad34bf37917eea750b5e8820bf016e390d
MD5 57b0e34ab38bf0f4fab4a190d255f8a0
BLAKE2b-256 c3cfd3453bc523fc1806d7f273ad03e35f5f82e7b8e379aaece46a1ec643a011

See more details on using hashes here.

Provenance

The following attestation bundles were made for tabeline-0.7.0-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.0-cp311-cp311-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for tabeline-0.7.0-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 a6c75f3c089501ea3aedb66265a3acd999fa42228bea920644a2a8f84491cb53
MD5 9a301fc35c853f54465f02bf09ae41cc
BLAKE2b-256 1f82567f5fbf0c15360f6295f1f0fff1504708324a9139117970408c3380b902

See more details on using hashes here.

Provenance

The following attestation bundles were made for tabeline-0.7.0-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.0-cp310-cp310-win_amd64.whl.

File metadata

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

File hashes

Hashes for tabeline-0.7.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 3fa0d6c80738c25ec1aeb3596440086aff823e2325162e062c874138052f4245
MD5 6d8c9c8aa5df38c29c7516e93bdf12a2
BLAKE2b-256 830c8aa35cf0c7e45b0eaf8ecaa3727ba0192d932642857aec3e4483749bf106

See more details on using hashes here.

Provenance

The following attestation bundles were made for tabeline-0.7.0-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.0-cp310-cp310-manylinux_2_35_x86_64.whl.

File metadata

File hashes

Hashes for tabeline-0.7.0-cp310-cp310-manylinux_2_35_x86_64.whl
Algorithm Hash digest
SHA256 792e905808ed32e4c0ef1a9b8d92b7091becfd93748a77bf0e71c58c55fa5e37
MD5 2219a4c5bfe16cf6fe7e0b5f564737ef
BLAKE2b-256 9a8a8d15466b04c5ac9df2bff80de75e28c0c51e9e46ce3778daccbb8f99a373

See more details on using hashes here.

Provenance

The following attestation bundles were made for tabeline-0.7.0-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.0-cp310-cp310-manylinux_2_35_aarch64.whl.

File metadata

File hashes

Hashes for tabeline-0.7.0-cp310-cp310-manylinux_2_35_aarch64.whl
Algorithm Hash digest
SHA256 a6cb7b7f0c15945201b5921b428474e179ad2dd9d026fe3fa9b91c600cc0d697
MD5 9b87be2e966efd2f7f5c3d00983a72cd
BLAKE2b-256 6c4eca25611ed5d059de88f8998c4d2015e75d2525231ea970811c268247ed36

See more details on using hashes here.

Provenance

The following attestation bundles were made for tabeline-0.7.0-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.0-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for tabeline-0.7.0-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 996e82a758341af083754bd351fdef7d380d3f6702b134f782db26506abfe4e3
MD5 b37038a5fcf1fd1c46ab84bf08b7933b
BLAKE2b-256 be7ef3ad7ceab2f1c4f97ead9761bd214fc5fb6faded0274293f9cb31653636d

See more details on using hashes here.

Provenance

The following attestation bundles were made for tabeline-0.7.0-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.0-cp310-cp310-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for tabeline-0.7.0-cp310-cp310-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 483e3ef47c967628a2618ff05b095bb126654e1b54767b6732a222fe143e3ea1
MD5 1793d18a43ac57ecefa35552add7ee7e
BLAKE2b-256 961f73276191d1fd9948253bd1f2ed1ac4c883f50449ec9ed44ece713fc18a63

See more details on using hashes here.

Provenance

The following attestation bundles were made for tabeline-0.7.0-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