Skip to main content

CAD-score-LT Python bindings via SWIG

Project description

CAD-score-LT Python bindings

The CAD-score-LT Python interface PyPI package is hosted at https://pypi.org/project/cadscorelt/.

Installation

Install with pip using this command:

pip install cadscorelt

Additionally, it is recommended to have the pandas library for data analysis available in the Python environment. This allows the CAD-score result tables to be converted to pandas data frames. The pandas library can also be installed using pip:

pip install pandas

CAD-score-LT also provides integration with some common libraries for reading macromolecular files - Biotite, Gemmi, Biopython, if those libraries are available in the Python environment. They can be installed via pip:

pip install biotite
pip install gemmi
pip install biopython

Usage examples

Basic example

Below is an example script that calculates CAD-scores for inter-chain residue-residue contact areas, produces a table of global scores, converts that table to pandas data frame, and preints the top rows of the data frame:

import cadscorelt

# init a CAD-score computation object
css = cadscorelt.CADScoreComputer.init(subselect_contacts="[-inter-chain]")

# add a target structure
css.add_target_structure_from_file("./input/data/protein_homodimer1/target.pdb")

# add a target structure
css.add_model_structure_from_file("./input/data/protein_homodimer1/model1.pdb")
css.add_model_structure_from_file("./input/data/protein_homodimer1/model2.pdb")

# get a list of global scores and convert it to pandas data frame
df_global_scores_residue_residue = css.get_all_cadscores_residue_residue_summarized_globally().to_pandas()

# print the first rows of the data frame
cadscorelt.print_head_of_pandas_data_frame(df_global_scores_residue_residue)

Below is an example of the printed output:

target_name model_name  CAD_score  F1_of_areas  target_area  model_area    TP_area    FP_area    FN_area renamed_chains
     target     model2   0.621922     0.774894  1047.807935  941.514533 784.870893 193.071031 262.937041              .
     target     model1   0.507319     0.639249  1047.807935  792.834440 648.098138 331.779276 399.709796              .

Basic example using different structure readers

Below is an example script that is similar to the previous example script, but it shows how to input structures from different sources:

import cadscorelt

# init a CAD-score computation object
csc = cadscorelt.CADScoreComputer.init(subselect_contacts="[-inter-chain]")

# add a target structure read by Biotite
import biotite.structure.io
structure_target = biotite.structure.io.load_structure("./input/data/protein_homodimer1/target.pdb")
csc.add_target_structure_from_biotite(structure_target, "target")

# add a model structure read by Gemmi 
import gemmi
structure_model1 = gemmi.read_structure("./input/data/protein_homodimer1/model1.pdb")
csc.add_model_structure_from_gemmi(structure_model1[0], "model1")

# add a model structure read by Biopython 
import Bio.PDB
parser = Bio.PDB.PDBParser(QUIET=True)
structure_model2 = parser.get_structure("id", "./input/data/protein_homodimer1/model2.pdb").get_atoms()
csc.add_model_structure_from_biopython(structure_model2, "model2")

# get a list of global scores and convert it to pandas data frame
df_global_scores_residue_residue = csc.get_all_cadscores_residue_residue_summarized_globally().to_pandas()

# print the first rows of the data frame
cadscorelt.print_head_of_pandas_data_frame(df_global_scores_residue_residue)

Below is an example of the printed output:

target_name model_name  CAD_score  F1_of_areas  target_area  model_area    TP_area    FP_area    FN_area renamed_chains
     target     model2   0.621922     0.774894  1047.808013  941.514579 784.870926 193.071041 262.937087              .
     target     model1   0.507319     0.639249  1047.808013  792.834440 648.098141 331.779274 399.709873              .

Advanced example

Below is an example script that that includes:

  • residue-residue contact scoring (enabled by default);
  • atom-atom contact scoring;
  • automatic chain remapping to maximize grobal similarity;
  • recording local scores.
import cadscorelt
from pathlib import Path

# to make comparison more strict, globally enable inclusion of residue names into atom and residue identifiers
cadscorelt.enable_considering_residue_names()

# init a CAD-score computation object, enable atom-atom contact scoring, enable automatic chain remapping to maximize grobal similarity, enable recording local scores
csc = cadscorelt.CADScoreComputer.init(subselect_contacts="[-inter-chain]", score_atom_atom_contacts=True, remap_chains=True, record_local_scores=True)

# set reference sequences and stoichiometry for automatic residue renumbering and chain namne assignment
csc.set_reference_sequences_from_file("./input/data/protein_heteromer1/sequences.fasta")
csc.set_reference_stoichiometry([2, 2, 2])

# input structures from all the files in a directory
input_directory = Path("./input/data/protein_heteromer1/structures")
for file_path in input_directory.iterdir():
    if file_path.is_file():
        csc.add_structure_from_file(str(file_path))

# get the table of structure decriptors and print its top rows
df_structure_descriptors = csc.get_all_structure_descriptors().to_pandas()
print("")
print(" # Table of structure decriptors:")
print("")
cadscorelt.print_head_of_pandas_data_frame(df_structure_descriptors)
print("")

# get the table of globals scores based on residue-residue contacts, print top rows
df_global_scores_residue_residue = csc.get_all_cadscores_residue_residue_summarized_globally().to_pandas()
print("")
print(" # Table of globals scores based on residue-residue contacts:")
print("")
cadscorelt.print_head_of_pandas_data_frame(df_global_scores_residue_residue)
print("")

# get the table of globals scores based on atom-atom contacts, print top rows
df_global_scores_atom_atom = csc.get_all_cadscores_atom_atom_summarized_globally().to_pandas()
print("")
print(" # Table of globals scores based on atom-atom contacts:")
print("")
cadscorelt.print_head_of_pandas_data_frame(df_global_scores_atom_atom)
print("")

# set placeholder variable for structure names
target_name="cf_woTemplates_model_3_multimer_v3_pred_47"
model_name="cf_woTemplates_model_2_multimer_v3_pred_26"

# get the table of per-residue scores based on residue-residue contacts, print top rows
df_local_scores_per_residue = csc.get_local_cadscores_residue_residue_summarized_per_residue(target_name, model_name).to_pandas()
print("")
print(" # Table of per-residue scores based on residue-residue contacts:")
print("")
cadscorelt.print_head_of_pandas_data_frame(df_local_scores_per_residue)
print("")

# get the table of scores for every residue-residue contact, print top rows
df_local_scores_residue_residue = csc.get_local_cadscores_residue_residue(target_name, model_name).to_pandas()
print("")
print(" # Table of scores for every residue-residue contact (CAD-score values of -1 idicate that the contact was not present in the target structure):")
print("")
cadscorelt.print_head_of_pandas_data_frame(df_local_scores_residue_residue)
print("")

# get the table of per-atom scores based on atom-atom contacts, print top rows
df_local_scores_per_atom = csc.get_local_cadscores_atom_atom_summarized_per_atom(target_name, model_name).to_pandas()
print("")
print(" # Table of per-atom scores based on atom-atom contacts (CAD-score values of -1 idicate that the atom had no relevant contacts in the target structure):")
print("")
cadscorelt.print_head_of_pandas_data_frame(df_local_scores_per_atom)
print("")

# get the table of scores for every atom-atom contact, print top rows
df_local_scores_atom_atom = csc.get_local_cadscores_atom_atom(target_name, model_name).to_pandas()
print("")
print(" # Table of scores for every atom-atom contact (CAD-score values of -1 idicate that the contact was not present in the target structure):")
print("")
cadscorelt.print_head_of_pandas_data_frame(df_local_scores_atom_atom)
print("")

Below is an example of the printed output:


 # Table of structure decriptors:

                                                    name  is_target  is_model          renamed_chains reference_alignment
                   afm_basic_model_5_multimer_v1_pred_35       True      True B=A,C=D,D=B,E=E,F=C,G=F           available
            afm_dropout_full_model_1_multimer_v2_pred_42       True      True B=A,C=D,D=B,E=E,F=C,G=F           available
            afm_dropout_full_model_2_multimer_v1_pred_65       True      True B=A,C=D,D=B,E=E,F=C,G=F           available
            afm_dropout_full_model_3_multimer_v3_pred_64       True      True B=A,C=D,D=B,E=E,F=C,G=F           available
            afm_dropout_full_model_3_multimer_v3_pred_66       True      True B=A,C=D,D=B,E=E,F=C,G=F           available
 afm_dropout_full_woTemplates_model_3_multimer_v1_pred_4       True      True B=A,C=D,D=B,E=E,F=C,G=F           available
