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.6.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.6-cp313-cp313-win_amd64.whl (157.1 kB view details)

Uploaded CPython 3.13Windows x86-64

tlars-0.6.6-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.6-cp313-cp313-macosx_15_0_x86_64.whl (338.3 kB view details)

Uploaded CPython 3.13macOS 15.0+ x86-64

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

Uploaded CPython 3.13macOS 15.0+ ARM64

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

Uploaded CPython 3.12Windows x86-64

tlars-0.6.6-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.6-cp312-cp312-macosx_15_0_x86_64.whl (338.0 kB view details)

Uploaded CPython 3.12macOS 15.0+ x86-64

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

Uploaded CPython 3.12macOS 15.0+ ARM64

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

Uploaded CPython 3.11Windows x86-64

tlars-0.6.6-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.6-cp311-cp311-macosx_15_0_x86_64.whl (337.0 kB view details)

Uploaded CPython 3.11macOS 15.0+ x86-64

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

Uploaded CPython 3.11macOS 15.0+ ARM64

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

Uploaded CPython 3.10Windows x86-64

tlars-0.6.6-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.6-cp310-cp310-macosx_15_0_x86_64.whl (335.6 kB view details)

Uploaded CPython 3.10macOS 15.0+ x86-64

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

Uploaded CPython 3.10macOS 15.0+ ARM64

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

Uploaded CPython 3.9Windows x86-64

tlars-0.6.6-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.6-cp39-cp39-macosx_15_0_x86_64.whl (335.8 kB view details)

Uploaded CPython 3.9macOS 15.0+ x86-64

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

Uploaded CPython 3.9macOS 15.0+ ARM64

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

Uploaded CPython 3.8Windows x86-64

tlars-0.6.6-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.6-cp38-cp38-macosx_15_0_x86_64.whl (334.9 kB view details)

Uploaded CPython 3.8macOS 15.0+ x86-64

tlars-0.6.6-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.6.tar.gz.

File metadata

  • Download URL: tlars-0.6.6.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.6.tar.gz
Algorithm Hash digest
SHA256 f5d5e69d7a326f1cc7f117dde28cb2430815ea3777d664248f4bbdca38f74aae
MD5 59d60df696530f1cee820107481c40a8
BLAKE2b-256 d543c436ecc346e09954b2d487d311cb4b28b1758e732214e96e210b3c4fc976

See more details on using hashes here.

File details

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

File metadata

  • Download URL: tlars-0.6.6-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.6-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 0ea64666f6c61aa970bf3dec36eb5214ea292ca3c5f70fad8dcdc45d6b30dbab
MD5 b74cb4096196055cd0b4938308d63499
BLAKE2b-256 cc83b1dab8442db4b48663bb1289895a01b7cf75d1adfa6fb1137bdaf7788efc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for tlars-0.6.6-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 4d1efcf2a37348cf66196c7799378d52c2ab913a642bec7b4ecbd0e6e0a9489e
MD5 5aced0e4e1812d0414bef7dd43c85d50
BLAKE2b-256 1503f3e213f283e66156e299fc0409829fb2d0caf4b2d4b552c77d11aa3571f2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for tlars-0.6.6-cp313-cp313-macosx_15_0_x86_64.whl
Algorithm Hash digest
SHA256 f17c80f7cc0833b5a8cfe720f1fecb67724f322958d5bdc16d6693857c1b960e
MD5 2fc56790b261c1d4cbeed4d72efa959e
BLAKE2b-256 9d562352c77523700a0a31cd1f9a4a801bc476867ddfee9d5ced49d59a79ef09

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for tlars-0.6.6-cp313-cp313-macosx_15_0_arm64.whl
Algorithm Hash digest
SHA256 98efd1eee66154b91140d02e32fbf0231879e82562866d32dcb0896462f9ba84
MD5 7d42c1c7e9b1ae91a358f850969ecee3
BLAKE2b-256 828351a6657389275bda672836360a6b9c75f093c924d5f254e714b0fc06d748

See more details on using hashes here.

File details

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

