Voronota-LT Python bindings via SWIG
Project description
Voronota-LT Python bindings
The Voronota-LT Python interface PyPI package is hosted at https://pypi.org/project/voronotalt/.
Installation
Install with pip using this command:
pip install voronotalt
Basic usage examples
Basic usage example. generic
Voronota-LT can be used in Python code as in the following example:
import voronotalt
balls = []
balls.append(voronotalt.Ball(0, 0, 2, 1))
balls.append(voronotalt.Ball(0, 1, 0, 0.5))
balls.append(voronotalt.Ball(0.38268343236509, 0.923879532511287, 0, 0.5))
balls.append(voronotalt.Ball(0.707106781186547, 0.707106781186548, 0, 0.5))
balls.append(voronotalt.Ball(0.923879532511287, 0.38268343236509, 0, 0.5))
balls.append(voronotalt.Ball(1, 0, 0, 0.5))
balls.append(voronotalt.Ball(0.923879532511287, -0.38268343236509, 0, 0.5))
balls.append(voronotalt.Ball(0.707106781186548, -0.707106781186547, 0, 0.5))
balls.append(voronotalt.Ball(0.38268343236509, -0.923879532511287, 0, 0.5))
balls.append(voronotalt.Ball(0, -1, 0, 0.5))
balls.append(voronotalt.Ball(-0.38268343236509, -0.923879532511287, 0, 0.5))
balls.append(voronotalt.Ball(-0.707106781186547, -0.707106781186548, 0, 0.5))
balls.append(voronotalt.Ball(-0.923879532511287, -0.38268343236509, 0, 0.5))
balls.append(voronotalt.Ball(-1, 0, 0, 0.5))
balls.append(voronotalt.Ball(-0.923879532511287, 0.38268343236509, 0, 0.5))
balls.append(voronotalt.Ball(-0.707106781186548, 0.707106781186547, 0, 0.5))
balls.append(voronotalt.Ball(-0.38268343236509, 0.923879532511287, 0, 0.5))
for i, ball in enumerate(balls):
print(f"ball {i} {ball.x:.4f} {ball.y:.4f} {ball.z:.4f} {ball.r:.4f}");
rt = voronotalt.RadicalTessellation(balls, probe=1.0)
contacts=list(rt.contacts)
print("contacts:")
for contact in contacts:
print(f"contact {contact.index_a} {contact.index_b} {contact.area:.4f} {contact.arc_length:.4f}")
cells=list(rt.cells)
print("cells:")
for i, cell in enumerate(cells):
print(f"cell {i} {cell.sas_area:.4f} {cell.volume:.4f}");
Basic usage example with converting output to pandas data frames
If the pandas library for data analysis is available in the Python environment, then the tessellation computation results can also be converted to pandas data frames:
rt = voronotalt.RadicalTessellation(balls, probe=1.0)
df_balls = rt.balls.to_pandas()
df_contacts = rt.contacts.to_pandas()
df_cells = rt.cells.to_pandas()
print("--------------------------------------------------------------------------------")
voronotalt.print_head_of_pandas_data_frame(df_balls)
print("--------------------------------------------------------------------------------")
voronotalt.print_head_of_pandas_data_frame(df_contacts)
print("--------------------------------------------------------------------------------")
voronotalt.print_head_of_pandas_data_frame(df_cells)
To run this example, make sure you have installed pandas:
pip install pandas
Basic usage example with Biotite to provide input
If Biotite is available in the Python environment, the Voronota-LT can be used in Python code with Biotite as in the following example:
import voronotalt
import biotite.structure.io
structure = biotite.structure.io.load_structure("./input/assembly_1ctf.cif")
rt = voronotalt.RadicalTessellation.from_biotite_atoms(structure, include_heteroatoms=False, probe=1.4)
print("contacts:")
for contact in rt.contacts:
if contact.index_a<5:
print(f"contact {contact.index_a} {contact.index_b} {contact.area:.4f} {contact.arc_length:.4f}")
cells=list(rt.cells)
print("cells:")
for i, cell in enumerate(cells[:20]):
print(f"cell {i} {cell.sas_area:.4f} {cell.volume:.4f}");
To run this example, make sure you have installed Biotite:
pip install biotite
Biomolecules-focused usage examples
Biomolecules-focused usage example, generic
Since version 1.0.1, the Voronota-LT Python bindings contain special classes and functions for processing biological macromolecules.
They folow the interface of the Voronota-LT command line software interface.
The main class is MolecularRadicalTessellation, a more biomolecules-focused counterpart of the basic RadicalTessellation class.
Below is an example of using MolecularRadicalTessellation:
import voronotalt
mrt = voronotalt.MolecularRadicalTessellation.from_file(
input_file="./input/assembly_1ctf.pdb1",
read_as_assembly=True,
restrict_contacts_for_output="[-a1 [-chain A] -a2 [-chain A2]]",
restrict_cells_for_output="[-chain A]"
)
print("inter_residue_contacts:")
for contact in mrt.inter_residue_contact_summaries:
print(f"ir_contact {contact.ID1_chain} {contact.ID1_residue_seq_number} {contact.ID1_residue_name} {contact.ID2_chain} {contact.ID2_residue_seq_number} {contact.ID2_residue_name} {contact.area:.4f}");
print("residue_cells:")
for cell in mrt.residue_cell_summaries:
print(f"r_cell {cell.ID_chain} {cell.ID_residue_seq_number} {cell.ID_residue_name} {cell.sas_area:.4f} {cell.volume:.4f}");
print("inter_chain_contacts:")
for contact in mrt.inter_chain_contact_summaries:
print(f"ic_contact {contact.ID1_chain} {contact.ID2_chain} {contact.area:.4f}");
print("chain_cells:")
for cell in mrt.chain_cell_summaries:
print(f"c_cell {cell.ID_chain} {cell.sas_area:.4f} {cell.volume:.4f}");
mrt = voronotalt.MolecularRadicalTessellation.from_file(
input_file="./input/assembly_1ctf.cif",
record_everything_possible=False,
record_inter_residue_contact_summaries=True,
record_inter_chain_contact_summaries=True,
record_chain_cell_summaries=True,
restrict_contacts_for_output="[-a1 [-chain A] -a2! [-chain A]]"
)
print("inter_residue_contacts:")
for contact in mrt.inter_residue_contact_summaries:
print(f"ir_contact {contact.ID1_chain} {contact.ID1_residue_seq_number} {contact.ID1_residue_name} {contact.ID2_chain} {contact.ID2_residue_seq_number} {contact.ID2_residue_name} {contact.area:.4f}");
print("inter_chain_contacts:")
for contact in mrt.inter_chain_contact_summaries:
print(f"ic_contact {contact.ID1_chain} {contact.ID2_chain} {contact.area:.4f}");
print("chain_cells:")
for cell in mrt.chain_cell_summaries:
print(f"c_cell {cell.ID_chain} {cell.sas_area:.4f} {cell.volume:.4f}");
Biomolecules-focused usage example with converting output to pandas data frames
Similarly to RadicalTessellation, the MolecularRadicalTessellation allows
converting the tessellation computation results to pandas data frames
if the pandas library for data analysis is available in the Python environment.
Below is an example that prints heads of different output data frames that came from the MolecularRadicalTessellation object:
import voronotalt
mrt = voronotalt.MolecularRadicalTessellation.from_file(
input_file="./input/assembly_1ctf.pdb1",
read_as_assembly=True,
restrict_contacts_for_output="[-a1 [-chain A] -a2 [-chain A2]]",
restrict_cells_for_output="[-chain A]"
)
df_atoms = mrt.atom_balls.to_pandas()
df_inter_atom_contacts = mrt.inter_atom_contact_summaries.to_pandas()
df_inter_residue_contacts = mrt.inter_residue_contact_summaries.to_pandas()
df_inter_chain_contacts = mrt.inter_chain_contact_summaries.to_pandas()
df_atom_cells = mrt.atom_cell_summaries.to_pandas()
df_residue_cells = mrt.residue_cell_summaries.to_pandas()
df_chain_cells = mrt.chain_cell_summaries.to_pandas()
print("--------------------------------------------------------------------------------")
voronotalt.print_head_of_pandas_data_frame(df_atoms)
print("--------------------------------------------------------------------------------")
voronotalt.print_head_of_pandas_data_frame(df_inter_atom_contacts)
print("--------------------------------------------------------------------------------")
voronotalt.print_head_of_pandas_data_frame(df_inter_residue_contacts)
print("--------------------------------------------------------------------------------")
voronotalt.print_head_of_pandas_data_frame(df_inter_chain_contacts)
print("--------------------------------------------------------------------------------")
voronotalt.print_head_of_pandas_data_frame(df_atom_cells)
print("--------------------------------------------------------------------------------")
voronotalt.print_head_of_pandas_data_frame(df_residue_cells)
print("--------------------------------------------------------------------------------")
voronotalt.print_head_of_pandas_data_frame(df_chain_cells)
To run this example, make sure you have installed pandas:
pip install pandas
Biomolecules-focused usage example with Biotite to provide input
If Biotite is available in the Python environment,
MolecularRadicalTessellation can use biotite.structure for input:
import voronotalt
import biotite.structure.io
structure = biotite.structure.io.load_structure("./input/assembly_1ctf.cif")
mrt = voronotalt.MolecularRadicalTessellation.from_biotite_atoms(structure, include_heteroatoms=False)
print("inter_residue_contacts:")
for contact in mrt.inter_residue_contact_summaries:
print(f"ir_contact {contact.ID1_chain} {contact.ID1_residue_seq_number} {contact.ID1_residue_name} {contact.ID2_chain} {contact.ID2_residue_seq_number} {contact.ID2_residue_name} {contact.area:.4f}");
print("residue_cells:")
for cell in mrt.residue_cell_summaries:
print(f"r_cell {cell.ID_chain} {cell.ID_residue_seq_number} {cell.ID_residue_name} {cell.sas_area:.4f} {cell.volume:.4f}");
To run this example, make sure you have installed Biotite:
pip install biotite
Biomolecules-focused usage example with Gemmi to provide input
If Gemmi is available in the Python environment,
MolecularRadicalTessellation can use gemmi.Model for input:
import voronotalt
import gemmi
structure=gemmi.read_structure("./input/assembly_1ctf.cif")
model=structure[0]
mrt = voronotalt.MolecularRadicalTessellation.from_gemmi_model_atoms(model, include_heteroatoms=False)
print("inter_residue_contacts:")
for contact in mrt.inter_residue_contact_summaries:
print(f"ir_contact {contact.ID1_chain} {contact.ID1_residue_seq_number} {contact.ID1_residue_name} {contact.ID2_chain} {contact.ID2_residue_seq_number} {contact.ID2_residue_name} {contact.area:.4f}");
print("residue_cells:")
for cell in mrt.residue_cell_summaries:
print(f"r_cell {cell.ID_chain} {cell.ID_residue_seq_number} {cell.ID_residue_name} {cell.sas_area:.4f} {cell.volume:.4f}");
To run this example, make sure you have installed Gemmi:
pip install gemmi
Biomolecules-focused usage example with Biopython to provide input
If Biopython is available in the Python environment,
MolecularRadicalTessellation can use Biopython parsing results for input:
import voronotalt
import Bio.PDB
parser = Bio.PDB.MMCIFParser(QUIET=True)
structure = parser.get_structure("id", "./input/assembly_1ctf.cif")
atoms=structure.get_atoms()
mrt = voronotalt.MolecularRadicalTessellation.from_biopython_atoms(atoms, include_heteroatoms=False)
print("inter_residue_contacts:")
for contact in mrt.inter_residue_contact_summaries:
print(f"ir_contact {contact.ID1_chain} {contact.ID1_residue_seq_number} {contact.ID1_residue_name} {contact.ID2_chain} {contact.ID2_residue_seq_number} {contact.ID2_residue_name} {contact.area:.4f}");
print("residue_cells:")
for cell in mrt.residue_cell_summaries:
print(f"r_cell {cell.ID_chain} {cell.ID_residue_seq_number} {cell.ID_residue_name} {cell.sas_area:.4f} {cell.volume:.4f}");
To run this example, make sure you have installed Biopython:
pip install biopython
Biomolecules-focused usage example with custom radii
MolecularRadicalTessellation can use a configuration file to specify what van der Waals radii
to assign to different atoms based on their names and their residue names:
import voronotalt
voronotalt.configure_molecular_radii_assignment_rules("./input/custom_radii.txt");
mrt = voronotalt.MolecularRadicalTessellation.from_file(
input_file="./input/assembly_1ctf.pdb1",
read_as_assembly=True,
restrict_contacts_for_output="[-a1 [-chain A] -a2 [-chain A2]]",
restrict_cells_for_output="[-chain A]"
)
df_atoms = mrt.atom_balls.to_pandas()
df_inter_atom_contacts = mrt.inter_atom_contact_summaries.to_pandas()
df_inter_residue_contacts = mrt.inter_residue_contact_summaries.to_pandas()
df_inter_chain_contacts = mrt.inter_chain_contact_summaries.to_pandas()
df_atom_cells = mrt.atom_cell_summaries.to_pandas()
df_residue_cells = mrt.residue_cell_summaries.to_pandas()
df_chain_cells = mrt.chain_cell_summaries.to_pandas()
print("--------------------------------------------------------------------------------")
voronotalt.print_head_of_pandas_data_frame(df_atoms, n=20)
print("--------------------------------------------------------------------------------")
voronotalt.print_head_of_pandas_data_frame(df_inter_chain_contacts)
print("--------------------------------------------------------------------------------")
voronotalt.print_head_of_pandas_data_frame(df_chain_cells)
A custom radii configuration file format is the same as the one used by the standalone Voronota and Voronota-LT software. An example of a full radii configuration file is here.
Voronota-LT Rust bindings
Thanks to Mikael Lund, there is also Rust interface for Voronota-LT at https://github.com/mlund/voronota-rs.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distributions
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file voronotalt-1.1.479.tar.gz.
File metadata
- Download URL: voronotalt-1.1.479.tar.gz
- Upload date:
- Size: 181.2 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.12.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
6e4a3a38be09d433bb4b0c6b61127021135fa3990bb14dbc6dc6b8376451d980
|
|
| MD5 |
e9d94c870fed7cd6cd36a9d6eda46d57
|
|
| BLAKE2b-256 |
a3d8fb97061dc6a6b4733a88b300840205824c6bad2fd6bb79998e165f72c1d8
|
File details
Details for the file voronotalt-1.1.479-cp313-cp313-win_amd64.whl.
File metadata
- Download URL: voronotalt-1.1.479-cp313-cp313-win_amd64.whl
- Upload date:
- Size: 388.2 kB
- Tags: CPython 3.13, Windows x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.12.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
30c1dfbd60201173b258361ccd084c53330887665c0b3132bc29a4c40768885d
|
|
| MD5 |
0adb6e0c6f1fa5ab5fc428eb17329697
|
|
| BLAKE2b-256 |
33f5d1725d375262a928b17be72df91073d5929c19e6e98f54e521217cc4f68b
|
File details
Details for the file voronotalt-1.1.479-cp313-cp313-win32.whl.
File metadata
- Download URL: voronotalt-1.1.479-cp313-cp313-win32.whl
- Upload date:
- Size: 298.9 kB
- Tags: CPython 3.13, Windows x86
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.12.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
dace8c73920815df23a8427317558d28697a96e424beb39c1ef4df2f9a418e0d
|
|
| MD5 |
6b807777c95c241b37749377d4d7a70f
|
|
| BLAKE2b-256 |
ad35f421b729f354ab65010592fd32038ed467b5ecf3e95e2cefedfeab7c2853
|
File details
Details for the file voronotalt-1.1.479-cp313-cp313-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: voronotalt-1.1.479-cp313-cp313-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 6.0 MB
- Tags: CPython 3.13, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.12.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
dedec1c1f333d244f1a3e4586d4c4ab0c36ff9c6d7f8a12d344462a849fc2a20
|
|
| MD5 |
183ce3cbcc50c5a1c96aa12f42b983c3
|
|
| BLAKE2b-256 |
2a5bba6a7460c3ed476bd10d9430db33b5fa3836bd9e0e2dbe827c14328c1788
|
File details
Details for the file voronotalt-1.1.479-cp313-cp313-musllinux_1_2_i686.whl.
File metadata
- Download URL: voronotalt-1.1.479-cp313-cp313-musllinux_1_2_i686.whl
- Upload date:
- Size: 5.9 MB
- Tags: CPython 3.13, musllinux: musl 1.2+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.12.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
bd8620c0ed6df05f75a663a756c1f20cfb1a62305a5d73bd06042a54c02d4ad6
|
|
| MD5 |
cb85b238a6b1045509179fd590256c36
|
|
| BLAKE2b-256 |
7bf9878110a0910e86f9acec7b889c3b72547d0a413b625b50423a2ccd7fda60
|
File details
Details for the file voronotalt-1.1.479-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.
File metadata
- Download URL: voronotalt-1.1.479-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 5.1 MB
- Tags: CPython 3.13, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.12.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
33db24f1619fb4cf314cdcd199e9d82b3282e153dda0308b242a569707d4505d
|
|
| MD5 |
897c78da012a1b5754d6390d88422d2f
|
|
| BLAKE2b-256 |
e696adc845bb8ef3203a89ed6ca64d08bd51699aeaa3c00c3c2c56fb33ad5134
|
File details
Details for the file voronotalt-1.1.479-cp313-cp313-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl.
File metadata
- Download URL: voronotalt-1.1.479-cp313-cp313-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl
- Upload date:
- Size: 4.8 MB
- Tags: CPython 3.13, manylinux: glibc 2.12+ i686, manylinux: glibc 2.17+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.12.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
7a1c74fa5f9ab78cdf4a63b1192601ce8d54a97b18578d731ff020f16cea8aff
|
|
| MD5 |
194aa8a3884ae8ec08575c7585d24565
|
|
| BLAKE2b-256 |
abc4f135a9ccedbbd9299c802eef9b7558f21daae4e70efc32db99fc74371c3e
|
File details
Details for the file voronotalt-1.1.479-cp313-cp313-macosx_11_0_arm64.whl.
File metadata
- Download URL: voronotalt-1.1.479-cp313-cp313-macosx_11_0_arm64.whl
- Upload date:
- Size: 415.2 kB
- Tags: CPython 3.13, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.12.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
703b848d023582889c7b8961cc61ae0c42a95260f06704fdea944139ed1ef433
|
|
| MD5 |
a1d44b68ac58c19ce46d5a52c2dae221
|
|
| BLAKE2b-256 |
eaf20ef8a437729fba607df50e1e430211a73400f699af8e0af9674e79eaa9dc
|
File details
Details for the file voronotalt-1.1.479-cp313-cp313-macosx_10_13_x86_64.whl.
File metadata
- Download URL: voronotalt-1.1.479-cp313-cp313-macosx_10_13_x86_64.whl
- Upload date:
- Size: 452.5 kB
- Tags: CPython 3.13, macOS 10.13+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.12.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
66cd2add2b97d955a86f293b1467a5064c8cd011726de6319ada585ed457f1c8
|
|
| MD5 |
45a532e7a01a9adf5f5ce25eb0cc2c31
|
|
| BLAKE2b-256 |
54171543b1da0ee3c7e46917819b244f9090cde870a5d94cc8a78715bc192c2c
|
File details
Details for the file voronotalt-1.1.479-cp313-cp313-macosx_10_13_universal2.whl.
File metadata
- Download URL: voronotalt-1.1.479-cp313-cp313-macosx_10_13_universal2.whl
- Upload date:
- Size: 854.0 kB
- Tags: CPython 3.13, macOS 10.13+ universal2 (ARM64, x86-64)
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.12.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
4b6cf9a2a5dabb0d22ce3247ca86be6075949d843397f087513893892a62bb3e
|
|
| MD5 |
800b1bedc81cd7c5b82930ae539bc1f9
|
|
| BLAKE2b-256 |
331870bbf67aa59aadc8bc16af74cbfd255e248acc681e7d3eb70d9db9d41f65
|
File details
Details for the file voronotalt-1.1.479-cp312-cp312-win_amd64.whl.
File metadata
- Download URL: voronotalt-1.1.479-cp312-cp312-win_amd64.whl
- Upload date:
- Size: 388.3 kB
- Tags: CPython 3.12, Windows x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.12.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
7b31e4efa766a9e6137d745576b2b0474fc4d1cb91461f9dfee9dd9b8dc80568
|
|
| MD5 |
3bb37f49e517c9af6012196b4c7438b0
|
|
| BLAKE2b-256 |
4266be38924629b8c90029261d91ab9ce248815a58e46021d29ac1e15faebda5
|
File details
Details for the file voronotalt-1.1.479-cp312-cp312-win32.whl.
File metadata
- Download URL: voronotalt-1.1.479-cp312-cp312-win32.whl
- Upload date:
- Size: 303.5 kB
- Tags: CPython 3.12, Windows x86
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.12.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
de3e3ca99678f6ea71d96aba8fcc8b753cf3c1936daf86385f3abfd1509ec338
|
|
| MD5 |
a0bb3b04f4ec3ea0361a0e6f8251f0ed
|
|
| BLAKE2b-256 |
3b5701f03a4a883a84f35800a4fc123bc8591981cf0c5c7cc22a98ab72122610
|
File details
Details for the file voronotalt-1.1.479-cp312-cp312-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: voronotalt-1.1.479-cp312-cp312-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 6.0 MB
- Tags: CPython 3.12, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.12.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
ea577875d75d52b94e23222d5bc3ea49f8f22e6b893b33c220c96c313fb581c2
|
|
| MD5 |
bdec0e985e9d87c2ba5d12e79c7ea963
|
|
| BLAKE2b-256 |
ca1824cc191aaf20c161e8c1476e3d21f89ec79682f90b8373f760934af99ab2
|
File details
Details for the file voronotalt-1.1.479-cp312-cp312-musllinux_1_2_i686.whl.
File metadata
- Download URL: voronotalt-1.1.479-cp312-cp312-musllinux_1_2_i686.whl
- Upload date:
- Size: 5.9 MB
- Tags: CPython 3.12, musllinux: musl 1.2+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.12.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
6c1b6d2d6f5bfc79dc4657810b93eab3bdfc6dfd10c940a53806052df16b2c72
|
|
| MD5 |
03de92dd83d9171b3453af92de7ce0d6
|
|
| BLAKE2b-256 |
fbaa2fdde997e56f26466cb3fc7948f88f1720bec3279f66253f3c5a8977affa
|
File details
Details for the file voronotalt-1.1.479-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.
File metadata
- Download URL: voronotalt-1.1.479-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 5.1 MB
- Tags: CPython 3.12, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.12.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
bbc3e44c1fae2d47e452432e0bede2da5639727725fcc0122dc40427fa3eae12
|
|
| MD5 |
dccbcfd41f9abec83cf56162871a3424
|
|
| BLAKE2b-256 |
7208c4ae1874136aa0dbc4c1bd4ebcd10a7778acd207f8a8967460bb528a54fc
|
File details
Details for the file voronotalt-1.1.479-cp312-cp312-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl.
File metadata
- Download URL: voronotalt-1.1.479-cp312-cp312-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl
- Upload date:
- Size: 4.8 MB
- Tags: CPython 3.12, manylinux: glibc 2.12+ i686, manylinux: glibc 2.17+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.12.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
db657e1d29198fb28271f750f3c3f59dc955c0be23238df65ef9557b941842df
|
|
| MD5 |
ec46c2178de8ce0a8b17a0f0e082c2af
|
|
| BLAKE2b-256 |
3b956d361daa044a5bb475598f9d52b99a45035066dd1fb05b7d115bd4ea93b9
|
File details
Details for the file voronotalt-1.1.479-cp312-cp312-macosx_11_0_arm64.whl.
File metadata
- Download URL: voronotalt-1.1.479-cp312-cp312-macosx_11_0_arm64.whl
- Upload date:
- Size: 415.2 kB
- Tags: CPython 3.12, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.12.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
f58e952d98a805bdef93261a861fef6eb7f5ddce8895d1825b2cba413981f2ad
|
|
| MD5 |
2b044afd001295242ba0a927f9b12ca4
|
|
| BLAKE2b-256 |
7913017e2469265581db0b2e857c25c5448a6cd351bc5d5f362eab0145160333
|
File details
Details for the file voronotalt-1.1.479-cp312-cp312-macosx_10_13_x86_64.whl.
File metadata
- Download URL: voronotalt-1.1.479-cp312-cp312-macosx_10_13_x86_64.whl
- Upload date:
- Size: 452.5 kB
- Tags: CPython 3.12, macOS 10.13+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.12.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
38bf4d4ed63ab2e4dc12e5ac78450a69c7df17cef064c21aef284c2b2ee0103b
|
|
| MD5 |
bcdea4758bdba546295175ae2355c2a6
|
|
| BLAKE2b-256 |
d1ee79127a7178dfa771fae33d7f19567e98118cc35954842bdec83b15cda7f2
|
File details
Details for the file voronotalt-1.1.479-cp312-cp312-macosx_10_13_universal2.whl.
File metadata
- Download URL: voronotalt-1.1.479-cp312-cp312-macosx_10_13_universal2.whl
- Upload date:
- Size: 854.0 kB
- Tags: CPython 3.12, macOS 10.13+ universal2 (ARM64, x86-64)
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.12.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
e95afc9757f22db8a84f395037d597e2119f93ffd35d80d8f699dd5d6d26ab91
|
|
| MD5 |
f1706ee69a3564ea480ec103a454a16c
|
|
| BLAKE2b-256 |
d84921c80b4782488cd9f6910b1069758269386c640e9a5eb0a50277f2c6d2be
|
File details
Details for the file voronotalt-1.1.479-cp311-cp311-win_amd64.whl.
File metadata
- Download URL: voronotalt-1.1.479-cp311-cp311-win_amd64.whl
- Upload date:
- Size: 388.0 kB
- Tags: CPython 3.11, Windows x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.12.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
5c2ff3aeaeef3154ee08f22710c203e2f022c29fa27fe5075a0ffda071dcf3e4
|
|
| MD5 |
6d02e49514b20d68f316de281aed21fc
|
|
| BLAKE2b-256 |
fe4ad45bc9cb9154898b9066d7b2dca1ec9c9437a7a9f45ec6b4fb2e48b92af5
|
File details
Details for the file voronotalt-1.1.479-cp311-cp311-win32.whl.
File metadata
- Download URL: voronotalt-1.1.479-cp311-cp311-win32.whl
- Upload date:
- Size: 303.4 kB
- Tags: CPython 3.11, Windows x86
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.12.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
e816a41ef943b59d7cab201c9360e51b4d9fe007adb62fe0ac741244eab19762
|
|
| MD5 |
bfd7ab85edc34bd85840983f99efd3ad
|
|
| BLAKE2b-256 |
d039c988ee49015b214b75fd8711ff51eedac9c65bc22a0a2c4d3daac281189f
|
File details
Details for the file voronotalt-1.1.479-cp311-cp311-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: voronotalt-1.1.479-cp311-cp311-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 6.0 MB
- Tags: CPython 3.11, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.12.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
9246c16ce16895870021583f55fb4cc730730273b7c0d02427fbfed3d5836d4b
|
|
| MD5 |
80497012149fcc9b92f6f339e6e48f47
|
|
| BLAKE2b-256 |
e9318f627b980039bf3708cd38ab49141f78a2f63d51745a7b42ff7dcaad7fda
|
File details
Details for the file voronotalt-1.1.479-cp311-cp311-musllinux_1_2_i686.whl.
File metadata
- Download URL: voronotalt-1.1.479-cp311-cp311-musllinux_1_2_i686.whl
- Upload date:
- Size: 5.9 MB
- Tags: CPython 3.11, musllinux: musl 1.2+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.12.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
91b6be0da5eba3d452e6f701b1b19d88368d66deb2324e96d3e3b9a7952ccfcb
|
|
| MD5 |
e359c332176c943834360fcf6dbf97cd
|
|
| BLAKE2b-256 |
d1c661878558aafd0750a11c28c1580c51817adcc25ede8626a3f67351fc1279
|
File details
Details for the file voronotalt-1.1.479-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.
File metadata
- Download URL: voronotalt-1.1.479-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 5.0 MB
- Tags: CPython 3.11, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.12.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
090190658c16590e5d926edc16a3072e92e966c808fd497f3af6557cc509df20
|
|
| MD5 |
c60721b8cc3acd9bcf5466d5cc6a7112
|
|
| BLAKE2b-256 |
4307f07feb43148421fa275817866e72a562145c58afa69f2259aa50bc9fecc7
|
File details
Details for the file voronotalt-1.1.479-cp311-cp311-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl.
File metadata
- Download URL: voronotalt-1.1.479-cp311-cp311-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl
- Upload date:
- Size: 4.8 MB
- Tags: CPython 3.11, manylinux: glibc 2.12+ i686, manylinux: glibc 2.17+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.12.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
3e17326ff6ee7fd77c8de420f984a72f645b388c5016d5cdcc55d5a07915f13e
|
|
| MD5 |
cae19ea64eb523b24bb205415ba6b6a7
|
|
| BLAKE2b-256 |
19cedad87a7f386ac1b4c76789a4dabd10aa6af60f3e698847df9cc724162a5a
|
File details
Details for the file voronotalt-1.1.479-cp311-cp311-macosx_11_0_arm64.whl.
File metadata
- Download URL: voronotalt-1.1.479-cp311-cp311-macosx_11_0_arm64.whl
- Upload date:
- Size: 414.5 kB
- Tags: CPython 3.11, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.12.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
4ee3469161cc210b3ae282fa0685f2385d3037664c0741666133492308b4a91f
|
|
| MD5 |
42d746a46144d121eafd3e74567eef77
|
|
| BLAKE2b-256 |
87133b62d008d799a64454c8aea92fa74fa1b6c85a168396d7a72858d9653e47
|
File details
Details for the file voronotalt-1.1.479-cp311-cp311-macosx_10_9_x86_64.whl.
File metadata
- Download URL: voronotalt-1.1.479-cp311-cp311-macosx_10_9_x86_64.whl
- Upload date:
- Size: 449.2 kB
- Tags: CPython 3.11, macOS 10.9+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.12.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
6b1f3eeaef9fa336006536f4c389f6a999e1ab0380d363ec277e4bc58eb21cb6
|
|
| MD5 |
75d24fe04e32214fcc7595f8774a37d8
|
|
| BLAKE2b-256 |
d916a0e7404a8f061be2670735a65c885a69f7acc36954f22b33bc9b46a9b9c4
|
File details
Details for the file voronotalt-1.1.479-cp311-cp311-macosx_10_9_universal2.whl.
File metadata
- Download URL: voronotalt-1.1.479-cp311-cp311-macosx_10_9_universal2.whl
- Upload date:
- Size: 848.9 kB
- Tags: CPython 3.11, macOS 10.9+ universal2 (ARM64, x86-64)
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.12.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
d8f15de3a410f0e6a6ee506efa38a0028362ada57d405e5cccf060b2bb2d2ab2
|
|
| MD5 |
f810014397818c24aeb76936e6943dce
|
|
| BLAKE2b-256 |
852660bd91ab4cff6d9af2159e670e9043adacf28dc5e7732c9776d88a7783de
|
File details
Details for the file voronotalt-1.1.479-cp310-cp310-win_amd64.whl.
File metadata
- Download URL: voronotalt-1.1.479-cp310-cp310-win_amd64.whl
- Upload date:
- Size: 388.0 kB
- Tags: CPython 3.10, Windows x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.12.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
0098cc179dbfa6643615705143f825c5e823bb8381b3c428a049264b8a16c5c2
|
|
| MD5 |
5753f5a28c28963cf12718076904481c
|
|
| BLAKE2b-256 |
f422b156d725452015336be5d495090cd285a9ea45bcea3a10d3464bf96c720f
|
File details
Details for the file voronotalt-1.1.479-cp310-cp310-win32.whl.
File metadata
- Download URL: voronotalt-1.1.479-cp310-cp310-win32.whl
- Upload date:
- Size: 303.4 kB
- Tags: CPython 3.10, Windows x86
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.12.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
2527211c55d27fc730bbd00fa996db696677f4ef6b69d9ceed06ce4415a6dc37
|
|
| MD5 |
9ba070274111c7d2860cd3ce45d4ee85
|
|
| BLAKE2b-256 |
efebf0194c3c4c81b7c43ce3fd89c9d7fa915720f0551733bc53a1a3c614f5dc
|
File details
Details for the file voronotalt-1.1.479-cp310-cp310-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: voronotalt-1.1.479-cp310-cp310-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 6.0 MB
- Tags: CPython 3.10, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.12.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
ed7bbe41b1bb26e372c62c947f750c5e2e961f4de1acb3b4e248c1ee0ed8f0e8
|
|
| MD5 |
829dbc8d676c8240df134089c2465a0c
|
|
| BLAKE2b-256 |
9116f7ba492e1c56ff071356d1e5959d0ec086029dc65c417db6afab42a9583a
|
File details
Details for the file voronotalt-1.1.479-cp310-cp310-musllinux_1_2_i686.whl.
File metadata
- Download URL: voronotalt-1.1.479-cp310-cp310-musllinux_1_2_i686.whl
- Upload date:
- Size: 5.9 MB
- Tags: CPython 3.10, musllinux: musl 1.2+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.12.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
193ddb3d4f6d3559d3a8f3ecbf06f86cc8ec2a7af87b35188df8168ee569391a
|
|
| MD5 |
14146da8b0de52274f5fa1d68d1011d4
|
|
| BLAKE2b-256 |
81a208b3a6540f721ee9b4c75efe060132c0171858fd905ef6d5c15f83eed48c
|
File details
Details for the file voronotalt-1.1.479-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.
File metadata
- Download URL: voronotalt-1.1.479-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 5.0 MB
- Tags: CPython 3.10, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.12.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
4fdfa1bba4e165e99cf96404214a6ec4e1515785a341e39ce9cf3a3948a0f6fa
|
|
| MD5 |
8a3e7d024a0e9fce87522d67a1885f84
|
|
| BLAKE2b-256 |
c9fdb45a07c5968962a8d97fb0a9f2783ed05935055ddf8f678b0cdb8ce63a2a
|
File details
Details for the file voronotalt-1.1.479-cp310-cp310-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl.
File metadata
- Download URL: voronotalt-1.1.479-cp310-cp310-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl
- Upload date:
- Size: 4.8 MB
- Tags: CPython 3.10, manylinux: glibc 2.12+ i686, manylinux: glibc 2.17+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.12.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
921b59c9487dceae41f8b6f0169bf4e0d2b9449567904e0095d99f0dfa05d72c
|
|
| MD5 |
96b008511a5e66ead2c932247952013a
|
|
| BLAKE2b-256 |
b67a8e7fc2217cc4305c9083ecbbc257b5b3353dcd131cf897cba7d7df688bae
|
File details
Details for the file voronotalt-1.1.479-cp310-cp310-macosx_11_0_arm64.whl.
File metadata
- Download URL: voronotalt-1.1.479-cp310-cp310-macosx_11_0_arm64.whl
- Upload date:
- Size: 414.5 kB
- Tags: CPython 3.10, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.12.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
70b51ee2ad50572cbffa1a5d81e64bef133a956bdc42b3f32fd6da4617cdcf72
|
|
| MD5 |
699852501eed22a315d08cf9f471dbfe
|
|
| BLAKE2b-256 |
e3f820313bb42532805a44aabd4cb2cc462f4ecb134b1dfa5d0512eb350561ce
|
File details
Details for the file voronotalt-1.1.479-cp310-cp310-macosx_10_9_x86_64.whl.
File metadata
- Download URL: voronotalt-1.1.479-cp310-cp310-macosx_10_9_x86_64.whl
- Upload date:
- Size: 449.2 kB
- Tags: CPython 3.10, macOS 10.9+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.12.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
026743f0ba3905f1383f2d89850eb1e4d944530ae31359744007b2000a416913
|
|
| MD5 |
ac869e8453e7428d7e6d5988f25b4aeb
|
|
| BLAKE2b-256 |
caef41a7eff6f7c154e80e46801dce989fdab4ff548198fba6e2a866e4660599
|
File details
Details for the file voronotalt-1.1.479-cp310-cp310-macosx_10_9_universal2.whl.
File metadata
- Download URL: voronotalt-1.1.479-cp310-cp310-macosx_10_9_universal2.whl
- Upload date:
- Size: 848.9 kB
- Tags: CPython 3.10, macOS 10.9+ universal2 (ARM64, x86-64)
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.12.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
55d151682d7416144192910c2912ac580045767d02e3bca832496155e3b564c1
|
|
| MD5 |
873db3b2178f0863cba14790783284a8
|
|
| BLAKE2b-256 |
ab83c4e9bd583b563766a4feb721e2a0c103ffb07c5107db0427c05b24f51b0f
|
File details
Details for the file voronotalt-1.1.479-cp39-cp39-win_amd64.whl.
File metadata
- Download URL: voronotalt-1.1.479-cp39-cp39-win_amd64.whl
- Upload date:
- Size: 388.0 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
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
1c909e0cb04eab8db07a3e8f94106d6b4304c9764d8722eb957778679e839a0f
|
|
| MD5 |
78c799806c1da0d80f398f2be9c52167
|
|
| BLAKE2b-256 |
dc5a1781a4dc3c87a5546b5241191e729d7e1aaf6b32dc0f18d57da3812ebc34
|
File details
Details for the file voronotalt-1.1.479-cp39-cp39-win32.whl.
File metadata
- Download URL: voronotalt-1.1.479-cp39-cp39-win32.whl
- Upload date:
- Size: 303.2 kB
- Tags: CPython 3.9, Windows x86
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.12.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
39b6bc13089a1c47b3cd98842e52d801cd7442703055077855e5560c604cf568
|
|
| MD5 |
459db3ada5685e8af66c95cdfee3d468
|
|
| BLAKE2b-256 |
64cb8d6ddabb7bdd18c853f86a6918afdd350b136581daca4e2fb2a682da4f95
|
File details
Details for the file voronotalt-1.1.479-cp39-cp39-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: voronotalt-1.1.479-cp39-cp39-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 6.0 MB
- Tags: CPython 3.9, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.12.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
04e23a99b2500e3e974b1882a15a557acdadd1a09239e5a7a5512740abfd1c3c
|
|
| MD5 |
4ed3357b4724cd28c305a171faaf3b64
|
|
| BLAKE2b-256 |
60072fb494d2bde0b853fe35301813959145b3664eba25a81748c85b6e6f4faa
|
File details
Details for the file voronotalt-1.1.479-cp39-cp39-musllinux_1_2_i686.whl.
File metadata
- Download URL: voronotalt-1.1.479-cp39-cp39-musllinux_1_2_i686.whl
- Upload date:
- Size: 5.9 MB
- Tags: CPython 3.9, musllinux: musl 1.2+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.12.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
27e3bb399b896c8c47178db7a72a8d262868d25926f90a9fcf01426b66895910
|
|
| MD5 |
d61490b24e0a05c3bdff3071a2e278a9
|
|
| BLAKE2b-256 |
06433ecab1695966d8df55c5fe17cb2199017db66565364e4758abe073e5b569
|
File details
Details for the file voronotalt-1.1.479-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.
File metadata
- Download URL: voronotalt-1.1.479-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 5.0 MB
- Tags: CPython 3.9, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.12.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
10cdfa7d39b92f6628f8966a456823a3cc8254e87c81a9fa6418fbc2457a72ba
|
|
| MD5 |
c36c55340cb3b93c7c99bf2b549f59d9
|
|
| BLAKE2b-256 |
d6934f4efce241eba173a2fef67c428db19a4d9f589b027f888f2a0a7d783f2a
|
File details
Details for the file voronotalt-1.1.479-cp39-cp39-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl.
File metadata
- Download URL: voronotalt-1.1.479-cp39-cp39-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl
- Upload date:
- Size: 4.8 MB
- Tags: CPython 3.9, manylinux: glibc 2.12+ i686, manylinux: glibc 2.17+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.12.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
327af833a46f92aa8efeee8f60cbf41c8c888b15a72e1e1b1653b690cafb9897
|
|
| MD5 |
243c52270db636a7154aab96808a4127
|
|
| BLAKE2b-256 |
14b7b6545eb8e790a51fb12aa52838ad243f0d8b6eafb4f8a350a7987f0af65f
|
File details
Details for the file voronotalt-1.1.479-cp39-cp39-macosx_11_0_arm64.whl.
File metadata
- Download URL: voronotalt-1.1.479-cp39-cp39-macosx_11_0_arm64.whl
- Upload date:
- Size: 414.5 kB
- Tags: CPython 3.9, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.12.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
afe3f490b54558c111f481c9b88a9a4f6d498aba1f07652a2f4a3de0114f1970
|
|
| MD5 |
bf076c91f1b75863793c8544f3f9dd2f
|
|
| BLAKE2b-256 |
09c71eac0775dae4d60a33e9ad6844897f057263a8334498b3f8ff268ff220fd
|
File details
Details for the file voronotalt-1.1.479-cp39-cp39-macosx_10_9_x86_64.whl.
File metadata
- Download URL: voronotalt-1.1.479-cp39-cp39-macosx_10_9_x86_64.whl
- Upload date:
- Size: 449.2 kB
- Tags: CPython 3.9, macOS 10.9+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.12.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
4b7e7ed603ddc6c18d81c409b666274cef31e1ca5bb1ca138d1f3dee9ae37099
|
|
| MD5 |
f48ecbe24ae7270d92eebac2b3db2eb0
|
|
| BLAKE2b-256 |
756fbb001912c6bbc28d0bed91b8c26d81bff883a7800f852de498a7750ce176
|
File details
Details for the file voronotalt-1.1.479-cp39-cp39-macosx_10_9_universal2.whl.
File metadata
- Download URL: voronotalt-1.1.479-cp39-cp39-macosx_10_9_universal2.whl
- Upload date:
- Size: 848.9 kB
- Tags: CPython 3.9, macOS 10.9+ universal2 (ARM64, x86-64)
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.12.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
7f4ff24f5b6674cf22651107f4c5a483ddb6fe37b2e66fc2e0b1141bcc37ccbe
|
|
| MD5 |
50ebd222111bb6c537e5e25cceb96790
|
|
| BLAKE2b-256 |
29b3fbe3b1b5c4fc1609dbf9aa025634209720e795bf97d33bb31cb5997a2288
|
File details
Details for the file voronotalt-1.1.479-cp38-cp38-win_amd64.whl.
File metadata
- Download URL: voronotalt-1.1.479-cp38-cp38-win_amd64.whl
- Upload date:
- Size: 387.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
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
aeba7987d63e7e44a6c8bba326d83de25d0c22bc669fafee63cb154ff8a2e1c2
|
|
| MD5 |
8a16fbd904396e52e44995c216b82bc2
|
|
| BLAKE2b-256 |
d570fba165bcd62af725f8c4d4ac14743c33d970e8d286fed3f63e2aed18315c
|
File details
Details for the file voronotalt-1.1.479-cp38-cp38-win32.whl.
File metadata
- Download URL: voronotalt-1.1.479-cp38-cp38-win32.whl
- Upload date:
- Size: 303.1 kB
- Tags: CPython 3.8, Windows x86
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.12.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
0880a6c2843eab3dd83f452c970db26f4a6b4d5cc05d02f2e1723a8669c7afd7
|
|
| MD5 |
32c9f4a4f7366c714ac13c8fcb6d1320
|
|
| BLAKE2b-256 |
cb8394ab98793525a29f4a924c1384e7444998bd89579eaf8a4e0213bfa6d36c
|
File details
Details for the file voronotalt-1.1.479-cp38-cp38-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: voronotalt-1.1.479-cp38-cp38-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 6.0 MB
- Tags: CPython 3.8, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.12.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
88a76a1a21945fb194013b9567595fd965bd2ce50300164bc2199a04c8623578
|
|
| MD5 |
aa652d6b48bc1f0a787c2dae6354da5c
|
|
| BLAKE2b-256 |
fccf7e13a216d2deefebd895e230d73793e76ccc6dfb64ee08c83d45f496c5f1
|
File details
Details for the file voronotalt-1.1.479-cp38-cp38-musllinux_1_2_i686.whl.
File metadata
- Download URL: voronotalt-1.1.479-cp38-cp38-musllinux_1_2_i686.whl
- Upload date:
- Size: 5.9 MB
- Tags: CPython 3.8, musllinux: musl 1.2+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.12.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
d8d98eb46c214fadd446eb9d8078d021933d97e1bb18d45f6e2366fff54ae8e0
|
|
| MD5 |
5faba42d8e4316bc5773d263abb345f1
|
|
| BLAKE2b-256 |
e9763514bb7a92ac775a2747a5494f43529d8f642b76e2519bd496f869cf506f
|
File details
Details for the file voronotalt-1.1.479-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.
File metadata
- Download URL: voronotalt-1.1.479-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 5.0 MB
- Tags: CPython 3.8, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.12.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
b2265fcbc9f3331509e18c90bc49148ddb1b4c96d1b81193632da8adcaff07eb
|
|
| MD5 |
53153f4fe6303bcf86c5917e6e1f508b
|
|
| BLAKE2b-256 |
fd3366584ac71f651d639311e4f4998585fcabf5c94d60c06e20221bef04cbbc
|
File details
Details for the file voronotalt-1.1.479-cp38-cp38-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl.
File metadata
- Download URL: voronotalt-1.1.479-cp38-cp38-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl
- Upload date:
- Size: 4.8 MB
- Tags: CPython 3.8, manylinux: glibc 2.12+ i686, manylinux: glibc 2.17+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.12.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
feffec8793f7da99a30c0cecff432525d55ff159a9ec9914ac599f7c37870112
|
|
| MD5 |
aa55bee488807fb0ad0ee326b412853b
|
|
| BLAKE2b-256 |
d1911857bd848a49d4cf3ac5c731d4dfeffa0103b578bf37f7cef4b83d53ec50
|
File details
Details for the file voronotalt-1.1.479-cp38-cp38-macosx_11_0_arm64.whl.
File metadata
- Download URL: voronotalt-1.1.479-cp38-cp38-macosx_11_0_arm64.whl
- Upload date:
- Size: 414.3 kB
- Tags: CPython 3.8, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.12.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
03668ebcba51d4b55ccd85fa3bc8609ed2a077796680fc32017be3807b54aca1
|
|
| MD5 |
6a9ffe6804989ff3ff32af4d98b14b9a
|
|
| BLAKE2b-256 |
d012d05d5997e92204e45bf3210c410cb58c2b4d6c8cf382f78b7140fd7c3693
|
File details
Details for the file voronotalt-1.1.479-cp38-cp38-macosx_10_9_x86_64.whl.
File metadata
- Download URL: voronotalt-1.1.479-cp38-cp38-macosx_10_9_x86_64.whl
- Upload date:
- Size: 449.0 kB
- Tags: CPython 3.8, macOS 10.9+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.12.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
a0507c55e5d74e1b0769502ac62c397c7a6c53c41f5b9ad9f99c985f91fa2753
|
|
| MD5 |
e81a98d89961289c57d3413bd019337c
|
|
| BLAKE2b-256 |
54f5b72558bcf6b1f71d976ec826ac9b657e6e66d4aa74d56394e69278ae15c0
|
File details
Details for the file voronotalt-1.1.479-cp38-cp38-macosx_10_9_universal2.whl.
File metadata
- Download URL: voronotalt-1.1.479-cp38-cp38-macosx_10_9_universal2.whl
- Upload date:
- Size: 848.8 kB
- Tags: CPython 3.8, macOS 10.9+ universal2 (ARM64, x86-64)
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.12.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
b6d5244bcf550173d4d2bac4b9c5e926eb0ab2387abe87069430f27f68f6300f
|
|
| MD5 |
26c605f0ae7ac4f8a087adfcbc3204b1
|
|
| BLAKE2b-256 |
1dbb1d6689ed243f27b9fd883e1317df77b2a1b6eb1d15e6a05ef3efeab3c552
|
File details
Details for the file voronotalt-1.1.479-cp37-cp37m-win_amd64.whl.
File metadata
- Download URL: voronotalt-1.1.479-cp37-cp37m-win_amd64.whl
- Upload date:
- Size: 387.8 kB
- Tags: CPython 3.7m, Windows x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.12.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
44f6e6d9716e7dca1cb6166980b9046d55e5a733d6f4026944855340c7719bb7
|
|
| MD5 |
916ed8926318095ede8459e3e77b6490
|
|
| BLAKE2b-256 |
7de47d200aaef5af38c3668be766c99d2808e73bc59b6b2357dbc222d2d40162
|
File details
Details for the file voronotalt-1.1.479-cp37-cp37m-win32.whl.
File metadata
- Download URL: voronotalt-1.1.479-cp37-cp37m-win32.whl
- Upload date:
- Size: 303.3 kB
- Tags: CPython 3.7m, Windows x86
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.12.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
bcbb15336689610e46042cfc3a84f42ff8a0b79a13c00d9f3d2816369d799888
|
|
| MD5 |
7d45a7f4057e795c001af45df4cc32e1
|
|
| BLAKE2b-256 |
16a5f63d4869e79ba7d302c18a216b7782456074ab18a2507e113f6afc6b69e9
|
File details
Details for the file voronotalt-1.1.479-cp37-cp37m-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: voronotalt-1.1.479-cp37-cp37m-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 6.0 MB
- Tags: CPython 3.7m, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.12.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
88b4ce5440ab5f80c5c38a02aed8c0feadcbb805e494bae27dbd875ec8f855d5
|
|
| MD5 |
da06a738536fb674da0d45c1f1bc3ee5
|
|
| BLAKE2b-256 |
6edcb576ccdd71971f7ae7cc486050183561645b6a762467e2d4373b841095f9
|
File details
Details for the file voronotalt-1.1.479-cp37-cp37m-musllinux_1_2_i686.whl.
File metadata
- Download URL: voronotalt-1.1.479-cp37-cp37m-musllinux_1_2_i686.whl
- Upload date:
- Size: 5.9 MB
- Tags: CPython 3.7m, musllinux: musl 1.2+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.12.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
250827bfeea093642b3e2f819ac6ad404f4d1f97e400591940dc68ad742abf05
|
|
| MD5 |
1b2534a9b39e148377c3088a1070071a
|
|
| BLAKE2b-256 |
b0b3c9b6a8e1a96b3c4b0b185f43fd96c6576a6b340034ecc841f60413375ffa
|
File details
Details for the file voronotalt-1.1.479-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.
File metadata
- Download URL: voronotalt-1.1.479-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 5.0 MB
- Tags: CPython 3.7m, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.12.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
a50f70ea3ea5f2747564cc8f33a47b00f464be0c70ce320ed107eddf530d6bba
|
|
| MD5 |
801842e2fda825ae9a8e7eaf53213e03
|
|
| BLAKE2b-256 |
7e4d538c076ee5685180366cd0e84f57e9290f287a0c502e9c9cf77cf95843ee
|
File details
Details for the file voronotalt-1.1.479-cp37-cp37m-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl.
File metadata
- Download URL: voronotalt-1.1.479-cp37-cp37m-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl
- Upload date:
- Size: 4.8 MB
- Tags: CPython 3.7m, manylinux: glibc 2.12+ i686, manylinux: glibc 2.17+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.12.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
d263e077fed8c65ca10e6ca3a7244630d6c6c795865ec60c97c071dd7f11b0e6
|
|
| MD5 |
0463081ba49d919dc4dc4cba4c6ae9bc
|
|
| BLAKE2b-256 |
5e0f0ed30282fd446e0603754073593b4410e1213d4d3972d119efe2e915d7fa
|
File details
Details for the file voronotalt-1.1.479-cp37-cp37m-macosx_10_9_x86_64.whl.
File metadata
- Download URL: voronotalt-1.1.479-cp37-cp37m-macosx_10_9_x86_64.whl
- Upload date:
- Size: 448.4 kB
- Tags: CPython 3.7m, macOS 10.9+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.12.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
65fe0e290c9554b246f8ad84f6e931bd31bcab18d9f36037f3667ce92dea5cf0
|
|
| MD5 |
e1fb431df2679ab69b1d4d021c31c055
|
|
| BLAKE2b-256 |
99c8b286f97420b21ae2a2c452fc4ccd0b3147dbcab90f42c1a0a0c93b66126e
|
File details
Details for the file voronotalt-1.1.479-cp36-cp36m-win_amd64.whl.
File metadata
- Download URL: voronotalt-1.1.479-cp36-cp36m-win_amd64.whl
- Upload date:
- Size: 416.5 kB
- Tags: CPython 3.6m, Windows x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.12.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
8393e2e8e616cb66dd0b7315a26affc9501df92c542d2253875ecb35f5df7bf5
|
|
| MD5 |
444208ff34a9e54912a096d24d438b04
|
|
| BLAKE2b-256 |
07efe712498a0d64f98769a8a08fc3855c15b1b8add1bfc9af1cd46e84974c44
|
File details
Details for the file voronotalt-1.1.479-cp36-cp36m-win32.whl.
File metadata
- Download URL: voronotalt-1.1.479-cp36-cp36m-win32.whl
- Upload date:
- Size: 318.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
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
72e774de3e7b348df39cec8cc62c9c8df953c591016042c9d98a16618f86cd30
|
|
| MD5 |
6f7d03e59d6f6250701e7eee6f1601ac
|
|
| BLAKE2b-256 |
7ed8890f371ade2670767a57c7d50da5dbedf4f112a23fb00d787a1efcc56ad0
|
File details
Details for the file voronotalt-1.1.479-cp36-cp36m-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: voronotalt-1.1.479-cp36-cp36m-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 6.0 MB
- Tags: CPython 3.6m, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.12.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
393dbeb2e05eeafc4e8793588b14b29255f617a7f8206f455e322ae688ec7c62
|
|
| MD5 |
1d59f5622af67ce948c2e941f2b03912
|
|
| BLAKE2b-256 |
739d2a3dbafb121c51456c37d3e5d3847d62d1e1f6a88ef3470206b1442cb9cd
|
File details
Details for the file voronotalt-1.1.479-cp36-cp36m-musllinux_1_2_i686.whl.
File metadata
- Download URL: voronotalt-1.1.479-cp36-cp36m-musllinux_1_2_i686.whl
- Upload date:
- Size: 5.9 MB
- Tags: CPython 3.6m, musllinux: musl 1.2+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.12.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
9610d7f7592c76acbb2eefd22f24481d87fa760989137facfcf9f4c00c221617
|
|
| MD5 |
0f3e876b7cd0d3a3bbfdf4f3e190aa6d
|
|
| BLAKE2b-256 |
dc3cd3607b9c0afc3c493d06ff0c40dcc14077b4f0dfdefb06312b17ea038432
|
File details
Details for the file voronotalt-1.1.479-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.
File metadata
- Download URL: voronotalt-1.1.479-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 5.0 MB
- Tags: CPython 3.6m, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.12.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
d14b95f044a018c9b809510e5699f61a22a8e6faf928ef164b5888a0f36e38c0
|
|
| MD5 |
07ffc5d172bde81711c848577852ce5b
|
|
| BLAKE2b-256 |
56ed465eb11a1ecc5f758d19fb5d2aa7d1848bc7f68355fbd80f08bed74e6057
|
File details
Details for the file voronotalt-1.1.479-cp36-cp36m-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl.
File metadata
- Download URL: voronotalt-1.1.479-cp36-cp36m-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl
- Upload date:
- Size: 4.8 MB
- Tags: CPython 3.6m, manylinux: glibc 2.12+ i686, manylinux: glibc 2.17+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.12.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
c5a6f50f155b24ce90b8694ad2719308fdd53b9a94b536966138c6ef8714b698
|
|
| MD5 |
fd98ff0f7a38934b78cea7190dd7eadb
|
|
| BLAKE2b-256 |
f518964e4eedc14374ebdaa0f2a3ea14cd62f0474af509abe6fa2b85c86654ba
|
File details
Details for the file voronotalt-1.1.479-cp36-cp36m-macosx_10_9_x86_64.whl.
File metadata
- Download URL: voronotalt-1.1.479-cp36-cp36m-macosx_10_9_x86_64.whl
- Upload date:
- Size: 448.2 kB
- Tags: CPython 3.6m, macOS 10.9+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.12.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
734c6674bc1f2d71306081faac139f5b93d47a980e4092b40e5154b1a57463a9
|
|
| MD5 |
15e57f182794dbcd44b091c72da52d3b
|
|
| BLAKE2b-256 |
77589e22b19247d0f3a859f684af7be3b180d4b2d32b238bb3c0245e046afd75
|