Skip to main content

Python port of the tlars R package for Terminating-LARS (T-LARS) algorithm

Project description

tlars-python

A Python port of the tlars R package for Terminating-LARS (T-LARS) algorithm.

Overview

The Terminating-LARS (T-LARS) algorithm is a modification of the Least Angle Regression (LARS) algorithm that allows for early termination of the forward selection process. This is particularly useful for high-dimensional data where the number of predictors is much larger than the number of observations.

This Python package provides a port of the original R implementation by Jasin Machkour, maintaining the same functionality while providing a more Pythonic interface. The Python port was created by Arnau Vilella (avp@connect.ust.hk).

Installation

The package is available on PyPI for Windows, macOS, and Linux:

pip install tlars

This is the recommended installation method as it will automatically install pre-built wheels for your platform with all required dependencies.

Usage

import numpy as np
from tlars import TLARS, generate_gaussian_data

# Generate some example data using the built-in function
n, p = 100, 20
X, y, beta = generate_gaussian_data(n=n, p=p, seed=42)

# Alternatively, create your own data
X = np.random.randn(n, p)
beta = np.zeros(p)
beta[:5] = np.array([1.5, 0.8, 2.0, -1.0, 1.2])
y = X @ beta + 0.5 * np.random.randn(n)

# Create dummy variables
num_dummies = p
dummies = np.random.randn(n, num_dummies)
XD = np.hstack([X, dummies])

# Create and fit the model
model = TLARS(XD, y, num_dummies=num_dummies)
model.fit(T_stop=3, early_stop=True)

# Get the coefficients
print(model.coef_)

# Get other properties
print(f"Number of active predictors: {model.n_active_}")
print(f"Number of active dummies: {model.n_active_dummies_}")
print(f"R² values: {model.r2_}")

# Plot the solution path
model.plot(include_dummies=True, show_actions=True)

Library Reference

TLARS Class

Constructor

TLARS(X=None, y=None, verbose=False, intercept=True, standardize=True, 
      num_dummies=0, type='lar', lars_state=None, info=True)
  • X: numpy.ndarray - Real valued predictor matrix.
  • y: numpy.ndarray - Response vector.
  • verbose: bool - If True, progress in computations is shown.
  • intercept: bool - If True, an intercept is included.
  • standardize: bool - If True, the predictors are standardized and the response is centered.
  • num_dummies: int - Number of dummies that are appended to the predictor matrix.
  • type: str - Type of used algorithm (currently possible choices: 'lar' or 'lasso').
  • lars_state: object - Previously saved TLARS state to resume from.
  • info: bool - If True, information about the initialization is printed.

Methods

  • fit(T_stop=None, early_stop=True, info=True): Fit the TLARS model.

    • T_stop: int - Number of included dummies after which the random experiments are stopped.
    • early_stop: bool - If True, then the forward selection process is stopped after T_stop dummies have been included.
    • info: bool - If True, informational messages are displayed during fitting.
  • plot(xlabel="# Included dummies", ylabel="Coefficients", include_dummies=True, show_actions=True, col_selected="black", col_dummies="red", ls_selected="-", ls_dummies="--", legend_pos="best", figsize=(10, 6)): Plot the T-LARS solution path.

    • xlabel: str - Label for the x-axis.
    • ylabel: str - Label for the y-axis.
    • include_dummies: bool - If True, solution paths of dummies are added to the plot.
    • show_actions: bool - If True, marks for added variables are shown above the plot.
    • col_selected: str - Color of lines corresponding to selected variables.
    • col_dummies: str - Color of lines corresponding to dummy variables.
    • ls_selected: str - Line style for selected variables.
    • ls_dummies: str - Line style for dummy variables.
    • legend_pos: str - Position of the legend.
    • figsize: tuple - Figure size.
  • get_all(): Returns a dictionary with all the results and properties.

