Skip to main content

SolveSpace solver wrapped with Cython

Project description

SolveSpace

SolveSpace Logo

Build Status solvespace solvespace

This repository contains the source code of SolveSpace, a parametric 2d/3d CAD tool.

Community

The official SolveSpace website has tutorials, reference manual and a forum; there is also an official IRC channel #solvespace at web.libera.chat.

Installation

Via Official Packages

Official release packages for macOS (>=10.6 64-bit) and Windows (>=Vista 32-bit) are available via GitHub releases. These packages are automatically built by the SolveSpace maintainers for each stable release.

Via Flathub

Official releases can be installed as a Flatpak from Flathub.

Get SolveSpace from Flathub

These should work on any Linux distribution that supports Flatpak.

Via Snap Store

Official releases can be installed from the stable channel.

Builds from master are automatically released to the edge channel in the Snap Store. Those packages contain the latest improvements, but receive less testing than release builds.

Get it from the Snap Store

Or install from a terminal:

# for the latest stable release:
snap install solvespace

# for the bleeding edge builds from master:
snap install solvespace --edge

Via automated edge builds

:warning: Edge builds might be unstable or contain severe bugs! They are intended for experienced users to test new features or verify bugfixes.

Cutting edge builds from the latest master commit are available as zip archives from the following links:

Please note that the 64bit Windows versions do not support 6DOF (SpeceMouse, SpaceNavigator) controllers.

Extract the downloaded archive and install or execute the contained file as is appropriate for your platform.

Via source code

Irrespective of the OS used, before building, check out the project and the necessary submodules:

git clone https://github.com/solvespace/solvespace
cd solvespace
git submodule update --init

You will need git. See the platform specific instructions below to install it.

Building on Linux

Building for Linux

You will need the usual build tools, CMake, zlib, libpng, cairo, freetype. To build the GUI, you will need fontconfig, gtkmm 3.0 (version 3.16 or later) for GTK, or QT6 for the newer QT interface, pangomm 1.4, OpenGL and OpenGL GLU, and optionally, the Space Navigator client library.

On a Debian derivative (e.g. Ubuntu) these can be installed with:

sudo apt install git build-essential cmake zlib1g-dev libpng-dev \
            libcairo2-dev libfreetype6-dev libjson-c-dev \
            libfontconfig1-dev libpangomm-1.4-dev libgl-dev \
            libglu-dev libspnav-dev libgtkmm-3.0-dev qt6-base-dev

On a RedHat derivative (e.g. Fedora) the dependencies can be installed with:

sudo dnf install git gcc-c++ cmake zlib-devel libpng-devel \
            cairo-devel freetype-devel json-c-devel \
            fontconfig-devel pangomm-devel mesa-libGL-devel \
            mesa-libGLU-devel libspnav-devel gtkmm30-devel \
            qt6-qtbase-devel

gtkmm30-devel is required to build the GTK version and qt6-qtbase-devel is required to build the QT version. One or the other may be omitted if both versions are not needed. Likewise with libgtkmm-3.0-dev and qt6-base-dev for Debuntu respectively.

Before building, check out the project and the necessary submodules.

After that, build SolveSpace as following:

mkdir build
cd build
cmake .. -DCMAKE_BUILD_TYPE=Release -DENABLE_OPENMP=ON [-DENABLE_LTO=ON] [-DUSE_QT_GUI=ON] [-DENABLE_GUI=OFF]
make

# Optionally
sudo make install

Optional:

  • -DENABLE_LTO=ON: Enable Link Time Optimization at the expense of longer build time.
  • -DUSE_QT_GUI=ON: Build the newer QT GUI interface.
  • -DENABLE_GUI=OFF: Build only the command-line interface

The GTK graphical interface is built as build/bin/solvespace, and the command-line interface is built as build/bin/solvespace-cli. The QT graphical interface is built as build/bin/solvespace-qt.

Building for Windows

Ubuntu will require 20.04 or above. Cross-compiling with WSL is also confirmed to work.

You will need the usual build tools, CMake, and a Windows cross-compiler. On a Debian derivative (e.g. Ubuntu) these can be installed with:

apt-get install git build-essential cmake mingw-w64

Before building, check out the project and the necessary submodules.

Build 64-bit SolveSpace with the following:

mkdir build
cd build
cmake .. -DCMAKE_TOOLCHAIN_FILE=../cmake/Toolchain-mingw64.cmake \
            -DCMAKE_BUILD_TYPE=Release
make

The graphical interface is built as build/bin/solvespace.exe, and the command-line interface is built as build/bin/solvespace-cli.exe.

Space Navigator support will not be available.

Building for web (very experimental)

Please note that this port contains many critical bugs and unimplemented core functions.

You will need the usual build tools, cmake and Emscripten. On a Debian derivative (e.g. Ubuntu) dependencies other than Emscripten can be installed with:

apt-get install git build-essential cmake

First, install and prepare emsdk:

git clone https://github.com/emscripten-core/emsdk
cd emsdk
./emsdk install latest
./emsdk activate latest
source ./emsdk_env.sh
cd ..

Before building, check out the project and the necessary submodules.

After that, build SolveSpace as following:

mkdir build
cd build
emcmake cmake .. -DCMAKE_BUILD_TYPE=Release -DENABLE_LTO="ON" -DENABLE_TESTS="OFF" -DENABLE_CLI="OFF" -DENABLE_COVERAGE="OFF"
make

The graphical interface is built as multiple files in the build/bin directory with names starting with solvespace. It can be run locally with emrun build/bin/solvespace.html.

The command-line interface is not available.

Building on macOS

You will need git, XCode tools, CMake and libomp. Git, CMake and libomp can be installed via Homebrew:

brew install git cmake libomp

XCode has to be installed via AppStore or the Apple website; it requires a free Apple ID.