afm_dropout_full_woTemplates_model_3_multimer_v1_pred_45       True      True B=A,C=D,D=B,E=E,F=C,G=F           available
afm_dropout_full_woTemplates_model_4_multimer_v3_pred_50       True      True B=A,C=D,D=B,E=E,F=C,G=F           available
              cf_woTemplates_model_2_multimer_v3_pred_26       True      True A=A,B=D,C=B,D=E,E=C,F=F           available
              cf_woTemplates_model_3_multimer_v3_pred_47       True      True A=A,B=D,C=B,D=E,E=C,F=F           available


 # Table of globals scores based on residue-residue contacts:

                                 target_name                                               model_name  CAD_score  F1_of_areas  target_area  model_area     TP_area     FP_area     FN_area          renamed_chains
afm_dropout_full_model_1_multimer_v2_pred_42 afm_dropout_full_woTemplates_model_4_multimer_v3_pred_50   0.847662     0.701359  3970.007175 3836.593118 3582.890995 2664.103761  387.116180 A=A;B=B;C=F;D=D;E=E;F=C
  cf_woTemplates_model_3_multimer_v3_pred_47               cf_woTemplates_model_2_multimer_v3_pred_26   0.704688     0.780891  7483.973156 6871.838277 5912.094425 1745.848929 1571.878730 A=D;B=E;C=F;D=A;E=B;F=C
  cf_woTemplates_model_2_multimer_v3_pred_26               cf_woTemplates_model_3_multimer_v3_pred_47   0.699040     0.781187  7657.943354 6855.599895 5914.330867 1569.642289 1743.612487 A=A;B=B;C=C;D=D;E=E;F=F
afm_dropout_full_model_3_multimer_v3_pred_66             afm_dropout_full_model_3_multimer_v3_pred_64   0.657842     0.675283  7313.203511 5519.154809 5124.561234 2739.763621 2188.642277 A=A;B=B;C=C;D=D;E=E;F=F
afm_dropout_full_model_3_multimer_v3_pred_64             afm_dropout_full_model_3_multimer_v3_pred_66   0.620764     0.675283  7864.324855 5420.088717 5124.561234 2188.642277 2739.763621 A=A;B=B;C=C;D=D;E=E;F=F
afm_dropout_full_model_3_multimer_v3_pred_66               cf_woTemplates_model_2_multimer_v3_pred_26   0.575097     0.645935  7313.203511 5696.007986 4835.195167 2822.748187 2478.008344 A=A;B=E;C=C;D=D;E=B;F=F
  cf_woTemplates_model_2_multimer_v3_pred_26             afm_dropout_full_model_3_multimer_v3_pred_66   0.573808     0.645935  7657.943354 5446.078054 4835.195167 2478.008344 2822.748187 A=A;B=E;C=C;D=D;E=B;F=F
afm_dropout_full_model_3_multimer_v3_pred_66               cf_woTemplates_model_3_multimer_v3_pred_47   0.566239     0.627281  7313.203511 5493.415167 4640.996876 2842.976280 2672.206635 A=D;B=B;C=F;D=A;E=E;F=C
  cf_woTemplates_model_3_multimer_v3_pred_47             afm_dropout_full_model_3_multimer_v3_pred_66   0.561418     0.627332  7483.973156 5252.699687 4641.373085 2671.830426 2842.600071 A=A;B=E;C=C;D=D;E=B;F=F
  cf_woTemplates_model_2_multimer_v3_pred_26             afm_dropout_full_model_3_multimer_v3_pred_64   0.550970     0.603414  7657.943354 5255.694013 4683.177891 3181.146964 2974.765463 A=A;B=E;C=C;D=D;E=B;F=F


 # Table of globals scores based on atom-atom contacts:

                                 target_name                                               model_name  CAD_score  F1_of_areas  target_area  model_area     TP_area     FP_area     FN_area          renamed_chains
afm_dropout_full_model_1_multimer_v2_pred_42 afm_dropout_full_woTemplates_model_4_multimer_v3_pred_50   0.694870     0.612790  3970.007175 3631.663716 3130.437751 3116.557004  839.569423 A=A;B=B;C=F;D=D;E=E;F=C
afm_dropout_full_model_3_multimer_v3_pred_66             afm_dropout_full_model_3_multimer_v3_pred_64   0.600300     0.630986  7313.203511 5287.148112 4788.403033 3075.921822 2524.800478 A=A;B=B;C=C;D=D;E=E;F=F
afm_dropout_full_model_3_multimer_v3_pred_64             afm_dropout_full_model_3_multimer_v3_pred_66   0.566073     0.630986  7864.324855 5222.053418 4788.403033 2524.800478 3075.921822 A=A;B=B;C=C;D=D;E=E;F=F
  cf_woTemplates_model_3_multimer_v3_pred_47               cf_woTemplates_model_2_multimer_v3_pred_26   0.559002     0.635331  7483.973156 5931.794420 4810.063036 2847.880319 2673.910120 A=D;B=E;C=F;D=A;E=B;F=C
  cf_woTemplates_model_2_multimer_v3_pred_26               cf_woTemplates_model_3_multimer_v3_pred_47   0.550378     0.635281  7657.943354 5972.073003 4809.683681 2674.289475 2848.259673 A=A;B=B;C=C;D=D;E=E;F=F
afm_dropout_full_model_3_multimer_v3_pred_66               cf_woTemplates_model_2_multimer_v3_pred_26   0.455307     0.527325  7313.203511 5000.847832 3947.330056 3710.613299 3365.873455 A=A;B=E;C=C;D=D;E=B;F=F
  cf_woTemplates_model_2_multimer_v3_pred_26             afm_dropout_full_model_3_multimer_v3_pred_66   0.446372     0.527325  7657.943354 4761.917277 3947.330056 3365.873455 3710.613299 A=A;B=E;C=C;D=D;E=B;F=F
  cf_woTemplates_model_2_multimer_v3_pred_26             afm_dropout_full_model_3_multimer_v3_pred_64   0.445539     0.506868  7657.943354 4677.771912 3933.871243 3930.453612 3724.072111 A=A;B=E;C=C;D=D;E=B;F=F
  cf_woTemplates_model_3_multimer_v3_pred_47             afm_dropout_full_model_3_multimer_v3_pred_64   0.439929     0.489985  7483.973156 4453.132335 3760.215370 4104.109485 3723.757786 A=D;B=B;C=F;D=A;E=E;F=C
afm_dropout_full_model_3_multimer_v3_pred_66               cf_woTemplates_model_3_multimer_v3_pred_47   0.439601     0.499394  7313.203511 4526.494827 3694.810365 3789.162791 3618.393146 A=D;B=B;C=F;D=A;E=E;F=C


 # Table of per-residue scores based on residue-residue contacts:

ID_chain  ID_rnum ID_icode  CAD_score  F1_of_areas  target_area  model_area   TP_area   FP_area   FN_area
       A        4        .   0.000000     0.000000     5.723360    0.000000  0.000000 14.123374  5.723360
       A        6        .   0.000000     0.504191     7.178632   14.612032  7.160650 14.065207  0.017982
       A       15        .   0.000000     0.000000     1.346514    0.000000  0.000000  2.051384  1.346514
       A       17        .   0.175261     0.298250    25.529513    4.474315  4.474315  0.000000 21.055197
       A       18        .   0.378808     0.293841    26.519188   10.045678 10.045678 31.810069 16.473510
       A       19        .   0.715554     0.783253    69.951082   79.263636 63.086289 28.050569  6.864793
       A       20        .   0.228410     0.399188    97.824322   75.742435 35.484263 44.473835 62.340058
       A       21        .   0.892938     0.923627    55.431386   54.675708 52.086259  5.268696  3.345127
       A       22        .   0.000000     0.277170     0.401577    2.496120  0.401577  2.094543  0.000000
       A       23        .   0.406606     0.631095    34.355429   20.906229 17.437673  3.468556 16.917756


 # Table of scores for every residue-residue contact (CAD-score values of -1 idicate that the contact was not present in the target structure):

