Skip to main content

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

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.196.tar.gz (223.9 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.196-cp313-cp313-win_amd64.whl (521.1 kB view details)

Uploaded CPython 3.13Windows x86-64

cadscorelt-0.9.196-cp313-cp313-win32.whl (406.6 kB view details)

Uploaded CPython 3.13Windows x86

cadscorelt-0.9.196-cp313-cp313-musllinux_1_2_x86_64.whl (8.1 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

cadscorelt-0.9.196-cp313-cp313-musllinux_1_2_i686.whl (8.0 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ i686

cadscorelt-0.9.196-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (7.3 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

cadscorelt-0.9.196-cp313-cp313-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl (6.9 MB view details)

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

cadscorelt-0.9.196-cp313-cp313-macosx_11_0_arm64.whl (580.8 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

cadscorelt-0.9.196-cp313-cp313-macosx_10_15_x86_64.whl (640.5 kB view details)

Uploaded CPython 3.13macOS 10.15+ x86-64

cadscorelt-0.9.196-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.196-cp312-cp312-win_amd64.whl (521.0 kB view details)

Uploaded CPython 3.12Windows x86-64

cadscorelt-0.9.196-cp312-cp312-win32.whl (414.3 kB view details)

Uploaded CPython 3.12Windows x86

cadscorelt-0.9.196-cp312-cp312-musllinux_1_2_x86_64.whl (8.1 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

cadscorelt-0.9.196-cp312-cp312-musllinux_1_2_i686.whl (8.0 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ i686

cadscorelt-0.9.196-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (7.3 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

cadscorelt-0.9.196-cp312-cp312-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl (6.9 MB view details)

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

cadscorelt-0.9.196-cp312-cp312-macosx_11_0_arm64.whl (580.9 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

cadscorelt-0.9.196-cp312-cp312-macosx_10_15_x86_64.whl (640.5 kB view details)

Uploaded CPython 3.12macOS 10.15+ x86-64

cadscorelt-0.9.196-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.196-cp311-cp311-win_amd64.whl (522.0 kB view details)

Uploaded CPython 3.11Windows x86-64

cadscorelt-0.9.196-cp311-cp311-win32.whl (413.3 kB view details)

Uploaded CPython 3.11Windows x86

cadscorelt-0.9.196-cp311-cp311-musllinux_1_2_x86_64.whl (8.0 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

cadscorelt-0.9.196-cp311-cp311-musllinux_1_2_i686.whl (7.9 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ i686

cadscorelt-0.9.196-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (7.3 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

cadscorelt-0.9.196-cp311-cp311-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl (6.9 MB view details)

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

cadscorelt-0.9.196-cp311-cp311-macosx_11_0_arm64.whl (580.0 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

cadscorelt-0.9.196-cp311-cp311-macosx_10_15_x86_64.whl (636.0 kB view details)

Uploaded CPython 3.11macOS 10.15+ x86-64

cadscorelt-0.9.196-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.196-cp310-cp310-win_amd64.whl (522.0 kB view details)

Uploaded CPython 3.10Windows x86-64

cadscorelt-0.9.196-cp310-cp310-win32.whl (413.3 kB view details)

Uploaded CPython 3.10Windows x86

cadscorelt-0.9.196-cp310-cp310-musllinux_1_2_x86_64.whl (8.0 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

cadscorelt-0.9.196-cp310-cp310-musllinux_1_2_i686.whl (7.9 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ i686

cadscorelt-0.9.196-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (7.3 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

cadscorelt-0.9.196-cp310-cp310-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl (6.9 MB view details)

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

cadscorelt-0.9.196-cp310-cp310-macosx_11_0_arm64.whl (580.0 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

cadscorelt-0.9.196-cp310-cp310-macosx_10_15_x86_64.whl (636.0 kB view details)

Uploaded CPython 3.10macOS 10.15+ x86-64

cadscorelt-0.9.196-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.196-cp39-cp39-win_amd64.whl (521.9 kB view details)

Uploaded CPython 3.9Windows x86-64

cadscorelt-0.9.196-cp39-cp39-win32.whl (412.8 kB view details)

Uploaded CPython 3.9Windows x86

cadscorelt-0.9.196-cp39-cp39-musllinux_1_2_x86_64.whl (8.0 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ x86-64

cadscorelt-0.9.196-cp39-cp39-musllinux_1_2_i686.whl (7.9 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ i686

cadscorelt-0.9.196-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (7.3 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

cadscorelt-0.9.196-cp39-cp39-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl (6.9 MB view details)

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

cadscorelt-0.9.196-cp39-cp39-macosx_11_0_arm64.whl (580.0 kB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

cadscorelt-0.9.196-cp39-cp39-macosx_10_15_x86_64.whl (636.0 kB view details)

Uploaded CPython 3.9macOS 10.15+ x86-64

cadscorelt-0.9.196-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.196-cp38-cp38-win_amd64.whl (521.9 kB view details)

Uploaded CPython 3.8Windows x86-64

cadscorelt-0.9.196-cp38-cp38-win32.whl (412.7 kB view details)

Uploaded CPython 3.8Windows x86

cadscorelt-0.9.196-cp38-cp38-musllinux_1_2_x86_64.whl (8.0 MB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ x86-64

cadscorelt-0.9.196-cp38-cp38-musllinux_1_2_i686.whl (7.9 MB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ i686

cadscorelt-0.9.196-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (7.3 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ x86-64

cadscorelt-0.9.196-cp38-cp38-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl (6.9 MB view details)

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

cadscorelt-0.9.196-cp38-cp38-macosx_11_0_arm64.whl (579.7 kB view details)

Uploaded CPython 3.8macOS 11.0+ ARM64

cadscorelt-0.9.196-cp38-cp38-macosx_10_15_x86_64.whl (635.7 kB view details)

Uploaded CPython 3.8macOS 10.15+ x86-64

cadscorelt-0.9.196-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.196-cp37-cp37m-win_amd64.whl (519.4 kB view details)

Uploaded CPython 3.7mWindows x86-64

cadscorelt-0.9.196-cp37-cp37m-win32.whl (413.0 kB view details)

Uploaded CPython 3.7mWindows x86

cadscorelt-0.9.196-cp37-cp37m-musllinux_1_2_x86_64.whl (8.1 MB view details)

Uploaded CPython 3.7mmusllinux: musl 1.2+ x86-64

cadscorelt-0.9.196-cp37-cp37m-musllinux_1_2_i686.whl (8.0 MB view details)

Uploaded CPython 3.7mmusllinux: musl 1.2+ i686

cadscorelt-0.9.196-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (7.3 MB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.17+ x86-64

cadscorelt-0.9.196-cp37-cp37m-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl (7.0 MB view details)

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

cadscorelt-0.9.196-cp37-cp37m-macosx_10_15_x86_64.whl (634.7 kB view details)

Uploaded CPython 3.7mmacOS 10.15+ x86-64

cadscorelt-0.9.196-cp36-cp36m-win_amd64.whl (519.4 kB view details)

Uploaded CPython 3.6mWindows x86-64

cadscorelt-0.9.196-cp36-cp36m-win32.whl (413.0 kB view details)

Uploaded CPython 3.6mWindows x86

cadscorelt-0.9.196-cp36-cp36m-musllinux_1_2_x86_64.whl (8.1 MB view details)

Uploaded CPython 3.6mmusllinux: musl 1.2+ x86-64

cadscorelt-0.9.196-cp36-cp36m-musllinux_1_2_i686.whl (8.0 MB view details)

Uploaded CPython 3.6mmusllinux: musl 1.2+ i686

cadscorelt-0.9.196-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (7.3 MB view details)

Uploaded CPython 3.6mmanylinux: glibc 2.17+ x86-64

cadscorelt-0.9.196-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.196-cp36-cp36m-macosx_10_15_x86_64.whl (634.5 kB view details)

Uploaded CPython 3.6mmacOS 10.15+ x86-64

File details

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

File metadata

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

File hashes

Hashes for cadscorelt-0.9.196.tar.gz
Algorithm Hash digest
SHA256 5878a409d5a853f97dbe338bd32768c397dae858d5fe189760be6fea79162e04
MD5 25eff5fe9f01b7cb03e5a941375d2f16
BLAKE2b-256 489b58466af3aa6dd314ac13cf8d5615922223fff956ab127b3e786d04108b8e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cadscorelt-0.9.196-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 173702fb4f41861753285d3ea1249789d1b8ec7aa4f515a029df0609d08a05b3
MD5 dfcfb179f7aab0a74a92fee3574705e3
BLAKE2b-256 ac64e947d3af607e5f594e4c90698593ddae4cfc3a2d8a11c1bc1e856876ba7f

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for cadscorelt-0.9.196-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 34bd6fb41b7fab9735b195d36da33fc82be3d418493df173c7eefac8253c6f44
MD5 ac05144e2de0c6182120faa456cce21e
BLAKE2b-256 d70e550d0bb1a4d476abd884cb0982e78c13647eaac7e391fd94006bd164fd0f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cadscorelt-0.9.196-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 cc03126f129e16d75696c45d2c6e978eea8add5910ed35a2e3cbf9167fce02c8
MD5 aa4b8905b5fb4332dd2cb92d3d8701e9
BLAKE2b-256 e0b2a8580ccbe263cc465043860404b3d0f2ae676241ee7a3c1b46faf465ab04

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cadscorelt-0.9.196-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 5cbf4b5e93c6f70ca912a34baf84c5272cedee4bfa5f310f7acae48215582071
MD5 e58b17ad925e69b3d603919e417486fe
BLAKE2b-256 28b5fda5c74e51771cde2b66412366c9d64cc74fe56f7a34033bee7c049c5195

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cadscorelt-0.9.196-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 51e05c93eab120c5cca51055688dc31b4920e85fbf1996c1166c268adbaf31c8
MD5 a54a8460574876c86264a2f4a2416206
BLAKE2b-256 4886a7f7ae636b2c5d3f82641f9c23c25fd384ef0259574524b6990e7157532d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cadscorelt-0.9.196-cp313-cp313-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 179e2a2efd2b7cfeb7cd68a922734527de90c84ebe97605bef0b9429adb35a7f
MD5 36159e321f2a9b64e4ff7c1b15557c9c
BLAKE2b-256 719913e8f7dbc8f599ce7b95e5da8d6c128926a6cae85ee3ce35884b1b73ad5f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cadscorelt-0.9.196-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 69b3e2b9679be9985f3e719e35f9ce914be128afa4ecfb586c280bfe7e2d3bbc
MD5 bba68fd2467dc311cf590f726998f836
BLAKE2b-256 064b7e1febc74c17c3959e8287ebd14c136b402663adc9339aa157246cd60d5e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cadscorelt-0.9.196-cp313-cp313-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 9314c8698054b5f39dd0474e594902d5b65cae06b0d02063c78124c61391dffe
MD5 f6e7c07834f82e4f2fdd0491ab691d70
BLAKE2b-256 837a1d2365cd00300283b5a5ced1db9e68cc3303fad20b6e04c84fd096a0e2e3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cadscorelt-0.9.196-cp313-cp313-macosx_10_15_universal2.whl
Algorithm Hash digest
SHA256 0c7eb3afd438fac5947b56a901ffdbe26e276a74e898c933eb6566f9ea564e69
MD5 54a3a5276ca958ec50dd700a60767bc3
BLAKE2b-256 0a57624a5e2582ac8328e94185f0f66c2aedd1b25fe96764394a55db3d1b2960

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cadscorelt-0.9.196-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 4e8677bff5b9f2eb1b475bba7ff61ccd4a7cc3e66b8a2a183a4882a2a477d0e4
MD5 4f1bec0df7d560cab0f980f94a9ea6a7
BLAKE2b-256 668385fffdc8741ec4fb2b061594f56dc995c6e7e7b6470f6f16cb7236f2b58b

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for cadscorelt-0.9.196-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 e456ba4bee1935022c2407a9ffb597cc0cc7298e08da59363da3bd4b9936ca3c
MD5 204c3a0c670e21cd78c87259b5111c5b
BLAKE2b-256 b9073abec5b0a6b7e02e179db7114c7b8c1ca596a2f4fc54208b498d48f1e384

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cadscorelt-0.9.196-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 ffc491ef2c20785d09442ce2275d6141ff6c67cb7afc441920ac132300490688
MD5 d8e721cc7092c4e6a9b314c5574ef187
BLAKE2b-256 e0c4e530165901ba3cf0a7f019fd3789fef6c6c60859fae7aaa1bf7d896ff54e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cadscorelt-0.9.196-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 5365465d8675dcba5bd05d19e3ab1e9738fa985da3d93e02befaba5ffe2c5c62
MD5 8dd4388c5bf664e8e05b35881d9b2036
BLAKE2b-256 36e23ed8119a15f4e7764fd9d2bf09606eadaf269d54ba260b1c0bb17432a455

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cadscorelt-0.9.196-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 e4f3eee48411387c42df1613275f06c53ec96e8d37f1424687950dc667c444e7
MD5 53407d9802b4b85ea3bdfa310aced1ce
BLAKE2b-256 4bdda161d26c60b48778bd66e3887400174924db160c4b93c21f1d9b06c466d5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cadscorelt-0.9.196-cp312-cp312-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 024e79b2e55709c71b0de95259df443598d863cb61266dcf9cb1308293610b96
MD5 a27c9bfa0a59b0c1f774efaa76017198
BLAKE2b-256 a4eb71fe68c1f10f79d5604554484103ae8968f47174b1eb89174dda5ed81c82

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cadscorelt-0.9.196-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 6c66ecad28df292bdbfc2b740e0290b84fc29d074f87cedc6e2d39840ca4cb5a
MD5 0b34f56ed451e6a58fdb9abf441baee6
BLAKE2b-256 8d8feb178d31eb28576b3ac6c49e173e2c53f390d72bdce37150107431c998dd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cadscorelt-0.9.196-cp312-cp312-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 68a00a3ac81219b997b84689f3f0cec794d7ac749089d3c792ed0b00e05b4146
MD5 4dd563ea774f071da0e4b613aaf18cb1
BLAKE2b-256 bc0ee2f230b2441b912e07de9d18c34d7131ed6705e01b5e3314fc78453b9ae0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cadscorelt-0.9.196-cp312-cp312-macosx_10_15_universal2.whl
Algorithm Hash digest
SHA256 7fd60419d65b869a21d0f3f2653bd21e71b584a4e3085ed6ea2d70f809d87909
MD5 e0086c7a4b8f8c1ec4ade4149231745f
BLAKE2b-256 f9a1858040d7b196caf4b59bfc3c3b7fe44ce361e76b876dad3af51f0f117644

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cadscorelt-0.9.196-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 6f07110e73c823d6402a8da509043c11f1c7cc1b0b70a099655287f13e103496
MD5 29e6e866d42f3ceea320e0ed557b9374
BLAKE2b-256 ff48a52d76d8063cf3dfcf8f95fa2d562e417e85ff0c6b7191c6fd00a9a4b649

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for cadscorelt-0.9.196-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 e0a69fbb6f9999cc2467e8de054e7b117720cba328ee2d00d717440b9a23f0bf
MD5 b5a624a13bfe1bf009fbcb8d8cbdc07c
BLAKE2b-256 88504ccbd88360a799948bafa2db3151323c1f65beaf9366ebf63c84e1ad0560

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cadscorelt-0.9.196-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 966799bfd41005d2f87b6b920fa2605f2f051fc34c2903967dc0b02d4e6a5c2c
MD5 66f2131ef10b4f9226a7da03759a55ea
BLAKE2b-256 7cbcbd5f1ff400cac80fe9e1323fe3a4b7bb1d763b7afcbaff3bd2b1fb669df8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cadscorelt-0.9.196-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 8c4cb36724c31cf6880a68236036122b8a312aa40945bd92cd5598796a2c644a
MD5 2c3ac45b0cc795591dc76976b3ff7225
BLAKE2b-256 8579276c24a2f6f63c5471f572bbff789a9737cb1328c99a9884ff009592523e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cadscorelt-0.9.196-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 3de4273f5e5c1f853c59f27b7b27031059697a5a1d13234253dd4d22bdbdd124
MD5 ef2d711ce7283141ca15c452de0189c9
BLAKE2b-256 3b8f0a04676de68047c62ba03efc531f14fb7a9716c75980e58a2a67a770b28e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cadscorelt-0.9.196-cp311-cp311-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 eaf6a6c812f6248ffd32de8b2d87d6970aeafa6203288eae781d8131870c61dc
MD5 9d2d2c2c72cac6ac46594a12cb61609c
BLAKE2b-256 1dd00d3ec381a3fec9cb214d6205d4126da718ba1aa03f9a15efde5e2453b882

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cadscorelt-0.9.196-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 1dd9ab7d1cc389edfb763a944907a961be051afab12d950d98726c55bab79751
MD5 11f3e210376047692078332ecad12c5e
BLAKE2b-256 fb8af55453f9be5e036cf4c57e2fe792d1a3be93ddbb57dd45b57f304677c8ba

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cadscorelt-0.9.196-cp311-cp311-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 bb30771f0cba960cdeab45fd1b97f80b51ff0353fdc3fde2975039694ab7bc2c
MD5 300f48f565a9ed3f149de0e1e9e596db
BLAKE2b-256 1fd50fbd149152ddecdd15562388cd2f40451860a22df963f9d5877c73176a5d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cadscorelt-0.9.196-cp311-cp311-macosx_10_15_universal2.whl
Algorithm Hash digest
SHA256 1e78fdbc8141f2a2884d510b74a77904dc679d510f36fcb89e7be0c18adcff58
MD5 e3a616928b6845090596a491367fad9a
BLAKE2b-256 a5e597d2581a5a5efe8d9dedede58f657244571f889ff534a3472c9bf72fcbfc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cadscorelt-0.9.196-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 2a3d3357d2b5e975d9a24b8186afe857588fe6e18016063f7718f6b59219a03d
MD5 fe655c6494930646c5f5d86dcab2577c
BLAKE2b-256 454072052ef261384b3d1177aae5809ca5364ff7e7f3d3539bcc8089bb93f1ac

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for cadscorelt-0.9.196-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 056e64bb19c992bea34a236aac4a945e00b51e9bc38eb8dc637f9b4245159110
MD5 7a92b8490c6f861aed5891b83927d825
BLAKE2b-256 489ff4d1e60a848cfb1b392bf572c4b6899ad76f6668743fdd8e62d13250e9a5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cadscorelt-0.9.196-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 7d53ce4d466388f1982cdedf5542cfa68946fa9a6278b72a916b1185b6a82434
MD5 c815d7a3bc5bbdea24e23233302bd54f
BLAKE2b-256 f846a8248c571bbc67aef2872dd70e5e9be5590fce1958711876617501420925

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cadscorelt-0.9.196-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 0958ad4f3f84f7e0044f3020cae38ff60033b8c0d1c36007dab6ac72f1e37d73
MD5 bd86512586fb8fdeb48dae0ceb882c9c
BLAKE2b-256 8c3325031553614a8a933d9e292de04a2a9e9e0086d2327ed37fe2d18338844b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cadscorelt-0.9.196-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 f4958880cc5be82bb2c42666c57cb5737eb653dd6f6febf0cd3ce7e2cb47993b
MD5 b8446b10d6957c3a3105cca44fe5bef8
BLAKE2b-256 6e3e563ec4d1617f39796a6fc5867ddf4ada639bdc47489f7e5d66c487b8c542

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cadscorelt-0.9.196-cp310-cp310-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 a6a78cb00885f90cf123a9d0171ba366e0c6e979411ee35e1c4f36fa4bda6e0b
MD5 d89b0a3e42aba19182ee1b2f6414fa83
BLAKE2b-256 ce1da2622591d127fcc5201a0cb7a8ddd17046c265edf6456644da839df68f36

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cadscorelt-0.9.196-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 fd316149112a18652481099b25ece202b4a9ab4215f4d67f785950fce91c4a97
MD5 8c05402162766083fccaa85538158302
BLAKE2b-256 2fed3c5b0592bbbfecd0d95b27ca48f8b348604668f5a86081146b9793e2e624

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cadscorelt-0.9.196-cp310-cp310-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 9001560014e1cc284a155f690bad6cdc3166c2c73a8039435988ac5ee29d7e88
MD5 f80ace8519299a51d614579190594eea
BLAKE2b-256 fcbbff9d19969dd550b32490a1aeacc67851cf6d9a31ae6cb8cd0a22821930e5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cadscorelt-0.9.196-cp310-cp310-macosx_10_15_universal2.whl
Algorithm Hash digest
SHA256 ca15e373aa518cb802b90ce3c07c5bc824798648541d8225a5bf007f45bf5271
MD5 16321afbe4b15aa8ae500923a4c4a92e
BLAKE2b-256 9d7df8bdd9827916d206e9446c1062dc0033477e12f9689c7467fa9f87c5d218

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for cadscorelt-0.9.196-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 f3960169b8535586159c27aae0b54c40fcae5287e2aa065ce5f4d3b40cffc0f4
MD5 619c86db7f8c1ccaf1ebc9bfee01ad09
BLAKE2b-256 c71f42de79a9b6afbcc18fd79db750f43d3b24ee8c616494e5b779cf4662e278

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for cadscorelt-0.9.196-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 20cad82f81f88afb668ff51b26ef0a6ce67692d36fbf43382f45d41d8761b833
MD5 dc1291aebca9d50eae64bddec87b1dcb
BLAKE2b-256 bc09ea1d4516d66db52553ad54751b8b8be245bdf195f5cdd84166cd607fb6c9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cadscorelt-0.9.196-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 e5a513c7864788ca64f078b40f14879f04d661f36cd12e6dd637e9de52223ec7
MD5 3e7ed3125241d2afbfe96180912aaf3b
BLAKE2b-256 08bc40f11226e3aebc0abbe4fe984cdbb0fbb4881a9a0a173576d80a0ec2d63d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cadscorelt-0.9.196-cp39-cp39-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 6178ae5452496360c73fa947df7dc0e527e06905db9573ad36453f97e28dc964
MD5 1d4a5dfa6e0a877c17363156b272aff1
BLAKE2b-256 4d5f20f1083bb47db780098e853cc71c4c5cf952240bd42582bfd384779b228f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cadscorelt-0.9.196-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 b841c9040c0dccc57e29ddad5f00a77f8a524d28e3d6ba895375f4ecb62e0e7f
MD5 456981b794de1ed000070e2c0547a25a
BLAKE2b-256 d36518d9607a9a1d16e3658034d4bd45e821596fa99d696fcc8e8ce8a7d8bde8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cadscorelt-0.9.196-cp39-cp39-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 21a1b1124374c2c5a200faebe421d6bce598190081dea4796e2ee8487e4094ab
MD5 b50c317dc2133416ac18dcd91c418fbb
BLAKE2b-256 effdc94dd9b020750e30586bc27a1eae965038b9a912bb2486f8ee8473a824ec

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cadscorelt-0.9.196-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 8800e58797367a9c0e38204790928f98b3d4c241a9ddf5e90dc51be7bdef937e
MD5 603efdaee71129cc28d6ed3729e6fa1e
BLAKE2b-256 13f278335d6e0176be06fcccc530b6d53582634455f5574e72c1efb8cb2e895f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cadscorelt-0.9.196-cp39-cp39-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 de2b1ccae1907c77b623dc0bb4e4a586c4624365f4e6541c2f3323a61f7986e3
MD5 2a387448c90c3ccaf56e43eccf66ac3e
BLAKE2b-256 1a7dcfdca0cc11503430ad8e3e2ba84c06dfb5c470dd2c0773aaf96b689d1d33

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cadscorelt-0.9.196-cp39-cp39-macosx_10_15_universal2.whl
Algorithm Hash digest
SHA256 0ec48e2f0b42e1cfb5b1357df61be269db6c8da7df6827c20e3ce7553ecdd412
MD5 3f49b70582e20e8f2cadedc04803c3b2
BLAKE2b-256 25bf0bd3affb59c4b8ceed7cda3227181f3f76dcebc36904844673e0bcf8e1ad

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for cadscorelt-0.9.196-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 b75960e340406abbfc89b479dc839605424a70958c9b77cff11f283325e8df1d
MD5 167991537f8f8d64d29ae2b544ffe304
BLAKE2b-256 6228414a67ed04ab0ded4f1606e94e511f4f61b76ac27d5d21e1bf63cfcfd1ae

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for cadscorelt-0.9.196-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 37f73e429f2fadb64602a5c3aa663724be612e2069ffd5ec00baa7983dc5594a
MD5 c3be8063e1ef4ca1ded6bfe93f0d4691
BLAKE2b-256 3c410dbafc334039a888a6aaeaf651a25369fa9b3eb29ce68995e2fd968338db

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cadscorelt-0.9.196-cp38-cp38-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 68c5edcdb8bf117ce145f425a0f3174cf36949c3f5c8e4000c26d7cb018d23af
MD5 b46bb87ed384e900f22ced26e9740d29
BLAKE2b-256 2ee1156c4590ccaa50204b3322921bcd7cc9e5646640e5eea1ed04bb5200e001

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cadscorelt-0.9.196-cp38-cp38-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 8780eeca5ab5f234785f7799c499893685675cdd7bd25d8ea7e383bbc7ec1167
MD5 1ccafc91a456f271b6f95ec3c69bb940
BLAKE2b-256 d051435036831a3dd4bf08cac9b3367da6549bd10a3cd4f9730f6d08d8095e41

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cadscorelt-0.9.196-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 71b9670dcef3402853ad8ff84490ccbd766db2aa1173ff5bd40541cdcf105517
MD5 39fff1a9457853becbe42f1d270f8146
BLAKE2b-256 e4a77d7cb3160dad2847e054ebc42c6921aebf65829e0acdae400fef1a062534

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cadscorelt-0.9.196-cp38-cp38-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 d4c791846e07d439ffdcd940f87a439b6027145fdb245e8db58a85eb13e4545f
MD5 7cffbb3c34ac2f05aeabe676ddd3af2d
BLAKE2b-256 c19293ff7f016de147a6d1cee6cfa12f3cfddbce38eaf466cda0b8a3c084c559

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cadscorelt-0.9.196-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 34ba563694ba36a5f3e8fc04e20edd61fdbd95d4676eae8af50aa9674ff1fc09
MD5 0015420d472be9d42c03feb5a3fc4199
BLAKE2b-256 0c836a45ce9e3b39b75c523e1231814505cd47fb643f304a603856338187feea

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cadscorelt-0.9.196-cp38-cp38-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 7313bd7e66797ba897c36b2ae775183ded0e5a17e58c898b44ff84c1f19c77ad
MD5 cf263e3c4a799d67fdd652a9a9ac30a3
BLAKE2b-256 3e78df2c08726aafe171a308141df036aa6886450bacdff69b321934627561e2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cadscorelt-0.9.196-cp38-cp38-macosx_10_15_universal2.whl
Algorithm Hash digest
SHA256 d16e0db3676b32c48a1b023860f51a9a212fb215a870f63e9570dd752c876a18
MD5 618f50cbd4b386773e39ea158b72cd0a
BLAKE2b-256 127bfae2648ed474b64c0621405d6e70f18246c875f156f10e0cdeb022131ade

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cadscorelt-0.9.196-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 e3dcf78fb53733b2dd61951a9eb356f022d372e49277ebdc4a272a09ddeb08a1
MD5 d8689ee94097cb01a0fb436695e0a935
BLAKE2b-256 de6d38ba51f37894900dea7aaa283aac11fa9d09d8cf75fc97ca41e09a03227d

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for cadscorelt-0.9.196-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 faacd9004d22684c972d7bab284c43607ea3d97ba65e0d8255dcbc2a83fdad84
MD5 9b95a1e88632609e5f1957ba3dfa3942
BLAKE2b-256 8a4f5d4a6106a587b9542d6307121ed8c374da150648ffb67147a77ba4edca56

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cadscorelt-0.9.196-cp37-cp37m-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 908886b5f9489c5f5cb7bfa06d36ea5a65dd63d9b95050ad73b5105031ab7026
MD5 58f6a402234ffcf22a8d4e8c4771c8e5
BLAKE2b-256 fd07e16218ce4e3ab67f02b17dc561b3adf27f3c76ab794194f8f116dfbe4023

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cadscorelt-0.9.196-cp37-cp37m-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 6e8e8408b06c9435da49963be31f15762907de182eeebb5dcdd7a3067331d504
MD5 d0fe664baea77cc580f827ee542ecda8
BLAKE2b-256 2f82d599c77c23224f373d590130efba46dd51d80f15220911b7637e755aa4e9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cadscorelt-0.9.196-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 ee8caffd7d317b725853a56d0e8bc50a013d7cf00d142b0feb84dea8ef091262
MD5 7fcffd622cd15903d93057700fb51eff
BLAKE2b-256 49d0743e9d317e5db18a89e187476266cb162f65d2cf09d563a825986eeaabd5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cadscorelt-0.9.196-cp37-cp37m-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 bfb553678477fa18689955d7cc813a6ffda498db8c727c7dd917525333cc03fe
MD5 1e8d087affb8f7fd4c9d8a6fa60bebc9
BLAKE2b-256 9ca857ab047bb1b74390faa249b57ff744f8a06cc2583583cac02ff6e3ba868a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cadscorelt-0.9.196-cp37-cp37m-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 4e1bccd58b747b1e9df930cd00e0833a13afe04c4bb556e48fdc8cbe66f0725d
MD5 7a50b0fd1d78df2e2cf80a0590265733
BLAKE2b-256 ea7818d356ede671026a16c56cd7cf73ad503646c17e397a384536f26dfdb3c6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cadscorelt-0.9.196-cp36-cp36m-win_amd64.whl
Algorithm Hash digest
SHA256 c719cd18b609b2128b0cd3f78999417fee86516e743d9dfa280aed854f133d6a
MD5 2a88125ecb688f794ac5e6dae8d9e594
BLAKE2b-256 a2f30304b3d59ea5d939ae3784d305a004f7f1213661ca072ce32fd38cdbde6c

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for cadscorelt-0.9.196-cp36-cp36m-win32.whl
Algorithm Hash digest
SHA256 120e225cfe85950c2727a2f6ddb06a9c8695685d11d4fb653c643007ac204624
MD5 37b8057c691f67d03908b29b90544a5f
BLAKE2b-256 4017d71b1d5eae894a362622572b111a66b46f8f22a09c5ae91d280d9b96dc89

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cadscorelt-0.9.196-cp36-cp36m-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 0bb4e8368d2dcec1a29c3f22609396e752f5591accaf658529f596db7687ff63
MD5 378e6829272808c04b7a6d81e8111df8
BLAKE2b-256 29423fbaa31636c6fb5a34c7c715f5ece9350eb939558f6f1a85edc2c612c2b3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cadscorelt-0.9.196-cp36-cp36m-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 ef5ee6710a5a68b5437bf60ced13477ba707a34a585661b7a47fdb4592cb8098
MD5 f4779b46ab3530b8d63757f78c962235
BLAKE2b-256 72b04b58a8d3a122071e757ab5aa70850d5ff2389a9f690d9a4f988df0ac7353

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cadscorelt-0.9.196-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 9ea85fc6b7b3f499a0eedbd4bf5114e940f07361e9e6ae0432b44b1cc00e85f9
MD5 41ea0c2cbd037d3f95d3454cd89f85a4
BLAKE2b-256 436cb8d650709cc9cbfd8065d82258489498901818dfdd435fe9272d3aecc52c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cadscorelt-0.9.196-cp36-cp36m-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 6b84cd186780a416957a36cd9999a4f263963aa1a3c1b36cf4ad1492e01083c5
MD5 95af3f2539d8fff3c4c7fbbbfc07c1f6
BLAKE2b-256 adda143bb7cadf5a72f3ccffababd235cfade41549742786cc884c0470b32193

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cadscorelt-0.9.196-cp36-cp36m-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 398f08bd09b0cc2a0a487b5b267f6a6448170f0e3b989f86d2ced097940566e8
MD5 c7966fa7642126eb2f673cae760326f1
BLAKE2b-256 66123a2741293b88ad325b01f0b1bb6e2cbab8260bd36e7439c4d652e85a03be

See more details on using hashes here.

Release history Release notifications | RSS feed

This release

0.9.196 This release

69 files

0.9.193

69 files

0.9.159

69 files

0.8.105

69 files

Anthropic, PBC Visionary sponsor Bloomberg Visionary sponsor Hudson River Trading Visionary sponsor Meta Visionary sponsor NVIDIA Visionary sponsor Microsoft Sustainability sponsor Depot Continuous Integration AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page