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
data = generate_gaussian_data(n=n, p=p, seed=42)
X = data['X']
y = data['y']
beta = data['beta']

# 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=False, standardize=True, 
      num_dummies=0, type='lar', lars_state=None, info=False)
  • 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=False): 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: dict - Dictionary with keys 'X' (design matrix), 'y' (response), 'beta' (true coefficients), and 'support' (boolean mask of non-zero coefficients).

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.7.13.tar.gz (256.2 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.7.13-cp314-cp314-win_arm64.whl (157.9 kB view details)

Uploaded CPython 3.14Windows ARM64

tlars-0.7.13-cp314-cp314-win_amd64.whl (160.0 kB view details)

Uploaded CPython 3.14Windows x86-64

tlars-0.7.13-cp314-cp314-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (34.9 MB view details)

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

tlars-0.7.13-cp314-cp314-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl (21.1 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.27+ ARM64manylinux: glibc 2.28+ ARM64

tlars-0.7.13-cp314-cp314-macosx_11_0_x86_64.whl (195.2 kB view details)

Uploaded CPython 3.14macOS 11.0+ x86-64

tlars-0.7.13-cp314-cp314-macosx_11_0_arm64.whl (184.7 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

tlars-0.7.13-cp313-cp313-win_arm64.whl (153.3 kB view details)

Uploaded CPython 3.13Windows ARM64

tlars-0.7.13-cp313-cp313-win_amd64.whl (156.4 kB view details)

Uploaded CPython 3.13Windows x86-64

tlars-0.7.13-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.7.13-cp313-cp313-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl (21.1 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.27+ ARM64manylinux: glibc 2.28+ ARM64

tlars-0.7.13-cp313-cp313-macosx_11_0_x86_64.whl (195.0 kB view details)

Uploaded CPython 3.13macOS 11.0+ x86-64

tlars-0.7.13-cp313-cp313-macosx_11_0_arm64.whl (184.3 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

tlars-0.7.13-cp312-cp312-win_arm64.whl (153.3 kB view details)

Uploaded CPython 3.12Windows ARM64

tlars-0.7.13-cp312-cp312-win_amd64.whl (156.4 kB view details)

Uploaded CPython 3.12Windows x86-64

tlars-0.7.13-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.7.13-cp312-cp312-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl (21.1 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.27+ ARM64manylinux: glibc 2.28+ ARM64

tlars-0.7.13-cp312-cp312-macosx_11_0_x86_64.whl (194.9 kB view details)

Uploaded CPython 3.12macOS 11.0+ x86-64

tlars-0.7.13-cp312-cp312-macosx_11_0_arm64.whl (184.1 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

tlars-0.7.13-cp311-cp311-win_arm64.whl (156.6 kB view details)

Uploaded CPython 3.11Windows ARM64

tlars-0.7.13-cp311-cp311-win_amd64.whl (155.7 kB view details)

Uploaded CPython 3.11Windows x86-64

tlars-0.7.13-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.7.13-cp311-cp311-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl (21.1 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.27+ ARM64manylinux: glibc 2.28+ ARM64

tlars-0.7.13-cp311-cp311-macosx_11_0_x86_64.whl (194.0 kB view details)

Uploaded CPython 3.11macOS 11.0+ x86-64

tlars-0.7.13-cp311-cp311-macosx_11_0_arm64.whl (184.1 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

tlars-0.7.13-cp310-cp310-win_arm64.whl (155.7 kB view details)

Uploaded CPython 3.10Windows ARM64

tlars-0.7.13-cp310-cp310-win_amd64.whl (154.7 kB view details)

Uploaded CPython 3.10Windows x86-64

tlars-0.7.13-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.7.13-cp310-cp310-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl (21.1 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.27+ ARM64manylinux: glibc 2.28+ ARM64

tlars-0.7.13-cp310-cp310-macosx_11_0_x86_64.whl (192.4 kB view details)

Uploaded CPython 3.10macOS 11.0+ x86-64

tlars-0.7.13-cp310-cp310-macosx_11_0_arm64.whl (182.8 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

tlars-0.7.13-cp39-cp39-win_arm64.whl (152.5 kB view details)

Uploaded CPython 3.9Windows ARM64

tlars-0.7.13-cp39-cp39-win_amd64.whl (154.8 kB view details)

Uploaded CPython 3.9Windows x86-64

tlars-0.7.13-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.7.13-cp39-cp39-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl (21.1 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.27+ ARM64manylinux: glibc 2.28+ ARM64

tlars-0.7.13-cp39-cp39-macosx_11_0_x86_64.whl (192.5 kB view details)

Uploaded CPython 3.9macOS 11.0+ x86-64

tlars-0.7.13-cp39-cp39-macosx_11_0_arm64.whl (182.9 kB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

tlars-0.7.13-cp38-cp38-win_amd64.whl (154.4 kB view details)

Uploaded CPython 3.8Windows x86-64

tlars-0.7.13-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.7.13-cp38-cp38-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl (21.1 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.27+ ARM64manylinux: glibc 2.28+ ARM64

tlars-0.7.13-cp38-cp38-macosx_11_0_x86_64.whl (191.8 kB view details)

Uploaded CPython 3.8macOS 11.0+ x86-64

File details

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

File metadata

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

File hashes

Hashes for tlars-0.7.13.tar.gz
Algorithm Hash digest
SHA256 11b8063a61b2626777f503f9d5cebdcaac11845354f2a4872680a2ba67369638
MD5 e14a96d1e554d33a8b314c689366614c
BLAKE2b-256 67c9d3aa27095431fa57e19ab5a0e495355989499ddaa0ac0446c146fde421d2

See more details on using hashes here.

File details

Details for the file tlars-0.7.13-cp314-cp314-win_arm64.whl.

File metadata

  • Download URL: tlars-0.7.13-cp314-cp314-win_arm64.whl
  • Upload date:
  • Size: 157.9 kB
  • Tags: CPython 3.14, Windows ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for tlars-0.7.13-cp314-cp314-win_arm64.whl
Algorithm Hash digest
SHA256 e0aadeb8e9c94a5a2a2c16778f854e34b6536fb443ac2baecea96c92177deb02
MD5 6db6be5bee66ebdf003b60cfb0a0507d
BLAKE2b-256 27111199deb919599dd476e9c9c0e943b8aa7acf74b6629f25ef195bca7b0750

See more details on using hashes here.

File details

Details for the file tlars-0.7.13-cp314-cp314-win_amd64.whl.

File metadata

  • Download URL: tlars-0.7.13-cp314-cp314-win_amd64.whl
  • Upload date:
  • Size: 160.0 kB
  • Tags: CPython 3.14, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for tlars-0.7.13-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 bdb7c9bc8766da011dfd49c45ab4757652b19ed8d34a78cec533fec2f2c8fa3b
MD5 6139557adc91120b1920b9443d9f892a
BLAKE2b-256 368cb9223296e7735fb6b40a4faf024f247a64da763ed3ad131190068d3652c6

See more details on using hashes here.

File details

Details for the file tlars-0.7.13-cp314-cp314-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for tlars-0.7.13-cp314-cp314-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 107781b599b3824c2066c0324e03834aec74ffe71987690875db2aaa9c4fb235
MD5 b9f93e9b88f72bdb5c69f9903078fc5f
BLAKE2b-256 053840fa756ff25c09829e25c050dbeff5388adbda14870889d3dc407649e866

See more details on using hashes here.

File details

Details for the file tlars-0.7.13-cp314-cp314-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for tlars-0.7.13-cp314-cp314-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 d0373c0ca1cf69b350dd89648f01ba87b6563499ee52ea828827b77a1d6a6c2e
MD5 ced25fd4de270cefe3ed102c5993ec6d
BLAKE2b-256 7e96733812a58034cd3cb7e449334eab44ef2e53e05c246493bab078e254fb09

See more details on using hashes here.

File details

Details for the file tlars-0.7.13-cp314-cp314-macosx_11_0_x86_64.whl.

File metadata

File hashes

Hashes for tlars-0.7.13-cp314-cp314-macosx_11_0_x86_64.whl
Algorithm Hash digest
SHA256 dbf5faec8c7149267625b6745f3979ece3550015b9bb6982cb641417e4762a1f
MD5 a307427812a91a5ed16dfb183e742232
BLAKE2b-256 e353d765c90c757d77d4c6431a7dfa0cc6219816331d205d5e0fe6f717b7b1ef

See more details on using hashes here.

File details

Details for the file tlars-0.7.13-cp314-cp314-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for tlars-0.7.13-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 edfad1e0ae91b770e91742c58e303b73b12a380e56ab4617d0bd516737546b48
MD5 03189a460aeb98a03226223e4e204ea1
BLAKE2b-256 0338cef144257121c125dc43ef0e8f149de00dc6db8aa4c6dcb87f3fe518ed1b

See more details on using hashes here.

File details

Details for the file tlars-0.7.13-cp313-cp313-win_arm64.whl.

File metadata

  • Download URL: tlars-0.7.13-cp313-cp313-win_arm64.whl
  • Upload date:
  • Size: 153.3 kB
  • Tags: CPython 3.13, Windows ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for tlars-0.7.13-cp313-cp313-win_arm64.whl
Algorithm Hash digest
SHA256 4d7e16be995712d63b160b46a35216bc817e409bb232b824692e7915eef0f6fb
MD5 d4f4008745840e80165b000e0af0ee4b
BLAKE2b-256 da3b1d4f89ec686dbfb56f4d249867de6899091e66486539a8552e39123b2ec6

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for tlars-0.7.13-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 f336a1b85131d91738b936b49b88021b84182c61d83822f03c34b2ebba898746
MD5 94267f7cc7e29b0328e077b2772f2436
BLAKE2b-256 ec1853849c5df906c808089338dd819c1d59f8703e52683ef700897fcec3f88d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for tlars-0.7.13-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 352564f3fd6ba989057584b458af8fbb6ef60deb2ef70f6751dbc7b8575bf93d
MD5 f5ca4a395aa31f03d36444fc9d268d9c
BLAKE2b-256 858ab5426d108070b0172712cce923c91367726d4c736e129dee6695d4fcbfbe

See more details on using hashes here.

File details

Details for the file tlars-0.7.13-cp313-cp313-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for tlars-0.7.13-cp313-cp313-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 8d7ce31deb31b4db2c4239a2398bce4dc2948f34cf23c596bcc02c5a2763f3a1
MD5 b69a214135b78b6adf1205b496377835
BLAKE2b-256 728ce0735ee3dc06b8b7e9bb66d634ae16532ecf95238294e9f2ef9615f64f05

See more details on using hashes here.

File details

Details for the file tlars-0.7.13-cp313-cp313-macosx_11_0_x86_64.whl.

File metadata

File hashes

Hashes for tlars-0.7.13-cp313-cp313-macosx_11_0_x86_64.whl
Algorithm Hash digest
SHA256 f2681c9caf7bb117ec2d934f2ecf332a741077d3dbbb7891a586ae5b48f3957d
MD5 e94fd3197a733d623591ed8bc6e17870
BLAKE2b-256 65bd582c4decfe01012d4992900bffa608585d9da313ee94ba022349c975561e

See more details on using hashes here.

File details

Details for the file tlars-0.7.13-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for tlars-0.7.13-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 618de497e184ea6682cf2c07506403f219a58afd2e18320c6f76b0b71adb7a8c
MD5 29925d2bf5f82e25a656ee0ed2fdec83
BLAKE2b-256 5c783dbee17d30bfb8f8c8a95ab0b4f80a5b0d12b016c9af603a9c2ee788c03a

See more details on using hashes here.

File details

Details for the file tlars-0.7.13-cp312-cp312-win_arm64.whl.

File metadata

  • Download URL: tlars-0.7.13-cp312-cp312-win_arm64.whl
  • Upload date:
  • Size: 153.3 kB
  • Tags: CPython 3.12, Windows ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for tlars-0.7.13-cp312-cp312-win_arm64.whl
Algorithm Hash digest
SHA256 e1211e2ef83e3e32e938093007ab98a4c7b513db7537775fdd80836796a13fc2
MD5 229a23f4fac62594501b52767c743874
BLAKE2b-256 584018eb6b1cc0122b44ebf8a92876b54ed193e51c83e6a98e836742e15132ac

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for tlars-0.7.13-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 a9fb8411e7ed3715e41dcf26396974d27092a195772e88861053c249890b8f06
MD5 dcc9700981330bba2b7c9869d64c5998
BLAKE2b-256 ce71e2145ecff698727ad7c94d269fe2c7bca935f2b7636b995bb69c900ed6c1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for tlars-0.7.13-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 0bdf3026c131db5430819cb44b78093e864d80674e2e1f389a8e4f9dc94df860
MD5 9da5f0101b9abc2aa4f3ad23678bd388
BLAKE2b-256 d9c93c11e3315963528067fb8a1924a642fd1526aa0318b7ea592a657f8df10f

See more details on using hashes here.

File details

Details for the file tlars-0.7.13-cp312-cp312-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for tlars-0.7.13-cp312-cp312-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 4cded43d6086f10c4896086fa0f69a67832dbe917d27aa477cb6db1d06b37958
MD5 0cd8be8cee64673519d7b8966c53a2dd
BLAKE2b-256 df6a476bb6c0296c53b3f189fc63868b052d121f185ae335a52283f287e6896a

See more details on using hashes here.

File details

Details for the file tlars-0.7.13-cp312-cp312-macosx_11_0_x86_64.whl.

File metadata

File hashes

Hashes for tlars-0.7.13-cp312-cp312-macosx_11_0_x86_64.whl
Algorithm Hash digest
SHA256 e6983eabd31e2d40c74b2340c2d3fe2724169528917aa0f86cb6e1b3a7bf02b8
MD5 bb1558554dec658e388e6e496d5ebb11
BLAKE2b-256 2d0082c67b3ab4c9eddf5a84d3ce9d95a1c770afc7f7cff6de21573477d0a427

See more details on using hashes here.

File details

Details for the file tlars-0.7.13-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for tlars-0.7.13-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 9b326e4250c27a7699a249d934df160856c66204367f607c80c2545a6971b2dd
MD5 93e50c0f53c2f215d99563f7467f319a
BLAKE2b-256 af1200f612fd99997197509528a35b9e50bc3dea7d56dc00c6a63388bc6e54b6

See more details on using hashes here.

File details

Details for the file tlars-0.7.13-cp311-cp311-win_arm64.whl.

File metadata

  • Download URL: tlars-0.7.13-cp311-cp311-win_arm64.whl
  • Upload date:
  • Size: 156.6 kB
  • Tags: CPython 3.11, Windows ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for tlars-0.7.13-cp311-cp311-win_arm64.whl
Algorithm Hash digest
SHA256 ce7b651e0be3b79c0b96fa863806f96783c75705b0e41ea3af99e4bd61322a89
MD5 78fc2e536b645c498823054d5ecbb8c2
BLAKE2b-256 ff598c53849dc84e53ddf8ef1b4ebe4ab4e44013021a677115e6d2684531de7b

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for tlars-0.7.13-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 3355123ae4d34b6b7a8598e4aec2769580e304a97bf122c4d64c46d1dfb9d656
MD5 430d0bf9fe9808b739b4c255dc19ce69
BLAKE2b-256 acc76e85ec2b5e5ec97b673840623e65e610559a28a89b7c50dcf44843034e19

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for tlars-0.7.13-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 3d78383619c8d2d3c26b0f185d024a12a0775fd861da6ca0361f78ab3ebce0d0
MD5 5bcdb033d475597ff5358041b8d11a97
BLAKE2b-256 6891dada2abe2cea7f53bef40b249a5863b2f4645f87ea9d6a41ccd2689bada3

See more details on using hashes here.

File details

Details for the file tlars-0.7.13-cp311-cp311-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for tlars-0.7.13-cp311-cp311-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 64926b9e3043eca1f9074785dde8981d2514594e3000f9f6bdcbeadaf2b881cc
MD5 d9230403ce5f2a1288a1dc49fff48f9d
BLAKE2b-256 8e83fb09cad9865f9196082dd92e8a13e6360dd9b911bf4497c7bb92358a6431

See more details on using hashes here.

File details

Details for the file tlars-0.7.13-cp311-cp311-macosx_11_0_x86_64.whl.

File metadata

File hashes

Hashes for tlars-0.7.13-cp311-cp311-macosx_11_0_x86_64.whl
Algorithm Hash digest
SHA256 1a885dc894ab91d87be15eee24abb2a9d66113de5a12cc80b18131854992a995
MD5 1c3ce51d4b7ec47fb1fac7296fe83376
BLAKE2b-256 4dd8f2844e8c605b3583f223bd09b8f86a9127d8d33bd5c048ffa4b4bcc74ad3

See more details on using hashes here.

File details

Details for the file tlars-0.7.13-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for tlars-0.7.13-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 c288ed2a7edb36094c27e5b9509bdbad5a87004c26b398d976e1b4b840b181d1
MD5 f13b2680ed91bd2269f173d321101431
BLAKE2b-256 c9618c759aaaebfdb39ece1de18f7149f6220779b3765cb192dd15970d2556aa

See more details on using hashes here.

File details

Details for the file tlars-0.7.13-cp310-cp310-win_arm64.whl.

File metadata

  • Download URL: tlars-0.7.13-cp310-cp310-win_arm64.whl
  • Upload date:
  • Size: 155.7 kB
  • Tags: CPython 3.10, Windows ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for tlars-0.7.13-cp310-cp310-win_arm64.whl
Algorithm Hash digest
SHA256 4baa445cb2344255a97aa92eb5b14ba9f1a5158990da0a46be53ba0fe3d45229
MD5 3c1405651a1bab42b0ab457c5f78f3f0
BLAKE2b-256 54847c672ed895a4cfa758e4bde62237d4fa1216f3167d99aaaa5a0f3b4954ae

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for tlars-0.7.13-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 21bf462a95d1833c44bfd88a59227cb39d64c907956b721bab87f3301d4a7890
MD5 ed3d093e58e54b29ae41bdc188fcfe3a
BLAKE2b-256 4f77ec0c5129ff5ccd367be27f4bb34e144c059d8b5adeddef7340fab4c0fcd1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for tlars-0.7.13-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 b3f4a33508fbb95a0e0ac2899bdb2a76c2450d6917e497a7f4b1bf754a008802
MD5 9d3858f4aa705bf95421fb00c4b187a0
BLAKE2b-256 88555408185dc91f222e419c715089a2b34b75188b2e27ceb83cfab19173d8ff

See more details on using hashes here.

File details

Details for the file tlars-0.7.13-cp310-cp310-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for tlars-0.7.13-cp310-cp310-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 252ff79d62c27cf3e36878c748b57bba21a34203603378f5b07fcc35da223911
MD5 0cd229884f549b961dcd0905aefcd500
BLAKE2b-256 5edaccb20250bfa9465678c42a1cce76bf8c5c81d4c4051aa3c959a8adbdb5b2

See more details on using hashes here.

File details

Details for the file tlars-0.7.13-cp310-cp310-macosx_11_0_x86_64.whl.

File metadata

File hashes

Hashes for tlars-0.7.13-cp310-cp310-macosx_11_0_x86_64.whl
Algorithm Hash digest
SHA256 86c1bda88d95137d072dee9872069c26493a128e3bbefc9e144e111dd3ffb037
MD5 200df70bc58fbcf72189d05c5a59102d
BLAKE2b-256 df3b943bb90606348d6bda30443060ca2df1f9c09035374808b7726caab28eb7

See more details on using hashes here.

File details

Details for the file tlars-0.7.13-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for tlars-0.7.13-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 48c10cf7153085dc8bab1ef9e1cd77b7cb3d295668b9f31bb3f23b2ba1e22141
MD5 00076e4c7b01aedb50e7927486dd3736
BLAKE2b-256 67efb567f705b110969cdcb93b1d69e7064cc614b6390b74f05c9590d37d9777

See more details on using hashes here.

File details

Details for the file tlars-0.7.13-cp39-cp39-win_arm64.whl.

File metadata

  • Download URL: tlars-0.7.13-cp39-cp39-win_arm64.whl
  • Upload date:
  • Size: 152.5 kB
  • Tags: CPython 3.9, Windows ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for tlars-0.7.13-cp39-cp39-win_arm64.whl
Algorithm Hash digest
SHA256 7c1bb1ea7a3668a76c79be1be62f510db2d739d98e70e70bb2560b26fdbecf74
MD5 6bdd1d75c332816eeb708e766d4b6eb0
BLAKE2b-256 0bce801f5f7be1a7e36614688aecf2f01c84f8289693504d1bd031513a36bb7b

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for tlars-0.7.13-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 1a6e5f401f47b76a4491fa99e0a10e0f04a7779e14916dfd440bb4887b511e70
MD5 b43c7ad9c1ef50f274f860e33a4a1498
BLAKE2b-256 0c6fa3217746b5919cbb82ad3ce2067ed833a2f5a9636fc5b06678dcab1ae002

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for tlars-0.7.13-cp39-cp39-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 ca4ebdb07ba2645ad9788c068809339192732b3753df71c1b75cdb43b94bfc75
MD5 9f47d637d431ab5a6a4e2cfbc4db8e36
BLAKE2b-256 595003ebfff3eec6d240ed56190e8f88dbe66872860d8049f1ddc4c0af338e7d

See more details on using hashes here.

File details

Details for the file tlars-0.7.13-cp39-cp39-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for tlars-0.7.13-cp39-cp39-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 d6bf55be027144564087991dea90802d1c607cd6be7452f0d1b07565cc18b552
MD5 52e9d6dfd68ed9a5af4ac39e443406c5
BLAKE2b-256 f6cbe427b8bdd3071cafa6dc23cc955cc0cbb49ee71d355c46af30b553210a26

See more details on using hashes here.

File details

Details for the file tlars-0.7.13-cp39-cp39-macosx_11_0_x86_64.whl.

File metadata

File hashes

Hashes for tlars-0.7.13-cp39-cp39-macosx_11_0_x86_64.whl
Algorithm Hash digest
SHA256 18c17b4f69f19ad320bc8cd06ade843f8e9054dec4b4bbd603bdff6e25c00c87
MD5 a02ced8eac6c4c412a77a2c6f4f278f6
BLAKE2b-256 28d179ef85c857b2be4dd58b78f01c1492ae0eed94aa217daf18183f5602a620

See more details on using hashes here.

File details

Details for the file tlars-0.7.13-cp39-cp39-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for tlars-0.7.13-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 9135a04ff14d344c45156bbd6a3c6a21505ec28f91ba7ce45077f7fa236826e0
MD5 468f311b7527a31cceadd010b4aa024f
BLAKE2b-256 cec78d6023ad010c6f2da8d9a4c6212b7a0ef46894487801252cb0e002280985

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for tlars-0.7.13-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 c7ae7015abce7e102099297251a7696c4ccf558ab2a8cfaad8918031691b5ae1
MD5 3175db578916edc05c04fed3b77197fa
BLAKE2b-256 093ab9bc5b4d373302a022ec8b2adee643b2572c975574b52dcf414341a3f1b1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for tlars-0.7.13-cp38-cp38-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 66e45fbfd6dcf8d2d0d7b7c5ee1574b563e353289c565b0876328db352afbcad
MD5 8a7edbd3d39d63734a90368ff82796a1
BLAKE2b-256 4084f396c77f23570730894a057ce9d0871fe516d36baa4de4022fc836115fae

See more details on using hashes here.

File details

Details for the file tlars-0.7.13-cp38-cp38-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for tlars-0.7.13-cp38-cp38-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 003a9e541a09542bfaca1b7ecde6725babfad4f23b1a6a49ba4904c8ea890a08
MD5 eefae3474921a09d1edec4f987a84a35
BLAKE2b-256 cef30ce2a62a6e2603f52eb529c4d03d97627357739452e7a92a55e493ca96b8

See more details on using hashes here.

File details

Details for the file tlars-0.7.13-cp38-cp38-macosx_11_0_x86_64.whl.

File metadata

File hashes

Hashes for tlars-0.7.13-cp38-cp38-macosx_11_0_x86_64.whl
Algorithm Hash digest
SHA256 89e76f53f7cdbf29e55bfb1af04bc640ff01f592e4a8e649835fedbd388c81a1
MD5 b0ddc2fcaa91efbdba9116984dca79e9
BLAKE2b-256 a9d4d62f50bba0eb994268ba99c5ae5e37bd89f4df5931e20582ce2aecf88288

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