ID1_chain  ID1_rnum ID1_icode ID2_chain  ID2_rnum ID2_icode  CAD_score  F1_of_areas  target_area  model_area  TP_area   FP_area   FN_area
        A         4         .         D         6         .   0.000000     0.000000     0.043450    0.000000 0.000000  0.000000  0.043450
        A         4         .         D        61         .   0.000000     0.000000     5.679910    0.000000 0.000000  0.000000  5.679910
        A         4         .         D       206         .  -1.000000     0.000000     0.000000    0.000000 0.000000 14.123374  0.000000
        A         6         .         D         4         .   0.000000     0.000000     0.017982    0.000000 0.000000  0.000000  0.017982
        A         6         .         D        65         .   0.000000     0.657765     7.160650   14.612032 7.160650  7.451382  0.000000
        A         6         .         D       208         .  -1.000000     0.000000     0.000000    0.000000 0.000000  6.613825  0.000000
        A        15         .         C        31         .  -1.000000     0.000000     0.000000    0.000000 0.000000  2.051384  0.000000
        A        15         .         D       137         .   0.000000     0.000000     1.346514    0.000000 0.000000  0.000000  1.346514
        A        17         .         C        31         .   0.086301     0.158889    16.995494    1.466721 1.466721  0.000000 15.528773
        A        17         .         C        32         .   0.557286     0.715714     5.396860    3.007595 3.007595  0.000000  2.389265


 # Table of per-atom scores based on atom-atom contacts (CAD-score values of -1 idicate that the atom had no relevant contacts in the target structure):

ID_chain  ID_rnum ID_icode ID_atom_name  CAD_score  F1_of_areas  target_area  model_area  TP_area   FP_area   FN_area
       A        4        .           CD  -1.000000     0.000000     0.000000    0.000000 0.000000  0.589435  0.000000
       A        4        .           CE  -1.000000     0.000000     0.000000    0.000000 0.000000  6.218582  0.000000
       A        4        .           CG  -1.000000     0.000000     0.000000    0.000000 0.000000  0.040717  0.000000
       A        4        .           NZ   0.000000     0.000000     5.723360    0.000000 0.000000  7.274641  5.723360
       A        6        .           CB  -1.000000     0.000000     0.000000    0.000000 0.000000  0.005776  0.000000
       A        6        .          CG1  -1.000000     0.000000     0.000000    0.000000 0.000000 10.924598  0.000000
       A        6        .          CG2   0.315134     0.527725     7.178632    8.956361 4.610766  5.684717  2.567866
       A       15        .           CB  -1.000000     0.000000     0.000000    0.000000 0.000000  1.960049  0.000000
       A       15        .            O   0.000000     0.000000     1.346514    0.000000 0.000000  0.091335  1.346514
       A       17        .           CB   0.057452     0.097769    25.529513    1.466721 1.466721  3.007595 24.062792


 # Table of scores for every atom-atom contact (CAD-score values of -1 idicate that the contact was not present in the target structure):

ID1_chain  ID1_rnum ID1_icode ID1_atom_name ID2_chain  ID2_rnum ID2_icode ID2_atom_name  CAD_score  F1_of_areas  target_area  model_area  TP_area  FP_area  FN_area
        A         4         .            CD         D       206         .           OE1       -1.0          0.0     0.000000         0.0      0.0 0.589435 0.000000
        A         4         .            CE         D       206         .           NE2       -1.0          0.0     0.000000         0.0      0.0 1.398847 0.000000
        A         4         .            CE         D       206         .           OE1       -1.0          0.0     0.000000         0.0      0.0 4.819735 0.000000
        A         4         .            CG         D       206         .           OE1       -1.0          0.0     0.000000         0.0      0.0 0.040717 0.000000
        A         4         .            NZ         D         6         .           CG2        0.0          0.0     0.043450         0.0      0.0 0.000000 0.043450
        A         4         .            NZ         D        61         .            CZ        0.0          0.0     0.413695         0.0      0.0 0.000000 0.413695
        A         4         .            NZ         D        61         .            OH        0.0          0.0     5.266215         0.0      0.0 0.000000 5.266215
        A         4         .            NZ         D       206         .            CD       -1.0          0.0     0.000000         0.0      0.0 0.008074 0.000000
        A         4         .            NZ         D       206         .           NE2       -1.0          0.0     0.000000         0.0      0.0 5.372747 0.000000
        A         4         .            NZ         D       206         .           OE1       -1.0          0.0     0.000000         0.0      0.0 1.893820 0.000000

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

cadscorelt-0.9.159.tar.gz (221.8 kB view details)

Uploaded Source

Built Distributions

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

cadscorelt-0.9.159-cp313-cp313-win_amd64.whl (510.0 kB view details)

Uploaded CPython 3.13Windows x86-64

cadscorelt-0.9.159-cp313-cp313-win32.whl (408.8 kB view details)

Uploaded CPython 3.13Windows x86