File metadata

  • Download URL: tlars-0.6.6-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.6-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 5807d2e5abdf536e4fe8ba931fdb502ed0e287504381a043ba248d9341ff3555
MD5 b6e15c28858ecd515eb0fe40b0492719
BLAKE2b-256 f02b5ed8364de11436085b8e04082992237edeb1f2587366bd61a28c06163f13

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for tlars-0.6.6-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 e646064d37f86603d5647fdd2415976c7adcbde80c0c7e76b24408493a629687
MD5 8a628e70cffed581585fff811f7661d9
BLAKE2b-256 e25e9162036eaeb73434e7975683e3566e666ef31098738b572da5a307c75dda

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for tlars-0.6.6-cp312-cp312-macosx_15_0_x86_64.whl
Algorithm Hash digest
SHA256 ee731ece7bf62f76d3ca3636cc1d29390162fab65334be0331c5c8cae0ad62a8
MD5 2bc5f2b1fb8a8bb980ece7d17b371be1
BLAKE2b-256 e03f48e15d6cfa1d2ee848d73c774f325f84db7efdb873e2e0b218e44f06b880

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for tlars-0.6.6-cp312-cp312-macosx_15_0_arm64.whl
Algorithm Hash digest
SHA256 f5548d1230a595c23e257168afc058d70b4cc4be83c5333f5168326e677591c7
MD5 263046215189754a0f0a25b3f79d63bb
BLAKE2b-256 519237411a685d904933e49071037b10a34223338fa189fc2dc360e2f1e22177

See more details on using hashes here.

File details

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

File metadata

  • Download URL: tlars-0.6.6-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.6-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 79ae851243031c27416d49897dd91bd9ffcad27f48bf62d1180ad00ee21793eb
MD5 e466d99f77fa709230e2ca0438e19785
BLAKE2b-256 e0286e2ef4c2d527467b388e9fa79265bbc82d3cf6b072cd8327511c469befa9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for tlars-0.6.6-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 dc774969a4a8c4e0d1b210b00c1578bece319293bf3d3024d8f3c72ed983a49a
MD5 94cd3d45eaf9ed93ed8c48ba2931ed9b
BLAKE2b-256 ec204f35498ba255ba6cd1d1fcf41cda57fbc4e2d25c649391fda572973c458c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for tlars-0.6.6-cp311-cp311-macosx_15_0_x86_64.whl
Algorithm Hash digest
SHA256 e2a877c62e079aac004764c93a85f3fc6bf936a330712ef2ef105519845e8095
MD5 bcc288979ea7823d79c63c23464469ac
BLAKE2b-256 0549a90dd9fad3ef51567d04538b3e48f5f33de028bd3b318f956eed4b021655

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for tlars-0.6.6-cp311-cp311-macosx_15_0_arm64.whl
Algorithm Hash digest
SHA256 09c38c1b9ae7da4a6514179685c36f727df96ae309ce8386a6f06aac39e1d47b
MD5 4673ba24a2848740c78931b2ecdb0946
BLAKE2b-256 8c25b4a45c3b22f0812281b82e1bcacc2818b7a2d4ec4034425bcb1f06b43c41

See more details on using hashes here.

File details

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

File metadata

  • Download URL: tlars-0.6.6-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.6-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 92592e65acd72fef2081461bde6238ca40dde49787f0393abd64ea1fe89886a8
MD5 fd349419e8d5ab142d9f50829cc50796
BLAKE2b-256 5b8bbfb7ad598cafa1ee8d1cf26d88d17de673bbc457c42de6d962a78d565a44

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for tlars-0.6.6-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 e02fe1a982392654c3af48298954e0228ab8ee36abb1f177583bbbd6ccc25c46
MD5 c477f7ddb5de1b9e889b481c2344f5d2
BLAKE2b-256 b0289bce324460fd379577651dfcc241fc8cb6ccbf36b478588e8e792f19c145

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for tlars-0.6.6-cp310-cp310-macosx_15_0_x86_64.whl
Algorithm Hash digest
SHA256 b922ceea4526235cdac74ea3b390dd0f38d5c432f3c7cd65019e96fb729ddfe6
MD5 b42442c60d401aae32c0c9093794f25c
BLAKE2b-256 1d6985079b85fa93f081dcc5514a3ce87467388014b37bd0b77ea46578a698a5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for tlars-0.6.6-cp310-cp310-macosx_15_0_arm64.whl
Algorithm Hash digest
SHA256 771cce8ab2d8bb71a4d68492c3d7d29c53aaddec0ac16b90903b9c38ffbadd24
MD5 2d7fd1649cdcd59c3bbaffc96d2eb46d
BLAKE2b-256 e203904b9766bc8bdb4c81c3df25c1c0db705a61fa90bb5f1d44d48640997494