Properties

  • coef_: numpy.ndarray - The coefficients of the model.
  • coef_path_: list - A list of coefficient vectors at each step.
  • n_active_: int - The number of active predictors.
  • n_active_dummies_: int - The number of active dummy variables.
  • n_dummies_: int - The total number of dummy variables.
  • actions_: list - The indices of added/removed variables along the solution path.
  • df_: list - The degrees of freedom at each step.
  • r2_: list - The R² statistic at each step.
  • rss_: list - The residual sum of squares at each step.
  • cp_: numpy.ndarray - The Cp-statistic at each step.
  • lambda_: numpy.ndarray - The lambda-values (penalty parameters) at each step.
  • entry_: list - The first entry/selection steps of the predictors.

Helper Functions

  • generate_gaussian_data(n=50, p=100, seed=789): Generate synthetic Gaussian data for testing.
    • n: int - Number of observations.
    • p: int - Number of variables.
    • seed: int - Random seed for reproducibility.
    • Returns: tuple - (X, y, beta) where X is the design matrix, y is the response, and beta is the true coefficient vector.

License

This project is licensed under the GNU General Public License v3.0 (GPL-3.0).

Acknowledgments

The original R package tlars was created by Jasin Machkour. This Python port was developed by Arnau Vilella (avp@connect.ust.hk).

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

tlars-0.6.7.tar.gz (255.5 kB view details)

Uploaded Source

Built Distributions

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

tlars-0.6.7-cp313-cp313-win_amd64.whl (157.1 kB view details)

Uploaded CPython 3.13Windows x86-64