cadscorelt-0.9.159-cp313-cp313-musllinux_1_2_x86_64.whl (8.0 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

cadscorelt-0.9.159-cp313-cp313-musllinux_1_2_i686.whl (7.9 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ i686

cadscorelt-0.9.159-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (7.2 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

cadscorelt-0.9.159-cp313-cp313-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl (6.8 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.12+ i686manylinux: glibc 2.17+ i686

cadscorelt-0.9.159-cp313-cp313-macosx_11_0_arm64.whl (576.7 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

cadscorelt-0.9.159-cp313-cp313-macosx_10_15_x86_64.whl (635.9 kB view details)

Uploaded CPython 3.13macOS 10.15+ x86-64

cadscorelt-0.9.159-cp313-cp313-macosx_10_15_universal2.whl (1.2 MB view details)

Uploaded CPython 3.13macOS 10.15+ universal2 (ARM64, x86-64)

cadscorelt-0.9.159-cp312-cp312-win_amd64.whl (510.0 kB view details)

Uploaded CPython 3.12Windows x86-64

cadscorelt-0.9.159-cp312-cp312-win32.whl (414.0 kB view details)

Uploaded CPython 3.12Windows x86

cadscorelt-0.9.159-cp312-cp312-musllinux_1_2_x86_64.whl (8.0 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

cadscorelt-0.9.159-cp312-cp312-musllinux_1_2_i686.whl (7.9 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ i686

cadscorelt-0.9.159-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (7.2 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

cadscorelt-0.9.159-cp312-cp312-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl (6.8 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.12+ i686manylinux: glibc 2.17+ i686

cadscorelt-0.9.159-cp312-cp312-macosx_11_0_arm64.whl (576.7 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

cadscorelt-0.9.159-cp312-cp312-macosx_10_15_x86_64.whl (635.9 kB view details)

Uploaded CPython 3.12macOS 10.15+ x86-64

cadscorelt-0.9.159-cp312-cp312-macosx_10_15_universal2.whl (1.2 MB view details)

Uploaded CPython 3.12macOS 10.15+ universal2 (ARM64, x86-64)

cadscorelt-0.9.159-cp311-cp311-win_amd64.whl (509.4 kB view details)

Uploaded CPython 3.11Windows x86-64

cadscorelt-0.9.159-cp311-cp311-win32.whl (413.4 kB view details)

Uploaded CPython 3.11Windows x86

cadscorelt-0.9.159-cp311-cp311-musllinux_1_2_x86_64.whl (7.9 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

cadscorelt-0.9.159-cp311-cp311-musllinux_1_2_i686.whl (7.8 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ i686

cadscorelt-0.9.159-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (7.2 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

cadscorelt-0.9.159-cp311-cp311-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl (6.8 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.12+ i686manylinux: glibc 2.17+ i686

cadscorelt-0.9.159-cp311-cp311-macosx_11_0_arm64.whl (576.0 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

cadscorelt-0.9.159-cp311-cp311-macosx_10_15_x86_64.whl (630.9 kB view details)

Uploaded CPython 3.11macOS 10.15+ x86-64

cadscorelt-0.9.159-cp311-cp311-macosx_10_15_universal2.whl (1.2 MB view details)

Uploaded CPython 3.11macOS 10.15+ universal2 (ARM64, x86-64)

cadscorelt-0.9.159-cp310-cp310-win_amd64.whl (509.4 kB view details)

Uploaded CPython 3.10Windows x86-64

cadscorelt-0.9.159-cp310-cp310-win32.whl (413.4 kB view details)

Uploaded CPython 3.10Windows x86

cadscorelt-0.9.159-cp310-cp310-musllinux_1_2_x86_64.whl (7.9 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

cadscorelt-0.9.159-cp310-cp310-musllinux_1_2_i686.whl (7.8 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ i686

cadscorelt-0.9.159-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (7.2 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

cadscorelt-0.9.159-cp310-cp310-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl (6.8 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.12+ i686manylinux: glibc 2.17+ i686

cadscorelt-0.9.159-cp310-cp310-macosx_11_0_arm64.whl (576.0 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

cadscorelt-0.9.159-cp310-cp310-macosx_10_15_x86_64.whl (630.9 kB view details)

Uploaded CPython 3.10macOS 10.15+ x86-64

cadscorelt-0.9.159-cp310-cp310-macosx_10_15_universal2.whl (1.2 MB view details)

Uploaded CPython 3.10macOS 10.15+ universal2 (ARM64, x86-64)

cadscorelt-0.9.159-cp39-cp39-win_amd64.whl (509.4 kB view details)

Uploaded CPython 3.9Windows x86-64

cadscorelt-0.9.159-cp39-cp39-win32.whl (413.3 kB view details)

Uploaded CPython 3.9Windows x86

cadscorelt-0.9.159-cp39-cp39-musllinux_1_2_x86_64.whl (7.9 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ x86-64

cadscorelt-0.9.159-cp39-cp39-musllinux_1_2_i686.whl (7.8 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ i686

cadscorelt-0.9.159-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (7.2 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

cadscorelt-0.9.159-cp39-cp39-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl (6.8 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.12+ i686manylinux: glibc 2.17+ i686

cadscorelt-0.9.159-cp39-cp39-macosx_11_0_arm64.whl (576.0 kB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

cadscorelt-0.9.159-cp39-cp39-macosx_10_15_x86_64.whl (630.9 kB view details)

Uploaded CPython 3.9macOS 10.15+ x86-64

cadscorelt-0.9.159-cp39-cp39-macosx_10_15_universal2.whl (1.2 MB view details)

Uploaded CPython 3.9macOS 10.15+ universal2 (ARM64, x86-64)

cadscorelt-0.9.159-cp38-cp38-win_amd64.whl (509.3 kB view details)

Uploaded CPython 3.8Windows x86-64

cadscorelt-0.9.159-cp38-cp38-win32.whl (413.1 kB view details)

Uploaded CPython 3.8Windows x86

cadscorelt-0.9.159-cp38-cp38-musllinux_1_2_x86_64.whl (7.9 MB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ x86-64

cadscorelt-0.9.159-cp38-cp38-musllinux_1_2_i686.whl (7.8 MB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ i686

cadscorelt-0.9.159-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (7.2 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ x86-64

cadscorelt-0.9.159-cp38-cp38-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl (6.8 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.12+ i686manylinux: glibc 2.17+ i686

cadscorelt-0.9.159-cp38-cp38-macosx_11_0_arm64.whl (575.7 kB view details)

Uploaded CPython 3.8macOS 11.0+ ARM64

cadscorelt-0.9.159-cp38-cp38-macosx_10_15_x86_64.whl (630.5 kB view details)

Uploaded CPython 3.8macOS 10.15+ x86-64

cadscorelt-0.9.159-cp38-cp38-macosx_10_15_universal2.whl (1.2 MB view details)

Uploaded CPython 3.8macOS 10.15+ universal2 (ARM64, x86-64)

cadscorelt-0.9.159-cp37-cp37m-win_amd64.whl (509.0 kB view details)

Uploaded CPython 3.7mWindows x86-64

cadscorelt-0.9.159-cp37-cp37m-win32.whl (413.3 kB view details)

Uploaded CPython 3.7mWindows x86

cadscorelt-0.9.159-cp37-cp37m-musllinux_1_2_x86_64.whl (8.0 MB view details)

Uploaded CPython 3.7mmusllinux: musl 1.2+ x86-64

cadscorelt-0.9.159-cp37-cp37m-musllinux_1_2_i686.whl (7.9 MB view details)

Uploaded CPython 3.7mmusllinux: musl 1.2+ i686

cadscorelt-0.9.159-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (7.2 MB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.17+ x86-64

cadscorelt-0.9.159-cp37-cp37m-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl (6.9 MB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.12+ i686manylinux: glibc 2.17+ i686

cadscorelt-0.9.159-cp37-cp37m-macosx_10_15_x86_64.whl (629.7 kB view details)

Uploaded CPython 3.7mmacOS 10.15+ x86-64

cadscorelt-0.9.159-cp36-cp36m-win_amd64.whl (509.0 kB view details)

Uploaded CPython 3.6mWindows x86-64

cadscorelt-0.9.159-cp36-cp36m-win32.whl (413.3 kB view details)

Uploaded CPython 3.6mWindows x86

cadscorelt-0.9.159-cp36-cp36m-musllinux_1_2_x86_64.whl (8.0 MB view details)

Uploaded CPython 3.6mmusllinux: musl 1.2+ x86-64

cadscorelt-0.9.159-cp36-cp36m-musllinux_1_2_i686.whl (7.9 MB view details)

Uploaded CPython 3.6mmusllinux: musl 1.2+ i686

cadscorelt-0.9.159-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (7.2 MB view details)

Uploaded CPython 3.6mmanylinux: glibc 2.17+ x86-64

cadscorelt-0.9.159-cp36-cp36m-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl (6.9 MB view details)

Uploaded CPython 3.6mmanylinux: glibc 2.12+ i686manylinux: glibc 2.17+ i686

cadscorelt-0.9.159-cp36-cp36m-macosx_10_15_x86_64.whl (629.5 kB view details)

Uploaded CPython 3.6mmacOS 10.15+ x86-64

File details

Details for the file cadscorelt-0.9.159.tar.gz.

File metadata

  • Download URL: cadscorelt-0.9.159.tar.gz
  • Upload date:
  • Size: 221.8 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.12.3

File hashes

Hashes for cadscorelt-0.9.159.tar.gz
Algorithm Hash digest
SHA256 f85afe57ff05870520b0f7079b0a0542d809cc08238fdcdff884f1a2c88ae999
MD5 32f81a2268f2fa1e6caad3538bcd5664
BLAKE2b-256 644bbd56fdb94ccc132d287d13a6a00e34451226282599eefb3918abe3d38d8e

See more details on using hashes here.

File details

Details for the file cadscorelt-0.9.159-cp313-cp313-win_amd64.whl.

File metadata

File hashes

Hashes for cadscorelt-0.9.159-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 752050b4612e2c6e1a4f576e3bd9290e0c56ab69ec685dfc6581d785eba5d490
MD5 6d603a4daeef8215e726ddea7bd940f9
BLAKE2b-256 830ce67e802bcc91e1353481f8582cf63eea36ee454fdd347fc45bb11257fb95

See more details on using hashes here.

File details

Details for the file cadscorelt-0.9.159-cp313-cp313-win32.whl.

File metadata

  • Download URL: cadscorelt-0.9.159-cp313-cp313-win32.whl
  • Upload date:
  • Size: 408.8 kB
  • Tags: CPython 3.13, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.12.3

File hashes

Hashes for cadscorelt-0.9.159-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 511b5b44cf314c6c8671b847dbbf376ea6ce79c74a4878ce8f3ecd54b384bf6f
MD5 25147427fa89133e15520055ebff118c
BLAKE2b-256 ff14cd6ef9b32ee297785201abe17e04d915fd058abc97f0584ded3ca0693a69

See more details on using hashes here.

File details

Details for the file cadscorelt-0.9.159-cp313-cp313-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for cadscorelt-0.9.159-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 426c6d9a51986685394784b940c3f517f9f7f15a962a906c4df2932436692f7f
MD5 469373478688d941ac69ec100962d2b9
BLAKE2b-256 14f4cdabdd9b8202dc4f8bccb57e6235311df8b5736693aa44a236ee93311c7d

See more details on using hashes here.

File details

Details for the file cadscorelt-0.9.159-cp313-cp313-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for cadscorelt-0.9.159-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 b38977071eaa3d038e1fc513ea1f0d730b70579a6a194fa2f4fed31971949169
MD5 0fc503cefad3f96d4fed42911fead15d
BLAKE2b-256 b87578ca7ca11e887f3e674e25e5c17ab6a1a07706593c8a091701f2dfde27cf

See more details on using hashes here.

File details

Details for the file cadscorelt-0.9.159-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for cadscorelt-0.9.159-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 33645d1bf83e42ae48b433a459cef119b35f45798de9d1fdf21ab2dbe51f3b73
MD5 5d340f82a2389966d0bb364b970ca634
BLAKE2b-256 1bb5bb30cf0534a89e6e6fd93e8679aee65edd17c1b0f3cd045c550c880b06d4

See more details on using hashes here.

File details

Details for the file cadscorelt-0.9.159-cp313-cp313-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for cadscorelt-0.9.159-cp313-cp313-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 8faf105bd74e43e759d8c3be4d59aca6f977dcab65b844f2c9f2f4ab85c64cec
MD5 a0c543ec8cc984fcd9ae544948a827bd
BLAKE2b-256 7b10b26711958399a12b899dfffb25c64a852ea7de012867916758ca9f0c6e77

See more details on using hashes here.

File details

Details for the file cadscorelt-0.9.159-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for cadscorelt-0.9.159-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 630b9577369bda164ad33ab21b505ba4a173199c8ec1e1cee9e579823037c79c
MD5 315ef7851c23a0d6f38613e7d8d6e727
BLAKE2b-256 0f001399c8744160ae7b86787331bc7c6ba31a29ad359e35c78b9892b986aa45

See more details on using hashes here.

File details

Details for the file cadscorelt-0.9.159-cp313-cp313-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for cadscorelt-0.9.159-cp313-cp313-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 edd1b46ed067de4e2a9728dc4336f88681eac64314146cd7a9ecc48a295c72be
MD5 29479075ec4feea103e03e4182e1367a
BLAKE2b-256 9c12d21ffbc2a7ab1b9d83ee15f49ebdd831f056e67a83227885b110fb7b0e98

See more details on using hashes here.

File details

Details for the file cadscorelt-0.9.159-cp313-cp313-macosx_10_15_universal2.whl.

File metadata

File hashes

Hashes for cadscorelt-0.9.159-cp313-cp313-macosx_10_15_universal2.whl
Algorithm Hash digest
SHA256 aedfa82b769cb550b2bc3c4d99789e2f9af4823151d6fa6ef4ac38d2c92885a7
MD5 c8247adc90d8e44f158726dba72f0850
BLAKE2b-256 3b80188af32431580ad6c9fd97519c8bcf445f63157950520ce695723e3e7dea

See more details on using hashes here.

File details

Details for the file cadscorelt-0.9.159-cp312-cp312-win_amd64.whl.

File metadata

File hashes

Hashes for cadscorelt-0.9.159-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 d62d740370b65159df9dd270a04326ded7393ff4502a8df264f1d3e8bff384cf
MD5 7922dade4188f215d901b9dcdeea31e1
BLAKE2b-256 83e0ff896939c1ae04d7be6bf7103d24a1831f4c1b7147e75bebf9967c37c97c

See more details on using hashes here.

File details

Details for the file cadscorelt-0.9.159-cp312-cp312-win32.whl.

File metadata

  • Download URL: cadscorelt-0.9.159-cp312-cp312-win32.whl
  • Upload date:
  • Size: 414.0 kB
  • Tags: CPython 3.12, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.12.3

File hashes

Hashes for cadscorelt-0.9.159-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 7dcdaf4a1f013156f5a72551f1b2e43deb75853f78b807fc342f85fa2f2ea677
MD5 d85a37260418ca928f456df4c5a2e743
BLAKE2b-256 8b1021a653c94a03c3c72ba61c62a4ebb5f6866c6316d640f53d14586fc0e503

See more details on using hashes here.

File details

Details for the file cadscorelt-0.9.159-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for cadscorelt-0.9.159-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 1144ffa244b02e5ab392515e9886d9a4618f6b7c77800b4e69f759f2df37f228
MD5 ea7318bccc392fc9a2f6fa278c99d790
BLAKE2b-256 e17a66bfd9ae3b2eef2d8410ed31b04f76547d94bf799dff1268241a7383c2a3

See more details on using hashes here.

File details

Details for the file cadscorelt-0.9.159-cp312-cp312-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for cadscorelt-0.9.159-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 0a6988ba3791a57c1c299523297c7f7f9fa816d4aa48f0afe6409de06b3d7257
MD5 d822f8190b108354df1333ac037c6c6b
BLAKE2b-256 bb88f2f60ed5d649f32ff92a02890172cedf4027e78629370884174b2f26f8fa

See more details on using hashes here.

File details

Details for the file cadscorelt-0.9.159-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for cadscorelt-0.9.159-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 59e126907116edaa71697ff3fb749803f8d7c7b7e737da8298cf7741a083f3ba
MD5 f4e5796f8b20d4c9b29110ca92058b3c
BLAKE2b-256 f36a5db90fe789d64152613c31fce286fe72f3b0316777ecdaa3924b5577460d

See more details on using hashes here.

File details

Details for the file cadscorelt-0.9.159-cp312-cp312-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for cadscorelt-0.9.159-cp312-cp312-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 f2d15451249d8bbc6a0d1b8b66399ab518ddde61d424d0dddf0b9e1063c27c32
MD5 7f57960692d993a0ea66f05a37a38e77
BLAKE2b-256 19255416534390594a24552c1df7f105abe66db166b9b18b8cf303c3fd951277

See more details on using hashes here.

File details

Details for the file cadscorelt-0.9.159-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for cadscorelt-0.9.159-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 185027bfed486d2507a374f6280729a9dce8ec04e68ee4cb0149f6f5a89a6364
MD5 24ba81cc403f71c99702038231e9af85
BLAKE2b-256 349e6705e56c4758d93266a14ad9a54210b1270cfaa0e7947b0db349807e4d44

See more details on using hashes here.

File details

Details for the file cadscorelt-0.9.159-cp312-cp312-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for cadscorelt-0.9.159-cp312-cp312-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 51e08a175ba9b6681ee92a2a9ad841642debb767d4c9aff638e10da025a7813d
MD5 570c5af3eb59ac1479b894068f7eebd7
BLAKE2b-256 30651af66b42b33fa12d5832d949100f6d5e297c0386e984819f78a15acd3e4d

See more details on using hashes here.

File details

Details for the file cadscorelt-0.9.159-cp312-cp312-macosx_10_15_universal2.whl.

File metadata

File hashes

Hashes for cadscorelt-0.9.159-cp312-cp312-macosx_10_15_universal2.whl
Algorithm Hash digest
SHA256 df63ac4504cb4c612abea15fca530dc8a0679047151b82e97b0935e7e4562b59
MD5 39048be3c2f26231ca1c48abc4c1997b
BLAKE2b-256 1e1c7dafc14741904a63324e00de4f96da01b8a3170d9aab7d659d02d8086911

See more details on using hashes here.

File details

Details for the file cadscorelt-0.9.159-cp311-cp311-win_amd64.whl.

File metadata

File hashes

Hashes for cadscorelt-0.9.159-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 09c2117adb20d4d67d9aed4bbecdf0c0ad1b732f0492bb52a55c341ef77bb844
MD5 023fd0879a91d572f4fb11a7df14812d
BLAKE2b-256 d25a8b48779afe9e9fbe0aa3db8e954a686112c951093686e7bb9ab1843ccfba

See more details on using hashes here.

File details

Details for the file cadscorelt-0.9.159-cp311-cp311-win32.whl.

File metadata

  • Download URL: cadscorelt-0.9.159-cp311-cp311-win32.whl
  • Upload date:
  • Size: 413.4 kB
  • Tags: CPython 3.11, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.12.3

File hashes

Hashes for cadscorelt-0.9.159-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 bfa5ea2682153a9bca30eb6c4af18cf3095942ad57a0afccd2064f59e61f6fe1
MD5 54061e7d15224f9691b98bb7e0830d62
BLAKE2b-256 421298feb8e7e3536b789b54503567bb9fca94517169ecacf745265c538cc545

See more details on using hashes here.

File details

Details for the file cadscorelt-0.9.159-cp311-cp311-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for cadscorelt-0.9.159-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 858ab600186de881dace3ebae0a40cf72c08a6605d616d5c2dd33ef00e5412a6
MD5 89fffa35bb0f859b38528d6cb14a0193
BLAKE2b-256 ffd5904fbddf3a15da80c633523ce8088e7377d7c6ef60c1932c1e73e41aae31

See more details on using hashes here.

File details

Details for the file cadscorelt-0.9.159-cp311-cp311-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for cadscorelt-0.9.159-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 36c72658ac477be1c8189386e123b0b4a237a0a9922879079c8733649e173cc6
MD5 70faddbe5718bfd1c05588c423ebf1dd
BLAKE2b-256 5f6b6ed436e49d155f781c923b53b7c19f8456fb4c78454060bfa751a7a2aa2f

See more details on using hashes here.

File details

Details for the file cadscorelt-0.9.159-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for cadscorelt-0.9.159-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 6dfc31def55c2370f1688dfdd993a642baa4930e6c53c88346a9fc8b0789b454
MD5 c28a25f1545e1e3936cf0440cf09d294
BLAKE2b-256 eafdd4a6f60ba8fb60145eefb17839b83b40c4137dae10b1fbfaea2cdc129ab3

See more details on using hashes here.

File details

Details for the file cadscorelt-0.9.159-cp311-cp311-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for cadscorelt-0.9.159-cp311-cp311-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 cd16e7fed53c470b46ecc6354707ab01f8197a650db870cbdbcd49fa1f3c8b5b
MD5 59e271a2970e4b5d4347344e74fecf5d
BLAKE2b-256 834ff48ab73b3ae5571e417e14a27f8536f9b6a446558f35b609a13f53e83033

See more details on using hashes here.

File details

Details for the file cadscorelt-0.9.159-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for cadscorelt-0.9.159-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 a5c51d543ebab9fdfb314c66c6fa2471863b5886a58510d1a097c80dc1bf73ed
MD5 92c9cc84293079335329ecaa4e19e821
BLAKE2b-256 c8456908647b84763341aae61949798d25d4d941ee88f8eaedf04708369e04f6

See more details on using hashes here.

File details

Details for the file cadscorelt-0.9.159-cp311-cp311-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for cadscorelt-0.9.159-cp311-cp311-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 2a116905fc3d5492ca2bc6f0dbf0f1415ecec2ab0bb1bdaf46ba4d98580e7a5c
MD5 d7a61ee614b8cbe86a9ea058ac0c9c75
BLAKE2b-256 790a99a78f86a0a2897b2d518845731248aa9ed6c3c4d0486ecde9c96f028933

See more details on using hashes here.

File details

Details for the file cadscorelt-0.9.159-cp311-cp311-macosx_10_15_universal2.whl.

File metadata

File hashes

Hashes for cadscorelt-0.9.159-cp311-cp311-macosx_10_15_universal2.whl
Algorithm Hash digest
SHA256 5053f8c3de35757204e75fc66718d14bcc32246ef7e3de8667a4c36520c2fde9
MD5 79647fbd33673fb731cd05daeeabb9c3
BLAKE2b-256 a1e24940f7d8912d78e4483469bdadfbca09ae64453c2dc7caf5410e03001e2e

See more details on using hashes here.

File details

Details for the file cadscorelt-0.9.159-cp310-cp310-win_amd64.whl.

File metadata

File hashes

Hashes for cadscorelt-0.9.159-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 84ebdae92779bdaff4def2385d73f839f3099489f4b5ee60db6f38ba09c75580
MD5 40586b1e7d737ac651939b841acde5f4
BLAKE2b-256 6a10db3702af7070d177d893d1489ccf6dc74172f9c02248019fe6205adc43e8

See more details on using hashes here.

File details

Details for the file cadscorelt-0.9.159-cp310-cp310-win32.whl.

File metadata

  • Download URL: cadscorelt-0.9.159-cp310-cp310-win32.whl
  • Upload date:
  • Size: 413.4 kB
  • Tags: CPython 3.10, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.12.3

File hashes

Hashes for cadscorelt-0.9.159-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 cbf4d20a054071871a5139ae90ae87c1c7944fb947aae72a10f647e141627296
MD5 2e3dc5a0b9ce96a3eddee792a98efa1b
BLAKE2b-256 4de3a64a3f3227625762f907338feb1070098f3ec17e0758f74bdcfced364334

See more details on using hashes here.

File details

Details for the file cadscorelt-0.9.159-cp310-cp310-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for cadscorelt-0.9.159-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 655e8e2a0eb5b117fffdc78404cc306a120f7a5d6870b34bab11680dfbc7c538
MD5 bacf9cc4507e33e9c0731bff9dacafe4
BLAKE2b-256 248dcab704536ece1be8eb3848c4f00ac7ea538a6af3afdbd883a3489c3e469c

See more details on using hashes here.

File details

Details for the file cadscorelt-0.9.159-cp310-cp310-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for cadscorelt-0.9.159-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 69d83cfe91e3f6ca5a8546c3278625a914fb4c9acef3db046ab8068c30310140
MD5 8abae088112ea15748042a932bbcb696
BLAKE2b-256 bbd798767d785a53c6f5d2b8314ccac2153523882d357abe42734868b3e0e9e8

See more details on using hashes here.

File details

Details for the file cadscorelt-0.9.159-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for cadscorelt-0.9.159-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 861831acf5c125e1d23e8bad10f2a681014e843c956fcb581dac974f6ab644a1
MD5 682de454bcea3fe6bf2116e7722bb02a
BLAKE2b-256 f9440c1caaa59a0304a016a5f9286a97f98dae4ee36ab3ae68afbd22c23b7479

See more details on using hashes here.

File details

Details for the file cadscorelt-0.9.159-cp310-cp310-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for cadscorelt-0.9.159-cp310-cp310-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 87780e83f6adfc3bf6d2e24bfab21af3147f29dae6c100a5e9c43ae8b6af7d1d
MD5 2cae934e76643bc6a7b7c8fb014daa92
BLAKE2b-256 63a58a443b1724d7f6d8963e3694319dd0927a33f403047dbcf44976c9b1086a

See more details on using hashes here.

File details

Details for the file cadscorelt-0.9.159-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for cadscorelt-0.9.159-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 f5ca9c12ac1c6558fe9a36372c14463078563727ccbb1d7ca37b01d569b38a88
MD5 928efa9d2d0a31cab66ff4af202dc4e4
BLAKE2b-256 db5d282dd77e8938c008aac9db460d75ba66a825531e929b5eb7d4608806f3a2

See more details on using hashes here.

File details

Details for the file cadscorelt-0.9.159-cp310-cp310-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for cadscorelt-0.9.159-cp310-cp310-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 141e9783da2adaf75dc96e734b1398a96e08714d733a0b6244c3d16049c2d6d9
MD5 8e27986fff5b9a98a8f6bc317ba8e113
BLAKE2b-256 81a302392fdce7be90cfc3981ce1b583d71006e76cf69db55ab3da5010e83553

See more details on using hashes here.

File details

Details for the file cadscorelt-0.9.159-cp310-cp310-macosx_10_15_universal2.whl.

File metadata

File hashes

Hashes for cadscorelt-0.9.159-cp310-cp310-macosx_10_15_universal2.whl
Algorithm Hash digest
SHA256 f10a901b2a11edf08f347b571eed699c7ef90813b54a78bad34f97701d14a87c
MD5 529e55271f6d09d8cc735642792ae63e
BLAKE2b-256 dd5fc41484e8ef443009a55ec960e47d93f8e0bdc191d444ec5ac11584f3cab9

See more details on using hashes here.

File details

Details for the file cadscorelt-0.9.159-cp39-cp39-win_amd64.whl.

File metadata

  • Download URL: cadscorelt-0.9.159-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 509.4 kB
  • Tags: CPython 3.9, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.12.3

File hashes

Hashes for cadscorelt-0.9.159-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 496034ef1ee7e572163bb0b8b340a721ad5a70c362b3be41a49faccbbc12ab61
MD5 f04f51c0e0ee8322d40d07e4f110a03d
BLAKE2b-256 ce5fea35e22664dd65c9a7678787a5ca0fe56eb60db02178372f357106324930

See more details on using hashes here.

File details

Details for the file cadscorelt-0.9.159-cp39-cp39-win32.whl.

File metadata

  • Download URL: cadscorelt-0.9.159-cp39-cp39-win32.whl
  • Upload date:
  • Size: 413.3 kB
  • Tags: CPython 3.9, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.12.3

File hashes

Hashes for cadscorelt-0.9.159-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 8a24ef23559304d42a4d166ab2e43c191b1fe7ac43a4ae26dfe6eff9372f5775
MD5 0542f7d99816134df0c1bacba78e6e4e
BLAKE2b-256 74ba1deba698134de02e6254ed1e614ecb1f20bf2a7360b5c400af6a8fcd9784

See more details on using hashes here.

File details

Details for the file cadscorelt-0.9.159-cp39-cp39-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for cadscorelt-0.9.159-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 d57ce67fe1e3dfb0f4cf06ae1810e0b5b4cd633a3795ce940560ac11da4bcf41
MD5 189c226e79b99a88426937b495636d09
BLAKE2b-256 d74ada1c2073cd8696bc425c4e8ff2cfe0ebca48b7179eb6c4e30d576d16110b

See more details on using hashes here.

File details

Details for the file cadscorelt-0.9.159-cp39-cp39-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for cadscorelt-0.9.159-cp39-cp39-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 9fe7c6fd44b487b2b62096c0e2daa1604c9d4db5a3276ca5f68c6d424861527d
MD5 51868f7068f06ad7448d94e2dba65c8f
BLAKE2b-256 c088b4b76dc11b08bec76a717780ece1e4649b984d313c067b5a7aeb015232b5

See more details on using hashes here.

File details

Details for the file cadscorelt-0.9.159-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for cadscorelt-0.9.159-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 4d3e88208c50badc65c1d36cc5b19ac904d13b768ba809984c9e6435b9a30759
MD5 ab65e0bd5afc980c1e895b12752d9a3e
BLAKE2b-256 f577e0ef3fa9bcb9f65ffcbc62f66f977d1d0a2e5010c78ce1955f7f13390485

See more details on using hashes here.

File details

Details for the file cadscorelt-0.9.159-cp39-cp39-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for cadscorelt-0.9.159-cp39-cp39-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 e537715198bc8a06aa73b83a3c42c28d3d38a54a4f4c3d8b8af41ab959d8e20e
MD5 da17d83482352b367da90e9685cf62df
BLAKE2b-256 50a31b1ea5991f3da8639b6de1522bebf13f8be6dfc7557c16ee081d24521baa

See more details on using hashes here.

File details

Details for the file cadscorelt-0.9.159-cp39-cp39-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for cadscorelt-0.9.159-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 c84b0559bb6f3c90f53f1e50a786fb2913a76db640f35906a66b3adb4378ca30
MD5 90773f57932355f50194dbde64e7f7b8
BLAKE2b-256 498f20f4f2bb4438ff024dd279ccc2fdb3ebb513b6eab4354728531879a1f88f

See more details on using hashes here.

File details

Details for the file cadscorelt-0.9.159-cp39-cp39-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for cadscorelt-0.9.159-cp39-cp39-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 9accd0d1234269f563dba17f6a3e5b9330df9042da7eb234e9107988f0dfd177
MD5 e1bb96af50509911a3cf9c7389068627
BLAKE2b-256 cca39f5c67c8adfa160f42373dd230847ed4a5ed5b3612b243ce6d412f58a931

See more details on using hashes here.

File details

Details for the file cadscorelt-0.9.159-cp39-cp39-macosx_10_15_universal2.whl.

File metadata

File hashes

Hashes for cadscorelt-0.9.159-cp39-cp39-macosx_10_15_universal2.whl
Algorithm Hash digest
SHA256 6d92389bbcdb79b4ccc4cf883550da416f61d0945eab0b297d1229920fb7f027
MD5 c59a68b76d6e444f8a478e5be07bf61b
BLAKE2b-256 be8972e691c8d65eaf0a558ccb04abadc03d2d0cf246572e4d31bed193f9cb02

See more details on using hashes here.

File details

Details for the file cadscorelt-0.9.159-cp38-cp38-win_amd64.whl.

File metadata

  • Download URL: cadscorelt-0.9.159-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 509.3 kB
  • Tags: CPython 3.8, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.12.3

File hashes

Hashes for cadscorelt-0.9.159-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 a0d5a8cbabcd18a649ea021192fc3da070b90eb882b43059ed8d7663e987ed51
MD5 3dd5430f96e511fcea0ae2d96c913a81
BLAKE2b-256 9aa67fa7285d10f937c9c2a485c6b0babee602379702a4d5f7dc347d77a88ce5

See more details on using hashes here.

File details

Details for the file cadscorelt-0.9.159-cp38-cp38-win32.whl.

File metadata

  • Download URL: cadscorelt-0.9.159-cp38-cp38-win32.whl
  • Upload date:
  • Size: 413.1 kB
  • Tags: CPython 3.8, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.12.3

File hashes

Hashes for cadscorelt-0.9.159-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 50f2f2240ec11206cd6672c73e902718e363ddde658f116e7177d0ae53fc4513
MD5 943dee7af3950b920877e28314bb80a8
BLAKE2b-256 2995394b192c12576b1f07dc96e47ea2b0a3dff5fc8500451e727476e00737ba

See more details on using hashes here.

File details

Details for the file cadscorelt-0.9.159-cp38-cp38-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for cadscorelt-0.9.159-cp38-cp38-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 d7177a72eccc8a53d62bc15ec8f3204d163e59860f2deea71f8ce8bbb21bb012
MD5 4fda34cfd80e7f2e1cefd67addff213a
BLAKE2b-256 c87c074bb085e5b789412f9358fb623a0aba14a63ad9c6187b1b8fac367d4260

See more details on using hashes here.

File details

Details for the file cadscorelt-0.9.159-cp38-cp38-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for cadscorelt-0.9.159-cp38-cp38-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 f8219cfb35aa500523147db4091a6a9ecf78eb264650ce3c36e7d8494e5f4cd1
MD5 933da00c752fcf6ec89f1d7e0b9e3d10
BLAKE2b-256 d34258aee05b6e19efbca7d9d31f84676eb83b6a8e79d03215acb6490b581a9d

See more details on using hashes here.

File details

Details for the file cadscorelt-0.9.159-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for cadscorelt-0.9.159-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 a26346e274a5eafe670cfe845065d7847d6870bbc3907690380da6c0d288dbd3
MD5 e4afc6233b488405b37b3772c0332e1a
BLAKE2b-256 a05a5bda2a95ae820798ae12a1817d804b26746beac0285af656cc9cbada1dbf

See more details on using hashes here.

File details

Details for the file cadscorelt-0.9.159-cp38-cp38-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for cadscorelt-0.9.159-cp38-cp38-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 6dafd6b838c3a53f43665671a563f9d00f28bd18ace282ff139c1a8ebe6a4fa8
MD5 da0e1f9b0a7bb4669636b59aae14b08a
BLAKE2b-256 f85cb4f479d9c528db8b7125573fc81d00c0d942198d43e5217038ff0876f69c

See more details on using hashes here.

File details

Details for the file cadscorelt-0.9.159-cp38-cp38-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for cadscorelt-0.9.159-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 20b8b42d201c730c4bfc20ce60e7b765c83a08cbbee82e4dc63f6e3a164b3204
MD5 0d6c1658b2bac7ab1a15de9b2716473a
BLAKE2b-256 a68f801f87c46474929083aecc09b789d86f92002496c538112bb71f5ac45543

See more details on using hashes here.

File details

Details for the file cadscorelt-0.9.159-cp38-cp38-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for cadscorelt-0.9.159-cp38-cp38-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 dbfab0eeb7ec47b2acfdd7098d8011a600de73d88f524634ea8f2ecbae041ff4
MD5 a3da8511391f935a46b6bedc4b5d2384
BLAKE2b-256 c85c14af0b9723b228d72e23c1e980f5222b59e063e62040f9996b0cff714109

See more details on using hashes here.

File details

Details for the file cadscorelt-0.9.159-cp38-cp38-macosx_10_15_universal2.whl.

File metadata

File hashes

Hashes for cadscorelt-0.9.159-cp38-cp38-macosx_10_15_universal2.whl
Algorithm Hash digest
SHA256 95a4ec2d3c2722fc3f5919d0d380c645b492f4709d793c78768689fda9db167b
MD5 6f8ad1419809d5d0d501cd0ff859fa95
BLAKE2b-256 c59ae3d1f6b0490a0e302ac34d920c7c2ea73ea6257981bd9497ed6937dce961

See more details on using hashes here.

File details

Details for the file cadscorelt-0.9.159-cp37-cp37m-win_amd64.whl.

File metadata

File hashes

Hashes for cadscorelt-0.9.159-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 4d34788a1b2c1c82ce31eb6bffb6c5a1911f154b2e7ff5d726bf5cec65056b2e
MD5 89fe0173fa84114b85e8c92c2e21e6d5
BLAKE2b-256 d7333cd88fbccb39be8114edb7e1a1f8004dc098c9e9d9583238aea7d6cca2f8

See more details on using hashes here.

File details

Details for the file cadscorelt-0.9.159-cp37-cp37m-win32.whl.

File metadata

  • Download URL: cadscorelt-0.9.159-cp37-cp37m-win32.whl
  • Upload date:
  • Size: 413.3 kB
  • Tags: CPython 3.7m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.12.3

File hashes

Hashes for cadscorelt-0.9.159-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 cb6cb4cb85138796889f4133deb1b6e703b63b5f171768896b5ca1ab65bc22c8
MD5 8448b7139a1eeddd66cfc3ebcebce19c
BLAKE2b-256 d677996ca15585a1f9a57cb07fe8701d98ac53aac66c6cb2fecd0f553ea1ef87

See more details on using hashes here.

File details

Details for the file cadscorelt-0.9.159-cp37-cp37m-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for cadscorelt-0.9.159-cp37-cp37m-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 cc092075e9e22ebb1d2004396092629a46b637214dd1bc07574223e28b660506
MD5 738e5438da5e511b84d9a9ab6dc53486
BLAKE2b-256 211391d64185bc5165dcd0b6f2cb9f87516df518869fbac4c2b709218631b5ed

See more details on using hashes here.

File details

Details for the file cadscorelt-0.9.159-cp37-cp37m-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for cadscorelt-0.9.159-cp37-cp37m-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 8f0a00f8e768f2a8dea0a46b973eb07d6fa0e09021268f729e74b1d9e0e5f076
MD5 517cabc42284fefe6e3a0f9a02addd54
BLAKE2b-256 bf0545749c7a8dace939bd3e6a6aa077cd949f35c21d674ad42bf78d12cef4cc

See more details on using hashes here.

File details

Details for the file cadscorelt-0.9.159-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for cadscorelt-0.9.159-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 0f8b31c1741fbe6c1bfe7c0f8d20ca5fb1eb0abe6bbcb2d415ef61dbe7a514e3
MD5 802f14c0c8e37623987be07bef06e72f
BLAKE2b-256 54e96e43a9c89a9ea7b427fc35d9b83067562b0a6250ff8c3ee6b3419c5e3c22

See more details on using hashes here.

File details

Details for the file cadscorelt-0.9.159-cp37-cp37m-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for cadscorelt-0.9.159-cp37-cp37m-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 aee397970ad7004ff0daf258c58e67683091ac697d166037df7497f355ec8ff6
MD5 0d2ae7d50f94989cd122ef4fc9f61a90
BLAKE2b-256 f8161bd8832049f63128ea99cce412fde5eb07ba296f3baa0bbecc653ceebd1f

See more details on using hashes here.

File details

Details for the file cadscorelt-0.9.159-cp37-cp37m-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for cadscorelt-0.9.159-cp37-cp37m-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 bad4ff1eadb4a80672d57d16282208f779c41fde033b1e0bf57779bdf0255e75
MD5 b973362876a00ab2413f3b50c94e3179
BLAKE2b-256 69e3062624aafc241d1717c1939b551f7adf17ad5898b078a62bff9e23350477

See more details on using hashes here.

File details

Details for the file cadscorelt-0.9.159-cp36-cp36m-win_amd64.whl.

File metadata

File hashes

Hashes for cadscorelt-0.9.159-cp36-cp36m-win_amd64.whl
Algorithm Hash digest
SHA256 f483d7406a80d7388fe4989836badf3baaf44eec2f9a2c1e765aef0ad692558a
MD5 3afa00792703ba9d53887b159209e74d
BLAKE2b-256 0452104a80c6907f9124c3c5cb2ce0a0ace42c71cb051709e19298a01cb5e5d7

See more details on using hashes here.

File details

Details for the file cadscorelt-0.9.159-cp36-cp36m-win32.whl.

File metadata

  • Download URL: cadscorelt-0.9.159-cp36-cp36m-win32.whl
  • Upload date:
  • Size: 413.3 kB
  • Tags: CPython 3.6m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.12.3

File hashes

Hashes for cadscorelt-0.9.159-cp36-cp36m-win32.whl
Algorithm Hash digest
SHA256 9c77a3a0168a34b143e957b4ad0191872516dc85137ea61aa702fcc3efe52749
MD5 b3a0de1a141ba5c6342508ccccc0f8d6
BLAKE2b-256 d7066f66434235ededf8967fc58f41ea305e06bf36466a918f273f13d64900fe

See more details on using hashes here.

File details

Details for the file cadscorelt-0.9.159-cp36-cp36m-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for cadscorelt-0.9.159-cp36-cp36m-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 3a0e1aeaf71cfb216f63016c2db7e0d3a9b554b3a64dc3bc2a82d91651f43361
MD5 7cee5a8c47e00929263afa863ea3c7a3
BLAKE2b-256 2c69e1297f3a5536cc7c17f86110fd308912e95ec216d7ff10373756a4370f6b

See more details on using hashes here.

File details

Details for the file cadscorelt-0.9.159-cp36-cp36m-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for cadscorelt-0.9.159-cp36-cp36m-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 fdd89164ed8076f5fe2411bf5c6766ae744df40b11f33f4c90576ad77d5fce4d
MD5 ff04ad5fdece0589aace40eafd2cd8c4
BLAKE2b-256 ab06e264d28ce9640f18cdf45f8368330ba28a7b37fbfe91630394cecf2d1427

See more details on using hashes here.

File details

Details for the file cadscorelt-0.9.159-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for cadscorelt-0.9.159-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 fd5a6af83841e33487f6006bc95aa1553ca95e16a7def258dd98206ae18026b3
MD5 5ad8d5e69ef27c01a4a5f1cfaa8122df
BLAKE2b-256 124fa70336a154b2c30b7268a17ba5062eace2359245e5477775ccf3437df1e6

See more details on using hashes here.

File details

Details for the file cadscorelt-0.9.159-cp36-cp36m-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for cadscorelt-0.9.159-cp36-cp36m-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 c0e54c48fbfbb6a13fb3d63f17b355cc0cda2850cc9d032b780f504a0abf0fd5
MD5 e715ebc4dbe4ad523f03600e2f3f0970
BLAKE2b-256 7845d1c7e683272bd050b9e219f9df7588f91ce962ff2d281834b00d5ff6e84e

See more details on using hashes here.

File details

Details for the file cadscorelt-0.9.159-cp36-cp36m-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for cadscorelt-0.9.159-cp36-cp36m-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 f5c83e5658171cefc983e7af1456d69b4eb2a8ad418af061e3ff02f3f6ae7a07
MD5 ed20ab8597524aae5e846c7810023941
BLAKE2b-256 a9fc181d805fc9221942cbf90e918ceb5b30de02d3ef23ba91c4640b38630fd5

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