See more details on using hashes here.

File details

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

File metadata

  • Download URL: tlars-0.6.6-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.6-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 eab934ab5ebd093828204bcc0b017bf77035e6079cfa0d37c088a6c377fc2bb8
MD5 e5b4d605607e666bcfb70d688d03958f
BLAKE2b-256 861744049bb839cde76bb14107644b5823278e13bd9ac3cea31a3cd0a09d75b6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for tlars-0.6.6-cp39-cp39-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 e53ab19cc46c463a42ba2f511d1b28b3d24f5807828ca2267ab1553b5f698052
MD5 6a869bfdc4124e818d3a4c301e2618a1
BLAKE2b-256 70b8e926fb60303c349c2697cf4ef05e943bdf2457a78fa3b0a5532492c5affe

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for tlars-0.6.6-cp39-cp39-macosx_15_0_x86_64.whl
Algorithm Hash digest
SHA256 51c91d6e77f5498ed47017a29bf23b61f6128e0330b6c9da74dda1f26c2d5494
MD5 bfdabba7e78a8a61647a7361d9af7854
BLAKE2b-256 2d43e6341da47c5039acecbf14c4ac419627b3ef9f872884ab29a27373454b48

See more details on using hashes here.

File details

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

File metadata

  • Download URL: tlars-0.6.6-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.6-cp39-cp39-macosx_15_0_arm64.whl
Algorithm Hash digest
SHA256 d36700370bf7cc77538d3978cd9ce7e686c75501f7b88a3dce5c9c323910db71
MD5 97f1294714805d98a518ca2a7f9afeb2
BLAKE2b-256 51ad5f6aca791afec2d9c408e8a7ff20a854d8ba8cfca75743abfbd271a4a126

See more details on using hashes here.

File details

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

File metadata

  • Download URL: tlars-0.6.6-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.6-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 1f63ab6e11afd9cbab6418d56632d31c12f011b473de73f6dcd286c3081af9eb
MD5 4b69d3b86f5f5b1630fff35cf870ff28
BLAKE2b-256 c0b4cfa567bb7eb34f5140d134d957c353d5faa9707a73b50fd9637c47798b4d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for tlars-0.6.6-cp38-cp38-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 e8c501d6634c3c38c4896b9e557d47166b775041c74e7a753faa9b8975be73fd
MD5 517d6853102d93556b647876e0be3653
BLAKE2b-256 fab114ba53be48c82172a0ec283f9657a2ffaa0f541f808a3c982f63268a2c02

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for tlars-0.6.6-cp38-cp38-macosx_15_0_x86_64.whl
Algorithm Hash digest
SHA256 724a09c813430f102b68afc26f49795b4be0b00f235a27f342693d2073fc170d
MD5 b9260c66efcda8ddc6b04b88cdff4602
BLAKE2b-256 c984336cfbfae5b56bc5b639c3acc47779caaa895d2207d8a9fdc31088ebd23f

See more details on using hashes here.

File details

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

File metadata

  • Download URL: tlars-0.6.6-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.6-cp38-cp38-macosx_15_0_arm64.whl
Algorithm Hash digest
SHA256 1169a5c7e637535a5500c34fd1e464edb91c1276f1bd3b27e361896585c5a250
MD5 dc3deb8ecc18e567defa8136c555c284
BLAKE2b-256 05dba5de390cd6160de676e9a336cd4a34db428e33e7023d92dce7e7d8c4aa25

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