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.8.105.tar.gz (212.4 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.8.105-cp313-cp313-win_amd64.whl (481.7 kB view details)

Uploaded CPython 3.13Windows x86-64

cadscorelt-0.8.105-cp313-cp313-win32.whl (383.6 kB view details)

Uploaded CPython 3.13Windows x86

cadscorelt-0.8.105-cp313-cp313-musllinux_1_2_x86_64.whl (7.5 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

cadscorelt-0.8.105-cp313-cp313-musllinux_1_2_i686.whl (7.4 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ i686

cadscorelt-0.8.105-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (6.8 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

cadscorelt-0.8.105-cp313-cp313-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl (6.5 MB view details)

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

cadscorelt-0.8.105-cp313-cp313-macosx_11_0_arm64.whl (540.9 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

cadscorelt-0.8.105-cp313-cp313-macosx_10_15_x86_64.whl (596.7 kB view details)

Uploaded CPython 3.13macOS 10.15+ x86-64

cadscorelt-0.8.105-cp313-cp313-macosx_10_15_universal2.whl (1.1 MB view details)

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

cadscorelt-0.8.105-cp312-cp312-win_amd64.whl (481.5 kB view details)

Uploaded CPython 3.12Windows x86-64

cadscorelt-0.8.105-cp312-cp312-win32.whl (389.3 kB view details)

Uploaded CPython 3.12Windows x86

cadscorelt-0.8.105-cp312-cp312-musllinux_1_2_x86_64.whl (7.5 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

cadscorelt-0.8.105-cp312-cp312-musllinux_1_2_i686.whl (7.4 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ i686

cadscorelt-0.8.105-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (6.8 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

cadscorelt-0.8.105-cp312-cp312-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl (6.5 MB view details)

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

cadscorelt-0.8.105-cp312-cp312-macosx_11_0_arm64.whl (540.9 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

cadscorelt-0.8.105-cp312-cp312-macosx_10_15_x86_64.whl (596.7 kB view details)

Uploaded CPython 3.12macOS 10.15+ x86-64

cadscorelt-0.8.105-cp312-cp312-macosx_10_15_universal2.whl (1.1 MB view details)

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

cadscorelt-0.8.105-cp311-cp311-win_amd64.whl (480.9 kB view details)

Uploaded CPython 3.11Windows x86-64

cadscorelt-0.8.105-cp311-cp311-win32.whl (388.5 kB view details)

Uploaded CPython 3.11Windows x86

cadscorelt-0.8.105-cp311-cp311-musllinux_1_2_x86_64.whl (7.5 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

cadscorelt-0.8.105-cp311-cp311-musllinux_1_2_i686.whl (7.4 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ i686

cadscorelt-0.8.105-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (6.8 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

cadscorelt-0.8.105-cp311-cp311-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl (6.5 MB view details)

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

cadscorelt-0.8.105-cp311-cp311-macosx_11_0_arm64.whl (540.3 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

cadscorelt-0.8.105-cp311-cp311-macosx_10_15_x86_64.whl (592.5 kB view details)

Uploaded CPython 3.11macOS 10.15+ x86-64

cadscorelt-0.8.105-cp311-cp311-macosx_10_15_universal2.whl (1.1 MB view details)

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

cadscorelt-0.8.105-cp310-cp310-win_amd64.whl (480.8 kB view details)

Uploaded CPython 3.10Windows x86-64

cadscorelt-0.8.105-cp310-cp310-win32.whl (388.5 kB view details)

Uploaded CPython 3.10Windows x86

cadscorelt-0.8.105-cp310-cp310-musllinux_1_2_x86_64.whl (7.5 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

cadscorelt-0.8.105-cp310-cp310-musllinux_1_2_i686.whl (7.4 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ i686

cadscorelt-0.8.105-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (6.8 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

cadscorelt-0.8.105-cp310-cp310-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl (6.5 MB view details)

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

cadscorelt-0.8.105-cp310-cp310-macosx_11_0_arm64.whl (540.3 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

cadscorelt-0.8.105-cp310-cp310-macosx_10_15_x86_64.whl (592.5 kB view details)

Uploaded CPython 3.10macOS 10.15+ x86-64

cadscorelt-0.8.105-cp310-cp310-macosx_10_15_universal2.whl (1.1 MB view details)

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

cadscorelt-0.8.105-cp39-cp39-win_amd64.whl (480.9 kB view details)

Uploaded CPython 3.9Windows x86-64

cadscorelt-0.8.105-cp39-cp39-win32.whl (388.5 kB view details)

Uploaded CPython 3.9Windows x86

cadscorelt-0.8.105-cp39-cp39-musllinux_1_2_x86_64.whl (7.5 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ x86-64

cadscorelt-0.8.105-cp39-cp39-musllinux_1_2_i686.whl (7.4 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ i686

cadscorelt-0.8.105-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (6.8 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

cadscorelt-0.8.105-cp39-cp39-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl (6.5 MB view details)

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

cadscorelt-0.8.105-cp39-cp39-macosx_11_0_arm64.whl (540.3 kB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

cadscorelt-0.8.105-cp39-cp39-macosx_10_15_x86_64.whl (592.5 kB view details)

Uploaded CPython 3.9macOS 10.15+ x86-64

cadscorelt-0.8.105-cp39-cp39-macosx_10_15_universal2.whl (1.1 MB view details)

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

cadscorelt-0.8.105-cp38-cp38-win_amd64.whl (480.9 kB view details)

Uploaded CPython 3.8Windows x86-64

cadscorelt-0.8.105-cp38-cp38-win32.whl (388.4 kB view details)

Uploaded CPython 3.8Windows x86

cadscorelt-0.8.105-cp38-cp38-musllinux_1_2_x86_64.whl (7.5 MB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ x86-64

cadscorelt-0.8.105-cp38-cp38-musllinux_1_2_i686.whl (7.4 MB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ i686

cadscorelt-0.8.105-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (6.8 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ x86-64

cadscorelt-0.8.105-cp38-cp38-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl (6.5 MB view details)

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

cadscorelt-0.8.105-cp38-cp38-macosx_11_0_arm64.whl (540.0 kB view details)

Uploaded CPython 3.8macOS 11.0+ ARM64

cadscorelt-0.8.105-cp38-cp38-macosx_10_15_x86_64.whl (592.1 kB view details)

Uploaded CPython 3.8macOS 10.15+ x86-64

cadscorelt-0.8.105-cp38-cp38-macosx_10_15_universal2.whl (1.1 MB view details)

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

cadscorelt-0.8.105-cp37-cp37m-win_amd64.whl (480.6 kB view details)

Uploaded CPython 3.7mWindows x86-64

cadscorelt-0.8.105-cp37-cp37m-win32.whl (388.4 kB view details)

Uploaded CPython 3.7mWindows x86

cadscorelt-0.8.105-cp37-cp37m-musllinux_1_2_x86_64.whl (7.6 MB view details)

Uploaded CPython 3.7mmusllinux: musl 1.2+ x86-64

cadscorelt-0.8.105-cp37-cp37m-musllinux_1_2_i686.whl (7.5 MB view details)

Uploaded CPython 3.7mmusllinux: musl 1.2+ i686

cadscorelt-0.8.105-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (6.8 MB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.17+ x86-64

cadscorelt-0.8.105-cp37-cp37m-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl (6.5 MB view details)

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

cadscorelt-0.8.105-cp37-cp37m-macosx_10_15_x86_64.whl (591.7 kB view details)

Uploaded CPython 3.7mmacOS 10.15+ x86-64

cadscorelt-0.8.105-cp36-cp36m-win_amd64.whl (480.6 kB view details)

Uploaded CPython 3.6mWindows x86-64

cadscorelt-0.8.105-cp36-cp36m-win32.whl (388.4 kB view details)

Uploaded CPython 3.6mWindows x86

cadscorelt-0.8.105-cp36-cp36m-musllinux_1_2_x86_64.whl (7.6 MB view details)

Uploaded CPython 3.6mmusllinux: musl 1.2+ x86-64

cadscorelt-0.8.105-cp36-cp36m-musllinux_1_2_i686.whl (7.5 MB view details)

Uploaded CPython 3.6mmusllinux: musl 1.2+ i686

cadscorelt-0.8.105-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (6.8 MB view details)

Uploaded CPython 3.6mmanylinux: glibc 2.17+ x86-64

cadscorelt-0.8.105-cp36-cp36m-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl (6.5 MB view details)

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

cadscorelt-0.8.105-cp36-cp36m-macosx_10_15_x86_64.whl (591.4 kB view details)

Uploaded CPython 3.6mmacOS 10.15+ x86-64

File details

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

File metadata

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

File hashes

Hashes for cadscorelt-0.8.105.tar.gz
Algorithm Hash digest
SHA256 3dd28ccbeb0bb87bd2bbffcd7488736471839cdf344e856bd669e07b99d55993
MD5 3b7d4b3fcf2ad0ea8a54469a0e134ec9
BLAKE2b-256 cb9e2f16428692cd86e827ace23d9f66a73e722e062ac448035e0776beca57ff

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cadscorelt-0.8.105-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 45822cd6941c6f095912efb5a6cec5e7c1f1a7c1cd093496fc4e51852f1c4098
MD5 7644f010ffc646e0e65e6a270370e44b
BLAKE2b-256 9f3be3d67fd9fe218b8e8dc46a21fd04f9d160b31ca1bad3cc7ba2ef7552b6fd

See more details on using hashes here.

File details

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

File metadata

  • Download URL: cadscorelt-0.8.105-cp313-cp313-win32.whl
  • Upload date:
  • Size: 383.6 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.8.105-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 4ac6a36d2e3cc7ea06fef856f2f4412a6f56decccef32ab0b190cd52e16e7517
MD5 b0e59a43f2602c2090fe2dd9e197c0e8
BLAKE2b-256 3e3077b22e3193ec71be0078266e9e05b148f9299b66ef9028c48e067ab16bab

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cadscorelt-0.8.105-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 fea32d910f92a1be1907858cd6ba020ae3cc57f88c1666f4dbe2b8683eff49b0
MD5 083f1afdd09f5ddfa28d7c50d74689f8
BLAKE2b-256 20ba8d3714f65aa956996caf1d3b650dd662e789204c567f1b8523015fc7a814

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cadscorelt-0.8.105-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 307ccbb6c3f69e20f6773e30234dc794722960c827543b6153e72bfba90e697f
MD5 f774fcd8b2498255699f9c6290fd193d
BLAKE2b-256 73ed8dd28557e215163478ad5bad9e73969dca984b986c5482699e83c8af0c69

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cadscorelt-0.8.105-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 eedc03b283c336cf9f976b5560b102f0d7116dd2d8027defe7d284efbde6b302
MD5 1cbc0487e5cffa0a374e0fb81757ed9a
BLAKE2b-256 35e1590bb84f9d0844d15aab0f3bbc1ee5ca0b757cb89fdc68f863bcafcd5c82

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cadscorelt-0.8.105-cp313-cp313-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 b8666977f666fb422c60670aefaea896b8d3b68f8b75b2cd6f57578344c4d6a4
MD5 355c4ba8a5f9afcf0e19105e29229f99
BLAKE2b-256 bcbcad9e5c50ac37cff4030ebc86005ed6ffb1afbfcecb0bd2ca75f30f5a58c5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cadscorelt-0.8.105-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 de24052bbe11ca6f37801c98f30abf1e539b4565b413524a5367be14759b92e6
MD5 b144f1fe88eb1b281059b84eff7e86df
BLAKE2b-256 4732ddd5738c97e4e3dad779fc234ee49f55ccf6baaf209715964c6da2be921d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cadscorelt-0.8.105-cp313-cp313-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 019c49d7810b11e7d67f989880c6a4153576120e0c3bebe764e66d73c69bb430
MD5 06eb429a15d4c103e14febf3946ae28e
BLAKE2b-256 2f0bf664fa2aa535499e68fd9c849a49f68a3273b883ff0eba31cbe7dbdb1223

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cadscorelt-0.8.105-cp313-cp313-macosx_10_15_universal2.whl
Algorithm Hash digest
SHA256 22b820f5e9186b73968afa249256486432cda679b3a712aaeefea468896dd3b3
MD5 9c9fb6d29868740462356fbe61270121
BLAKE2b-256 35d7a22842904aa687af0505a0f7650fc0b4604c79aabd7adcb2e1a1b9346c26

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cadscorelt-0.8.105-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 c484bb7d0a358afaa180fa2f5a086547a6d0d868fccd8d05f877d91c3c460a74
MD5 25446dad0cb293eba2b7fb12e8b8e394
BLAKE2b-256 d78b8ebb87d844755c533f94f4e91a91cbd1d359304fa8afc7987304b2fbeee4

See more details on using hashes here.

File details

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

File metadata

  • Download URL: cadscorelt-0.8.105-cp312-cp312-win32.whl
  • Upload date:
  • Size: 389.3 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.8.105-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 037161aebaa0922b743ee51ab67a85650f09d58a87f791808b745b4690cb7738
MD5 b2d5f0de286c0734eb943f00c69ef8c3
BLAKE2b-256 d26165a910577403de8bed2e1e1e5710d6b5d0de8e95c0dc7a7f1d51ed74cb06

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cadscorelt-0.8.105-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 e0aac62d94082970deac300c9901b138f4b938aa3b6bddb2f00b78e25317b6ac
MD5 6091ca0c8beef0785ec330403ba49e4f
BLAKE2b-256 bde59a03ca6f8fe587a80ea5780da9cd9dbcc3074e1d32e58cca174629dd81e0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cadscorelt-0.8.105-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 59d3e7e40006caae475c13f7ab4742061d467d5871a841e93d0f259d9f5f2e57
MD5 915ee45592880b418518186896557fb5
BLAKE2b-256 b25d891ca2074a239b0fdcb59f90d1806ecaf739b3a7acabecfea09121a10acd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cadscorelt-0.8.105-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 8057b5a11199f97e07ec3e500b1a95d58981a625ed869a8c4d6f7c3373a13c25
MD5 a23d2d80ad66a65fc3cb9a7bf3e909e2
BLAKE2b-256 a0d269a424a4b33348c32209b0d2a389aec3370f8c63c0ccbc966291f2d00a79

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cadscorelt-0.8.105-cp312-cp312-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 49840f044d3888ee0b2a9a84a3b823527d68d4396fee86dfb0c2414e234bc327
MD5 5c187f445afe276063db5bd96694e13b
BLAKE2b-256 f9e3158afd8b8e3120aaef6631cd1b9e8f25da31188db2b0a49a9b148285b2a4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cadscorelt-0.8.105-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 18d0357f69c1b3a00a0655e7d43acd1cf662c64a3d2a10f028673ebcffe55c07
MD5 c392092ebebdc8b50fdf2d8e41c648d4
BLAKE2b-256 cb2b5d7acb5eaf115a804fada9a1923a72daf3b40bd76ccb0ddae325d526da69

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cadscorelt-0.8.105-cp312-cp312-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 1f2503f8b957b327a4234aba6e3897a485fc033d7df257d8bc2207bf3d1b99ce
MD5 8a9f1fe69dff7bf96bcad92fb35674c4
BLAKE2b-256 80fdcf22899e17f9d60bcfd33173f19a88df57723cdd102ba831ec5d0a36299f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cadscorelt-0.8.105-cp312-cp312-macosx_10_15_universal2.whl
Algorithm Hash digest
SHA256 83f0cfda68bfd28ce308caa2d5a6df02699a2debfa201c9c61ef77518985dbda
MD5 db46597592513543d0e260ddbf812444
BLAKE2b-256 36558cb0bbe7e71dd22efe2b8b2f4c810cdb8670babf219d43a4268de27ec5a4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cadscorelt-0.8.105-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 fd12889b35b7840a0259f85afbea5e78a1ff2ceebaf6e0e693aae160d105626f
MD5 66d539aa9d99d15fdabbd678b77051e3
BLAKE2b-256 73cf36e7a4cfb0dc4d059c1d027e8412273b0e2b3c6712a02327c2e318ccbc8c

See more details on using hashes here.

File details

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

File metadata

  • Download URL: cadscorelt-0.8.105-cp311-cp311-win32.whl
  • Upload date:
  • Size: 388.5 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.8.105-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 782e8f64c768117cc29f7b6029aa94fd89b18fb1aa43427d5d30fa80b08fe37a
MD5 1aa8f2f3da2341f34b7c1e4340f6bbd5
BLAKE2b-256 da8a836a655f2f7526ad3824f637b8a2f4a84b309f7740acbc99a24aa11b0fda

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cadscorelt-0.8.105-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 fa64d6e1fae10adf14f7d49a8bb01f804aada657b4e56092c59fc2854b47a651
MD5 79c5b2a422dfe8eac26be9ba50a8c377
BLAKE2b-256 e8369fd4cc8575ddc6717a1e6e29bf056ffe0c5d48f8f1cd4239b01410adc56f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cadscorelt-0.8.105-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 7bfbd5b0159c66dc1ffec28e8ffd69cc5a51bf3ac95ed287ef0d77edee9d4421
MD5 49baaec57dc2026b6abf214553f8323d
BLAKE2b-256 c2f5ead73f157963d233fc23779154ad99917224556b520e039cec080dd02e27

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cadscorelt-0.8.105-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 039c41fcd0daf9f1202c5e11bcb2e3c9eb9b6b8911023b76b2fd7a1f34d62909
MD5 3b2c171f2ad7ad9b4d090414e51441fe
BLAKE2b-256 16806b7e8e439920b318a848720a3e92527c9a7ec4866a2a0634a37b689d9c2c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cadscorelt-0.8.105-cp311-cp311-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 cbcebd1ed8571ff8db7018b9ac30aad973d4f3bc4ca00d42b1174fc02826d034
MD5 f9a8e2a177143947c6f27b8c9e0aeb31
BLAKE2b-256 64508523ba04de0a754581310b3b647862027f6757e33ed0124933f2ea44d71c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cadscorelt-0.8.105-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 0ee702c5ce58b65108649a2e38a4003b68933a5c5a06fc200784871d1ea9b4fa
MD5 11ee883e9dfa0d58e1c63fa68ff60798
BLAKE2b-256 8be94b91b0e81607f9862114fe042a36bc3257f81677bff9346c66257efb8a8f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cadscorelt-0.8.105-cp311-cp311-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 b70f509cf3885ff15154e60d72f5af528806d7aa99926110f3ad341d56060ce2
MD5 14c9f3213901c039c7fbe18ce7ad9ca8
BLAKE2b-256 b232af8fe83c0df0c9aef69212bf88ddfd5095d2aa8838e4b385780929349d72

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cadscorelt-0.8.105-cp311-cp311-macosx_10_15_universal2.whl
Algorithm Hash digest
SHA256 6d29f9a60f1707af472e41a8fde7b196b79f43245a7f573b2b67557e9e4c5563
MD5 c232012760dc875827adf7fd65645639
BLAKE2b-256 70c28b9e5fcf8c60886c90bc63381c78eb1c38159c1ef2bb9567287eea0debb9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cadscorelt-0.8.105-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 334c6eea61b4eb1e36af79ffc7212171a34959a4576baa5cf24f14c02cff9716
MD5 36fb36d49926bf1b78373a3a68ae7acb
BLAKE2b-256 eb800c15ebc4e345696626e248fec9f28b58087ef3e0a5d4d2ae6df96ed448f6

See more details on using hashes here.

File details

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

File metadata

  • Download URL: cadscorelt-0.8.105-cp310-cp310-win32.whl
  • Upload date:
  • Size: 388.5 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.8.105-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 82a8477a7c7a0f8d7d9ddc05e607d1bf300e20cba99d49174f60de8136b98175
MD5 0d810728ba6ce9e98b53788318704beb
BLAKE2b-256 75b5b755a6057a19b8bbb9433d11b435bb948ab2acc6d24576343a6080f4bdec

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cadscorelt-0.8.105-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 8abf25be041303cc9febd9da38e03e0ebd1e28d9b4a31231983af0885525cc27
MD5 a7976c4f86299b574467e6ed8b3dbd9c
BLAKE2b-256 7a72203678bda3e4efba96361d208c5681f748e8b692e0b51bbcde57c702b3ae

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cadscorelt-0.8.105-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 128a23036d996ef2a46e08977cda79a5173f1b6e9753ab6a4d6a4bb8d4edce7d
MD5 a9eb6ba14e59abb502d2ff665e680a9b
BLAKE2b-256 f2e36b136159f392e286df17162201c994d289fc3dd05f9539dad0de81ac0918

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cadscorelt-0.8.105-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 8650650316ce2c6e0bb4907c376b6b1f0dc02773db74deda3e2b155b07f78929
MD5 55b4e313b85c3437cce69e0dc5bf0ff5
BLAKE2b-256 de7ba6f0f089f67be003e5558da0d2025984d88e9a39ede5f7408d3bc1a10f3f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cadscorelt-0.8.105-cp310-cp310-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 8186ef414790f427e2afc1bcfd2a5636fa21e39fd3703508abcf1508b679386b
MD5 045a08f4863e5757c500579722d63060
BLAKE2b-256 4acc91f177fbcfe4db77a46b9760f99a1b43f5647d1199cb212e1f5d45ea2cd8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cadscorelt-0.8.105-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 10b090ab6a62a57d155e8bba36c1f1a0ef694995b6cef65175d8c919ef74c76a
MD5 516abc4b5bf5b8fce45ffcd653d6093d
BLAKE2b-256 2b80c24fd507d0a9f163c16c0670d4df91d3c7ab6fee4fa2ab6341081defdf6d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cadscorelt-0.8.105-cp310-cp310-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 41f0887dfb591b2d11df89356ef61633bd00dc31d0f88e620f1483ca5d0fbabf
MD5 91ff17b92db916098990b52fbe749fba
BLAKE2b-256 02d30f60ecc6684bd19c33854f8024218886f85d56d74db89554b35843ef3956

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cadscorelt-0.8.105-cp310-cp310-macosx_10_15_universal2.whl
Algorithm Hash digest
SHA256 6c64a57ba9ffcfb6b47574cc7624cfa1ffb3adfba2e2da0cd5dbc6fa9f52f3c2
MD5 0012e7a12023051be80f001ba8b2cc7e
BLAKE2b-256 1cfa6881e58f5f0fd0dfc9ed46697ec14b04d327f914198b3005b70037d73420

See more details on using hashes here.

File details

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

File metadata

  • Download URL: cadscorelt-0.8.105-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 480.9 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.8.105-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 3da527c291995711fc3f7256116efd047ba74533bfa91e7a24eb8375c705f3d0
MD5 958dbb4f05b4fe39696711262c78248e
BLAKE2b-256 3a16110de592535b6298bae743b7565d4adfd202cafa021e95cb95157f00ffdf

See more details on using hashes here.

File details

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

File metadata

  • Download URL: cadscorelt-0.8.105-cp39-cp39-win32.whl
  • Upload date:
  • Size: 388.5 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.8.105-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 14942cef37431e91f3e4f6a641997bd624d2a6cc5a9b7287fa7686d8e1c056be
MD5 b9a9b2e72e64fb712f35f7a9acfee1df
BLAKE2b-256 ac89e585820da4c9a47efb496692beb0789e4f568500785aba4d078bc532dac0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cadscorelt-0.8.105-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 a8a223ac80df6f047c8e506072b29fad9d869f16281aed9c455a43710d92980c
MD5 a1fbf6f424816a93e8409d473a6f45ef
BLAKE2b-256 5133d9000f6e9661edad6235f977de2cc773eb1c62a75f238507eb1f852ea1df

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cadscorelt-0.8.105-cp39-cp39-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 fd20e8cb04f95f20ec7066dfcf5ac9c62a371c484e1133abe6b4b5d407c6ad34
MD5 dce9c9b887b9b662f6c3acc055133806
BLAKE2b-256 628510b7d0d812f419541e4d1ff8448474ba60b3f55ad98279853646ff285fa8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cadscorelt-0.8.105-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 70ff94f5c850f6461f1025fc4bc7898beef443d49a765d8ace7850a85ee156d8
MD5 eb1d0fe1367d1a5c9bab61c8d0be8873
BLAKE2b-256 f199ce6f0a4ccb0445f23067f5794cf9250600c79b9b812f8dfc976b42825737

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cadscorelt-0.8.105-cp39-cp39-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 b240868f4260c66d0602e9e078d07403c7ce440346cb1ff4099ec8b2450d477f
MD5 b93cfa0e045afe8a9c923bcfd240accd
BLAKE2b-256 5e085a726b26431073d8d8d2615905165a8cc79db6bccea7fd09880e6474db70

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cadscorelt-0.8.105-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 bd5f59a214e7ac949fd1ff48a3813c630db84dfb476bd5372765012af990b43d
MD5 9743da9c0ba4178c0dd9d099621d81f6
BLAKE2b-256 bd2423cf04b25e29f1878194776869c82391c2be3a1e39a4f4d1be66489f4239

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cadscorelt-0.8.105-cp39-cp39-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 ede935ff913f6841037b44c38484663f16bdba4f3c01a7c2de5c76563230edba
MD5 2d0d735585694792189af540c04d4a01
BLAKE2b-256 b4808210ce0b3707358d5e46a30a096ce9becc56356ccfed614fd85b3e3289eb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cadscorelt-0.8.105-cp39-cp39-macosx_10_15_universal2.whl
Algorithm Hash digest
SHA256 9c409be98a5a0eeedb7f4337fd1f19878689c278ee42706801b00208a4945442
MD5 d5ee0f75fa703d3e509823a131bc1c5f
BLAKE2b-256 f4e810e4df695e933b54390773889124b833b08f00cde3008dee4501cfd36ae0

See more details on using hashes here.

File details

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

File metadata

  • Download URL: cadscorelt-0.8.105-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 480.9 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.8.105-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 563919f056d9e29bb96f6f96c7dfaf3f51dfc28c625ffa5cf1e43911fb7b2d35
MD5 a64ef9bb24babb36f262d0fe743b9d3f
BLAKE2b-256 3b07236a1d32cf3537f98a44fdf9c2fc04e6534d08dd6f180d95446115f1d0c9

See more details on using hashes here.

File details

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

File metadata

  • Download URL: cadscorelt-0.8.105-cp38-cp38-win32.whl
  • Upload date:
  • Size: 388.4 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.8.105-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 3d27b8b58b143883750f1b17bae29195cc350d9388b7a3863d077509b949a5d4
MD5 f7adc531c08849d7f8c008fd5fdc24d5
BLAKE2b-256 a1dc141156d3461b85cd9413d981317209f4f61b4501f1494064da6b105f4a7f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cadscorelt-0.8.105-cp38-cp38-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 c711855be83186e50e20b16a3b686901d90b99da66933c563a4b7b94325a5d54
MD5 099726fece9600011a84e042f9bf6cd8
BLAKE2b-256 819217341d7242295236285d0b49e0a2a8ee93ee59e03d628aabdac454a03ed5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cadscorelt-0.8.105-cp38-cp38-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 025805036237ad6c0c86642fae1e732c0741b6c65ab5d405bbc1d80289e6c71e
MD5 280e7241366436da81134c439daa7c4c
BLAKE2b-256 46cfcd879037f11e95850a4633644743b6af11ed2d72af4451b4f695cc05e142

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cadscorelt-0.8.105-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 d423b1a11d660166cda4999966f5658355d5893a6d7c318223333688adbf7616
MD5 b4944b611303427cb3988f717005be6b
BLAKE2b-256 cd02393d3cb2a8a2fd8f48062bf41b3afa8baf9e1eb6d3ce94612f699b614e61

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cadscorelt-0.8.105-cp38-cp38-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 d679b80eddb105b53230722ebc4ce7055a30e60c34acce5fcc3cc99931598d46
MD5 3acaee96eaa6c8f14a4238fd629d7d8a
BLAKE2b-256 7d97b248031e788a4f18723b21f8caf92e8ece996b54d83fe1ddacbab86f4c72

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cadscorelt-0.8.105-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 ee7c88e7fb485c12e7c61142c32b60fb4dde34b639cc27437ad18e2f673a470c
MD5 eb5dcd7569f7792f7cfe9262251f9ecd
BLAKE2b-256 00867843ff7833a1122426bb04173ad80d934d037b918c0a199ddfe5df553e42

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cadscorelt-0.8.105-cp38-cp38-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 48f38c43b47f74fd6270010ac5a813174475899fcf59fc3a36c120cc4905964c
MD5 990e4d9aa3b477b6c0f36b026df33a4c
BLAKE2b-256 ab79bb79069ac0fe30446dad00081676a80231eb2c65924733ca0611695a9eae

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cadscorelt-0.8.105-cp38-cp38-macosx_10_15_universal2.whl
Algorithm Hash digest
SHA256 6e512219d00b9ee132b15661fe5b1f40e16d9875fdccdfbe58dbd9875091ac7b
MD5 cf5ae53d2b37339c605fccf22d986e8c
BLAKE2b-256 fe950d669a326d3e666674ef45eae77abc3c24fe68e8ccc0dc10d00f90c9c1d7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cadscorelt-0.8.105-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 262be9efbbdc942af08bb2cbd117c03d3d91b29504daf0897358a691991b7de2
MD5 a177b46982cd2b0c49632c89c62b4a5b
BLAKE2b-256 d2079305f1365a7f3e17f6e57e24bdb331be45d162798db696cbfe61d4154508

See more details on using hashes here.

File details

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

File metadata

  • Download URL: cadscorelt-0.8.105-cp37-cp37m-win32.whl
  • Upload date:
  • Size: 388.4 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.8.105-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 f07931ad63b49b3528b76530272388125e0b4cb942193eb50ca5909647e5f8ca
MD5 79008ea0a5e6533f53df713644b5aff9
BLAKE2b-256 0c62aa9527e59bfd23540d62db4fe203aa281fba0a540e235379f43c6d3f4dbc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cadscorelt-0.8.105-cp37-cp37m-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 6545307999363503b3889fb0f56938c7f954722d6092209e6452be6386ebfee9
MD5 d2eec641e7943f5e29fd9070230c609c
BLAKE2b-256 d8d497cba2630708322f44e4e95eb0534d687e47a76a40484058b7e7843d4ba6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cadscorelt-0.8.105-cp37-cp37m-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 821b80e6293eb4640471d061f9626394f32080304eb7abf6cb2453ab0172481d
MD5 90f30286504d2907d6501fcce9af5cba
BLAKE2b-256 daab0b7c54d22b5fd7a37229f64cda50994ead00e0ff4214eb947b5ff851a0c5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cadscorelt-0.8.105-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 c1fe49d4f779850ef80e759639db86f1b5ac34a3d13ee3537a4afed1db460fb7
MD5 6dc445b1880e700a4862b0c71310e259
BLAKE2b-256 b32a4efac08e250c652a4f6e4852336b5811ed75c0120ad173b94717ae2ee298

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cadscorelt-0.8.105-cp37-cp37m-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 1c8727efc9064a8357c235b01135573e96a1f2ff149b9876dc4eae87b42c0773
MD5 545547e5e82cc544515d5ea2760cd289
BLAKE2b-256 7a08f93aa9752739bcae574a88183996f406b517b728d4aaa74d6220d32df7c2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cadscorelt-0.8.105-cp37-cp37m-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 d41409cd608bdf76bb109ff1a9e48fc789df0f0b50228e9e21467e8e65d18fa9
MD5 f91c505040a940e27ed3752a090891e5
BLAKE2b-256 cf9ebe8a9156c5b3a9cb2541e8edc66b8d4cf04075a7d6f427683db384b4723f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cadscorelt-0.8.105-cp36-cp36m-win_amd64.whl
Algorithm Hash digest
SHA256 c22cb9a26ed71a0c0fa38fad383619d7c3da3f9ac8b892007f54e9d537946605
MD5 ae3577a2d8a38cbb09e054bf65e69308
BLAKE2b-256 a0e474ffabe55463b47aafa5e77de08df29528c911a518cfc73179536ced2be3

See more details on using hashes here.

File details

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

File metadata

  • Download URL: cadscorelt-0.8.105-cp36-cp36m-win32.whl
  • Upload date:
  • Size: 388.4 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.8.105-cp36-cp36m-win32.whl
Algorithm Hash digest
SHA256 254012ffdcf22b3f543fba2c09e7087b20bf94c1c43f9a937acd87c46aea5996
MD5 73c18bc28e661fb39767fc6ceec2ff2d
BLAKE2b-256 8bf05472ba8fbbe945c359e2153bf7160bc51ed9f4335a1cb0b19a080ba7674b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cadscorelt-0.8.105-cp36-cp36m-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 e45f87110ee7c08c9a4d462ed24307e6ec40270b8309f88e801831b551de09b4
MD5 d8bc8db6c72fbea0640b5bec9ee4f7c8
BLAKE2b-256 9b4073a8d58d9852f977c36676f30417efa31fa18404940c5556a62cbe72cc36

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cadscorelt-0.8.105-cp36-cp36m-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 f9696c44d7ce0c379827dda8ad534f23cf9df6409da7284fd86ecea3dbcc962e
MD5 ac222dba7cb94239c9dc9d6ffab49cbb
BLAKE2b-256 11f704e6ae5226f93d00c036821880d55c69559d909be08a73a8af8cdebc640e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cadscorelt-0.8.105-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 f8b11b994e82410c373c4cebe92666184829c4d8b12bd185f7bd9de5beac661d
MD5 0262eb7aa18cfd1c0efec7cbb497a30d
BLAKE2b-256 4c35ccaf8d4db2a2f55ac1917ba6bc75b124d70757a5e36b6ada7a92f09d469b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cadscorelt-0.8.105-cp36-cp36m-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 410098be0420d9b5fc2993f75f5657d1d49f6fd2f96e72fbca1d7e70ad464ced
MD5 ad29bbce52ab6a31219c110434f6c0cc
BLAKE2b-256 4c346a5bccfc85700c619d7f89bbc865883ca3f4bceb0400dd62842746f00a68

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cadscorelt-0.8.105-cp36-cp36m-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 637327c145dbf19ff23a091dd317d6d71e8838f3eb48c76b9000c83b7ab14c0a
MD5 032e17ea0fc61eb4fbfd6a3ecface858
BLAKE2b-256 20600ddead246bf12c045452990b9ee075ed3435df9db4cc988ec1541c25c52a

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