Before building, check out the project and the necessary submodules.

After that, build SolveSpace as following:

mkdir build
cd build
cmake .. -DCMAKE_BUILD_TYPE=Release -DENABLE_OPENMP=ON
make

Link Time Optimization is supported by adding -DENABLE_LTO=ON to cmake at the expense of longer build time.

Alternatively, generate an XCode project, open it, and build the "Release" scheme:

mkdir build
cd build
cmake .. -G Xcode

The application is built in build/bin/SolveSpace.app, the graphical interface executable is build/bin/SolveSpace.app/Contents/MacOS/SolveSpace, and the command-line interface executable is build/bin/SolveSpace.app/Contents/MacOS/solvespace-cli.

Building on OpenBSD

You will need git, cmake, libexecinfo, libpng, gtk3mm and pangomm. These can be installed from the ports tree:

pkg_add -U git cmake libexecinfo png json-c gtk3mm pangomm

Before building, check out the project and the necessary submodules.

After that, build SolveSpace as following:

mkdir build
cd build
cmake .. -DCMAKE_BUILD_TYPE=Release
make
sudo make install

Unfortunately, on OpenBSD, the produced executables are not filesystem location independent and must be installed before use. By default, the graphical interface is installed to /usr/local/bin/solvespace, and the command-line interface is built as /usr/local/bin/solvespace-cli. It is possible to build only the command-line interface by passing the -DENABLE_GUI=OFF flag to the cmake invocation.

Building on Windows

You will need git, cmake and a C++ compiler (either Visual C++ or MinGW). If using Visual C++, Visual Studio 2015 or later is required. If gawk is in your path be sure it is a proper Windows port that can handle CL LF line endings. If not CMake may fail in libpng due to some awk scripts - issue #1228.

Before building, check out the project and the necessary submodules.

Building with Visual Studio IDE

Create a directory build in the source tree and point cmake-gui to the source tree and that directory. Press "Configure" and "Generate", then open build\solvespace.sln with Visual C++ and build it.

Building with Visual Studio in a command prompt

First, ensure that git and cl (the Visual C++ compiler driver) are in your %PATH%; the latter is usually done by invoking vcvarsall.bat from your Visual Studio install. Then, run the following in cmd or PowerShell:

mkdir build
cd build
cmake .. -G "NMake Makefiles" -DCMAKE_BUILD_TYPE=Release
nmake

Building with MinGW

It is also possible to build SolveSpace using MinGW, though Space Navigator support will be disabled.

The easiest way to build using MinGW is with MSYS2. If you're not using MSYS2, skip the installation instructions and ensure that git, cmake, ninja, and gcc are in your $PATH.

With MSYS2, you can build either a 32-bit binary or a 64-bit one, depending on the compiler used. The following instructions assume you're running the commands inside an MSYS2 MINGW64 terminal window and building a 64-bit version. If you want to build a 32-bit version, you'll need to run the commands in an MSYS2 MINGW32 terminal window and replace x86_64 with i686 in the installation commands.

First, install Git, GCC, CMake, and Ninja:

pacman -Sy mingw-w64-x86_64-git mingw-w64-x86_64-gcc mingw-w64-x86_64-cmake mingw-w64-x86_64-ninja

Then, run the following in bash:

mkdir build
cd build
cmake .. -DCMAKE_BUILD_TYPE=Release -GNinja
ninja

Contributing

See the guide for contributors for the best way to file issues, contribute code, and debug SolveSpace.

License

SolveSpace is distributed under the terms of the GPL v3 or later.

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

slvs-3.2.tar.gz (7.2 MB view details)

Uploaded Source

Built Distributions

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

slvs-3.2-cp313-cp313-win_amd64.whl (285.8 kB view details)

Uploaded CPython 3.13Windows x86-64

slvs-3.2-cp313-cp313-win32.whl (245.9 kB view details)

Uploaded CPython 3.13Windows x86

