Skip to main content

Linear strength vortex panel method from Katz & Plotkin, implemented in Rust with a Python API

Project description

LSV-Panel

A linear strength vortex panel method from Katz & Plotkin, implemented in Rust with a Python API.

Installation

To install on any operating system from PyPi, the recommended method is pip. First, create a virtual environment and activate. On macOS/Linux,

uv venv
source .venv/bin/activate

On Windows,

uv venv
.venv\Scripts\activate

Then, install the library using pip:

uv pip install lsv-panel

Usage

The following Python script can be executed assuming you have a Selig-format airfoil coordinate file called "n0012-il.txt" located in the same directory. This script plots the pressure coefficient distribution as a function of $x$.

import lsv_panel
import matplotlib.pyplot as plt
import numpy as np
import os
file_name = os.path.join("n0012-il.txt")
coords = np.loadtxt(file_name, skiprows=1)
co, cp, cl = lsv_panel.solve(coords, alpha_deg=5.0)
fig, ax = plt.subplots(2, 1, figsize=(8, 6))
ax[0].plot(np.array(co)[:, 0], np.array(cp), color="steelblue")
ax[0].set_xlabel(r"$x/c$", fontsize=16)
ax[0].set_ylabel(r"$C_p$", fontsize=16)
ax[0].invert_yaxis()
ax[0].text(0.4, -1.0, fr"$C_l={cl:.3f}$", size=16)
ax[1].plot(coords[:, 0], coords[:, 1], color="black")
ax[1].set_xlabel(r"$x/c$", fontsize=16)
ax[1].set_ylabel(r"$y/c$", fontsize=16)
ax[1].set_aspect("equal")
for a in ax:
    a.tick_params(axis="both", which="major", labelsize=12)

fig.set_tight_layout(True)
plt.show()

[!IMPORTANT] The third-party libraries numpy and matplotlib are not included in the base installation to minimize required storage space. To include these libraries in the installation, use uv pip install lsv-panel[dev]

image

The airfoil coordinate file should look something like the following. Of course, the line of code that loads the coordinates could be modified to accomodate different coordinate formats.

NACA 0012
1.000000  0.001260
0.999416  0.001342
...       ...
0.999416 -0.001342
1.000000 -0.001260

The outputs of the solve function have the following meanings:

  • co: The collocation points of the panel method (the midpoint of each airfoil coordinate panel). The data type is a list of lists.
  • cp: The pressure coefficient at each collocation point. The data type is a list.
  • cl: The lift coefficient. The data type is a float.

Angle of Attack Sweep

from cycler import cycler
import lsv_panel
import matplotlib.pyplot as plt
import numpy as np
import os
file_name = os.path.join("n0012-il.txt")
coords = np.loadtxt(file_name, skiprows=1)
alpha_deg = np.linspace(0.0, 10.0, 6)
co_list, cp_list, cl_list = lsv_panel.sweep_alpha(
    coords, alpha_deg=alpha_deg
)
fig, ax = plt.subplots(3, 1, figsize=(8, 9))
color_cycle = cycler(color=[
    "indianred", 
    "coral", 
    "gold", 
    "mediumaquamarine", 
    "steelblue", 
    "violet"
])
ax[0].set_prop_cycle(color_cycle)
for co, cp, alf in zip(co_list, cp_list, alpha_deg):
    ax[0].plot(np.array(co)[:, 0], np.array(cp), label=fr"$\alpha={alf:.1f}^{{\circ}}$")

ax[0].set_xlabel(r"$x/c$", fontsize=16)
ax[0].set_ylabel(r"$C_p$", fontsize=16)
ax[0].invert_yaxis()
ax[0].legend(loc=1, prop=dict(size=14))
ax[1].plot(coords[:, 0], coords[:, 1], color="black")
ax[1].set_xlabel(r"$x/c$", fontsize=16)
ax[1].set_ylabel(r"$y/c$", fontsize=16)
ax[1].set_aspect("equal")
ax[2].plot(alpha_deg, cl_list, color="purple", ls="--", mfc="gray", mec="gray", marker="o")
ax[2].set_xlabel(r"$\alpha\,[^{\circ}]$", fontsize=16)
ax[2].set_ylabel(r"$C_l$", fontsize=16)
for a in ax:
    a.tick_params(axis="both", which="major", labelsize=12)

fig.set_tight_layout(True)
plt.show()

image

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

lsv_panel-0.1.0.tar.gz (41.5 kB view details)

Uploaded Source

Built Distributions

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

lsv_panel-0.1.0-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl (440.6 kB view details)

Uploaded PyPymusllinux: musl 1.2+ x86-64

lsv_panel-0.1.0-pp311-pypy311_pp73-musllinux_1_2_i686.whl (464.9 kB view details)

Uploaded PyPymusllinux: musl 1.2+ i686

