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.4.tar.gz (255.4 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.4-cp313-cp313-win_amd64.whl (157.1 kB view details)

Uploaded CPython 3.13Windows x86-64

tlars-0.6.4-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.4-cp313-cp313-macosx_15_0_x86_64.whl (195.4 kB view details)

Uploaded CPython 3.13macOS 15.0+ x86-64

tlars-0.6.4-cp313-cp313-macosx_15_0_arm64.whl (11.8 MB view details)

Uploaded CPython 3.13macOS 15.0+ ARM64

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

Uploaded CPython 3.12Windows x86-64

tlars-0.6.4-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.4-cp312-cp312-macosx_15_0_x86_64.whl (195.4 kB view details)

Uploaded CPython 3.12macOS 15.0+ x86-64

tlars-0.6.4-cp312-cp312-macosx_15_0_arm64.whl (11.8 MB view details)

Uploaded CPython 3.12macOS 15.0+ ARM64

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

Uploaded CPython 3.11Windows x86-64

tlars-0.6.4-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.4-cp311-cp311-macosx_15_0_x86_64.whl (194.3 kB view details)

Uploaded CPython 3.11macOS 15.0+ x86-64

tlars-0.6.4-cp311-cp311-macosx_15_0_arm64.whl (11.8 MB view details)

Uploaded CPython 3.11macOS 15.0+ ARM64

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

Uploaded CPython 3.10Windows x86-64

tlars-0.6.4-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.4-cp310-cp310-macosx_15_0_x86_64.whl (192.7 kB view details)

Uploaded CPython 3.10macOS 15.0+ x86-64

tlars-0.6.4-cp310-cp310-macosx_15_0_arm64.whl (11.8 MB view details)

Uploaded CPython 3.10macOS 15.0+ ARM64

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

Uploaded CPython 3.9Windows x86-64

tlars-0.6.4-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.4-cp39-cp39-macosx_15_0_x86_64.whl (192.8 kB view details)

Uploaded CPython 3.9macOS 15.0+ x86-64

tlars-0.6.4-cp39-cp39-macosx_15_0_arm64.whl (11.8 MB view details)

Uploaded CPython 3.9macOS 15.0+ ARM64

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

Uploaded CPython 3.8Windows x86-64

tlars-0.6.4-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.4-cp38-cp38-macosx_15_0_x86_64.whl (192.2 kB view details)

Uploaded CPython 3.8macOS 15.0+ x86-64

tlars-0.6.4-cp38-cp38-macosx_15_0_arm64.whl (11.8 MB view details)

Uploaded CPython 3.8macOS 15.0+ ARM64

File details

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

File metadata

  • Download URL: tlars-0.6.4.tar.gz
  • Upload date:
  • Size: 255.4 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.4.tar.gz
Algorithm Hash digest
SHA256 81071fa8d9f3379163f7e84d24b9ee1093f6d9ffdefae61e91e36897e167daa1
MD5 051862e6c437c06d0a29323d68c8adf4
BLAKE2b-256 6515362392175ea0df4dc7979d33d08ac2747eb61486d3344d38e8bea5588178

See more details on using hashes here.

File details

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

File metadata

  • Download URL: tlars-0.6.4-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.4-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 12fee4868bc916fa7da0d6533328e580a87387b86cd9323a616d911d3d86b86c
MD5 3f4ed877b517a24e30e930ccb4268d44
BLAKE2b-256 150188ad69ab289745a8e04ac5f48f061ddced75c01a83b20fadd34408cd660b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for tlars-0.6.4-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 a8deadb09dc0df7b363bdb48370d8d60a8c6f2c6f73b097e2456a2797c2b9f66
MD5 5b4e3c2de05135d2351af761d4ecffcd
BLAKE2b-256 c1328db9fa0226ebb38152b87047d4a9a1d40c7587a2eb95424b35091900e89b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for tlars-0.6.4-cp313-cp313-macosx_15_0_x86_64.whl
Algorithm Hash digest
SHA256 c3c2a29a0fb94b401f84fdbbe930ac79d1ec09241a6e068606faecadf247b2d0
MD5 26fdcabf125a2175ec66cc82c71ffa68
BLAKE2b-256 69cd2efdbeec71c105134cab08eaffb9db15c303c7793d10e3ea2db352eaed02

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for tlars-0.6.4-cp313-cp313-macosx_15_0_arm64.whl
Algorithm Hash digest
SHA256 69c4215f29b4a8d6fa2cb93c9b6402e52e6ec00fc0afe97d38f3a0a7a0fe4e6e
MD5 4edc2930aedc3c86423c533bb24cdfc8
BLAKE2b-256 4e3fff326ffb93bbc9100a09f0961a17c48037d3c095ace1fb35f5e1c08c58c0

See more details on using hashes here.

File details

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

File metadata

  • Download URL: tlars-0.6.4-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.4-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 22bc0aa143e38ba32ef61be7e8fd2bdf9caf6e63bebfbc2886ce61dc5b007ca7
MD5 b339e80b3b8f7c32565e02b3adc0fda9
BLAKE2b-256 2d9705450e787dfeb99e765db68f2a5a91dd1464583c05b5777c1c59541146a4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for tlars-0.6.4-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 498f633e415df850ecfc343f6ed456388a793ebb779e03775e3fed55fc1d0412
MD5 7d87f02b117d34b4aad53be9e029703e
BLAKE2b-256 c185b425f909dd21eb385b7109f13ad9f206466e2480bbc9f8997d26158aa28a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for tlars-0.6.4-cp312-cp312-macosx_15_0_x86_64.whl
Algorithm Hash digest
SHA256 ef90be29562ce1426537e2c1ac1bc40019ce026f7b038139704fc173657d5408
MD5 6cbc3d46761777f76cf22774c5e7e8ff
BLAKE2b-256 07eaf7075a0991b1df995b9fb3d1b5a1cee5ebdf93f3ef644647a516f1857f1e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for tlars-0.6.4-cp312-cp312-macosx_15_0_arm64.whl
Algorithm Hash digest
SHA256 72c8ce35e8646a27e2144c419587be2d5ddfe05520f7432af2c28fb2351a0749
MD5 68a892e90e84ebea92c1f7357c3f8e01
BLAKE2b-256 fc07c028e6da5bd235addd88c0c3ffb6651e94e6d140a3b8f22f7828b48289fc

See more details on using hashes here.

File details

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

File metadata

  • Download URL: tlars-0.6.4-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.4-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 667be70ecc8cf8a49b004a5a4ffeff31437b52cf4811bf52695661ea6cdec323
MD5 a10b0eb634f505561aa2c0972e75bf19
BLAKE2b-256 aa25ddfb15677b9f935c9ccb696e0f0255209006a05349b1f137d9ca4b424b0f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for tlars-0.6.4-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 c58f8280e7458867d25e0ba0fecfad01bbff6b6cd6aefc69f8514b91ec2924bd
MD5 f8b28c97f14edc92baf1bb201eb57c6c
BLAKE2b-256 07a50103decbcca690a48484b2380d597d749a6a833a78ace6f79f0564c08862

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for tlars-0.6.4-cp311-cp311-macosx_15_0_x86_64.whl
Algorithm Hash digest
SHA256 08983dacc079b0d954bd6dfa268292782a5f26afe64bbed4cca0a64508bc01a7
MD5 b94f64101d309691abc6ac14cb8acaa0
BLAKE2b-256 5870c440c4f694fcc1322fdb45bde78da033a7b6d4210440a04eec41bcc9afca

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for tlars-0.6.4-cp311-cp311-macosx_15_0_arm64.whl
Algorithm Hash digest
SHA256 232e97e7023c80683be450ac1c254755694dcf9d08dc5a92bca3dbd8e5ac764b
MD5 f9aed3711cdb35a3d5ad6c1d70cac634
BLAKE2b-256 846a1ec80ae9796243a40238bed658dfe1e185706e3bbd41da966b83e0d2665d

See more details on using hashes here.

File details

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

File metadata

  • Download URL: tlars-0.6.4-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.4-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 1dff736c923ef68ed9d7438d93b4d22c3b3c5f1bbee22ca411e0c7b228fd9800
MD5 d056737cc3601475a849ef286a20f730
BLAKE2b-256 97e468a56f00bc5c7a88979faa344dbe90b849f6fa15c65ec675bbd3e77529bc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for tlars-0.6.4-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 379a5edf55e5428b4ad834abe3a711d88f54fb6b04642d392c9e0352cd668d20
MD5 8a84f0e5d63b70a4d8c4b0ff9c2f57eb
BLAKE2b-256 31199bed281dfebbf95e1668f5934f04204ba4f7c9798ec9505b8bae6a65965b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for tlars-0.6.4-cp310-cp310-macosx_15_0_x86_64.whl
Algorithm Hash digest
SHA256 2fad61b3adab44fe86b1afa0c120e91f93406e3319ecf4f95429258c035fe077
MD5 1840c3d269d0ec3e4204f28aa3b09432
BLAKE2b-256 359bb04d67db43f241f442085e1b02dd202f690c7adb3ec4f166217c150e2ca4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for tlars-0.6.4-cp310-cp310-macosx_15_0_arm64.whl
Algorithm Hash digest
SHA256 fc7c332a37ea06949f03d98b9d25cf30cc2fb7be498a3c2f2bc1f5635f4c1e0e
MD5 1fb17f6dbce1d37cdfd2cdd849d85a07
BLAKE2b-256 37b1e54791629741db233104bca9fb9dcad4309003807bce6195aa055e6babc8

See more details on using hashes here.

File details

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

File metadata

  • Download URL: tlars-0.6.4-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.4-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 9f78a383aee007a7bfbe7ceb949bf2bbe6e51f75d476105f0c833ea4c83cfb97
MD5 1dc996eda08bc4b0b40bb39b002947d1
BLAKE2b-256 34ff5d9ac422ab1a95d4f8184c4d9b9719684805461d9de95db4437c09299134

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for tlars-0.6.4-cp39-cp39-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 8bdec056a6f145fdf92b81d6c648da4a46a33e96465fdb2356794138b9da32e4
MD5 218790654315e1957863ce790a201202
BLAKE2b-256 46c67c022ac4f327031e43bd178fc111ae91b69052678ef65961abc270ba827a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for tlars-0.6.4-cp39-cp39-macosx_15_0_x86_64.whl
Algorithm Hash digest
SHA256 de9603f7886b3322558f71255e4c8c8596513c8566fd22d92142916e9bf41108
MD5 47d0056e0f2f7de7920e147228cd35e5
BLAKE2b-256 c4a39213bb24fb443adbfe7d6868d850ea6d31b3d6e0544abc4539da142b94dc

See more details on using hashes here.

File details

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

File metadata

  • Download URL: tlars-0.6.4-cp39-cp39-macosx_15_0_arm64.whl
  • Upload date:
  • Size: 11.8 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.4-cp39-cp39-macosx_15_0_arm64.whl
Algorithm Hash digest
SHA256 0f850497fd434079757a02054bfee535df1e544d9c03cb8eca4dc39791c2a042
MD5 a62fcac5c5a8335cbe9a4c3f6dff4ade
BLAKE2b-256 2e2041a3641fbaf620a1f4149da52c0eaa738bc55a4d45bed248d19a9e094b9c

See more details on using hashes here.

File details

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

File metadata

  • Download URL: tlars-0.6.4-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.4-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 df0e381d4c0853ee7c4b9992013ca14124584323bf3fcb14429e01b76f2e2d27
MD5 27b315306ec72d83ff5b20b4554b500f
BLAKE2b-256 6c0cfde17aa614f433fc5b69a7f7d8964dde56fd07f27001e2fae4566414f754

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for tlars-0.6.4-cp38-cp38-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 ac5ba2d964aa66ac87995a31ed4fd3f9aee42940692497077cfde297635de220
MD5 508ff065b1f8ff7f04d6530760a8398a
BLAKE2b-256 7b3a20c4acf2673cd10a1841e184e4136cbb5438147574cdeb650d302fda8d74

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for tlars-0.6.4-cp38-cp38-macosx_15_0_x86_64.whl
Algorithm Hash digest
SHA256 51c5ffd32ab315c0f0597eb48d3cab5fe1b3d9bb2a4359fd67b4fbaf600d91d3
MD5 695b777746a7d6252b1ed434a756f2e7
BLAKE2b-256 ff63521d86669c4354e7fe20c7f3d67dfdae9f51fbf7b9dcc8a54cbe1ce29e45

See more details on using hashes here.

File details

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

File metadata

  • Download URL: tlars-0.6.4-cp38-cp38-macosx_15_0_arm64.whl
  • Upload date:
  • Size: 11.8 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.4-cp38-cp38-macosx_15_0_arm64.whl
Algorithm Hash digest
SHA256 ee00d720d271e4d44eed0743fff80661dfe3d84e4832fd0fab2d5d9fccd2e242
MD5 18cfd13ab3ea68f570d6ca8c6ff22a83
BLAKE2b-256 16be7070adc41587c28d8411344a604d479d43029728b4b0258014adf037b50c

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