slvs-3.2-cp313-cp313-musllinux_1_2_x86_64.whl (3.8 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

slvs-3.2-cp313-cp313-musllinux_1_2_aarch64.whl (3.7 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

slvs-3.2-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.9 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

slvs-3.2-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (2.8 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

slvs-3.2-cp313-cp313-macosx_11_0_arm64.whl (247.1 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

slvs-3.2-cp313-cp313-macosx_10_13_x86_64.whl (278.4 kB view details)

Uploaded CPython 3.13macOS 10.13+ x86-64

slvs-3.2-cp312-cp312-win_amd64.whl (285.8 kB view details)

Uploaded CPython 3.12Windows x86-64

slvs-3.2-cp312-cp312-win32.whl (246.3 kB view details)

Uploaded CPython 3.12Windows x86

slvs-3.2-cp312-cp312-musllinux_1_2_x86_64.whl (3.8 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

slvs-3.2-cp312-cp312-musllinux_1_2_aarch64.whl (3.7 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

slvs-3.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.9 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

slvs-3.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (2.9 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

slvs-3.2-cp312-cp312-macosx_11_0_arm64.whl (247.7 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

slvs-3.2-cp312-cp312-macosx_10_13_x86_64.whl (279.0 kB view details)

Uploaded CPython 3.12macOS 10.13+ x86-64

slvs-3.2-cp311-cp311-win_amd64.whl (286.9 kB view details)

Uploaded CPython 3.11Windows x86-64

slvs-3.2-cp311-cp311-win32.whl (246.0 kB view details)

Uploaded CPython 3.11Windows x86

slvs-3.2-cp311-cp311-musllinux_1_2_x86_64.whl (3.8 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

slvs-3.2-cp311-cp311-musllinux_1_2_aarch64.whl (3.7 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

slvs-3.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.8 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

slvs-3.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (2.8 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

slvs-3.2-cp311-cp311-macosx_11_0_arm64.whl (246.0 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

slvs-3.2-cp311-cp311-macosx_10_12_x86_64.whl (278.7 kB view details)

Uploaded CPython 3.11macOS 10.12+ x86-64

slvs-3.2-cp310-cp310-win_amd64.whl (286.6 kB view details)

Uploaded CPython 3.10Windows x86-64

slvs-3.2-cp310-cp310-win32.whl (246.0 kB view details)

Uploaded CPython 3.10Windows x86

slvs-3.2-cp310-cp310-musllinux_1_2_x86_64.whl (3.8 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

slvs-3.2-cp310-cp310-musllinux_1_2_aarch64.whl (3.6 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

slvs-3.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.8 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

slvs-3.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (2.8 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

slvs-3.2-cp310-cp310-macosx_11_0_arm64.whl (246.1 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

slvs-3.2-cp310-cp310-macosx_10_12_x86_64.whl (278.8 kB view details)

Uploaded CPython 3.10macOS 10.12+ x86-64

slvs-3.2-cp39-cp39-win_amd64.whl (286.9 kB view details)

Uploaded CPython 3.9Windows x86-64

slvs-3.2-cp39-cp39-win32.whl (246.2 kB view details)

Uploaded CPython 3.9Windows x86

slvs-3.2-cp39-cp39-musllinux_1_2_x86_64.whl (3.7 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ x86-64

slvs-3.2-cp39-cp39-musllinux_1_2_aarch64.whl (3.6 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

slvs-3.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.8 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

slvs-3.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (2.8 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARM64

slvs-3.2-cp39-cp39-macosx_11_0_arm64.whl (246.7 kB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

slvs-3.2-cp39-cp39-macosx_10_12_x86_64.whl (279.5 kB view details)

Uploaded CPython 3.9macOS 10.12+ x86-64

slvs-3.2-cp38-cp38-win_amd64.whl (288.4 kB view details)

Uploaded CPython 3.8Windows x86-64

slvs-3.2-cp38-cp38-win32.whl (247.6 kB view details)

Uploaded CPython 3.8Windows x86

slvs-3.2-cp38-cp38-musllinux_1_2_x86_64.whl (3.8 MB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ x86-64

slvs-3.2-cp38-cp38-musllinux_1_2_aarch64.whl (3.7 MB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ ARM64

slvs-3.2-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.8 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ x86-64

slvs-3.2-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (2.8 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ARM64

slvs-3.2-cp38-cp38-macosx_11_0_arm64.whl (247.9 kB view details)

Uploaded CPython 3.8macOS 11.0+ ARM64

slvs-3.2-cp38-cp38-macosx_10_12_x86_64.whl (280.6 kB view details)

Uploaded CPython 3.8macOS 10.12+ x86-64

slvs-3.2-cp37-cp37m-win_amd64.whl (295.1 kB view details)

Uploaded CPython 3.7mWindows x86-64

slvs-3.2-cp37-cp37m-win32.whl (256.7 kB view details)

Uploaded CPython 3.7mWindows x86

slvs-3.2-cp37-cp37m-musllinux_1_2_x86_64.whl (3.8 MB view details)

Uploaded CPython 3.7mmusllinux: musl 1.2+ x86-64

slvs-3.2-cp37-cp37m-musllinux_1_2_aarch64.whl (3.6 MB view details)

Uploaded CPython 3.7mmusllinux: musl 1.2+ ARM64

slvs-3.2-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.8 MB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.17+ x86-64

slvs-3.2-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (2.8 MB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.17+ ARM64

slvs-3.2-cp37-cp37m-macosx_10_12_x86_64.whl (282.7 kB view details)

Uploaded CPython 3.7mmacOS 10.12+ x86-64

File details

Details for the file slvs-3.2.tar.gz.

File metadata

  • Download URL: slvs-3.2.tar.gz
  • Upload date:
  • Size: 7.2 MB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for slvs-3.2.tar.gz
Algorithm Hash digest
SHA256 cf7c00fb17a2d100df7cfa80db5e04c7ec16e6093b3d9a74402f001043550a9b
MD5 1fca90c3a97700caf0c4f8b26d0642be
BLAKE2b-256 3c90794947dfc55aa0310dbddf0ff7e304774f46ca29f202086006a4e5dcc563

See more details on using hashes here.

File details

Details for the file slvs-3.2-cp313-cp313-win_amd64.whl.

File metadata

  • Download URL: slvs-3.2-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 285.8 kB
  • Tags: CPython 3.13, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for slvs-3.2-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 86159bc0c5e749eb04d94cbf28b6d38ace795e802b8131be36870502e336f4fa
MD5 82cf7e30ecd4b243c4f2aa692af53c8f
BLAKE2b-256 30d703ed39685eae939f50f0f4b38a60c7d8209251b9ad9feb3ea8eff04178e1

See more details on using hashes here.

File details

Details for the file slvs-3.2-cp313-cp313-win32.whl.

File metadata

  • Download URL: slvs-3.2-cp313-cp313-win32.whl
  • Upload date:
  • Size: 245.9 kB
  • Tags: CPython 3.13, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for slvs-3.2-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 75465ee6e3fc0a357988031d4584039a8c1b6968abaddbb08746a1d23faecceb
MD5 1324cc439efa43ed4e4f300845b37a5f
BLAKE2b-256 1ae86defad6c7e1a4859319e89660aa7632a4bfeae85a48f30fd8a00491612bf

See more details on using hashes here.

File details

Details for the file slvs-3.2-cp313-cp313-musllinux_1_2_x86_64.whl.

File metadata

  • Download URL: slvs-3.2-cp313-cp313-musllinux_1_2_x86_64.whl
  • Upload date:
  • Size: 3.8 MB
  • Tags: CPython 3.13, musllinux: musl 1.2+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for slvs-3.2-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 d130bdc47251ace22b2224dd42ef31dba1d47bd4a05c51a5ba3eb89b142c4412
MD5 60363dda130af8603c4062eee48fecf3
BLAKE2b-256 0d4c7263d94e1dd6f99a8a0dcf3e74c008b080bd5354c74b0047e5cc04505e90

See more details on using hashes here.

File details

Details for the file slvs-3.2-cp313-cp313-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for slvs-3.2-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 f4d2e8a1db240c49070f9a782f0ecb71a3b783625d3daecd447860563d4588df
MD5 5eac9692cb24ba19bb025eef9b665ecb
BLAKE2b-256 9beb39c85a673975601b0f0a8d5ffde3297f94de46214b6a35e9e936a4f3ed1d

See more details on using hashes here.

File details

Details for the file slvs-3.2-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for slvs-3.2-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 9ee04ff5a00482cef1751eed71658f4b01f605de42c56786373c7da9e5b25f80
MD5 843dcfd6dad98f05eb580fc3d659073f
BLAKE2b-256 04003ec92cb76be17cae6d081507492f912c3c170e682a2f49ee975540bb04da

See more details on using hashes here.

File details

Details for the file slvs-3.2-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for slvs-3.2-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 ce2c1da26012d2fd286c6c0454ca855a26ef10c923a72ecfd1dfa14abc5e2ca1
MD5 ce9be5ba8d18c0ab094bb93f83567157
BLAKE2b-256 beb46b31640a27f3dced04d00c66a41f16f93e16abb4053876b377b484275c7d

See more details on using hashes here.

File details

Details for the file slvs-3.2-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

  • Download URL: slvs-3.2-cp313-cp313-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 247.1 kB
  • Tags: CPython 3.13, macOS 11.0+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for slvs-3.2-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 afdc4874127d8bf6cd293b332a0b69fa023f742cf73726c999a898770bdcb874
MD5 b9808d49b6abeecf9c909018c8c8e817
BLAKE2b-256 54ad17b93c0aa41a0eb5ad750bf09d28c61569e69c5256f9c4974dd3624e0936

See more details on using hashes here.

File details

Details for the file slvs-3.2-cp313-cp313-macosx_10_13_x86_64.whl.

File metadata

  • Download URL: slvs-3.2-cp313-cp313-macosx_10_13_x86_64.whl
  • Upload date:
  • Size: 278.4 kB
  • Tags: CPython 3.13, macOS 10.13+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for slvs-3.2-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 d1c066311f0e79e82afb9179047b6ee8c4c8cfda5581f9d8d1a9d315b70de686
MD5 81f519a0ea0ae4eddcf0ff0eea969a98
BLAKE2b-256 03dcae1e5a394771c2ecebf3b12766ba9268f7deabfe81046406fcaa3a1f99df

See more details on using hashes here.

File details

Details for the file slvs-3.2-cp312-cp312-win_amd64.whl.

File metadata

  • Download URL: slvs-3.2-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 285.8 kB
  • Tags: CPython 3.12, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for slvs-3.2-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 e97f29eda8d7cf15ee2bc4fbdda47ecbd23a80854965e12e28e9a358bd4f971c
MD5 9b00eca86870d272b834bb2dfea42500
BLAKE2b-256 70d474bb1e5a017bdcf98eabb9718d8904a43ccb4a2c7c956682d20a149306c3

See more details on using hashes here.

File details

Details for the file slvs-3.2-cp312-cp312-win32.whl.

File metadata

  • Download URL: slvs-3.2-cp312-cp312-win32.whl
  • Upload date:
  • Size: 246.3 kB
  • Tags: CPython 3.12, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for slvs-3.2-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 98c0150169305b045eb7213c70113875f486c63371ec7cad56beb09e5613837a
MD5 779f4f90bd172ad9453ebf593a0e1be3
BLAKE2b-256 339ffc9b987db5dd8b956ed1bee0c449cefd2af4d665f7e5a6bb7412c5a52a1e

See more details on using hashes here.

File details

Details for the file slvs-3.2-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

  • Download URL: slvs-3.2-cp312-cp312-musllinux_1_2_x86_64.whl
  • Upload date:
  • Size: 3.8 MB
  • Tags: CPython 3.12, musllinux: musl 1.2+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for slvs-3.2-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 87d71ef6d2bf7aaaa63ce3b7ab568e98f65f5b29a73cce32847bf339384a1623
MD5 92405444c393f64a404577b471133ada
BLAKE2b-256 e9577bcca20585ad79c145c239f95dc47d806e20e7d64dee9174da4a2a186e44

See more details on using hashes here.

File details

Details for the file slvs-3.2-cp312-cp312-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for slvs-3.2-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 176fd15ead05322b01ac5a77e553e659aa0d5b958527017e603f323c361db3a7
MD5 290cc8e1647aa7f0248ac07bae263f26
BLAKE2b-256 53bae509485dc3f503bef03bcc4b1caafe1f2e844b39a36af3457a5d0e3ab8bc

See more details on using hashes here.

File details

Details for the file slvs-3.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for slvs-3.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 535a7fa169b0d1367f03bc4a239f07df0ce2af50ae1e8345711be9aba1074bc3
MD5 408a3ff32dcedd5e07e50693f4efa028
BLAKE2b-256 e5a7d65c06f2f1187481e90d65dcf1a907a1b558e528c55ed1072f9c31499569

See more details on using hashes here.

File details

Details for the file slvs-3.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for slvs-3.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 53d8f0001072851d52e44a493c5ce0ace1c56ef48ff048edd6c56c0d6efc10ef
MD5 19113f5bed8a42014703e5ec25a7d61a
BLAKE2b-256 c9ebcb19b7b13cc12ef04c4ebafa6473ba3ba274eba95188c235f42c52107dbb

See more details on using hashes here.

File details

Details for the file slvs-3.2-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

  • Download URL: slvs-3.2-cp312-cp312-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 247.7 kB
  • Tags: CPython 3.12, macOS 11.0+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for slvs-3.2-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 26943716c5bc62ab71d157f991e06968a7924a7377318a799cd3c357b538782e
MD5 907989f6f49f0601943a60a752f82ce1
BLAKE2b-256 88ed89c0147dd8b1364089b66f044a50898aadf184fb9d1b6685582a151280f0

See more details on using hashes here.

File details

Details for the file slvs-3.2-cp312-cp312-macosx_10_13_x86_64.whl.

File metadata

  • Download URL: slvs-3.2-cp312-cp312-macosx_10_13_x86_64.whl
  • Upload date:
  • Size: 279.0 kB
  • Tags: CPython 3.12, macOS 10.13+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for slvs-3.2-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 f1c2c747f28a1dad1e85980193c7853e131032b989c2348b39821211da45909a
MD5 ebabb598cfef56c5e0b1bd3302b58f45
BLAKE2b-256 5edf5e22d95d277259a17fedb3bfa61e97865e523e8bff7f14fe9e47f672242c

See more details on using hashes here.

File details

Details for the file slvs-3.2-cp311-cp311-win_amd64.whl.

File metadata

  • Download URL: slvs-3.2-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 286.9 kB
  • Tags: CPython 3.11, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for slvs-3.2-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 a1f61065ddadd51dcc35e35e2941876c88f81e0d52536cc0c5e9a693a466e28b
MD5 bd7befa3f868e767d2a213b18ed070c1
BLAKE2b-256 fc20b3a60146543d9f17b886218493d4b2a7cc030140a137b9ac1660f61528d2

See more details on using hashes here.

File details

Details for the file slvs-3.2-cp311-cp311-win32.whl.

File metadata

  • Download URL: slvs-3.2-cp311-cp311-win32.whl
  • Upload date:
  • Size: 246.0 kB
  • Tags: CPython 3.11, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for slvs-3.2-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 8d674790ea11e4289bfcdf9adbdbe3456c9a508203d85f690d6b147902c6f45a
MD5 39a582c58d502c8ec59ad8802c44ad99
BLAKE2b-256 f257c4ffb560978239b90285ce9b504aa33989c95a5ed35487f553f5e444a10e

See more details on using hashes here.

File details

Details for the file slvs-3.2-cp311-cp311-musllinux_1_2_x86_64.whl.

File metadata

  • Download URL: slvs-3.2-cp311-cp311-musllinux_1_2_x86_64.whl
  • Upload date:
  • Size: 3.8 MB
  • Tags: CPython 3.11, musllinux: musl 1.2+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for slvs-3.2-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 9ae9ebc44d04bee76da0812501093db9a7e6a6e1dc8afd34d43efeadb93e1cfb
MD5 223bc1e4228076601af2d055938a5f0f
BLAKE2b-256 c1ff0923c6599b7c856239850d5f27b9f9cfc82673204e9b09629f0e9cba7663

See more details on using hashes here.

File details

Details for the file slvs-3.2-cp311-cp311-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for slvs-3.2-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 8791beffe9b37e4ae63fd9c1f6bfadab7c19e3fa3754d5205792e420fe34a7d5
MD5 d4bf6b3c3f631178561fa33d4f109ba6
BLAKE2b-256 d2b7bd44c62cda0f637e6003c3f6e7e396d6844712fa4ad5705ea5afeefd75d0

See more details on using hashes here.

File details

Details for the file slvs-3.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for slvs-3.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 69bcaba2e57e2eeba369200d08cf699f77fbdd3925324d60ca9dc10f699e11db
MD5 0f87ad29b5385b7f97f5e2e7b66f2f81
BLAKE2b-256 fcca5d4bba12f3269c4cec29da7c7b3b5030149d7351b5a890531915791c4be2

See more details on using hashes here.

File details

Details for the file slvs-3.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for slvs-3.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 f7b0aff240fcbd25a7d02ef346e650467e53c54a6cdcb12643e50f4c1be20129
MD5 fd5b8e25489ee878aebe13f06e65e8de
BLAKE2b-256 f2e375e53fe2274397d87afa7ab8e0de2086b0318d8a294a2b8273baf246a9d6

See more details on using hashes here.

File details

Details for the file slvs-3.2-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

  • Download URL: slvs-3.2-cp311-cp311-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 246.0 kB
  • Tags: CPython 3.11, macOS 11.0+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for slvs-3.2-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 8694977a5e7b6644a8825a105f9493c79db2bb935c81b4f035f98465f477d567
MD5 2989b8be241fa8808e835e26f9f6be1d
BLAKE2b-256 ccc491f7edf58f178c4124b9e7734d0ccf04715aeb98a15205b9c521e950e73d

See more details on using hashes here.

File details

Details for the file slvs-3.2-cp311-cp311-macosx_10_12_x86_64.whl.

File metadata

  • Download URL: slvs-3.2-cp311-cp311-macosx_10_12_x86_64.whl
  • Upload date:
  • Size: 278.7 kB
  • Tags: CPython 3.11, macOS 10.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for slvs-3.2-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 f21bbdf67b9baed14c12e9dcb4981a67149ee4802bf5b135b78208749b79399e
MD5 49be9e782e31138ad7d8129d5f48f22f
BLAKE2b-256 cbe39393c1b732817bb230963f9fbbd3782d0064e63e94525d884920885bb603

See more details on using hashes here.

File details

Details for the file slvs-3.2-cp310-cp310-win_amd64.whl.

File metadata

  • Download URL: slvs-3.2-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 286.6 kB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for slvs-3.2-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 75fedcf794719376781436d576c1e997ade3976fd93a808e34e9af7261cbc3cd
MD5 c655ab60331c32dec109dd4bbf750f99
BLAKE2b-256 680a7a05532bdfa8c16e53a36260e683d7cc4eca247288635b30d58f9d68a0df

See more details on using hashes here.

File details

Details for the file slvs-3.2-cp310-cp310-win32.whl.

File metadata

  • Download URL: slvs-3.2-cp310-cp310-win32.whl
  • Upload date:
  • Size: 246.0 kB
  • Tags: CPython 3.10, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for slvs-3.2-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 053a23fd1214d1e38946e994a4f6336c085c8592e0f3c1e695720875609e4642
MD5 12204728ef4b259718fa7c0091d7946a
BLAKE2b-256 45d28f5dcd81d955fab574a72c4accb8fc3f68b122d95e0fcc84207341b16b02

See more details on using hashes here.

File details

Details for the file slvs-3.2-cp310-cp310-musllinux_1_2_x86_64.whl.

File metadata

  • Download URL: slvs-3.2-cp310-cp310-musllinux_1_2_x86_64.whl
  • Upload date:
  • Size: 3.8 MB
  • Tags: CPython 3.10, musllinux: musl 1.2+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for slvs-3.2-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 b304f58c3759fd0e079abcb58c32c808bace2e9ae8441203872dd2ca184c7a6b
MD5 17419ee3e40f38c1b898775d4db8f1c2
BLAKE2b-256 08e8fdd54fc0bba67d4fc44984d9e6835b19ef47cee961444582488798fcec92

See more details on using hashes here.

File details

Details for the file slvs-3.2-cp310-cp310-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for slvs-3.2-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 bc5bce3f01cfb0ce625ae466a4bfdba7bf20c942439b59ff554c8aa1a502ca4d
MD5 53b61521c003b484be31be96af97a889
BLAKE2b-256 85fb008312b0e032606c001e50209367c19856d0d5f00b75b74641e9f71da648

See more details on using hashes here.

File details

Details for the file slvs-3.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for slvs-3.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 80c5397299e3c7123d1565b28c54ceffe38d44345efee86a3e6c7335ebffbed2
MD5 df6e0c6340842b91895c460ef680c32b
BLAKE2b-256 da942aadb3ee974126e30166fc9837752c01c4eaa39308ab155260af6fc66627

See more details on using hashes here.

File details

Details for the file slvs-3.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for slvs-3.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 4ad7d05c529265cf65fa1cff198ff3d3d3ff3ed2bf0022ad70dc397a954c8c1e
MD5 043210f440bbef89f184cca32244922a
BLAKE2b-256 d3a4a7908e68bbf40845c55bd6a0a6b68e2dd49c05fe7b4b12f7cb5b630e6421

See more details on using hashes here.

File details

Details for the file slvs-3.2-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

  • Download URL: slvs-3.2-cp310-cp310-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 246.1 kB
  • Tags: CPython 3.10, macOS 11.0+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for slvs-3.2-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 e7a0a85593ac1c7d6424214d0a427bf828c96efc8971dfeea9827589dd454de2
MD5 59bc50a638b2aa4b23dd4331e58221a8
BLAKE2b-256 ba516757c5cb943e431a15b0159bf0682aba49213e14337e54286b3f59e555ea

See more details on using hashes here.

File details

Details for the file slvs-3.2-cp310-cp310-macosx_10_12_x86_64.whl.

File metadata

  • Download URL: slvs-3.2-cp310-cp310-macosx_10_12_x86_64.whl
  • Upload date:
  • Size: 278.8 kB
  • Tags: CPython 3.10, macOS 10.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for slvs-3.2-cp310-cp310-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 e9806d6f210d627fc2590d916f49042b6987924ac36bb9a26d28eb9a413691b5
MD5 b8b7b4039570b0a0c486aeb3a2acfa30
BLAKE2b-256 6536464f455bcf29c54798124acf641a3fefa64d1d6b75fb1283c22e180689cf

See more details on using hashes here.

File details

Details for the file slvs-3.2-cp39-cp39-win_amd64.whl.

File metadata

  • Download URL: slvs-3.2-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 286.9 kB
  • Tags: CPython 3.9, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for slvs-3.2-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 9b85fc2496e28596ac36cf9498c8977441baff501fa26e2df5e9a783d4a8c1e0
MD5 f432b78dc39bbb76783fa92b78b4d88e
BLAKE2b-256 5e0fae3ce23dba4757829db592227adaeec9d7dcc4d498c2f03d63efbd0336a3

See more details on using hashes here.

File details

Details for the file slvs-3.2-cp39-cp39-win32.whl.

File metadata

  • Download URL: slvs-3.2-cp39-cp39-win32.whl
  • Upload date:
  • Size: 246.2 kB
  • Tags: CPython 3.9, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for slvs-3.2-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 09751b311f6d7f09bb133415eda14d2c3cd20154fd3fe99dfd502600ad780f23
MD5 16fd94791f01a998e1aa1eacd8b326f7
BLAKE2b-256 9e3535267ceca9f6d6cd633c9bbcac3d99d11d76c725973d1a30f08ccfd5b7f6

See more details on using hashes here.

File details

Details for the file slvs-3.2-cp39-cp39-musllinux_1_2_x86_64.whl.

File metadata

  • Download URL: slvs-3.2-cp39-cp39-musllinux_1_2_x86_64.whl
  • Upload date:
  • Size: 3.7 MB
  • Tags: CPython 3.9, musllinux: musl 1.2+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for slvs-3.2-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 0a6476bdfe34894ec986fb34c7d8ba4532fa40a7083308f5118d05673a7c6f02
MD5 3f4dd24a5a07f34fcece38a707a4594e
BLAKE2b-256 9f84a0e635d65223bec3cff07b23b517376694aa2e1f561a70b92136b4ee301b

See more details on using hashes here.

File details

Details for the file slvs-3.2-cp39-cp39-musllinux_1_2_aarch64.whl.

File metadata

  • Download URL: slvs-3.2-cp39-cp39-musllinux_1_2_aarch64.whl
  • Upload date:
  • Size: 3.6 MB
  • Tags: CPython 3.9, musllinux: musl 1.2+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for slvs-3.2-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 dc11189e2fff7d3953c9da26efcb8ffe9c57a3dc939efbeb98ef1ba77729ea5c
MD5 d15d1ceaaf7dc35a912c83d3a9e03052
BLAKE2b-256 a05735b5b62ec650149143998ba429c7f80d5d976de9c232eff1a19ca1f3055e

See more details on using hashes here.

File details

Details for the file slvs-3.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for slvs-3.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 6f4e1a921a2052bc7dc95566975bcbc3ce229b1331226209cb6607fbbe5cb81b
MD5 72f8b9331bb161f5affbb1125ddd372c
BLAKE2b-256 436476dc1913edc4e7fd1a796d653660dfa396b37859e713812e86e090a00533

See more details on using hashes here.

File details

Details for the file slvs-3.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for slvs-3.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 1f74e6a1e760faf13251bf7747607bb305f82fce076143f1e428134798a934cd
MD5 4e071bd3effe6f194ee8e7b05a83156b
BLAKE2b-256 50841a9799bc8771574ca2f6201f6509cffa27a014dca329f9b2d382137fb49f

See more details on using hashes here.

File details

Details for the file slvs-3.2-cp39-cp39-macosx_11_0_arm64.whl.

File metadata

  • Download URL: slvs-3.2-cp39-cp39-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 246.7 kB
  • Tags: CPython 3.9, macOS 11.0+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for slvs-3.2-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 6aa76081c98223e556f7093dca1f3fd18c558fe25abe40f738311e1dad55c859
MD5 e9307c0c571069a76b40ef1d694bc360
BLAKE2b-256 263e4eb5e2cfe9bbaf34ff748cd7fac7e2f881b249bbcc4f37c1051d7468bc2d

See more details on using hashes here.

File details

Details for the file slvs-3.2-cp39-cp39-macosx_10_12_x86_64.whl.

File metadata

  • Download URL: slvs-3.2-cp39-cp39-macosx_10_12_x86_64.whl
  • Upload date:
  • Size: 279.5 kB
  • Tags: CPython 3.9, macOS 10.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for slvs-3.2-cp39-cp39-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 f24662320482799ad2244fa59673547a1f6cec9e56a133a35fc78700597ae652
MD5 b075d650edc84257fe75e408ba2e5f27
BLAKE2b-256 63beafecb00fa9929a418a4c5ab8d9eecaaa02d9d965896bc68cc98a02794a31

See more details on using hashes here.

File details

Details for the file slvs-3.2-cp38-cp38-win_amd64.whl.

File metadata

  • Download URL: slvs-3.2-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 288.4 kB
  • Tags: CPython 3.8, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for slvs-3.2-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 2eb244f0b42f092716e0abc66e779cb44012872d106e53f93a240ee151be1766
MD5 113f5d4f793211727fd9b7de14814c18
BLAKE2b-256 92ac4b7b4aaa28b69df8d379b415f19972d0cc6cbf77125d65faa4f2163a49bd

See more details on using hashes here.

File details

Details for the file slvs-3.2-cp38-cp38-win32.whl.

File metadata

  • Download URL: slvs-3.2-cp38-cp38-win32.whl
  • Upload date:
  • Size: 247.6 kB
  • Tags: CPython 3.8, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for slvs-3.2-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 4270cab64fcafcd0f293d35c35f49be9f08f626996baf5cd074e37a774073197
MD5 e5ad6ba91771c65fc9be6c9cda2aa291
BLAKE2b-256 574db1b8577841b58052d130b88dd57f9ce0c34bd33f784b59fd27676d10bec9

See more details on using hashes here.

File details

Details for the file slvs-3.2-cp38-cp38-musllinux_1_2_x86_64.whl.

File metadata

  • Download URL: slvs-3.2-cp38-cp38-musllinux_1_2_x86_64.whl
  • Upload date:
  • Size: 3.8 MB
  • Tags: CPython 3.8, musllinux: musl 1.2+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for slvs-3.2-cp38-cp38-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 b2615aabf0cf6b2047b472084c85c1f411fbd277e9d765f6c326c81fe09dbca0
MD5 d6f02bbfb692525a0e291075bf63dbf5
BLAKE2b-256 df0811aa85faad08329083f1a28e0caf4ca943baf7851ad252d913694739794b

See more details on using hashes here.

File details

Details for the file slvs-3.2-cp38-cp38-musllinux_1_2_aarch64.whl.

File metadata

  • Download URL: slvs-3.2-cp38-cp38-musllinux_1_2_aarch64.whl
  • Upload date:
  • Size: 3.7 MB
  • Tags: CPython 3.8, musllinux: musl 1.2+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for slvs-3.2-cp38-cp38-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 93c72193ec766368ebc7ac70bdf89555fd644cb148df777601889fe4d624dc53
MD5 5b7dc114f04a9fefcbf4589383481a52
BLAKE2b-256 3b3c540d579dcb26aca38643c96644552084737b56546722ad03479b80a48c54

See more details on using hashes here.

File details

Details for the file slvs-3.2-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for slvs-3.2-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 fb04d4320b8a59fe872ac1126c94c5564da1f9b4732363c1fc894852a8cdd49d
MD5 9eb96bc732abfed89642ac4d48799aed
BLAKE2b-256 c8b73ad7668521ed7d40381e6db260bfef4016f0943028ab60b9df09775b2c22

See more details on using hashes here.

File details

Details for the file slvs-3.2-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for slvs-3.2-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 432e17d51d53bae4d7235d14887107768475753bec6c9ae4479e26616b7e7d16
MD5 920c0752af598bafb9d42da0f73acfde
BLAKE2b-256 00ff3ebfa79191c0a6fcc7f7ce1f21bf40496af1c705259fa31070d6ec3cdfa4

See more details on using hashes here.

File details

Details for the file slvs-3.2-cp38-cp38-macosx_11_0_arm64.whl.

File metadata

  • Download URL: slvs-3.2-cp38-cp38-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 247.9 kB
  • Tags: CPython 3.8, macOS 11.0+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for slvs-3.2-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 2a17495a0491c6d6a90a96bf4075755b31f00f6c4ac0fa3b757a31e7053d113f
MD5 0119c378cc17a8b026dd09f7d5113160
BLAKE2b-256 6f887cf4be0ab3d79fbf00fce8e644bcf594c7b091e3b0de5f3c276c12b4da61

See more details on using hashes here.

File details

Details for the file slvs-3.2-cp38-cp38-macosx_10_12_x86_64.whl.

File metadata

  • Download URL: slvs-3.2-cp38-cp38-macosx_10_12_x86_64.whl
  • Upload date:
  • Size: 280.6 kB
  • Tags: CPython 3.8, macOS 10.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for slvs-3.2-cp38-cp38-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 d6bb42f74ddf65fa40c284f02c7fffcec7c7e46ff274316703e877384491f13e
MD5 0c3e5fe42fb3e9fbd3096828c5da7482
BLAKE2b-256 754465b2059cb718b8722985b99b55b3d8d92a3f69519615e3153d0ce723e4c1

See more details on using hashes here.

File details

Details for the file slvs-3.2-cp37-cp37m-win_amd64.whl.

File metadata

  • Download URL: slvs-3.2-cp37-cp37m-win_amd64.whl
  • Upload date:
  • Size: 295.1 kB
  • Tags: CPython 3.7m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for slvs-3.2-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 bab9307cfe10b137e60c67fb5eb6b0acef889629bdb1f0acde64cb94a44ffeb2
MD5 a5b4b6b6e36a56c58124e8b6c563abc3
BLAKE2b-256 e03088c81c9d1192d329a8ff9ceee0ef858837940b53b572119ba24fb1e9e124

See more details on using hashes here.

File details

Details for the file slvs-3.2-cp37-cp37m-win32.whl.

File metadata

  • Download URL: slvs-3.2-cp37-cp37m-win32.whl
  • Upload date:
  • Size: 256.7 kB
  • Tags: CPython 3.7m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for slvs-3.2-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 d2918198993455281cbc54e8d86a160404304d900c2b3b3ba29a0facc8776d6f
MD5 20b70e42aba5d3284011275bdf0e67d8
BLAKE2b-256 18b068956af9c8207c99c694c9d53a5c7e21d3d9657474361c27ddcfdc3028f6

See more details on using hashes here.

File details

Details for the file slvs-3.2-cp37-cp37m-musllinux_1_2_x86_64.whl.

File metadata

  • Download URL: slvs-3.2-cp37-cp37m-musllinux_1_2_x86_64.whl
  • Upload date:
  • Size: 3.8 MB
  • Tags: CPython 3.7m, musllinux: musl 1.2+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for slvs-3.2-cp37-cp37m-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 93f663502fae1c7e2139f1020673619bfe2383079b1d130c55afa1e591136656
MD5 c5adafa1301ac08345f00b7c9dac80b4
BLAKE2b-256 9766973b290773a88ba1341f212abaf3703c82ea7a87b5a78008840b6b691066

See more details on using hashes here.

File details

Details for the file slvs-3.2-cp37-cp37m-musllinux_1_2_aarch64.whl.

File metadata

  • Download URL: slvs-3.2-cp37-cp37m-musllinux_1_2_aarch64.whl
  • Upload date:
  • Size: 3.6 MB
  • Tags: CPython 3.7m, musllinux: musl 1.2+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for slvs-3.2-cp37-cp37m-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 655414a23e95a52e2cfe61679079af9fa76cf7b918babcc1042491a3f24a13fd
MD5 6c3f7fc837f83ed4addc2ebab53a8a1a
BLAKE2b-256 a2f1ab1a713e200b1d6118d9af90815d4d8a93e85e6a0418f196c0773291c751

See more details on using hashes here.

File details

Details for the file slvs-3.2-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for slvs-3.2-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 cf194e4a2a3b68fa977a7ede71d51129849697985e424b02508e004bd1546ffb
MD5 1def5fd9881cd80f9772154a34a65768
BLAKE2b-256 496a964003efd420c27c22fbeb70fa50236366056c9fc4667b92f3209602c6e3

See more details on using hashes here.

File details

Details for the file slvs-3.2-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for slvs-3.2-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 f6a610b9568c9383b70659dc540b1127c2da426846c9c3c9a534c09101ba537a
MD5 aaa14694250349b63c637f514015dc85
BLAKE2b-256 4afef71c446a7958f3f47f0a281977eae09b8b4effa28c05af1ce0b69675d666

See more details on using hashes here.

File details

Details for the file slvs-3.2-cp37-cp37m-macosx_10_12_x86_64.whl.

File metadata

  • Download URL: slvs-3.2-cp37-cp37m-macosx_10_12_x86_64.whl
  • Upload date:
  • Size: 282.7 kB
  • Tags: CPython 3.7m, macOS 10.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for slvs-3.2-cp37-cp37m-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 05a39fae8c5ca0e35f3af4650790f41003a8aae6306959adbf65fc675d269b00
MD5 b49c7e0814d75414c74febdab1cef69b
BLAKE2b-256 41fe22ec11a3003b2a31758e8514d6d6022f62b7a705470c4c33b167bb2636f4

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