tlars-0.6.7-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (34.9 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.27+ x86-64manylinux: glibc 2.28+ x86-64

tlars-0.6.7-cp313-cp313-macosx_15_0_x86_64.whl (338.3 kB view details)

Uploaded CPython 3.13macOS 15.0+ x86-64

tlars-0.6.7-cp313-cp313-macosx_15_0_arm64.whl (11.9 MB view details)

Uploaded CPython 3.13macOS 15.0+ ARM64

tlars-0.6.7-cp312-cp312-win_amd64.whl (157.1 kB view details)

Uploaded CPython 3.12Windows x86-64

tlars-0.6.7-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (34.9 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.27+ x86-64manylinux: glibc 2.28+ x86-64

tlars-0.6.7-cp312-cp312-macosx_15_0_x86_64.whl (338.0 kB view details)

Uploaded CPython 3.12macOS 15.0+ x86-64

tlars-0.6.7-cp312-cp312-macosx_15_0_arm64.whl (11.9 MB view details)

Uploaded CPython 3.12macOS 15.0+ ARM64

tlars-0.6.7-cp311-cp311-win_amd64.whl (156.5 kB view details)

Uploaded CPython 3.11Windows x86-64

tlars-0.6.7-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (34.9 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.27+ x86-64manylinux: glibc 2.28+ x86-64

tlars-0.6.7-cp311-cp311-macosx_15_0_x86_64.whl (337.0 kB view details)

Uploaded CPython 3.11macOS 15.0+ x86-64

tlars-0.6.7-cp311-cp311-macosx_15_0_arm64.whl (11.9 MB view details)

Uploaded CPython 3.11macOS 15.0+ ARM64

tlars-0.6.7-cp310-cp310-win_amd64.whl (155.5 kB view details)

Uploaded CPython 3.10Windows x86-64

tlars-0.6.7-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (34.8 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.27+ x86-64manylinux: glibc 2.28+ x86-64

tlars-0.6.7-cp310-cp310-macosx_15_0_x86_64.whl (335.6 kB view details)

Uploaded CPython 3.10macOS 15.0+ x86-64

tlars-0.6.7-cp310-cp310-macosx_15_0_arm64.whl (11.9 MB view details)

Uploaded CPython 3.10macOS 15.0+ ARM64

tlars-0.6.7-cp39-cp39-win_amd64.whl (155.6 kB view details)

Uploaded CPython 3.9Windows x86-64

tlars-0.6.7-cp39-cp39-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (34.8 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.27+ x86-64manylinux: glibc 2.28+ x86-64

tlars-0.6.7-cp39-cp39-macosx_15_0_x86_64.whl (335.7 kB view details)

Uploaded CPython 3.9macOS 15.0+ x86-64

tlars-0.6.7-cp39-cp39-macosx_15_0_arm64.whl (11.9 MB view details)

Uploaded CPython 3.9macOS 15.0+ ARM64

tlars-0.6.7-cp38-cp38-win_amd64.whl (155.2 kB view details)

Uploaded CPython 3.8Windows x86-64

tlars-0.6.7-cp38-cp38-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (34.8 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.27+ x86-64manylinux: glibc 2.28+ x86-64

tlars-0.6.7-cp38-cp38-macosx_15_0_x86_64.whl (334.9 kB view details)

Uploaded CPython 3.8macOS 15.0+ x86-64

tlars-0.6.7-cp38-cp38-macosx_15_0_arm64.whl (11.9 MB view details)

Uploaded CPython 3.8macOS 15.0+ ARM64

File details

Details for the file tlars-0.6.7.tar.gz.

File metadata

  • Download URL: tlars-0.6.7.tar.gz
  • Upload date:
  • Size: 255.5 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.9.23

File hashes

Hashes for tlars-0.6.7.tar.gz
Algorithm Hash digest
SHA256 66a4a2f3023acc845a7bfc11db60ca05e5a29885066f51c3f3584bd98e36e277
MD5 6ada4d9a6cf3921ba0a47864a3ec7920
BLAKE2b-256 9a511e95cd5cae0e8c103af5f9f9c92737f1bcedb8d6ab50aa02fac1562809f9

See more details on using hashes here.

File details

Details for the file tlars-0.6.7-cp313-cp313-win_amd64.whl.

File metadata

  • Download URL: tlars-0.6.7-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 157.1 kB
  • Tags: CPython 3.13, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.9.23

File hashes

Hashes for tlars-0.6.7-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 e8473d6f9dd2262097bddb5564bf41c966e09bcb917e255042a0dae57dcbf98c
MD5 a0eca57ded3595de819eb2e673be4131
BLAKE2b-256 020cbdad7ba286073ee76c6c400409a56cfa84bf9ccc146abd946b6db054626c

See more details on using hashes here.

File details

Details for the file tlars-0.6.7-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for tlars-0.6.7-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 d8acd2497df9e0af4101240b00288dc68e84a754e1a54d454b832a6332fb9811
MD5 fad9ecf6dbe71dfddc1a927c452b89a1
BLAKE2b-256 84b54d37fbad29bdab52842101c3e8b42920da9a645aa53cb802485819634fb7

See more details on using hashes here.

File details

Details for the file tlars-0.6.7-cp313-cp313-macosx_15_0_x86_64.whl.

File metadata

File hashes

Hashes for tlars-0.6.7-cp313-cp313-macosx_15_0_x86_64.whl
Algorithm Hash digest
SHA256 dc14e774e5cb06518d909f7fd03f0c867e2cdfb2df7b8e8b1917e139e4ea9034
MD5 79fc3731d251333902f757d989c1ce65
BLAKE2b-256 6527c02bf0ba98e179e011d6b466609faff213e3482304c681b02cd7006d7f7e

See more details on using hashes here.

File details

Details for the file tlars-0.6.7-cp313-cp313-macosx_15_0_arm64.whl.

File metadata

File hashes

Hashes for tlars-0.6.7-cp313-cp313-macosx_15_0_arm64.whl
Algorithm Hash digest
SHA256 643d8d3c67d0518d18907fe23aa3b131a0bc46607e83afb276a85043382a5e93
MD5 08eb210bad607153a12c7d22af369d0f
BLAKE2b-256 86b12b90bd42eaa7c4513b9eaf43f11ae44b6aece90b08bd99f4b9ea1846c1f9

See more details on using hashes here.

File details

Details for the file tlars-0.6.7-cp312-cp312-win_amd64.whl.

File metadata

  • Download URL: tlars-0.6.7-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 157.1 kB
  • Tags: CPython 3.12, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.9.23

File hashes

Hashes for tlars-0.6.7-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 601b530f4729021fad764d674f362eba5115969e7265265d49c35a3c97e56ed3
MD5 01941fe21743212f7a8d37f84f116bcf
BLAKE2b-256 52b3548703568bc28dc66b2882b4dd77d70472e17ef462dd7565576229704b5b

See more details on using hashes here.

File details

Details for the file tlars-0.6.7-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for tlars-0.6.7-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 73613042f0f41ef9d146baa284c8b966d97fad1d6a1cc7a6c9652aaa4ea50486
MD5 f111c84cb79d042a434d5c769cbab32a
BLAKE2b-256 be1a39236dfb13a93da0f76aeb966f5da8789a0bcc24d0c16ac255a451f73c95

See more details on using hashes here.

File details

Details for the file tlars-0.6.7-cp312-cp312-macosx_15_0_x86_64.whl.

File metadata

File hashes

Hashes for tlars-0.6.7-cp312-cp312-macosx_15_0_x86_64.whl
Algorithm Hash digest
SHA256 21b0a76ecd022e0e79637f34db5c5fbce3e78b450e429df2cba0ff004c856f27
MD5 1637f21654278219acf597c6316cd282
BLAKE2b-256 c6baaf01be9a7d94f0901f4276ebf7637b071ed52460b0c30b1c834fc84e3abd

See more details on using hashes here.

File details

Details for the file tlars-0.6.7-cp312-cp312-macosx_15_0_arm64.whl.

File metadata

File hashes

Hashes for tlars-0.6.7-cp312-cp312-macosx_15_0_arm64.whl
Algorithm Hash digest
SHA256 1c52fa1c5eadea9bc51cfcd854d72ee2440bf1ff609c26808eeeb2addb941ecf
MD5 b37734c57aa1ce23d8283147d31089d8
BLAKE2b-256 3be972126fb546d9d6de78b7e76ad54d262ab6839e353ffd2865a86d0b80e0ec

See more details on using hashes here.

File details

Details for the file tlars-0.6.7-cp311-cp311-win_amd64.whl.

File metadata

  • Download URL: tlars-0.6.7-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 156.5 kB
  • Tags: CPython 3.11, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.9.23

File hashes

Hashes for tlars-0.6.7-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 009e486abbe5f79114cf119ba3f820746b47797395d27a0c3cfbadbec50db699
MD5 05d8164f86d3dc2687c2700e186568b1
BLAKE2b-256 487b0d71e86815fdff80505f62dc16d0075efc7aa70c092bd56b95f25508f88a

See more details on using hashes here.

File details

Details for the file tlars-0.6.7-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for tlars-0.6.7-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 d7a56e64d2877365dd413c14820da4c0dc23752c4db127d769e2ea6db1310861
MD5 309b57b6e8a20537bb67e449d56b6929
BLAKE2b-256 e83267102e661ad17ebdc5dd453917cfaa008a2363668bf7cafb8c37b7132567

See more details on using hashes here.

File details

Details for the file tlars-0.6.7-cp311-cp311-macosx_15_0_x86_64.whl.

File metadata

File hashes

Hashes for tlars-0.6.7-cp311-cp311-macosx_15_0_x86_64.whl
Algorithm Hash digest
SHA256 b368c9d89c98756b070ae358e55c2537ee273654ac01179ea04bd7cf446f967c
MD5 18306174b83440340bcf0073a22e9482
BLAKE2b-256 3547704fc0ece16b90b428de08fe252333a62d36d5a57edfd0ca3856f64e4237

See more details on using hashes here.

File details

Details for the file tlars-0.6.7-cp311-cp311-macosx_15_0_arm64.whl.

File metadata

File hashes

Hashes for tlars-0.6.7-cp311-cp311-macosx_15_0_arm64.whl
Algorithm Hash digest
SHA256 2827c77dd4f17879f49d66b916c32ca6d0c732718fab59f526844e018f27206a
MD5 df00b7203e3e2c459ab7b0e91a293d8b
BLAKE2b-256 8510f6211ffe0634ceb53f1388d4655e4d1a6ed9acf8278e291049f47e71288c

See more details on using hashes here.

File details

Details for the file tlars-0.6.7-cp310-cp310-win_amd64.whl.

File metadata

  • Download URL: tlars-0.6.7-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 155.5 kB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.9.23

File hashes

Hashes for tlars-0.6.7-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 809ace183bf26ec036e7fe0bda5896d1dd440324d5e83fae4c972333e67dc45a
MD5 7ecefa464ade1eea2401a95505f606b4
BLAKE2b-256 fd03c903d62f0e33610f749d1117a95a70208993a5f74a0c27e1d67ba7c43046

See more details on using hashes here.

File details

Details for the file tlars-0.6.7-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for tlars-0.6.7-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 d7c451c76845fc152d5f46bea5d0c1c872474341472a424dfc78d1b98a229b08
MD5 52a66fbfb7101cf1a7e92fd32c0e4085
BLAKE2b-256 2612ce3581e077dfb91fb34f3a7fa7b2eeeb540b5c3d2a04b563190d279f8535

See more details on using hashes here.

File details

Details for the file tlars-0.6.7-cp310-cp310-macosx_15_0_x86_64.whl.

File metadata

File hashes

Hashes for tlars-0.6.7-cp310-cp310-macosx_15_0_x86_64.whl
Algorithm Hash digest
SHA256 6685fe4a8270cce065e422635d4462ca42ac4c0a06bbe1e367842e5f906cd06e
MD5 001dac8b43c0e6d3a43fc448ebc03d3f
BLAKE2b-256 997f9382e991b5d02bfc863c127eda30091db70fdde89a4484b998ddbfa03b4f

See more details on using hashes here.

File details

Details for the file tlars-0.6.7-cp310-cp310-macosx_15_0_arm64.whl.

File metadata

File hashes

Hashes for tlars-0.6.7-cp310-cp310-macosx_15_0_arm64.whl
Algorithm Hash digest
SHA256 d163591585effbe86e21b965d6eb9a81425611119e84fe7db1b6a05df716e85c
MD5 f24e15b752d5457726ee134d363840fc
BLAKE2b-256 45d3589e59677f7ed7c6cb0ddf171076aedbc40cd893f602cabdb3350c56f942

See more details on using hashes here.

File details

Details for the file tlars-0.6.7-cp39-cp39-win_amd64.whl.

File metadata

  • Download URL: tlars-0.6.7-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 155.6 kB
  • Tags: CPython 3.9, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.9.23

File hashes

Hashes for tlars-0.6.7-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 d04a763bc40e67e8363d3237f2439cfdd01df338cf7008180f78ab64f19d03fb
MD5 a914e90ae4cbf17e551c19df7adbcacf
BLAKE2b-256 9e19924b7b075f42a12bb671f4cf1dd6e870aecf4313bb11db907fef19f43974

See more details on using hashes here.

File details

Details for the file tlars-0.6.7-cp39-cp39-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for tlars-0.6.7-cp39-cp39-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 846560cfa09ad1181d26a5fbdae94be357caedf4c14a11b6fdb78afeb506fa79
MD5 391f8c1756970c8119c889f92167af34
BLAKE2b-256 604097a65bdc94a64f559a09a10daccba5e866a4450b82a59b0fe5719e12adaa

See more details on using hashes here.

File details

Details for the file tlars-0.6.7-cp39-cp39-macosx_15_0_x86_64.whl.

File metadata

File hashes

Hashes for tlars-0.6.7-cp39-cp39-macosx_15_0_x86_64.whl
Algorithm Hash digest
SHA256 bd438eee3f867bc2c8444e8431f28e82121687effdce25ac04b497c6f52103d1
MD5 abb572939e7fc0d4a1eb60bfafc6054f
BLAKE2b-256 f9b3ab36d0fa195f53a5c3851f32b97a7729aec8c19a74822a2930850977d641

See more details on using hashes here.

File details

Details for the file tlars-0.6.7-cp39-cp39-macosx_15_0_arm64.whl.

File metadata

  • Download URL: tlars-0.6.7-cp39-cp39-macosx_15_0_arm64.whl
  • Upload date:
  • Size: 11.9 MB
  • Tags: CPython 3.9, macOS 15.0+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.9.23

File hashes

Hashes for tlars-0.6.7-cp39-cp39-macosx_15_0_arm64.whl
Algorithm Hash digest
SHA256 ce5990f1fef88691a0ec7462deea1647afee4de02a2db2603e565f0fc741bf74
MD5 43d53dfca3997d92392137bfb43e9762
BLAKE2b-256 1ab7a825277695659bddd0e96764bab6799c91c3dcb170887ee6fbde933dd335

See more details on using hashes here.

File details

Details for the file tlars-0.6.7-cp38-cp38-win_amd64.whl.

File metadata

  • Download URL: tlars-0.6.7-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 155.2 kB
  • Tags: CPython 3.8, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.9.23

File hashes

Hashes for tlars-0.6.7-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 b462f1d8612c5c18ee4fd43b3c2a0694f06acef6344d98f768927853814c8c63
MD5 f65d6abb375c73bb3224d697edd8ca7d
BLAKE2b-256 9560538a07cb7982470011d074fb5047f924718b810ec607af697a71c89ccf2c

See more details on using hashes here.

File details

Details for the file tlars-0.6.7-cp38-cp38-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for tlars-0.6.7-cp38-cp38-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 8cf5c3fba4423afd2a7e03084de89a5234db97140ecbbb52d494d56d2de07e56
MD5 8a9a398e30497bd3e0239dd82c9c38b7
BLAKE2b-256 d8c6e80bd9a0b0f13843ac67f50a4b4922d592a2923d7bef7966bc1142420eab

See more details on using hashes here.

File details

Details for the file tlars-0.6.7-cp38-cp38-macosx_15_0_x86_64.whl.

File metadata

File hashes

Hashes for tlars-0.6.7-cp38-cp38-macosx_15_0_x86_64.whl
Algorithm Hash digest
SHA256 e62c00cb3ab4ea6d941de800d6a34257970247e27a1ae1867b7aea9ae9960d5a
MD5 ee39e9162eb53865be8e21c479093bb8
BLAKE2b-256 a39b664bec9be1e147231b4534e9a9db905fa85ee4f00e2c25f4aed67e11c4f6

See more details on using hashes here.

File details

Details for the file tlars-0.6.7-cp38-cp38-macosx_15_0_arm64.whl.

File metadata

  • Download URL: tlars-0.6.7-cp38-cp38-macosx_15_0_arm64.whl
  • Upload date:
  • Size: 11.9 MB
  • Tags: CPython 3.8, macOS 15.0+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.9.23

File hashes

Hashes for tlars-0.6.7-cp38-cp38-macosx_15_0_arm64.whl
Algorithm Hash digest
SHA256 57206a6452e5af0f8e0e17fe7a09f69d514f60df2e927cf43b0e94801e7a10b9
MD5 c8623fbcf4588465fb329f461f5a18de
BLAKE2b-256 2c5062fe9da18eb2a5d8494616f09e313839f7efb1a21223ebdb73d57572d040

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