lsv_panel-0.1.0-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl (532.7 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARMv7l

lsv_panel-0.1.0-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl (446.5 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARM64

lsv_panel-0.1.0-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (270.1 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

lsv_panel-0.1.0-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (299.7 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ s390x

lsv_panel-0.1.0-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (412.5 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ppc64le

lsv_panel-0.1.0-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (270.3 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

lsv_panel-0.1.0-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (268.2 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

lsv_panel-0.1.0-pp311-pypy311_pp73-manylinux_2_5_i686.manylinux1_i686.whl (283.8 kB view details)

Uploaded PyPymanylinux: glibc 2.5+ i686

lsv_panel-0.1.0-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl (440.9 kB view details)

Uploaded PyPymusllinux: musl 1.2+ x86-64

lsv_panel-0.1.0-pp310-pypy310_pp73-musllinux_1_2_i686.whl (465.1 kB view details)

Uploaded PyPymusllinux: musl 1.2+ i686

lsv_panel-0.1.0-pp310-pypy310_pp73-musllinux_1_2_armv7l.whl (532.8 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARMv7l

lsv_panel-0.1.0-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl (446.8 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARM64

lsv_panel-0.1.0-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (270.3 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

lsv_panel-0.1.0-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (300.0 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ s390x

lsv_panel-0.1.0-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (412.5 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ppc64le

lsv_panel-0.1.0-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (270.4 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

lsv_panel-0.1.0-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (268.5 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

lsv_panel-0.1.0-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl (283.9 kB view details)

Uploaded PyPymanylinux: glibc 2.5+ i686

lsv_panel-0.1.0-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl (441.4 kB view details)

Uploaded PyPymusllinux: musl 1.2+ x86-64

lsv_panel-0.1.0-pp39-pypy39_pp73-musllinux_1_2_i686.whl (465.0 kB view details)

Uploaded PyPymusllinux: musl 1.2+ i686

lsv_panel-0.1.0-pp39-pypy39_pp73-musllinux_1_2_armv7l.whl (533.0 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARMv7l

lsv_panel-0.1.0-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl (447.5 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARM64

lsv_panel-0.1.0-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (300.3 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ s390x

lsv_panel-0.1.0-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (413.3 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ppc64le

lsv_panel-0.1.0-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (270.4 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

lsv_panel-0.1.0-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (269.3 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

lsv_panel-0.1.0-cp313-cp313t-musllinux_1_2_x86_64.whl (438.3 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ x86-64

lsv_panel-0.1.0-cp313-cp313t-musllinux_1_2_i686.whl (462.5 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ i686

lsv_panel-0.1.0-cp313-cp313t-musllinux_1_2_armv7l.whl (530.2 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARMv7l

lsv_panel-0.1.0-cp313-cp313t-musllinux_1_2_aarch64.whl (444.6 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARM64

lsv_panel-0.1.0-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl (298.6 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ s390x

lsv_panel-0.1.0-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (410.4 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ppc64le

lsv_panel-0.1.0-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (267.9 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ARMv7l

lsv_panel-0.1.0-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (265.9 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ARM64

lsv_panel-0.1.0-cp313-cp313-win_amd64.whl (136.8 kB view details)

Uploaded CPython 3.13Windows x86-64

lsv_panel-0.1.0-cp313-cp313-win32.whl (127.9 kB view details)

Uploaded CPython 3.13Windows x86

lsv_panel-0.1.0-cp313-cp313-musllinux_1_2_x86_64.whl (438.6 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

lsv_panel-0.1.0-cp313-cp313-musllinux_1_2_i686.whl (462.6 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ i686

lsv_panel-0.1.0-cp313-cp313-musllinux_1_2_armv7l.whl (530.5 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARMv7l

lsv_panel-0.1.0-cp313-cp313-musllinux_1_2_aarch64.whl (444.8 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

lsv_panel-0.1.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (268.0 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

lsv_panel-0.1.0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl (298.7 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ s390x

lsv_panel-0.1.0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (407.9 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ppc64le

lsv_panel-0.1.0-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (268.1 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARMv7l

lsv_panel-0.1.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (266.2 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

lsv_panel-0.1.0-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl (281.8 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.5+ i686

lsv_panel-0.1.0-cp313-cp313-macosx_11_0_arm64.whl (237.5 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

lsv_panel-0.1.0-cp313-cp313-macosx_10_12_x86_64.whl (242.8 kB view details)

Uploaded CPython 3.13macOS 10.12+ x86-64

lsv_panel-0.1.0-cp312-cp312-win_amd64.whl (136.7 kB view details)

Uploaded CPython 3.12Windows x86-64

lsv_panel-0.1.0-cp312-cp312-win32.whl (127.9 kB view details)

Uploaded CPython 3.12Windows x86

lsv_panel-0.1.0-cp312-cp312-musllinux_1_2_x86_64.whl (438.4 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

lsv_panel-0.1.0-cp312-cp312-musllinux_1_2_i686.whl (462.7 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ i686

lsv_panel-0.1.0-cp312-cp312-musllinux_1_2_armv7l.whl (530.5 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARMv7l

lsv_panel-0.1.0-cp312-cp312-musllinux_1_2_aarch64.whl (444.6 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

lsv_panel-0.1.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (267.9 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

lsv_panel-0.1.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl (298.5 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ s390x

lsv_panel-0.1.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (409.5 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ppc64le

lsv_panel-0.1.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (268.1 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARMv7l

lsv_panel-0.1.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (266.0 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

lsv_panel-0.1.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl (282.0 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.5+ i686

lsv_panel-0.1.0-cp312-cp312-macosx_11_0_arm64.whl (237.4 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

lsv_panel-0.1.0-cp312-cp312-macosx_10_12_x86_64.whl (242.8 kB view details)

Uploaded CPython 3.12macOS 10.12+ x86-64

lsv_panel-0.1.0-cp311-cp311-win_amd64.whl (137.4 kB view details)

Uploaded CPython 3.11Windows x86-64

lsv_panel-0.1.0-cp311-cp311-win32.whl (128.6 kB view details)

Uploaded CPython 3.11Windows x86

lsv_panel-0.1.0-cp311-cp311-musllinux_1_2_x86_64.whl (439.9 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

lsv_panel-0.1.0-cp311-cp311-musllinux_1_2_i686.whl (464.4 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ i686

lsv_panel-0.1.0-cp311-cp311-musllinux_1_2_armv7l.whl (532.0 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARMv7l

lsv_panel-0.1.0-cp311-cp311-musllinux_1_2_aarch64.whl (446.0 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

lsv_panel-0.1.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (269.4 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

lsv_panel-0.1.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl (299.3 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ s390x

lsv_panel-0.1.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (411.0 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ppc64le

lsv_panel-0.1.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (269.6 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARMv7l

lsv_panel-0.1.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (267.4 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

lsv_panel-0.1.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl (283.1 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.5+ i686

lsv_panel-0.1.0-cp311-cp311-macosx_11_0_arm64.whl (239.6 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

lsv_panel-0.1.0-cp311-cp311-macosx_10_12_x86_64.whl (245.6 kB view details)

Uploaded CPython 3.11macOS 10.12+ x86-64

lsv_panel-0.1.0-cp310-cp310-win_amd64.whl (137.6 kB view details)

Uploaded CPython 3.10Windows x86-64

lsv_panel-0.1.0-cp310-cp310-win32.whl (128.6 kB view details)

Uploaded CPython 3.10Windows x86

lsv_panel-0.1.0-cp310-cp310-musllinux_1_2_x86_64.whl (440.2 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

lsv_panel-0.1.0-cp310-cp310-musllinux_1_2_i686.whl (464.5 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ i686

lsv_panel-0.1.0-cp310-cp310-musllinux_1_2_armv7l.whl (532.1 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARMv7l

lsv_panel-0.1.0-cp310-cp310-musllinux_1_2_aarch64.whl (446.1 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

lsv_panel-0.1.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (269.7 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

lsv_panel-0.1.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl (299.4 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ s390x

lsv_panel-0.1.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (411.8 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ppc64le

lsv_panel-0.1.0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (269.7 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARMv7l

lsv_panel-0.1.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (267.7 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

lsv_panel-0.1.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl (283.2 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.5+ i686

lsv_panel-0.1.0-cp39-cp39-win_amd64.whl (137.4 kB view details)

Uploaded CPython 3.9Windows x86-64

lsv_panel-0.1.0-cp39-cp39-win32.whl (128.4 kB view details)

Uploaded CPython 3.9Windows x86

lsv_panel-0.1.0-cp39-cp39-musllinux_1_2_x86_64.whl (440.6 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ x86-64

lsv_panel-0.1.0-cp39-cp39-musllinux_1_2_i686.whl (464.2 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ i686

lsv_panel-0.1.0-cp39-cp39-musllinux_1_2_armv7l.whl (532.1 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARMv7l

lsv_panel-0.1.0-cp39-cp39-musllinux_1_2_aarch64.whl (446.4 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

lsv_panel-0.1.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (269.9 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

lsv_panel-0.1.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl (299.5 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ s390x

lsv_panel-0.1.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (412.8 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ppc64le

lsv_panel-0.1.0-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (269.5 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARMv7l

lsv_panel-0.1.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (268.0 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARM64

lsv_panel-0.1.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl (282.9 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.5+ i686

lsv_panel-0.1.0-cp38-cp38-win32.whl (128.2 kB view details)

Uploaded CPython 3.8Windows x86

lsv_panel-0.1.0-cp38-cp38-musllinux_1_2_x86_64.whl (440.4 kB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ x86-64

lsv_panel-0.1.0-cp38-cp38-musllinux_1_2_i686.whl (464.2 kB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ i686

lsv_panel-0.1.0-cp38-cp38-musllinux_1_2_armv7l.whl (531.8 kB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ ARMv7l

lsv_panel-0.1.0-cp38-cp38-musllinux_1_2_aarch64.whl (446.3 kB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ ARM64

lsv_panel-0.1.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (269.6 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ x86-64

lsv_panel-0.1.0-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl (299.4 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ s390x

lsv_panel-0.1.0-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (411.5 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ppc64le

lsv_panel-0.1.0-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (269.2 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ARMv7l

lsv_panel-0.1.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (267.7 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ARM64

lsv_panel-0.1.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl (282.9 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.5+ i686

File details

Details for the file lsv_panel-0.1.0.tar.gz.

File metadata

  • Download URL: lsv_panel-0.1.0.tar.gz
  • Upload date:
  • Size: 41.5 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.9.0

File hashes

Hashes for lsv_panel-0.1.0.tar.gz
Algorithm Hash digest
SHA256 2b3cf1bc80f12c7d45a18865625967ed7316d0a0e76b07b9ce6aaeeb66670606
MD5 b6187fe0a6317038ae1cf63ade67ed79
BLAKE2b-256 c64dc6d559f3137d07fbfa6abec0f4198cab13a9c9dc4d5a13791c5823247b7a

See more details on using hashes here.

File details

Details for the file lsv_panel-0.1.0-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for lsv_panel-0.1.0-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 4237ece8d447353c6ad333889d5e469c5c3c21fe39d1004fa5b168508df70d20
MD5 ca672d493adb5216c9136708828b1bd3
BLAKE2b-256 4ad0eb2ea7ad085876cd5af6ec55e6dfa070367e57a0e268f08b17448a5bf9de

See more details on using hashes here.

File details

Details for the file lsv_panel-0.1.0-pp311-pypy311_pp73-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for lsv_panel-0.1.0-pp311-pypy311_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 1b101b69dfbb11fff9328be54e5994db64ca34d6002cb455b27985508c63808e
MD5 78e52880670a7b05442001f3dc144266
BLAKE2b-256 864629280b848a5fa6f79295aa77254d457065e973a0a81c84e524aa6718e563

See more details on using hashes here.

File details

Details for the file lsv_panel-0.1.0-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for lsv_panel-0.1.0-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 61589571e72b39919404abe4001df64fd120b7022eabc5a27d2a28aad886768d
MD5 22035a06ddb0fbd4b241b5451ef68eab
BLAKE2b-256 b8cc894672d224b3a305df853763fd66e7caf9706ced74bb5f95d533382d831f

See more details on using hashes here.

File details

Details for the file lsv_panel-0.1.0-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for lsv_panel-0.1.0-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 efdef12a690cfdc9910b0a840e71e5236e54ed036f8f84f7edd52f413ea7983b
MD5 e210dec7e4882ae75c33e0da49e55364
BLAKE2b-256 ace015b1cd85fffd19bb73b83565ed802affc1ec3282eb25a07a438922df0e4c

See more details on using hashes here.

File details

Details for the file lsv_panel-0.1.0-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for lsv_panel-0.1.0-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 03b4eace002acf08e38b6a172cd59300b424572eb88ff07572a83532e10e7f9f
MD5 80db6579d65ba852311451c1813618be
BLAKE2b-256 5cdbc0d9197a9a7c4a671fdfe9956ec16592f5b79a43e7b140176243fd3dbe42

See more details on using hashes here.

File details

Details for the file lsv_panel-0.1.0-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for lsv_panel-0.1.0-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 4263b67e1161c50804faf32c643bd4818919b98be3061e80091d3088d06b3a60
MD5 c3f31dc2f37096bccf908f5b833322ee
BLAKE2b-256 f0f3e200b208c9ba68c3d073c76f4639a7fcd559701b3995e00ec5ea4a2e1c18

See more details on using hashes here.

File details

Details for the file lsv_panel-0.1.0-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for lsv_panel-0.1.0-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 71098b522175faaac77e53fa8d2120e866adefef920f0e1ba996520a1f6d62f2
MD5 ac9474f6caead147eee1d79fdd559904
BLAKE2b-256 88f758d873e4509e9a8b8bc1d500f01359061137b3c4986c6a90d39e8cefcf88

See more details on using hashes here.

File details

Details for the file lsv_panel-0.1.0-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for lsv_panel-0.1.0-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 9121f7b52f059606bdb0d52a9151203bf9c0256eda0a5d3b07cd7af0994bf7cc
MD5 56028793ce9fbd5024dc79abfadad78b
BLAKE2b-256 47c5bdec4fe7b34f1ac3f0b8d106ccbb6f4f7396389494d09c95ef2e5e09582a

See more details on using hashes here.

File details

Details for the file lsv_panel-0.1.0-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for lsv_panel-0.1.0-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 905286489a595166f243e5a084de83bcc5d89f509f642cbe88857c1fdf6ff372
MD5 796bb6b25607923b9bf6b0ec27d7fdd3
BLAKE2b-256 6635bb1b23590a35f4dc59e5744198b60c718b9dcf71014e4a5fad30c413ae61

See more details on using hashes here.

File details

Details for the file lsv_panel-0.1.0-pp311-pypy311_pp73-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for lsv_panel-0.1.0-pp311-pypy311_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 cf8449eab7b613d0ae1a4d58c4281de9a3f47b6ce941f3135c8b39745f99ea29
MD5 958f0629c77c443b554b406e28413e51
BLAKE2b-256 82d4ae820af25898e55fc65eae22d2d8cbe1d251d76b8042abf4c12d73cd0deb

See more details on using hashes here.

File details

Details for the file lsv_panel-0.1.0-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for lsv_panel-0.1.0-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 34926b8a88743c69ccb09a1f4bffa1c243011baad835d0ab078a48a1dc6b81e9
MD5 c21dfd98ba7100c9dfac0c717319dfeb
BLAKE2b-256 960cbf114e932fd35eeaa9527f6b40bdaac78b6a821a905eedf75bc5a401c893

See more details on using hashes here.

File details

Details for the file lsv_panel-0.1.0-pp310-pypy310_pp73-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for lsv_panel-0.1.0-pp310-pypy310_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 2830b9d914ef8f19c285bf2c45cac29f37fcb5dc74b6765fa8382e0ce3759ef9
MD5 ce4e7183d5410aa07ebbc12248c6e4c5
BLAKE2b-256 94af3dc73986ac3ff85503d865474ca7aa56fcdbed80285f3203d0cafcbe939b

See more details on using hashes here.

File details

Details for the file lsv_panel-0.1.0-pp310-pypy310_pp73-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for lsv_panel-0.1.0-pp310-pypy310_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 2d5408f06b7fe1cff8a6751a12a4c509f78022c7004fb99e1595af9bf227dbc4
MD5 3fc8cd06bcc328234ca80f8467655115
BLAKE2b-256 9cd2ac0fb4e365c766f5ebf07165c8dac1b52df897d2927b2e39c20e7c82ad58

See more details on using hashes here.

File details

Details for the file lsv_panel-0.1.0-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for lsv_panel-0.1.0-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 09342f511d47427bdd3e395bc6196c7ac3ba6865a2afc70721f9414db21008f3
MD5 dcca1a0a40169883950cdb6cd5071dad
BLAKE2b-256 b61031a5076b605818b9065dbffb38c86c82a7cdaedd41cf2e75e9b1ad48d009

See more details on using hashes here.

File details

Details for the file lsv_panel-0.1.0-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for lsv_panel-0.1.0-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 874ecb9ece901510b6a6a485b4fd9ebada9fc24830c1bcdd11210ea125272dc4
MD5 264d98472750ada275b35ea6ae465028
BLAKE2b-256 e113fdc6e4bfbe456a65d11acb175b6b1a34ba078bbd1f1e795ef6690aa807e1

See more details on using hashes here.

File details

Details for the file lsv_panel-0.1.0-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for lsv_panel-0.1.0-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 0f896e59fc554f9de30d578b7cde93087af8221a0195beea32761948a739e878
MD5 35ed8058d3f8b1de3e226a2715fff326
BLAKE2b-256 134294a482cd8f99ba1a27bf30c2a8c096394979e778436dcec70cd3b2363d6e

See more details on using hashes here.

File details

Details for the file lsv_panel-0.1.0-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for lsv_panel-0.1.0-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 6a332162db36fa6a6654d813bbc470812e643b0157640da0d17625b3ea77de7e
MD5 600d27a9f5bf012f840fd9845d218b19
BLAKE2b-256 c0ab55d1af2e0d5c5c64fe6b34ed222e9248ae0173f7e37b8d84daf434b41cef

See more details on using hashes here.

File details

Details for the file lsv_panel-0.1.0-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for lsv_panel-0.1.0-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 c94bf30942baf81c106bd8ee187f71d45ab36d2074d86b229cf5168530bd56f5
MD5 8cf9d6eaefe7c3f3c913424f99057726
BLAKE2b-256 fd39ec37d026d53d794fb76b206d22b3d530132698e4f99410ea1380ac6b1fa1

See more details on using hashes here.

File details

Details for the file lsv_panel-0.1.0-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for lsv_panel-0.1.0-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 4f0e0b2e7a31be56f6abc4463fdb1b877ad4d528a06dd3efb0c973aa3a453032
MD5 3fc2272d2bf279a19e7eb9ca56087472
BLAKE2b-256 7bd9570d93688b6b1946e60a6d958f9f208fbde2e65cfa4010fffabee9cac0f8

See more details on using hashes here.

File details

Details for the file lsv_panel-0.1.0-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for lsv_panel-0.1.0-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 645b8be4994a5616e67dda709b5d5ad143516e7f3c44ab7d3206761ee0585225
MD5 77c897cce624e138983472a64390e7a6
BLAKE2b-256 db4f8d6a35ffd9cea60465432938067d78bfe0e6ac75ef862cf1204ac8b5f9b8

See more details on using hashes here.

File details

Details for the file lsv_panel-0.1.0-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for lsv_panel-0.1.0-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 6a5ab65cf72eb549a7f2df66015ff8c2560bbd1d16e3d3c70b0fd46f859f6c52
MD5 4edc86fee687093c539dd71f4290bd73
BLAKE2b-256 ae76c04e60b64f3e53236cddc24b55f06024927f502e070217613e5649f9e2a9

See more details on using hashes here.

File details

Details for the file lsv_panel-0.1.0-pp39-pypy39_pp73-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for lsv_panel-0.1.0-pp39-pypy39_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 a24c926dad4bcdd5074f0fb6207dc58c62f68c4d10398cdcb318facfb101a1c2
MD5 1f6bfd70fd1e9d7cec0a9bf7bc26eae4
BLAKE2b-256 4565ae17df242f97ddcad6ae9abfe028dd1462f68fb005758302035dd7b3ea87

See more details on using hashes here.

File details

Details for the file lsv_panel-0.1.0-pp39-pypy39_pp73-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for lsv_panel-0.1.0-pp39-pypy39_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 1fac2fec75653f3f7c826e587846eb25bc83189dbee7118a852e85d0825d4dc2
MD5 1d711295448874f2c21dfeaabfb6f9e6
BLAKE2b-256 8cb95277f554f5ce2aa687475492de794a466507532134ed0d67a49eaaa83b84

See more details on using hashes here.

File details

Details for the file lsv_panel-0.1.0-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for lsv_panel-0.1.0-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 7f8c57a0fc441a6792773d14f91e5f8740231e8c02e1bb99677ecb5c7812fc3e
MD5 d1dabbd29b6bafd0b7dfba929ee0e5cf
BLAKE2b-256 09910aaf6a648a6019c058484311172e55bb3c997dc7f07a3e28370101f8f690

See more details on using hashes here.

File details

Details for the file lsv_panel-0.1.0-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for lsv_panel-0.1.0-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 daaed41558f04609f7cd93273f9cd75e64140891758da852d630d681e0f64f40
MD5 d964d46b169c9000a66129a18798ce08
BLAKE2b-256 76f67e5d6889c4ee1da9c3cebeba2acbf3afdf4d42c1663677a102b931958bcc

See more details on using hashes here.

File details

Details for the file lsv_panel-0.1.0-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for lsv_panel-0.1.0-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 869d0c6dbb21ecb70028ec9f28b6b52a860bf518fd1a17b7278e01447f374ae3
MD5 9d96deffe59e1f2208825134e77b33d2
BLAKE2b-256 f9ed1367df7563726e82506a77124d1b9ee013f1d8b41260f0048d30205cea63

See more details on using hashes here.

File details

Details for the file lsv_panel-0.1.0-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for lsv_panel-0.1.0-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 e2c545058da97003ce1fced5092a1e568de4fac08d8b99b8094f7f48c24d8d4e
MD5 dcf8dde1ec387b880ea1f4edc524fb6e
BLAKE2b-256 b6402e802079a103967f0a130ddfb7126466ff7a40a85296e1fe732f7e38837c

See more details on using hashes here.

File details

Details for the file lsv_panel-0.1.0-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for lsv_panel-0.1.0-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 343e7ab75dcd6b446699f08d0d13b9220559f10fb919521aa27a4a9c5d7eed18
MD5 2537763c8e2737f6862c2b4b4a8e8114
BLAKE2b-256 adb7bdc2bd730c28fddc20ac33b4011476e15d6255e25c81db686b84d08987b2

See more details on using hashes here.

File details

Details for the file lsv_panel-0.1.0-cp313-cp313t-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for lsv_panel-0.1.0-cp313-cp313t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 d0d1b30c86ed0864531a34874287847169d54caa93ed78066d731fb8fb3f6e3e
MD5 19e77ba457d1e4af1e86b5f66866cd3a
BLAKE2b-256 e34087c69dee9b2d14f6d3fc61e84d5a000775ea610ae19dfc36609b4c0b2d4b

See more details on using hashes here.

File details

Details for the file lsv_panel-0.1.0-cp313-cp313t-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for lsv_panel-0.1.0-cp313-cp313t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 a538fda616062a6924e4d1f41d800cb85ac871e951022262924c5b6d859b070a
MD5 0cf3f95a3db57f9f174bdd7768364e9c
BLAKE2b-256 b494107efb4876b72864361021f23d5a667a04c3bfb07d32d7adff94468aeb8b

See more details on using hashes here.

File details

Details for the file lsv_panel-0.1.0-cp313-cp313t-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for lsv_panel-0.1.0-cp313-cp313t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 d48d3173c89b517642058be404a8d56c11fbece83c638093afcd1606e42cf908
MD5 12d2125d7aedcb3310cab319de7b4261
BLAKE2b-256 6950614ee37189cfeaeec9b8e2e637733c72a086100662050f8e9e9a6fa44eb9

See more details on using hashes here.

File details

Details for the file lsv_panel-0.1.0-cp313-cp313t-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for lsv_panel-0.1.0-cp313-cp313t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 8cf6d2da65f25e81658de3a201c015da8ba2a614fbafcddee601045b82a1f6ed
MD5 9bcd491a8f95edf42904937f51c9e3db
BLAKE2b-256 3a3e20cd691429c2402770835907344bc0ad92e55ec508b0f75830f726332e7c

See more details on using hashes here.

File details

Details for the file lsv_panel-0.1.0-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for lsv_panel-0.1.0-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 6482aa8e0802f8521a271097a0776ece16eaf97fcfa733189f72a85883b86c11
MD5 ec0369d904d18b6a8f1770a5ff5eeead
BLAKE2b-256 9e3cb61b5f8075c0950dae25a438e8fd57ee5091c2ebe50cb6f6a9d457b08b7f

See more details on using hashes here.

File details

Details for the file lsv_panel-0.1.0-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for lsv_panel-0.1.0-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 505d096d00409f654905f2766acd209c321b5d49e36b73ff41a31463d9a4a8b4
MD5 60447387f04db06d3e40dcf24e7cfd79
BLAKE2b-256 cdd0aa737de6bc2bbabdc881e14cbaaa45e17eb8d7524e1c66a275820f55b252

See more details on using hashes here.

File details

Details for the file lsv_panel-0.1.0-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for lsv_panel-0.1.0-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 6cbcd8507f3c70dd034dcdd279e35dcbb9bf30c5ba729dcfb330f8959cafd1a0
MD5 5b0fc8b382c7f8911a4b9f714da2b3fc
BLAKE2b-256 409d60e78abe597960843927f67e4b2a2ab5c072771b225625ae4ab95f30fb7a

See more details on using hashes here.

File details

Details for the file lsv_panel-0.1.0-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for lsv_panel-0.1.0-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 7f6598e85dc65e744272132122cba912d318698681eab28ea61b8773de9b357d
MD5 5b0f5f6759327bb04630f7bf3f994bc6
BLAKE2b-256 56732949b9095d70953f1030ccf156944db58fb2dbeeadcf78ad4c400b16184a

See more details on using hashes here.

File details

Details for the file lsv_panel-0.1.0-cp313-cp313-win_amd64.whl.

File metadata

File hashes

Hashes for lsv_panel-0.1.0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 10d9b5c591096e0bd39403631aebb975876b8896f08dad3b6b10c7f988dd146f
MD5 ddd8953dee523f40c682b28a26a9b7fd
BLAKE2b-256 7a87413efd9b25358a3806cf75c143af9382701cb76d9a452dd3a6507a22b8ee

See more details on using hashes here.

File details

Details for the file lsv_panel-0.1.0-cp313-cp313-win32.whl.

File metadata

  • Download URL: lsv_panel-0.1.0-cp313-cp313-win32.whl
  • Upload date:
  • Size: 127.9 kB
  • Tags: CPython 3.13, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.9.0

File hashes

Hashes for lsv_panel-0.1.0-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 f2017ed1ef98dc3696d9c7b024dc4a46aa2b18a5be07f6313f2a5af9fd75e4fd
MD5 36240e3c33f0c158043569112403e0ad
BLAKE2b-256 a82dbf03b39da2a5c979e485e96674aef04a88feecacf3548a2a975493ea037e

See more details on using hashes here.

File details

Details for the file lsv_panel-0.1.0-cp313-cp313-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for lsv_panel-0.1.0-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 145bfaafafe27ee3f8b6b6a067bd931cec0d0625a3c394c9086c7c9b66c2161b
MD5 b3a40d54b0ca1480614068cb933b3a1e
BLAKE2b-256 268cf312d309bbc81d1b47bef034e473f47bbcb4aca24e9c9acce6a847104b0c

See more details on using hashes here.

File details

Details for the file lsv_panel-0.1.0-cp313-cp313-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for lsv_panel-0.1.0-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 1633a5291f512ba60bd3ff53811888cab593a70e1c3ff8b6361eafdde51945ae
MD5 9c278ef8ce9243f718dbd38d56d9fa4c
BLAKE2b-256 334d3360dbf264c7f9cee6a0ec10f62dea5e9ee02ae742e473eb646cdb92c657

See more details on using hashes here.

File details

Details for the file lsv_panel-0.1.0-cp313-cp313-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for lsv_panel-0.1.0-cp313-cp313-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 844e214589222813ffb35350f9629a7f33043532558f031abf69f8be8b63055b
MD5 cb606f5b14c855d04d6685156695befe
BLAKE2b-256 83394c76ceff75473ffc447e961dc72093557fc73b9b98ad4659801a34eea045

See more details on using hashes here.

File details

Details for the file lsv_panel-0.1.0-cp313-cp313-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for lsv_panel-0.1.0-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 616f4d536731c765becab100c94bbe4dd1fa842783f94d63d8af67eabcc334d4
MD5 30339954ae6dd50cabb88b7b42689e6c
BLAKE2b-256 5ee870588c9be420b3197a8756da89a3811e3aa4983f320066e28a1839f7dd7f

See more details on using hashes here.

File details

Details for the file lsv_panel-0.1.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for lsv_panel-0.1.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 2177e771f8e65726a0f2d7de4304a0431e9effdaa9e291fed9a457725916acc0
MD5 984dc26a90c3bab3de1f42192d709d18
BLAKE2b-256 2606295e861e771735988a0187c1639390a3582e61c3da97a60e1f6a7d37d5bc

See more details on using hashes here.

File details

Details for the file lsv_panel-0.1.0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for lsv_panel-0.1.0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 40d2ec13ed0f0dfebb6be5ce3cfed45036866c713f5b47d542582436d6f2df0d
MD5 da12161eefbea4414667e20a47d4c70d
BLAKE2b-256 0e2b342cce90d273fb06328f782252d076169e64f15d5b3a68e3b274ac884b5d

See more details on using hashes here.

File details

Details for the file lsv_panel-0.1.0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for lsv_panel-0.1.0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 dfd6f60a9dbfd84a74c2fc58ee691607133fa178404a4c6df8a91c2cf1467bce
MD5 c0661a82a9f1d5a2dc76f0e12d0f7d6c
BLAKE2b-256 a1988659391a2effb4b869df01366f67c9bb528bc7359ba6287eba6f5e8c32ea

See more details on using hashes here.

File details

Details for the file lsv_panel-0.1.0-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for lsv_panel-0.1.0-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 d36fc2f820bf969232c9585d4d739988818a63c82bcabc2606d6dd287be85d95
MD5 0222212ef696ca07a5b0cb3d1dc627b3
BLAKE2b-256 294e0a4835e6ea52918c3176e61b3c763d3f21c72a370f0402d04a10a8bf88bb

See more details on using hashes here.

File details

Details for the file lsv_panel-0.1.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for lsv_panel-0.1.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 428ff1d6e74ce81819d5f600dec9af0bf80ff28fa37311f3fbdeb6048e14b2e0
MD5 99f8c04a1dfef6e836631645c64ebefe
BLAKE2b-256 099fd72d0d33862d03f2b61f7f39f06fc51132ce008502c1545c0f3da8890323

See more details on using hashes here.

File details

Details for the file lsv_panel-0.1.0-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for lsv_panel-0.1.0-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 9c96b86aa97712e6d577d7d7c07f6cf144e4bd8fc5e1c2e09254bc8f75731e65
MD5 f50a39258dadf56863ca89ee5a71814e
BLAKE2b-256 4138858de2bf2d8b6059008983eb59e3b2cf68fb45f9516f1f8d94b7e0f16dfd

See more details on using hashes here.

File details

Details for the file lsv_panel-0.1.0-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for lsv_panel-0.1.0-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 f84883adc467f66eab2134cbcf2e023d2422e210e2aa10a2b92986ef17455a2b
MD5 f6856939e2f667b6db766362b3e7b5fa
BLAKE2b-256 7461f6ff064d0a07af8cbf39455de37dbe1bfe1244a852e43c4e08632c30d765

See more details on using hashes here.

File details

Details for the file lsv_panel-0.1.0-cp313-cp313-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for lsv_panel-0.1.0-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 537494e2be4d31842b621b1e7a3a768001bb259749b475326a6e17fa8fc8df92
MD5 5d2a19df6267c606ffad927a59bb82d9
BLAKE2b-256 b116d9de612b9ac50a603768f950b6525b77c01cf8eda47353bde69ed6d337b4

See more details on using hashes here.

File details

Details for the file lsv_panel-0.1.0-cp312-cp312-win_amd64.whl.

File metadata

File hashes

Hashes for lsv_panel-0.1.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 c97744f6d6448e8a6971fb461a5decf094e3d9afaa4d71b6a7b22510c2c3fd84
MD5 906dd0d007275cc602d3eaa7e30a8861
BLAKE2b-256 b96977b7d098571af9f4a6c39e47c784a975285678b419f14ea76472dbed0c53

See more details on using hashes here.

File details

Details for the file lsv_panel-0.1.0-cp312-cp312-win32.whl.

File metadata

  • Download URL: lsv_panel-0.1.0-cp312-cp312-win32.whl
  • Upload date:
  • Size: 127.9 kB
  • Tags: CPython 3.12, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.9.0

File hashes

Hashes for lsv_panel-0.1.0-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 b05d6bf2508bee13b375243d94b045949f5b40a18baa6bee4016cf5277a1f34c
MD5 9ef9ee6f0387bbba26325a980779ee7d
BLAKE2b-256 f431dc985e969859507aaac438510271576a6cef037bcdd5de6b249d8f2e3e2c

See more details on using hashes here.

File details

Details for the file lsv_panel-0.1.0-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for lsv_panel-0.1.0-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 6efd9872bbfd57e44af85c0d25803fdc5df7b646176cffa0bd20812fd0fe50b1
MD5 5235c6b8028d86cbd27d1d8ad249245b
BLAKE2b-256 3ed4abc3f92e44b8501348b96a4f5a5133ff823f47c7eecc833e78700ce36cb0

See more details on using hashes here.

File details

Details for the file lsv_panel-0.1.0-cp312-cp312-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for lsv_panel-0.1.0-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 3cc4ed2b0c3f3b8395f38ed86ad0a51cdfb18e89d57d872cda74b84714eb43a9
MD5 18982df8ed0503ba50843b0c7e22bc1b
BLAKE2b-256 3e544b6531254ff7700f6a98d454b28625c3eeb1db51156981ef5c82bd6a2600

See more details on using hashes here.

File details

Details for the file lsv_panel-0.1.0-cp312-cp312-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for lsv_panel-0.1.0-cp312-cp312-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 893a1fe98efae448b8b46afcb5f524126611ab14b0b50a32c477578b5c3bde20
MD5 a496582391818d9e1c366ec2205c88b3
BLAKE2b-256 05bcc097fc097e2bfaec18d773485b35c2a2d65083b5a8301de015f6103e566b

See more details on using hashes here.

File details

Details for the file lsv_panel-0.1.0-cp312-cp312-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for lsv_panel-0.1.0-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 c7e7e37d4fb20401fa493f34ecd5856e43595993eae1c3c7b53d882942cddd90
MD5 33d0d16a752f9269dbf7866fffba44a2
BLAKE2b-256 9151d95e6354b9b2321b6d2198781de110ba235859ce7e685f72ea304a37b0c5

See more details on using hashes here.

File details

Details for the file lsv_panel-0.1.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for lsv_panel-0.1.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 4a83fb867432ffa52cf5f4d018c64efb07834e0da63e884b5b8195ffe7be693d
MD5 739daac03332fe4f42cfd5e78373794e
BLAKE2b-256 70fe6df7c1ab908cb109b17c87d9f00c522b1fa6d2975291f11b8585c423466d

See more details on using hashes here.

File details

Details for the file lsv_panel-0.1.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for lsv_panel-0.1.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 9c5da29cd06237f11a343f19f46c8724dbd7dad651f296be482757e4eb4342ab
MD5 de15ffd32252b3e8cc9a7847344987bd
BLAKE2b-256 1268d53c8bfa3669ae94dd5dac9c22aa6b933393d66c8cf6261eaf04b1ae8430

See more details on using hashes here.

File details

Details for the file lsv_panel-0.1.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for lsv_panel-0.1.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 66403ab1e97d66ee27d8a6a8538feab6c1fbce3f04c40f55adacd1f08649ae38
MD5 104d6e0bab10b7aaf4f464a04fbd1d8a
BLAKE2b-256 3d2818915bf7c0b4048fa3c817c92da02b3afae173dc6d6482f8feac3c5c8956

See more details on using hashes here.

File details

Details for the file lsv_panel-0.1.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for lsv_panel-0.1.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 267763cab0d8dab62893922809459be8450f6df304c60f3be9c206c277fb732b
MD5 fa90d40822c596c0f6fa258619ef6fca
BLAKE2b-256 cb430673678cfcf06f486f9d4c80bb7c57dd53eff004f0fd79e15468befa7755

See more details on using hashes here.

File details

Details for the file lsv_panel-0.1.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for lsv_panel-0.1.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 933172ed006663364afa9f54a409731b0c4e9b7d1840f05bc7dd3e2b248e6419
MD5 284cb8a21f69ad78b54223b621b8ea58
BLAKE2b-256 489f86297c47d45b7c3814f7d8e828dd8ae7a7c3ba8e1084838d37bbee386f3f

See more details on using hashes here.

File details

Details for the file lsv_panel-0.1.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for lsv_panel-0.1.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 3a1cce347309dd092223ae7fda6830f2ce8ddbccd14a0f8611f8357e97d0b90a
MD5 4672389723ece5bbd50bd2c188c18b0c
BLAKE2b-256 8ed1c29aaa9fa1be7405260073f632b7e25758c6f8ff64f94f3adf02b3fde64c

See more details on using hashes here.

File details

Details for the file lsv_panel-0.1.0-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for lsv_panel-0.1.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 a8029253e83b4d64f4317f7dfb80af88c7e70e8f66ae94fe17f3ae61d13adca0
MD5 f75113bbd8af89bde93ef54a477b87ea
BLAKE2b-256 76f754a98d819bda8631c062d83c4686207e039c048e81e800c66ef32291c034

See more details on using hashes here.

File details

Details for the file lsv_panel-0.1.0-cp312-cp312-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for lsv_panel-0.1.0-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 d40654f1ce047dcd3232b8778dfe962f4d3e4cb6430af22563f96fccdab5b0dd
MD5 37502e5ecdd48793536505d4afd45fe8
BLAKE2b-256 745cff4fea7a5d9fbfdab86234b0ae81a9b3bcada2ca901135d846d7bf003d7e

See more details on using hashes here.

File details

Details for the file lsv_panel-0.1.0-cp311-cp311-win_amd64.whl.

File metadata

File hashes

Hashes for lsv_panel-0.1.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 d875d113b041d9102bd474bdd4c852954c6e62edc13026c961c825405dc31745
MD5 1920cacfeda01e4b252b11c2f5e12b77
BLAKE2b-256 d111f4ea1a9878de17b8eb039dee692b2dda9e84f07c2150a03c90a2d0ac2dc3

See more details on using hashes here.

File details

Details for the file lsv_panel-0.1.0-cp311-cp311-win32.whl.

File metadata

  • Download URL: lsv_panel-0.1.0-cp311-cp311-win32.whl
  • Upload date:
  • Size: 128.6 kB
  • Tags: CPython 3.11, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.9.0

File hashes

Hashes for lsv_panel-0.1.0-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 27c761a224cd3b1999c75ac13b5e6eb7c2912b787aa85a2f5a216083da679e29
MD5 82c5f68330b85b4955178b2974b9af53
BLAKE2b-256 79338d79dbef61061e0332c1cdf3b7b2eba0a0c3cc2bbc756030bef3bc73def0

See more details on using hashes here.

File details

Details for the file lsv_panel-0.1.0-cp311-cp311-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for lsv_panel-0.1.0-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 62fc26219aef6878e0214410a80c1b42459ee1f5c8ed10f31570e24e890a1f2f
MD5 5c114d1c87e4c351a51c74ed2b5c82cf
BLAKE2b-256 8b2023d7363ec7aa6b83bfbeff5533e0220f7aaace4c6e92a0884bd5353e2778

See more details on using hashes here.

File details

Details for the file lsv_panel-0.1.0-cp311-cp311-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for lsv_panel-0.1.0-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 3a935820afe32108fed941959537ae21206fae970024e71b75ec68c3b45483be
MD5 96873b5671b81a89ee3541566b269a4a
BLAKE2b-256 c496d2e907f49a3a42f4604bb4a1a796790754fdeda2d5a05f8c825275399173

See more details on using hashes here.

File details

Details for the file lsv_panel-0.1.0-cp311-cp311-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for lsv_panel-0.1.0-cp311-cp311-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 41fbb53bb968e73f98c33a627394b716a1ec73c8e7d4ecaa82d9e01062fc23cc
MD5 c5663e2d070cd637bfd7cbd6d5570be2
BLAKE2b-256 30889186fbad56ddcc2e609e5bb527fa2e3ae965cb74c5e468d5a2ee9d56a921

See more details on using hashes here.

File details

Details for the file lsv_panel-0.1.0-cp311-cp311-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for lsv_panel-0.1.0-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 619d5fef64370a619cd04065c280073958bcb881423d464c9694697b7110da37
MD5 6c5a496b24bbf24b172bed2b6dbed42f
BLAKE2b-256 710b2052c79463879f3b55597c2f30be91c0ed1839568f408a569245cea036f5

See more details on using hashes here.

File details

Details for the file lsv_panel-0.1.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for lsv_panel-0.1.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 9a2afcc132b4d592426187431953bc002c09304ae6370a2c278a21e41d93a400
MD5 f5e5108c5bbaab70708c6a4ef335c565
BLAKE2b-256 b530a74af40d55c9ced200776593a6b92a1e894be1db76cc4c6d0bb015618591

See more details on using hashes here.

File details

Details for the file lsv_panel-0.1.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for lsv_panel-0.1.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 34299b40a944e3610b47067a909af3304c90a126912d2931e7802a1a9e310abb
MD5 0bf3b76ae8d5c2daa3dabfe050438dea
BLAKE2b-256 6d65675d9bd53509a7f367c832fa4f7522915936d719602984300cfb82da96a4

See more details on using hashes here.

File details

Details for the file lsv_panel-0.1.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for lsv_panel-0.1.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 f05a04ddd49deafdaaae7cf5128f3d54d677a3b974410f3224f7295ab0bfc407
MD5 ea7ad066edc5ebb1fd37ca2f08bae679
BLAKE2b-256 c999dc40fba2c1b13b2cc3a3a6446acf2934184688bb77c0aef878ed1b7b6a57

See more details on using hashes here.

File details

Details for the file lsv_panel-0.1.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for lsv_panel-0.1.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 81072601e476983ac0b5ca973b069fda2fb81f6417ed5ba0cc4c22f641029879
MD5 ca0f840a1976ba6df61ab86467ce7e94
BLAKE2b-256 82f4ad2504dd9aef5a5aa11933cd85c23d05d4d438c461b33f917c10433d3040

See more details on using hashes here.

File details

Details for the file lsv_panel-0.1.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for lsv_panel-0.1.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 6ced647d63de69294ffc4ab6cf62516a360aea341d55989da435b5ca334a7d35
MD5 9e07b973263448c14df7b2574ad2114d
BLAKE2b-256 330362badfc46c1a09dba9b26ed4f33b380154aab6f9871d0900c9e21f495881

See more details on using hashes here.

File details

Details for the file lsv_panel-0.1.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for lsv_panel-0.1.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 2b9e783f41738d26ffb863f154a732abef18c8d428aa56efc406d666bda49e71
MD5 ef1538a2e74f12db81a2033f36f22f2f
BLAKE2b-256 ade0b8a6bb422cb81b9d9ac18259bb9ebb5ccb7e742a7ddf76f9f37030cca016

See more details on using hashes here.

File details

Details for the file lsv_panel-0.1.0-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for lsv_panel-0.1.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 1224491d497c2c7766f9c2f93f249191c53b2c3403774836f600d44623a89688
MD5 d579da0df5f91bd8889ada0954809378
BLAKE2b-256 07f926f11f83f4312c07e4c62f97c193c8473e67e127bbc9f017f6f3ecf13690

See more details on using hashes here.

File details

Details for the file lsv_panel-0.1.0-cp311-cp311-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for lsv_panel-0.1.0-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 5a053877cc8d1c3819ea46a25a3400d54a96c9ff2c124f29730862c691c3d25f
MD5 f2f317b0e8ce1dcab38a73ee800b7ef3
BLAKE2b-256 78daa868eb071de027cc8f1e65998daad8a27788984058c56a51f8d06f8871d9

See more details on using hashes here.

File details

Details for the file lsv_panel-0.1.0-cp310-cp310-win_amd64.whl.

File metadata

File hashes

Hashes for lsv_panel-0.1.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 cff48193c18b660c392d3804f4cde3321f83bb329f71b180f6ea6c1e32c96462
MD5 f171a2aaabb31c46f3b31d5411a7d8be
BLAKE2b-256 c9a8576e3f2186423f691ba07a143f52946d33858c43fb504881c99829ea83ac

See more details on using hashes here.

File details

Details for the file lsv_panel-0.1.0-cp310-cp310-win32.whl.

File metadata

  • Download URL: lsv_panel-0.1.0-cp310-cp310-win32.whl
  • Upload date:
  • Size: 128.6 kB
  • Tags: CPython 3.10, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.9.0

File hashes

Hashes for lsv_panel-0.1.0-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 7aa2bfd14444eb3d50d577bdfff393a0a674930df14a6b7eb1040db3f0eb69ae
MD5 a47c7ea505c90c0f7189758343d10074
BLAKE2b-256 91baca55013f502e33953567aaec81988874b8f355d932b997d4ef29eb5308f9

See more details on using hashes here.

File details

Details for the file lsv_panel-0.1.0-cp310-cp310-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for lsv_panel-0.1.0-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 cdbb5bfd5b0ac0c54a924a25a695de68e133d3da6e4e9949ec87cca0de10d9e0
MD5 b10997491dd5ef35eb007d926010a54c
BLAKE2b-256 bbd09794fe94094f8f66b58e5ff1792068176355d033c71831d05e693f047d65

See more details on using hashes here.

File details

Details for the file lsv_panel-0.1.0-cp310-cp310-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for lsv_panel-0.1.0-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 3cdcac8a04b0f2a83f052b41127a704d4a366bdb9ad05bfc66a02c330c28088f
MD5 a30b701381a321a081d6a549e5bab7ef
BLAKE2b-256 8f898bb9f1e3597f74f47ab61fccd66b2a53d322f762065a3452595202da0bfe

See more details on using hashes here.

File details

Details for the file lsv_panel-0.1.0-cp310-cp310-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for lsv_panel-0.1.0-cp310-cp310-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 657fb100a9a8d22c8c9d40782242c1d32a21be470a3664eaeb40ebc58b263ecf
MD5 def0676566b16c507512cf61ab184ab9
BLAKE2b-256 e9058490cdac61886bf5970731109ae6c6cbf47f2da61e8d7aeb3db581f3160a

See more details on using hashes here.

File details

Details for the file lsv_panel-0.1.0-cp310-cp310-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for lsv_panel-0.1.0-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 5e9f2733a47f14842f296218159d93539f0ef206518b557c3ca8b9c0524deb28
MD5 4ab6cde1b2c8f1607a00b9d56d5c1e3f
BLAKE2b-256 147967a5c08ebf249ad5a04ce0196ee0ef61004501c55a8955e9993e665f5e94

See more details on using hashes here.

File details

Details for the file lsv_panel-0.1.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for lsv_panel-0.1.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 f8568779f46c1b49a92f0a509f750b00eff4ddd47cd3c7bcb28e91b2b38d6ede
MD5 4ac290ade850300057ee9c6dddd1dd19
BLAKE2b-256 ed462c50fe7c621391bd845e11191cb11aefda1b8a75f2d2bf2ad83f0ef5c0bd

See more details on using hashes here.

File details

Details for the file lsv_panel-0.1.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for lsv_panel-0.1.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 1ec81cce7937bc2591cfc351d6ec4ff38877b6b74ef507b7b97fefb62decff8a
MD5 d1ab423e0e3e29913b7d96e406005c9f
BLAKE2b-256 7ffb523754a8d5e423bcd53fa1fe0aa13a7067367c16e912eccbe28e45afe84c

See more details on using hashes here.

File details

Details for the file lsv_panel-0.1.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for lsv_panel-0.1.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 ff3ed7af40d0a3617f65bce040d9f6098b7171bee06c0704c2a12d3ac4b69cf0
MD5 a3063d65fe43b31d2c108af15341a5de
BLAKE2b-256 f200e4c87ad370eade4ddace1d4fe35632e0b0f03cca7555ed24d05565835e10

See more details on using hashes here.

File details

Details for the file lsv_panel-0.1.0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for lsv_panel-0.1.0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 9f03a974264b3b0662e5bb7815d32d71a00bc8cd95e60079601efbec03f98593
MD5 2fb98dac11d2c07ba1df8563d82b1ad4
BLAKE2b-256 26d1073ad2cb5b61b66473bcaf400e6e095b1067262fcd6d767c1c50ea74cf9a

See more details on using hashes here.

File details

Details for the file lsv_panel-0.1.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for lsv_panel-0.1.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 ea331150482d4e12128f42b9e2d72ad4f46936bfd4f29a3d038a14be462afeb2
MD5 03272287ba7b2b13ade82f039cc7aef6
BLAKE2b-256 a5f8f565b64f051a7fcfb892e9942e8ea69c07d370c9b6dc0db5a6230ce4dcb2

See more details on using hashes here.

File details

Details for the file lsv_panel-0.1.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for lsv_panel-0.1.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 c5c50c42cb2402c6a807ccfbe1fcea90457b4cc16439764fe53f637c3a73fdbc
MD5 7d0cad8e8eecf01035c159f048aed2d1
BLAKE2b-256 0ae9a1e55bf5f683a77bccc5ddf42d6934421b80f8f0963342121e2c277ae69b

See more details on using hashes here.

File details

Details for the file lsv_panel-0.1.0-cp39-cp39-win_amd64.whl.

File metadata

  • Download URL: lsv_panel-0.1.0-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 137.4 kB
  • Tags: CPython 3.9, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.9.0

File hashes

Hashes for lsv_panel-0.1.0-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 3f056fde67df9fbb952da6f3c0e99dd080bd1837cf27224d0e2ada10c7442090
MD5 303e197759d02baf4e037ea81c69c146
BLAKE2b-256 53801d93f7c85c033d95405c310a411e48af465ef06f44ae30919ed54581194d

See more details on using hashes here.

File details

Details for the file lsv_panel-0.1.0-cp39-cp39-win32.whl.

File metadata

  • Download URL: lsv_panel-0.1.0-cp39-cp39-win32.whl
  • Upload date:
  • Size: 128.4 kB
  • Tags: CPython 3.9, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.9.0

File hashes

Hashes for lsv_panel-0.1.0-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 fb2e15ef7469741e1f6fb00ece8681270f7e31986be3f96124cf4a6568f3b60a
MD5 1f93ebed32c9dde931d9131eda7164af
BLAKE2b-256 64652526e4c113752bce86463fd88ddc0437e8a8c3d8db5285b3542e205d8f08

See more details on using hashes here.

File details

Details for the file lsv_panel-0.1.0-cp39-cp39-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for lsv_panel-0.1.0-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 d63283a46a52ff53f6934b82e07d710a21c31b78fe890f5fe696dac62024b530
MD5 ffd2f1cb7e106b25d92edb3d0038db27
BLAKE2b-256 2048565cce5f8f79774af3d86d3458e527f14d5715504d723e50cee58e98380c

See more details on using hashes here.

File details

Details for the file lsv_panel-0.1.0-cp39-cp39-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for lsv_panel-0.1.0-cp39-cp39-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 c9b0c1e177ce74cdbf33f8b54943224e3ebceef983c8210179e8026fdcccbe71
MD5 4ad339f81138941bd472649a74a7275d
BLAKE2b-256 f4dcf3d8d6261fc02aeb1ba9c525a9be7cf299f07fdadfcfe223c035bc0653b6

See more details on using hashes here.

File details

Details for the file lsv_panel-0.1.0-cp39-cp39-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for lsv_panel-0.1.0-cp39-cp39-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 570898f51660cb9606c796cfd5e1a9bae69ea29987c890ddb59c51a83fb4c2ab
MD5 554a30a19f34702ccc33a4346e61d520
BLAKE2b-256 fe317b4f7b4cedad4a78fbd7a03b61f9881bce9d68690be3907bc2a0d295e731

See more details on using hashes here.

File details

Details for the file lsv_panel-0.1.0-cp39-cp39-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for lsv_panel-0.1.0-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 71d6a531efd1810fc52e0e18b5054b433eb8b7711d7e61232e68159792143449
MD5 08318f3c4f33ff88a1f9f98cfabddc27
BLAKE2b-256 b81b210af81d2edb07b949df857596c845250349668a012cc37f416cd05c4b88

See more details on using hashes here.

File details

Details for the file lsv_panel-0.1.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for lsv_panel-0.1.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 e989c3320860e47b17b9952278851aee5d095951c94dd0e137fbbd9e72578a17
MD5 6713f5f0f3cb8a671daf2c624bdbb185
BLAKE2b-256 be918009bf4490d903caa47c7e1fc622ed5e9a52ceeeb2afdf7e014328f2c0d6

See more details on using hashes here.

File details

Details for the file lsv_panel-0.1.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for lsv_panel-0.1.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 89ddbce3fc4dc633f20c12b1e74edaa26811ba532aa0499818cd8454b9097c60
MD5 25e6b0737ab2ffdefbe02a8372f5a60e
BLAKE2b-256 b2141898efd6b045c4068de61f0ffe8bbff1b3f2a4df8aca2607d9e12268bbe7

See more details on using hashes here.

File details

Details for the file lsv_panel-0.1.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for lsv_panel-0.1.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 53db4c153d8549d43bd4511723b505f17f390b64f4dd63a80638f11165e337ba
MD5 231cdd059c2ae564547dd083ec4fcddb
BLAKE2b-256 213aeec70fe8b68d1727937a1d248505b4c6ee7f0b90df335f5171890031d0a6

See more details on using hashes here.

File details

Details for the file lsv_panel-0.1.0-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for lsv_panel-0.1.0-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 1f3aeaa23a894f0b153198289902749c9f2eed8f9bea3ff37fd8a0480c11097f
MD5 0c20126d1cdbf505ad4ec8af01f276c5
BLAKE2b-256 974d6a9e3fd7940bd8d8e91645c9749b0bac276309f9f3147b6f3f1eeb1494f4

See more details on using hashes here.

File details

Details for the file lsv_panel-0.1.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for lsv_panel-0.1.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 3054c54adb5ca42e9af6932817b8577434f2faeae7245b40cef02104434b2d1a
MD5 6922b1b24649dcb6438e74e090a21e74
BLAKE2b-256 0e3786b62262176b758b1019d201233cb77c265e8c580b63076c375b6a450ef1

See more details on using hashes here.

File details

Details for the file lsv_panel-0.1.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for lsv_panel-0.1.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 a4b5a9a6d95e4dc5d7c7f4016f46318d36b7b3e38ac34f038a4e03047128a26d
MD5 47b6c963b3cfb36868f2fe5a60249ded
BLAKE2b-256 e24d73025d0374dd4ed7936f91219fbfaab7f6a600effd77a5485fb879e20832

See more details on using hashes here.

File details

Details for the file lsv_panel-0.1.0-cp38-cp38-win32.whl.

File metadata

  • Download URL: lsv_panel-0.1.0-cp38-cp38-win32.whl
  • Upload date:
  • Size: 128.2 kB
  • Tags: CPython 3.8, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.9.0

File hashes

Hashes for lsv_panel-0.1.0-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 9bf87c092681d8e31f7e15e1261ec912b8ca41c1fea8f467085fa4cc16a14d6b
MD5 119d87d4c4b13d6bb0855856a216a14f
BLAKE2b-256 fe3dde1603a8add4e5b7d07f5fa788b14a4cbec9e5db0a937112b16e4a69f01d

See more details on using hashes here.

File details

Details for the file lsv_panel-0.1.0-cp38-cp38-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for lsv_panel-0.1.0-cp38-cp38-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 099d8152f4567f07fd47a9c0e3392dc87f4bf13f3581ebd2d344b9e4b261a6c2
MD5 4886cbc390931b7a2a6f95c1bd42fb17
BLAKE2b-256 bef04b6ed4f0f0c4e1e4d8f0590f698c234cfdd75e2a6869b0852d87fd935ae6

See more details on using hashes here.

File details

Details for the file lsv_panel-0.1.0-cp38-cp38-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for lsv_panel-0.1.0-cp38-cp38-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 28a9dc0255bd6236a6e2b7204968b7f153c047788581f8884f0d7f33b9665708
MD5 f9ff83ba22bb2db6857e8e4834ae9ee8
BLAKE2b-256 ae31ad939bd2055540dbd360cb142bf562f5eba2815cdb9a09eab20585d46179

See more details on using hashes here.

File details

Details for the file lsv_panel-0.1.0-cp38-cp38-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for lsv_panel-0.1.0-cp38-cp38-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 6f91b346cf4568ba39e5e9ca9a9bdb8eb5927246624804b66e3b86ab95e45c1f
MD5 a53ac4a0b1a32cf59a3893116e89e88a
BLAKE2b-256 7ea5c7f3ebfe05b5a330c68022c6901ddc8f6e7d570d9b4fda58f6cbed1d18b1

See more details on using hashes here.

File details

Details for the file lsv_panel-0.1.0-cp38-cp38-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for lsv_panel-0.1.0-cp38-cp38-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 f28b009bfb99f305a98000543290675135211a3a22f5bbc847f349bd7e7ae560
MD5 e24f6b913ea46e169cc0b77fa50c8ca1
BLAKE2b-256 aeaec6dbe01dce1ff365f815a097f9c5122f38b20e58282ff18a545a7c0d1878

See more details on using hashes here.

File details

Details for the file lsv_panel-0.1.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for lsv_panel-0.1.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 8abcb258a31216597c417f3121b01cbbdefaa2414fd0c458962020ef60bf2378
MD5 c3b8f8dff05ebf72b1d1687630afdd2a
BLAKE2b-256 fccc09db32532d26eecd6d6e4f51ef95fa2f03d42d301be8deb5473850435e96

See more details on using hashes here.

File details

Details for the file lsv_panel-0.1.0-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for lsv_panel-0.1.0-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 2ced6c9aa2c35f6f5cf2fe97e2e51bcb986ea3279a28e526fb04d1879f6a5d2b
MD5 e140741283f17e16c1a366ccdd0ea954
BLAKE2b-256 a48b5d8afe54ec5bafb4f36cdd7404875f12314957f0715e69443d1b7508f033

See more details on using hashes here.

File details

Details for the file lsv_panel-0.1.0-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for lsv_panel-0.1.0-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 b13e98cd050970bb8bca141c50d0f630b4f0aaf3fdca26dbc12a0fd8cee9418a
MD5 131c65e10c374ab8d61e3ec96c160482
BLAKE2b-256 fbc69bcac921e7bd0427e4adeb7e2e68f30ffc9d9f21615904908676df0cc842

See more details on using hashes here.

File details

Details for the file lsv_panel-0.1.0-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for lsv_panel-0.1.0-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 0d3ef181628819704cbf1283bcd847201905389ea23f7b2e6a2edba6b91aabb8
MD5 174654c0cc81a1c1ad4409b1cda3f116
BLAKE2b-256 1792c931007dc473be331392462f94d6492b5b7fcc2e163d69be2198289fddf8

See more details on using hashes here.

File details

Details for the file lsv_panel-0.1.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for lsv_panel-0.1.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 b216a2f3cfc97d2599f07007ccfb7877c1843f9d95c72024a3b2f909fd14c117
MD5 23646dec4c03fa7864ba165d2809b504
BLAKE2b-256 72d3e9ad5a9f12c6541bc35ae01890812bd098da68a27a25021302526f577eea

See more details on using hashes here.

File details

Details for the file lsv_panel-0.1.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for lsv_panel-0.1.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 5b21318e06622313cf7bc2901dbae904182cb5678c54030ce2982f479b6c0e9e
MD5 b67120f1a003ae89619225bbaa14c3e1
BLAKE2b-256 a972e8536e9cd97c4faf157da1e82f31669f8474f32a1890278ee50217b8c088

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