Skip to main content

a data plotting library

Project description

Plotive is a data plotting library, versatile and simple to use. The main concept is to enable purely declarative construction of figures, abstracted from the data and from rendering surfaces.

Latest documentation is available on Read The Docs.

plotive-py are the python bindings to the Rust plotive library.

Here is a simple yet complete example:

import plotive as pv
import numpy as np

fig = pv.Figure(
    title="Sine Wave",
    plot=pv.Plot(
        series=[
            pv.series.Line(
                x="x",
                y="y",
                name="sin(x)",
            )
        ],
        x_axis=pv.Axis(title="x", ticks="pimultiple", grid="auto"),
        y_axis=pv.Axis(title="sin(x)", ticks="auto", grid="auto"),
        legend="in-top-right",
    ),
)

x = np.linspace(0, 2 * np.pi, 500)
y = np.sin(x)

fig.show(data_source={"x": x, "y": y})

This example shows the following interactive window:

docs/img/index_sine.png

Supported figure types

  • XY line plots

  • Scatter plots

  • Histograms

  • Bar plots

Modular architecture

  • Declarative design

    • Design of figure is entirely declarative and decoupled from data and drawing primitives.

    • Sensible defaults.

    • Figure units are decorrelated from pixel size for easy scaling

  • Data sources

    • Flexible, column-friendly data source system

    • Compatible with pandas, numpy arrays, lists…

  • Rendering surfaces

    • Rendering backend is decoupled from drawing. You can render onto:

    • pixel grids, PNG

    • SVG

    • GUI window

Automatic Layout

  • All the layout is done consistently and automatically.

    You can add multiple axes, multiple plots etc. Everything will be laid-out consistently, leaving enough space for axis ticks labels, legends etc. Your code never need to calculate size of anything.

Advanced typography

  • Automatic font look-up and text shaping

  • Rich text

  • Automatic right to left layout using unicode-bidirectional algorithm

  • vertical layout

Themes

  • Change the theme of your figure with a single line of code.

  • Buitin themes included

Annotations

  • Annotate your figures, with labels, infinite lines, markers etc.

  • Annotations are placed using data space coordinates

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

plotive-0.2.1.tar.gz (50.5 kB view details)

Uploaded Source

Built Distributions

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

plotive-0.2.1-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl (16.8 MB view details)

Uploaded PyPymusllinux: musl 1.2+ x86-64

plotive-0.2.1-pp311-pypy311_pp73-musllinux_1_2_i686.whl (16.9 MB view details)

Uploaded PyPymusllinux: musl 1.2+ i686

plotive-0.2.1-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl (16.6 MB view details)

Uploaded PyPymusllinux: musl 1.2+ ARMv7l

plotive-0.2.1-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl (16.7 MB view details)

Uploaded PyPymusllinux: musl 1.2+ ARM64

plotive-0.2.1-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (16.4 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

plotive-0.2.1-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (16.6 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ s390x

plotive-0.2.1-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (18.2 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ ppc64le

plotive-0.2.1-pp311-pypy311_pp73-manylinux_2_17_i686.manylinux2014_i686.whl (17.2 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ i686

plotive-0.2.1-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (16.3 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

plotive-0.2.1-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (16.5 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

plotive-0.2.1-cp314-cp314t-musllinux_1_2_x86_64.whl (16.8 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

plotive-0.2.1-cp314-cp314t-musllinux_1_2_i686.whl (16.9 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ i686

plotive-0.2.1-cp314-cp314t-musllinux_1_2_armv7l.whl (16.6 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARMv7l

plotive-0.2.1-cp314-cp314t-musllinux_1_2_aarch64.whl (16.7 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

plotive-0.2.1-cp314-cp314t-manylinux_2_17_s390x.manylinux2014_s390x.whl (16.6 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ s390x

plotive-0.2.1-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (18.2 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ppc64le

plotive-0.2.1-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (16.3 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ARMv7l

plotive-0.2.1-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (16.5 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ARM64

plotive-0.2.1-cp314-cp314-win_arm64.whl (12.7 MB view details)

Uploaded CPython 3.14Windows ARM64

plotive-0.2.1-cp314-cp314-win_amd64.whl (13.0 MB view details)

Uploaded CPython 3.14Windows x86-64

plotive-0.2.1-cp314-cp314-musllinux_1_2_x86_64.whl (16.8 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

plotive-0.2.1-cp314-cp314-musllinux_1_2_i686.whl (16.9 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ i686

plotive-0.2.1-cp314-cp314-musllinux_1_2_armv7l.whl (16.6 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARMv7l

plotive-0.2.1-cp314-cp314-musllinux_1_2_aarch64.whl (16.7 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

plotive-0.2.1-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (16.4 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ x86-64

plotive-0.2.1-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl (16.6 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ s390x

plotive-0.2.1-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (18.2 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ppc64le

plotive-0.2.1-cp314-cp314-manylinux_2_17_i686.manylinux2014_i686.whl (17.2 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ i686

plotive-0.2.1-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (16.3 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARMv7l

plotive-0.2.1-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (16.5 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARM64

plotive-0.2.1-cp314-cp314-macosx_11_0_arm64.whl (12.8 MB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

plotive-0.2.1-cp314-cp314-macosx_10_12_x86_64.whl (12.9 MB view details)

Uploaded CPython 3.14macOS 10.12+ x86-64

plotive-0.2.1-cp313-cp313t-musllinux_1_2_x86_64.whl (16.8 MB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ x86-64

plotive-0.2.1-cp313-cp313t-musllinux_1_2_i686.whl (16.9 MB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ i686

plotive-0.2.1-cp313-cp313t-musllinux_1_2_armv7l.whl (16.6 MB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARMv7l

plotive-0.2.1-cp313-cp313t-musllinux_1_2_aarch64.whl (16.7 MB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARM64

plotive-0.2.1-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl (16.6 MB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ s390x

plotive-0.2.1-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (18.2 MB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ppc64le

plotive-0.2.1-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (16.3 MB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ARMv7l

plotive-0.2.1-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (16.5 MB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ARM64

plotive-0.2.1-cp313-cp313-win_arm64.whl (12.7 MB view details)

Uploaded CPython 3.13Windows ARM64

plotive-0.2.1-cp313-cp313-win_amd64.whl (13.0 MB view details)

Uploaded CPython 3.13Windows x86-64

plotive-0.2.1-cp313-cp313-win32.whl (12.6 MB view details)

Uploaded CPython 3.13Windows x86

plotive-0.2.1-cp313-cp313-musllinux_1_2_x86_64.whl (16.8 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

plotive-0.2.1-cp313-cp313-musllinux_1_2_i686.whl (16.9 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ i686

plotive-0.2.1-cp313-cp313-musllinux_1_2_armv7l.whl (16.6 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARMv7l

plotive-0.2.1-cp313-cp313-musllinux_1_2_aarch64.whl (16.7 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

plotive-0.2.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (16.4 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

plotive-0.2.1-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl (16.6 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ s390x

plotive-0.2.1-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (18.2 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ppc64le

plotive-0.2.1-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl (17.2 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ i686

plotive-0.2.1-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (16.3 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARMv7l

plotive-0.2.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (16.5 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

plotive-0.2.1-cp313-cp313-macosx_11_0_arm64.whl (12.8 MB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

plotive-0.2.1-cp313-cp313-macosx_10_12_x86_64.whl (12.9 MB view details)

Uploaded CPython 3.13macOS 10.12+ x86-64

plotive-0.2.1-cp312-cp312-win_arm64.whl (12.7 MB view details)

Uploaded CPython 3.12Windows ARM64

plotive-0.2.1-cp312-cp312-win_amd64.whl (13.0 MB view details)

Uploaded CPython 3.12Windows x86-64

plotive-0.2.1-cp312-cp312-musllinux_1_2_x86_64.whl (16.8 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

plotive-0.2.1-cp312-cp312-musllinux_1_2_i686.whl (16.9 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ i686

plotive-0.2.1-cp312-cp312-musllinux_1_2_armv7l.whl (16.6 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARMv7l

plotive-0.2.1-cp312-cp312-musllinux_1_2_aarch64.whl (16.7 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

plotive-0.2.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (16.4 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

plotive-0.2.1-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl (16.6 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ s390x

plotive-0.2.1-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (18.2 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ppc64le

plotive-0.2.1-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl (17.2 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ i686

plotive-0.2.1-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (16.3 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARMv7l

plotive-0.2.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (16.5 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

plotive-0.2.1-cp312-cp312-macosx_11_0_arm64.whl (12.8 MB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

plotive-0.2.1-cp312-cp312-macosx_10_12_x86_64.whl (12.9 MB view details)

Uploaded CPython 3.12macOS 10.12+ x86-64

plotive-0.2.1-cp311-cp311-win_amd64.whl (13.0 MB view details)

Uploaded CPython 3.11Windows x86-64

plotive-0.2.1-cp311-cp311-musllinux_1_2_x86_64.whl (16.8 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

plotive-0.2.1-cp311-cp311-musllinux_1_2_i686.whl (16.9 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ i686

plotive-0.2.1-cp311-cp311-musllinux_1_2_armv7l.whl (16.6 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARMv7l

plotive-0.2.1-cp311-cp311-musllinux_1_2_aarch64.whl (16.7 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

plotive-0.2.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (16.4 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

plotive-0.2.1-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl (16.6 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ s390x

plotive-0.2.1-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (18.2 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ppc64le

plotive-0.2.1-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl (17.2 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ i686

plotive-0.2.1-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (16.3 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARMv7l

plotive-0.2.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (16.5 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

plotive-0.2.1-cp311-cp311-macosx_11_0_arm64.whl (12.8 MB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

plotive-0.2.1-cp311-cp311-macosx_10_12_x86_64.whl (12.9 MB view details)

Uploaded CPython 3.11macOS 10.12+ x86-64

plotive-0.2.1-cp310-cp310-win_amd64.whl (13.0 MB view details)

Uploaded CPython 3.10Windows x86-64

plotive-0.2.1-cp310-cp310-musllinux_1_2_x86_64.whl (16.8 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

plotive-0.2.1-cp310-cp310-musllinux_1_2_i686.whl (16.9 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ i686

plotive-0.2.1-cp310-cp310-musllinux_1_2_armv7l.whl (16.6 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARMv7l

plotive-0.2.1-cp310-cp310-musllinux_1_2_aarch64.whl (16.7 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

plotive-0.2.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (16.4 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

plotive-0.2.1-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl (16.6 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ s390x

plotive-0.2.1-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (18.2 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ppc64le

plotive-0.2.1-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl (17.2 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ i686

plotive-0.2.1-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (16.3 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARMv7l

plotive-0.2.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (16.5 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

plotive-0.2.1-cp39-cp39-musllinux_1_2_x86_64.whl (16.8 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ x86-64

plotive-0.2.1-cp39-cp39-musllinux_1_2_i686.whl (16.9 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ i686

plotive-0.2.1-cp39-cp39-musllinux_1_2_armv7l.whl (16.6 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARMv7l

plotive-0.2.1-cp39-cp39-musllinux_1_2_aarch64.whl (16.7 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

plotive-0.2.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (16.4 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

plotive-0.2.1-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl (16.6 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ s390x

plotive-0.2.1-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (18.2 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ppc64le

plotive-0.2.1-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl (17.2 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ i686

plotive-0.2.1-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (16.3 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARMv7l

plotive-0.2.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (16.5 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARM64

plotive-0.2.1-cp38-cp38-musllinux_1_2_x86_64.whl (16.8 MB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ x86-64

plotive-0.2.1-cp38-cp38-musllinux_1_2_i686.whl (16.9 MB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ i686

plotive-0.2.1-cp38-cp38-musllinux_1_2_armv7l.whl (16.6 MB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ ARMv7l

plotive-0.2.1-cp38-cp38-musllinux_1_2_aarch64.whl (16.7 MB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ ARM64

plotive-0.2.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (16.4 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ x86-64

plotive-0.2.1-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl (16.6 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ s390x

plotive-0.2.1-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (18.2 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ppc64le

plotive-0.2.1-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl (17.2 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ i686

plotive-0.2.1-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (16.3 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ARMv7l

plotive-0.2.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (16.5 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ARM64

File details

Details for the file plotive-0.2.1.tar.gz.

File metadata

  • Download URL: plotive-0.2.1.tar.gz
  • Upload date:
  • Size: 50.5 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.6 {"installer":{"name":"uv","version":"0.11.6","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for plotive-0.2.1.tar.gz
Algorithm Hash digest
SHA256 1e7c258e8aab153337d9c9b033fa0501032e5152114ce14a928c7b4bb31a4618
MD5 8f2fce47bbbd699fec2db1cc527d5388
BLAKE2b-256 4e12ed89d97b3027eb50b0264bb99b2c243d58c23783443ccdfc45f4373e054a

See more details on using hashes here.

File details

Details for the file plotive-0.2.1-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl.

File metadata

  • Download URL: plotive-0.2.1-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl
  • Upload date:
  • Size: 16.8 MB
  • Tags: PyPy, musllinux: musl 1.2+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.6 {"installer":{"name":"uv","version":"0.11.6","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for plotive-0.2.1-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 ec20f5dbbef4412575d87d1c380565dbb61201e98f9ac0dfa884b1ecd85be7f8
MD5 7bd8ed7b80eacd7579c13c362f6e72a7
BLAKE2b-256 3ea456587d2fcce7bdc9b8c57b65472e43198d377cf1cf755908b13fd43a7834

See more details on using hashes here.

File details

Details for the file plotive-0.2.1-pp311-pypy311_pp73-musllinux_1_2_i686.whl.

File metadata

  • Download URL: plotive-0.2.1-pp311-pypy311_pp73-musllinux_1_2_i686.whl
  • Upload date:
  • Size: 16.9 MB
  • Tags: PyPy, musllinux: musl 1.2+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.6 {"installer":{"name":"uv","version":"0.11.6","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for plotive-0.2.1-pp311-pypy311_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 9c68746f6de593741bf2821a2533961a9f3ccf62e2823fbd45fda464591bc1f5
MD5 f00e89ecc9018dd8a4d3b89c05a989aa
BLAKE2b-256 fe31e5cc6c88f252973e77da3e5c4b38420c9e8b08dfa0dbbdeb42a42466d90d

See more details on using hashes here.

File details

Details for the file plotive-0.2.1-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl.

File metadata

  • Download URL: plotive-0.2.1-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl
  • Upload date:
  • Size: 16.6 MB
  • Tags: PyPy, musllinux: musl 1.2+ ARMv7l
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.6 {"installer":{"name":"uv","version":"0.11.6","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for plotive-0.2.1-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 a87007d524676836d7adc3c535d28e74bc91200edd451302ef7fd463f711148f
MD5 06e9e2838f5dee6a323536c863bc0196
BLAKE2b-256 d666b11812b23feb2a3c6da1147d31498f22d0fd51f12b1e1a942a96310b1645

See more details on using hashes here.

File details

Details for the file plotive-0.2.1-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl.

File metadata

  • Download URL: plotive-0.2.1-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl
  • Upload date:
  • Size: 16.7 MB
  • Tags: PyPy, musllinux: musl 1.2+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.6 {"installer":{"name":"uv","version":"0.11.6","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for plotive-0.2.1-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 6070361984369d2aff52d6c0425c8fbee5c3c669f5c8fa8b4e7f365468b09ae9
MD5 b1724eafcf498f310b3f9b9e8d0c1209
BLAKE2b-256 f933a161e6d79fbcb4dff3a6e2f3a723dcba29a4858d290b1ee7fbb524db9276

See more details on using hashes here.

File details

Details for the file plotive-0.2.1-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

  • Download URL: plotive-0.2.1-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
  • Upload date:
  • Size: 16.4 MB
  • Tags: PyPy, manylinux: glibc 2.17+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.6 {"installer":{"name":"uv","version":"0.11.6","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for plotive-0.2.1-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 66e6e7f5d30e7588bba843504b013464fccb6a504051dceebe1b079045e86f5f
MD5 7837026de92e33c79ade0f44d44439a8
BLAKE2b-256 fe8088357c4f3ff9781ff8878a2af032af3fb7aa3e3816e655bfcb04cf9619ad

See more details on using hashes here.

File details

Details for the file plotive-0.2.1-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

  • Download URL: plotive-0.2.1-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
  • Upload date:
  • Size: 16.6 MB
  • Tags: PyPy, manylinux: glibc 2.17+ s390x
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.6 {"installer":{"name":"uv","version":"0.11.6","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for plotive-0.2.1-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 7abe3f81d7344a8c6b8ab54e4eed666030062202a3701c8aee07a3b6d389995b
MD5 d054c0870fd393760758db1bf39440e9
BLAKE2b-256 2bd446937b66ade46e73c2d771a66cfd4c615051c80b6ea9567fb9b7ae3c8629

See more details on using hashes here.

File details

Details for the file plotive-0.2.1-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

  • Download URL: plotive-0.2.1-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
  • Upload date:
  • Size: 18.2 MB
  • Tags: PyPy, manylinux: glibc 2.17+ ppc64le
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.6 {"installer":{"name":"uv","version":"0.11.6","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for plotive-0.2.1-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 b6cdd3ef694958462ad78b98e1817020174cba6f71882708ce0bf3d1aafdd10b
MD5 a818d96b1d54db005ac370a111ba96bc
BLAKE2b-256 ee5170fafda66091acb295a6929f3e9b4630df8622a10bd47a4f46765649d1bf

See more details on using hashes here.

File details

Details for the file plotive-0.2.1-pp311-pypy311_pp73-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

  • Download URL: plotive-0.2.1-pp311-pypy311_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
  • Upload date:
  • Size: 17.2 MB
  • Tags: PyPy, manylinux: glibc 2.17+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.6 {"installer":{"name":"uv","version":"0.11.6","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for plotive-0.2.1-pp311-pypy311_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 aa025cb860c8a04e2396bf4805cedaeb702bfed93d2d8d429762affa9e9874e8
MD5 5e4ea08b89b3102c10386e5b08094522
BLAKE2b-256 cb9467a1f8c166232f728ca22bee85484fd759a46aa7fc75dfd1825d5e40dd49

See more details on using hashes here.

File details

Details for the file plotive-0.2.1-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

  • Download URL: plotive-0.2.1-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
  • Upload date:
  • Size: 16.3 MB
  • Tags: PyPy, manylinux: glibc 2.17+ ARMv7l
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.6 {"installer":{"name":"uv","version":"0.11.6","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for plotive-0.2.1-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 62d028ae9c43abf4f2b35680ddb323234c458b1f1d23aff5a84bff60cd0911ae
MD5 282fcfed639ef31312679a5a52e74491
BLAKE2b-256 7730b3dbe50eff2a51418a94899fec5ac3bd4f39b411db421ccb51bcf0d89721

See more details on using hashes here.

File details

Details for the file plotive-0.2.1-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

  • Download URL: plotive-0.2.1-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
  • Upload date:
  • Size: 16.5 MB
  • Tags: PyPy, manylinux: glibc 2.17+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.6 {"installer":{"name":"uv","version":"0.11.6","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for plotive-0.2.1-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 7bcff596766f9cb202c3a40100de215a285cc6185eedcb70eb025d89c6912976
MD5 77447c130757de93fa02ba72b6472be6
BLAKE2b-256 08a6353c57358634f554ac173e1d02089516a3241ef1d942a220f398dac6bc30

See more details on using hashes here.

File details

Details for the file plotive-0.2.1-cp314-cp314t-musllinux_1_2_x86_64.whl.

File metadata

  • Download URL: plotive-0.2.1-cp314-cp314t-musllinux_1_2_x86_64.whl
  • Upload date:
  • Size: 16.8 MB
  • Tags: CPython 3.14t, musllinux: musl 1.2+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.6 {"installer":{"name":"uv","version":"0.11.6","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for plotive-0.2.1-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 615f39b2db04daf54ea49e7a42c2437ea7c704494a45ab38c0d3d32ed0f67aa8
MD5 8b09ffd7f6fcbaed834a26ca813b50f8
BLAKE2b-256 c0243ade123051f4dfc7b6de0899a5c3dc7243a311b14f3c2acaef9439719020

See more details on using hashes here.

File details

Details for the file plotive-0.2.1-cp314-cp314t-musllinux_1_2_i686.whl.

File metadata

  • Download URL: plotive-0.2.1-cp314-cp314t-musllinux_1_2_i686.whl
  • Upload date:
  • Size: 16.9 MB
  • Tags: CPython 3.14t, musllinux: musl 1.2+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.6 {"installer":{"name":"uv","version":"0.11.6","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for plotive-0.2.1-cp314-cp314t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 4fd0dce5fabc15a7b06a0b2462699b21647a1997fea3be77c0aba833bfc554bc
MD5 66775c0047ca3e0de2b491bcb7294b18
BLAKE2b-256 4831f29854a3efe425bb5ba4882e4b40b5855273f6e199de8e40d901f810d2ac

See more details on using hashes here.

File details

Details for the file plotive-0.2.1-cp314-cp314t-musllinux_1_2_armv7l.whl.

File metadata

  • Download URL: plotive-0.2.1-cp314-cp314t-musllinux_1_2_armv7l.whl
  • Upload date:
  • Size: 16.6 MB
  • Tags: CPython 3.14t, musllinux: musl 1.2+ ARMv7l
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.6 {"installer":{"name":"uv","version":"0.11.6","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for plotive-0.2.1-cp314-cp314t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 4d9c07be993e1f1d444d9dcb95dd48ef83e4081ffe539952b3b3aad108b89f8a
MD5 5b204b6f70bf55bfd1b5cf67ba4f8c8d
BLAKE2b-256 7bec3b45250db16b46344f171ef6f840352a12d5a15dc4803ef5177d58b25b5a

See more details on using hashes here.

File details

Details for the file plotive-0.2.1-cp314-cp314t-musllinux_1_2_aarch64.whl.

File metadata

  • Download URL: plotive-0.2.1-cp314-cp314t-musllinux_1_2_aarch64.whl
  • Upload date:
  • Size: 16.7 MB
  • Tags: CPython 3.14t, musllinux: musl 1.2+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.6 {"installer":{"name":"uv","version":"0.11.6","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for plotive-0.2.1-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 167a3f9b78117d355c4b856d030572c9cfd5d7c1f03307d4864ee592064dad21
MD5 e3f31dd21d18c5c45e47d303e3e06344
BLAKE2b-256 60826f81848a306ba501dfaa6c7de17347ea6a9d139153af082cb8036cf14f7e

See more details on using hashes here.

File details

Details for the file plotive-0.2.1-cp314-cp314t-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

  • Download URL: plotive-0.2.1-cp314-cp314t-manylinux_2_17_s390x.manylinux2014_s390x.whl
  • Upload date:
  • Size: 16.6 MB
  • Tags: CPython 3.14t, manylinux: glibc 2.17+ s390x
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.6 {"installer":{"name":"uv","version":"0.11.6","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for plotive-0.2.1-cp314-cp314t-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 925a22b1c8602b82139e80d597af596460a175569322b8f98e19a0f3b68b66d3
MD5 cbd24b054afea13fd0caba81a9987690
BLAKE2b-256 1f44017cb468d96277bc265f42283203acbbaf764a1d4a5b6cb3a92c6c606dcb

See more details on using hashes here.

File details

Details for the file plotive-0.2.1-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

  • Download URL: plotive-0.2.1-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
  • Upload date:
  • Size: 18.2 MB
  • Tags: CPython 3.14t, manylinux: glibc 2.17+ ppc64le
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.6 {"installer":{"name":"uv","version":"0.11.6","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for plotive-0.2.1-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 734d7b47200a67e50bc036a0215e3d25cff914b4e1542cc50d337a00e5611e93
MD5 ba3d550d66335e21d0e31601e0fd73a2
BLAKE2b-256 3d552dd8a1ca81568e10df34dc5b4871afb6ed0b6911406f8b4acc11291266f8

See more details on using hashes here.

File details

Details for the file plotive-0.2.1-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

  • Download URL: plotive-0.2.1-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
  • Upload date:
  • Size: 16.3 MB
  • Tags: CPython 3.14t, manylinux: glibc 2.17+ ARMv7l
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.6 {"installer":{"name":"uv","version":"0.11.6","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for plotive-0.2.1-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 d78a510aee5336a31d3bf10db0491c6d956fd5e3d0a11198d3d1553adea0eba8
MD5 1c1e22090f0e6c1fff3924280b25ae3e
BLAKE2b-256 0e2907ded81050c16b71982acea44e62fc9d60458c1b995d9ebda89cfe177ec9

See more details on using hashes here.

File details

Details for the file plotive-0.2.1-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

  • Download URL: plotive-0.2.1-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
  • Upload date:
  • Size: 16.5 MB
  • Tags: CPython 3.14t, manylinux: glibc 2.17+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.6 {"installer":{"name":"uv","version":"0.11.6","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for plotive-0.2.1-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 4aa6fc5ea3d452e58e91706dc7ce7a5fd638fbcb08b154e41eea4f95207e2fb1
MD5 0fce55a90cf942ff3e115780741f4d5a
BLAKE2b-256 310e3c613eaa720b2d3c9fa2b13deb08d31c33390c0a87023cf16aaa1c023247

See more details on using hashes here.

File details

Details for the file plotive-0.2.1-cp314-cp314-win_arm64.whl.

File metadata

  • Download URL: plotive-0.2.1-cp314-cp314-win_arm64.whl
  • Upload date:
  • Size: 12.7 MB
  • Tags: CPython 3.14, Windows ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.6 {"installer":{"name":"uv","version":"0.11.6","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for plotive-0.2.1-cp314-cp314-win_arm64.whl
Algorithm Hash digest
SHA256 3876f75f66094010c2491be8e8be2e9c14cea771ac1a4a3b73c8f9a01bb84b79
MD5 effc30d8c0fafb72b0d9ac4cdba527ea
BLAKE2b-256 b1023fda9fc16cf373bee3890f6eb3eac2ddc6b6104c8df54edba1fbc24e3d2d

See more details on using hashes here.

File details

Details for the file plotive-0.2.1-cp314-cp314-win_amd64.whl.

File metadata

  • Download URL: plotive-0.2.1-cp314-cp314-win_amd64.whl
  • Upload date:
  • Size: 13.0 MB
  • Tags: CPython 3.14, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.6 {"installer":{"name":"uv","version":"0.11.6","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for plotive-0.2.1-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 38bd966833d253228be6abaf3e4b1e03288e83232ce1b15da40cfbe7720bf094
MD5 cf22d8c11cf7427a947d7d24cdd7d242
BLAKE2b-256 8c18439092b54e6b894c199d5dd6db1222e625df35c2dee94f77b4c9e50306d5

See more details on using hashes here.

File details

Details for the file plotive-0.2.1-cp314-cp314-musllinux_1_2_x86_64.whl.

File metadata

  • Download URL: plotive-0.2.1-cp314-cp314-musllinux_1_2_x86_64.whl
  • Upload date:
  • Size: 16.8 MB
  • Tags: CPython 3.14, musllinux: musl 1.2+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.6 {"installer":{"name":"uv","version":"0.11.6","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for plotive-0.2.1-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 9e771172737972f64f6cec46e89e194f4ecbd3745be95300a21fa59d87401d8b
MD5 335de15ae0b739642c0b59e4d627b945
BLAKE2b-256 eed85aea31847744a89fac489b7e5f7f98bb16bfcac17d45818d08a1de4ef488

See more details on using hashes here.

File details

Details for the file plotive-0.2.1-cp314-cp314-musllinux_1_2_i686.whl.

File metadata

  • Download URL: plotive-0.2.1-cp314-cp314-musllinux_1_2_i686.whl
  • Upload date:
  • Size: 16.9 MB
  • Tags: CPython 3.14, musllinux: musl 1.2+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.6 {"installer":{"name":"uv","version":"0.11.6","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for plotive-0.2.1-cp314-cp314-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 0063aa2d81305f87f1967f8bddc5361e401bef9b77ce8269252ace76206b8435
MD5 043bc7af905d9ddc72fc8f04904dd772
BLAKE2b-256 c343efec51dc6aa74a0ee3edb01c1b315e95fe10cefb58b25f1c2d20ecfa4902

See more details on using hashes here.

File details

Details for the file plotive-0.2.1-cp314-cp314-musllinux_1_2_armv7l.whl.

File metadata

  • Download URL: plotive-0.2.1-cp314-cp314-musllinux_1_2_armv7l.whl
  • Upload date:
  • Size: 16.6 MB
  • Tags: CPython 3.14, musllinux: musl 1.2+ ARMv7l
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.6 {"installer":{"name":"uv","version":"0.11.6","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for plotive-0.2.1-cp314-cp314-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 323c7ff9475e07abd5269237fa47ad08e37631c3e4e78e6a5864d958dda0490d
MD5 e413ed596733c8fb5ad09895ff3cdea0
BLAKE2b-256 3971827c0d3f7aba26cee84bf02d83c456755e8a04ce0bd03bf861b70fd51607

See more details on using hashes here.

File details

Details for the file plotive-0.2.1-cp314-cp314-musllinux_1_2_aarch64.whl.

File metadata

  • Download URL: plotive-0.2.1-cp314-cp314-musllinux_1_2_aarch64.whl
  • Upload date:
  • Size: 16.7 MB
  • Tags: CPython 3.14, musllinux: musl 1.2+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.6 {"installer":{"name":"uv","version":"0.11.6","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for plotive-0.2.1-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 c8c4a7676e46e8b97baf373753733f0c52d7e712c61bd9ff6cd171ca88a81bb4
MD5 9aa4a1393c74b56617d988ee65274bc4
BLAKE2b-256 c0c48d45b46f777782763e118118b8b5dc66947c4c28218137779ad7c9af18a8

See more details on using hashes here.

File details

Details for the file plotive-0.2.1-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

  • Download URL: plotive-0.2.1-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
  • Upload date:
  • Size: 16.4 MB
  • Tags: CPython 3.14, manylinux: glibc 2.17+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.6 {"installer":{"name":"uv","version":"0.11.6","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for plotive-0.2.1-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 d3cc0280beca8d4ac9bac6e64f5a961506327aa85e97b4f550c56d276ef7309a
MD5 e6f8f53e9fce4fb0b2fc7f5794f9ac70
BLAKE2b-256 1ea9fc3bc4c28b15d4f297c064a43e380c75244b030236dab1ef7b8ed257f73a

See more details on using hashes here.

File details

Details for the file plotive-0.2.1-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

  • Download URL: plotive-0.2.1-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl
  • Upload date:
  • Size: 16.6 MB
  • Tags: CPython 3.14, manylinux: glibc 2.17+ s390x
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.6 {"installer":{"name":"uv","version":"0.11.6","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for plotive-0.2.1-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 7b33b0af679d199cabf7a2ea0fc24258b347083ebd5f620dc6cfc1e8f1186752
MD5 66b8346b920548fd63bcda29b0c9b1e3
BLAKE2b-256 24f0417371358f5b678270ba8ebd32c7876b6570295e7129549a8e2dc4af359b

See more details on using hashes here.

File details

Details for the file plotive-0.2.1-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

  • Download URL: plotive-0.2.1-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
  • Upload date:
  • Size: 18.2 MB
  • Tags: CPython 3.14, manylinux: glibc 2.17+ ppc64le
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.6 {"installer":{"name":"uv","version":"0.11.6","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for plotive-0.2.1-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 16d841f2ef649a335e49242af1607230f13fdaf04842cdb543dbc7d2b5f66a4d
MD5 cb72f4518f57e256d307088c90664bbb
BLAKE2b-256 a6ea4726716f462741b28e73532dfd6ae2195eac7709fb69b52c4b3171060f67

See more details on using hashes here.

File details

Details for the file plotive-0.2.1-cp314-cp314-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

  • Download URL: plotive-0.2.1-cp314-cp314-manylinux_2_17_i686.manylinux2014_i686.whl
  • Upload date:
  • Size: 17.2 MB
  • Tags: CPython 3.14, manylinux: glibc 2.17+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.6 {"installer":{"name":"uv","version":"0.11.6","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for plotive-0.2.1-cp314-cp314-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 9fa3e9f39ea92f9a774e6f2e2aa46530329cc113a71f3ddd9eac94f381e45c36
MD5 cf3ddb3fd0eaf6ba171d71b1d46e32a9
BLAKE2b-256 0d5c184a930444da6abfad0a4cd71bdf1beca967b1d4171a44aaa535b7503828

See more details on using hashes here.

File details

Details for the file plotive-0.2.1-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

  • Download URL: plotive-0.2.1-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
  • Upload date:
  • Size: 16.3 MB
  • Tags: CPython 3.14, manylinux: glibc 2.17+ ARMv7l
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.6 {"installer":{"name":"uv","version":"0.11.6","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for plotive-0.2.1-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 a3ae9fab2a558f1cc27831f8622641a7614facfadd0d7955d881213945a1973f
MD5 3b37921453cff6e1968959da2564665e
BLAKE2b-256 debf352c3cd3a6b8a210f3b747e6a2869a7af30559f5070a9fb2854efb0737d0

See more details on using hashes here.

File details

Details for the file plotive-0.2.1-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

  • Download URL: plotive-0.2.1-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
  • Upload date:
  • Size: 16.5 MB
  • Tags: CPython 3.14, manylinux: glibc 2.17+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.6 {"installer":{"name":"uv","version":"0.11.6","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for plotive-0.2.1-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 9a8a44093609a92d73771c222b45f091fc64e8c03ae625b65c9cfc4c02df7ef2
MD5 4ad9d10f63852560d9539f2fca922660
BLAKE2b-256 029745541176b3d74cf491fb9ce94742b47d3d5e8cbd3411a81e33e05a44b49c

See more details on using hashes here.

File details

Details for the file plotive-0.2.1-cp314-cp314-macosx_11_0_arm64.whl.

File metadata

  • Download URL: plotive-0.2.1-cp314-cp314-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 12.8 MB
  • Tags: CPython 3.14, macOS 11.0+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.6 {"installer":{"name":"uv","version":"0.11.6","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for plotive-0.2.1-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 7be2a2abd27c60538fdfee6e34678c16d8967dad230db45ef594f96aeb5d6864
MD5 589449233532d87adc918d47afa8304b
BLAKE2b-256 b7681b85dc83d945bf54afc65fd0645771eb7637dcb208971c046b133a4f1b50

See more details on using hashes here.

File details

Details for the file plotive-0.2.1-cp314-cp314-macosx_10_12_x86_64.whl.

File metadata

  • Download URL: plotive-0.2.1-cp314-cp314-macosx_10_12_x86_64.whl
  • Upload date:
  • Size: 12.9 MB
  • Tags: CPython 3.14, macOS 10.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.6 {"installer":{"name":"uv","version":"0.11.6","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for plotive-0.2.1-cp314-cp314-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 c3c5f7de7641b7a6b23f89fe3fd742a80e8ca0c391789a63bb44699aff1c15b1
MD5 dc92a4d02f2f1a1028c3c41b0e840aa0
BLAKE2b-256 085e0313d06585dea32954da4e57f079192a4e3aa4a235ee83fbee666e950c79

See more details on using hashes here.

File details

Details for the file plotive-0.2.1-cp313-cp313t-musllinux_1_2_x86_64.whl.

File metadata

  • Download URL: plotive-0.2.1-cp313-cp313t-musllinux_1_2_x86_64.whl
  • Upload date:
  • Size: 16.8 MB
  • Tags: CPython 3.13t, musllinux: musl 1.2+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.6 {"installer":{"name":"uv","version":"0.11.6","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for plotive-0.2.1-cp313-cp313t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 a2413e6862df6600ff7dd4145d3204dd546356845ed67b65033344fd9303c66b
MD5 8b9be3522213117849230ffcb2b1dbc4
BLAKE2b-256 a672e1e60c6e05959fb392e299f0f35ac18fc2d3d4bfd379fe864fbf29d44b8e

See more details on using hashes here.

File details

Details for the file plotive-0.2.1-cp313-cp313t-musllinux_1_2_i686.whl.

File metadata

  • Download URL: plotive-0.2.1-cp313-cp313t-musllinux_1_2_i686.whl
  • Upload date:
  • Size: 16.9 MB
  • Tags: CPython 3.13t, musllinux: musl 1.2+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.6 {"installer":{"name":"uv","version":"0.11.6","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for plotive-0.2.1-cp313-cp313t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 b0a70010a50dae87a73c5955fa20e0cc7cdf0fb3fa3324963d1e4225cf75fcbb
MD5 ca768dd1ba0737450b14f2de4b3d857b
BLAKE2b-256 6ce0887749fad51b44c2da5a18ebc8f013fd8e63ca58000fc3826e6ff8b39e6c

See more details on using hashes here.

File details

Details for the file plotive-0.2.1-cp313-cp313t-musllinux_1_2_armv7l.whl.

File metadata

  • Download URL: plotive-0.2.1-cp313-cp313t-musllinux_1_2_armv7l.whl
  • Upload date:
  • Size: 16.6 MB
  • Tags: CPython 3.13t, musllinux: musl 1.2+ ARMv7l
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.6 {"installer":{"name":"uv","version":"0.11.6","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for plotive-0.2.1-cp313-cp313t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 07ff2ae02610ec9bc39deec829fd65d224ef64f7454fffe57413e6b4f6dd70bf
MD5 f9babe631a302b4123832f540db76deb
BLAKE2b-256 82649ba51bcbd43e89ffc97102ee1f15b5b87cf2ae9d4cef1c4f57d624557bdb

See more details on using hashes here.

File details

Details for the file plotive-0.2.1-cp313-cp313t-musllinux_1_2_aarch64.whl.

File metadata

  • Download URL: plotive-0.2.1-cp313-cp313t-musllinux_1_2_aarch64.whl
  • Upload date:
  • Size: 16.7 MB
  • Tags: CPython 3.13t, musllinux: musl 1.2+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.6 {"installer":{"name":"uv","version":"0.11.6","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for plotive-0.2.1-cp313-cp313t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 ae1d681e56eb2514d3c3831687ab5dd91b04e74619cb2f70e3f464faf275efc6
MD5 8e7cba21c763416f587c6cfe5c7b0678
BLAKE2b-256 0c18a61d93bccf3faba8be7b3df32aa677f552c285b6e25b57de8dda24d7590a

See more details on using hashes here.

File details

Details for the file plotive-0.2.1-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

  • Download URL: plotive-0.2.1-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl
  • Upload date:
  • Size: 16.6 MB
  • Tags: CPython 3.13t, manylinux: glibc 2.17+ s390x
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.6 {"installer":{"name":"uv","version":"0.11.6","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for plotive-0.2.1-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 7e5429fe1672c8f258dd4a7fea1954167ae946eee9246d71cac69aa763157f80
MD5 d1375b6ffedda21fae8ff4e5cf1c9a76
BLAKE2b-256 e6b9d684033bbc76f9d9a7ed33250089234de832793baac02b507d610c82c681

See more details on using hashes here.

File details

Details for the file plotive-0.2.1-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

  • Download URL: plotive-0.2.1-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
  • Upload date:
  • Size: 18.2 MB
  • Tags: CPython 3.13t, manylinux: glibc 2.17+ ppc64le
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.6 {"installer":{"name":"uv","version":"0.11.6","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for plotive-0.2.1-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 58bd0d7a449b9b863bc67d0d918395472b5ee79b45890df9893217bad4e8d506
MD5 b3626c5a594ccddae9cd319836c956f1
BLAKE2b-256 d03803a1143e5403a899fbb3b8e9f733388c194d3866b1b6e59e9c81613c489f

See more details on using hashes here.

File details

Details for the file plotive-0.2.1-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

  • Download URL: plotive-0.2.1-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
  • Upload date:
  • Size: 16.3 MB
  • Tags: CPython 3.13t, manylinux: glibc 2.17+ ARMv7l
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.6 {"installer":{"name":"uv","version":"0.11.6","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for plotive-0.2.1-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 cb76ba797a147714aa423820575c25f31d5535f807ba5c699e563bd9798ae1de
MD5 e5d5ed22fbad6e12d874b085278c966b
BLAKE2b-256 f06ecad3faacd7570a1d9b5154a34963003d793e58ba28408939336c69b37f3e

See more details on using hashes here.

File details

Details for the file plotive-0.2.1-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

  • Download URL: plotive-0.2.1-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
  • Upload date:
  • Size: 16.5 MB
  • Tags: CPython 3.13t, manylinux: glibc 2.17+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.6 {"installer":{"name":"uv","version":"0.11.6","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for plotive-0.2.1-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 94d898d0c199aab007df34d3065ae337dbf6cdee4bf10def3fed9cf9e968e66d
MD5 6898301a71d477b136a4bea5b3cfcbee
BLAKE2b-256 0ea3b0dc4ba10ae84bfe9dc8b05971739b960a05dd81b59cb7f9e5db4e18d9ba

See more details on using hashes here.

File details

Details for the file plotive-0.2.1-cp313-cp313-win_arm64.whl.

File metadata

  • Download URL: plotive-0.2.1-cp313-cp313-win_arm64.whl
  • Upload date:
  • Size: 12.7 MB
  • Tags: CPython 3.13, Windows ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.6 {"installer":{"name":"uv","version":"0.11.6","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for plotive-0.2.1-cp313-cp313-win_arm64.whl
Algorithm Hash digest
SHA256 f97cefff18e02d9b4f54d00522821c6d03a0f6f1f166390ccf88d91828d3f0e1
MD5 8416d61f1220634a65818c80ec400614
BLAKE2b-256 d32f004a61a5fc3a55417bcdeb7bb721be235cab0307abeeed6b1eed481dbd8c

See more details on using hashes here.

File details

Details for the file plotive-0.2.1-cp313-cp313-win_amd64.whl.

File metadata

  • Download URL: plotive-0.2.1-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 13.0 MB
  • Tags: CPython 3.13, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.6 {"installer":{"name":"uv","version":"0.11.6","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for plotive-0.2.1-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 70f7957667f89f62450f70033089147bc012ceb49f8c36a8e334dd75795414ea
MD5 28d91ab62fe8012842b73c47215eb087
BLAKE2b-256 45d707f74a49e3fe0cca056c56815054b7a31d9a849f4d14780709a793a39405

See more details on using hashes here.

File details

Details for the file plotive-0.2.1-cp313-cp313-win32.whl.

File metadata

  • Download URL: plotive-0.2.1-cp313-cp313-win32.whl
  • Upload date:
  • Size: 12.6 MB
  • Tags: CPython 3.13, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.6 {"installer":{"name":"uv","version":"0.11.6","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for plotive-0.2.1-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 32591cbcea6c01a1503cf5a3577b7e47fe7c89e1654698699130544c2873c4eb
MD5 14b8354d9ae7f887b931f202f42f9884
BLAKE2b-256 567819879ddfe4626dc7c0931180d53a0883cddd08256df41176ec3bae9ddfec

See more details on using hashes here.

File details

Details for the file plotive-0.2.1-cp313-cp313-musllinux_1_2_x86_64.whl.

File metadata

  • Download URL: plotive-0.2.1-cp313-cp313-musllinux_1_2_x86_64.whl
  • Upload date:
  • Size: 16.8 MB
  • Tags: CPython 3.13, musllinux: musl 1.2+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.6 {"installer":{"name":"uv","version":"0.11.6","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for plotive-0.2.1-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 086ec026ad635015741a5fc907177da33d1923020565b5866104a769234899f7
MD5 d1c07d72a80fe3d65329b1b1a8f8488c
BLAKE2b-256 6084ca5567801f8f5a3c3d243906005364bcabb1109dddb3890441a460158aad

See more details on using hashes here.

File details

Details for the file plotive-0.2.1-cp313-cp313-musllinux_1_2_i686.whl.

File metadata

  • Download URL: plotive-0.2.1-cp313-cp313-musllinux_1_2_i686.whl
  • Upload date:
  • Size: 16.9 MB
  • Tags: CPython 3.13, musllinux: musl 1.2+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.6 {"installer":{"name":"uv","version":"0.11.6","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for plotive-0.2.1-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 23f8186c2fb5eb56e58d6fc027e4ad233b0c44e0333962cd1094cd9b09bb58c0
MD5 8c7bc84c11a3a34377a8fcbb25f0fa85
BLAKE2b-256 8288ed93d18110154e051bb7516ad711768595c0f070ad0f9ac8ccecfbf9f036

See more details on using hashes here.

File details

Details for the file plotive-0.2.1-cp313-cp313-musllinux_1_2_armv7l.whl.

File metadata

  • Download URL: plotive-0.2.1-cp313-cp313-musllinux_1_2_armv7l.whl
  • Upload date:
  • Size: 16.6 MB
  • Tags: CPython 3.13, musllinux: musl 1.2+ ARMv7l
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.6 {"installer":{"name":"uv","version":"0.11.6","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for plotive-0.2.1-cp313-cp313-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 7ea8a5c9f8ffc74faeeae342d86501bfc1dd9cee97d13485d434f111141c08cd
MD5 2b16521ebcb6367bff9e172b25fa473d
BLAKE2b-256 9c33cecbd3388e89faa271c4e3e1f905ae4577b7dc2e744a10c3ca486548b63d

See more details on using hashes here.

File details

Details for the file plotive-0.2.1-cp313-cp313-musllinux_1_2_aarch64.whl.

File metadata

  • Download URL: plotive-0.2.1-cp313-cp313-musllinux_1_2_aarch64.whl
  • Upload date:
  • Size: 16.7 MB
  • Tags: CPython 3.13, musllinux: musl 1.2+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.6 {"installer":{"name":"uv","version":"0.11.6","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for plotive-0.2.1-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 a71e7ad4a21e1ff2420e14fad4c4d75f2781a55060c1ad031356c3c7147e2be5
MD5 17653a2801335b526d5e4fddba10e434
BLAKE2b-256 2c7981e55fa23ba758932d731f6e01b42c80d4fdf4804392a229e2795a74229d

See more details on using hashes here.

File details

Details for the file plotive-0.2.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

  • Download URL: plotive-0.2.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
  • Upload date:
  • Size: 16.4 MB
  • Tags: CPython 3.13, manylinux: glibc 2.17+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.6 {"installer":{"name":"uv","version":"0.11.6","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for plotive-0.2.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 21f7e929325220ea618857bf0bcda11b0b0d22d23afa2cecc24dd60654dddf3b
MD5 2e2c971a98fafaed558955cb29ef5151
BLAKE2b-256 d24a335ca575e939cfab0814fd57d2c9b6e4d467ca067f1de7d07e660589fe41

See more details on using hashes here.

File details

Details for the file plotive-0.2.1-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

  • Download URL: plotive-0.2.1-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
  • Upload date:
  • Size: 16.6 MB
  • Tags: CPython 3.13, manylinux: glibc 2.17+ s390x
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.6 {"installer":{"name":"uv","version":"0.11.6","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for plotive-0.2.1-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 7ef5a34f9465c38047fc8bb1fcba50a2574bcf5330e606d730a1bf21c857b17f
MD5 8129a0cce78b901a4e47dc0131a623e9
BLAKE2b-256 b399c40dca0853e2f69920fde47d657361cc203f997e8eb60354f7dd4ca97791

See more details on using hashes here.

File details

Details for the file plotive-0.2.1-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

  • Download URL: plotive-0.2.1-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
  • Upload date:
  • Size: 18.2 MB
  • Tags: CPython 3.13, manylinux: glibc 2.17+ ppc64le
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.6 {"installer":{"name":"uv","version":"0.11.6","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for plotive-0.2.1-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 49282fb0ae98eaedf2a4b09c4c883f825a75c81f7d70f6190a0605fe2f029ef2
MD5 ba53399d71891fadb316e7832d445adf
BLAKE2b-256 deab1cc020eaa8c1df43c22eee9200c32835d8817838cf4c8905c5a566a42ba1

See more details on using hashes here.

File details

Details for the file plotive-0.2.1-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

  • Download URL: plotive-0.2.1-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl
  • Upload date:
  • Size: 17.2 MB
  • Tags: CPython 3.13, manylinux: glibc 2.17+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.6 {"installer":{"name":"uv","version":"0.11.6","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for plotive-0.2.1-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 1033d17c6df2dfc98fd4404cc6a6147dded3c3eab3614768a30e553be970ae88
MD5 c54ee0fc1cddcfccc001bf77c2b4f613
BLAKE2b-256 6a72d49c19ca44e1a97c65e7b2b10f58a64a035608422bab907c76c1076d96a4

See more details on using hashes here.

File details

Details for the file plotive-0.2.1-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

  • Download URL: plotive-0.2.1-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
  • Upload date:
  • Size: 16.3 MB
  • Tags: CPython 3.13, manylinux: glibc 2.17+ ARMv7l
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.6 {"installer":{"name":"uv","version":"0.11.6","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for plotive-0.2.1-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 f997e9345033135494dfb7a1d69389ad6738c295a08f1ebfb423b984e49334dc
MD5 16e3b3fb0299d980ae98dd7dd0a3c920
BLAKE2b-256 440dd2b03797f2edf0d4ee558327a9ddb3ece431227743a17819e5621ec0bd1d

See more details on using hashes here.

File details

Details for the file plotive-0.2.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

  • Download URL: plotive-0.2.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
  • Upload date:
  • Size: 16.5 MB
  • Tags: CPython 3.13, manylinux: glibc 2.17+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.6 {"installer":{"name":"uv","version":"0.11.6","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for plotive-0.2.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 f589bf0988fc1b2dcad7b8b70c630959343ca6d96dfc2610abc295d19fd620b1
MD5 0b0a46b8ce9044537f694e3bfdbb3cfd
BLAKE2b-256 f3049e7a9d3104bd6e7485750e78e0e285e3763f2b1db7838394edee403996b3

See more details on using hashes here.

File details

Details for the file plotive-0.2.1-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

  • Download URL: plotive-0.2.1-cp313-cp313-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 12.8 MB
  • Tags: CPython 3.13, macOS 11.0+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.6 {"installer":{"name":"uv","version":"0.11.6","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for plotive-0.2.1-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 01cc42acfd674750ad0e3512a81281bdb803336966a35e0f5cc143a5a460f923
MD5 aa8f1cb16a77a31d00b2911d230790bc
BLAKE2b-256 95965d2d910f53c2f2f1a2b4dab37145216bbbfee378dbd7c570d726998f6af7

See more details on using hashes here.

File details

Details for the file plotive-0.2.1-cp313-cp313-macosx_10_12_x86_64.whl.

File metadata

  • Download URL: plotive-0.2.1-cp313-cp313-macosx_10_12_x86_64.whl
  • Upload date:
  • Size: 12.9 MB
  • Tags: CPython 3.13, macOS 10.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.6 {"installer":{"name":"uv","version":"0.11.6","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for plotive-0.2.1-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 7005c00865800460addaff16732bbbe27be865386336c51f0de307861f6e7180
MD5 ffa4558d661ee69fc28734f5f36f0287
BLAKE2b-256 8b74ead2b2fe9832c552d4418e9973f65165058033bfc0c761a38261ef1d2c05

See more details on using hashes here.

File details

Details for the file plotive-0.2.1-cp312-cp312-win_arm64.whl.

File metadata

  • Download URL: plotive-0.2.1-cp312-cp312-win_arm64.whl
  • Upload date:
  • Size: 12.7 MB
  • Tags: CPython 3.12, Windows ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.6 {"installer":{"name":"uv","version":"0.11.6","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for plotive-0.2.1-cp312-cp312-win_arm64.whl
Algorithm Hash digest
SHA256 b18ab8895f992d637078d1a82e2ef6f545832d37deb79d6d3292cd4423302ff4
MD5 815b442beeebea0de56b364f60fd6dbc
BLAKE2b-256 ef1d9964710d682fa69d17c4fe6552fed60665022824f37a6de8d86f66d8c980

See more details on using hashes here.

File details

Details for the file plotive-0.2.1-cp312-cp312-win_amd64.whl.

File metadata

  • Download URL: plotive-0.2.1-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 13.0 MB
  • Tags: CPython 3.12, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.6 {"installer":{"name":"uv","version":"0.11.6","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for plotive-0.2.1-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 2d896b103f43cf1caf7b1dc0a32100893bec7f2d15b09c210a6b6843ae0b611f
MD5 e0697f9e088fb1cc01c0bb4b51dd3342
BLAKE2b-256 731435bd081c7ac3a9ac17b23e16db0917f0d8ea66e30b9badbd7643aa4052d7

See more details on using hashes here.

File details

Details for the file plotive-0.2.1-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

  • Download URL: plotive-0.2.1-cp312-cp312-musllinux_1_2_x86_64.whl
  • Upload date:
  • Size: 16.8 MB
  • Tags: CPython 3.12, musllinux: musl 1.2+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.6 {"installer":{"name":"uv","version":"0.11.6","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for plotive-0.2.1-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 5dc8c15bc023efc43adb631e3b7e117c9c32e02b86ab858bed41ef30a0559bf6
MD5 e151ba0cc9d1df93bf29b35737f8c376
BLAKE2b-256 d1379b0e9430f1e43ed2b0110f05cc2f31663d804ca628bd6302566286a670e1

See more details on using hashes here.

File details

Details for the file plotive-0.2.1-cp312-cp312-musllinux_1_2_i686.whl.

File metadata

  • Download URL: plotive-0.2.1-cp312-cp312-musllinux_1_2_i686.whl
  • Upload date:
  • Size: 16.9 MB
  • Tags: CPython 3.12, musllinux: musl 1.2+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.6 {"installer":{"name":"uv","version":"0.11.6","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for plotive-0.2.1-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 d8238cb655f5765b81e187fef40857c09b555eba65b5ce14ff7808b8ab488958
MD5 392f7c678f6b2ad366864ce3c039b6dc
BLAKE2b-256 c9f57aaacd933be5addb18715a6a9edf147560987cd66080fe575c87f4c85de0

See more details on using hashes here.

File details

Details for the file plotive-0.2.1-cp312-cp312-musllinux_1_2_armv7l.whl.

File metadata

  • Download URL: plotive-0.2.1-cp312-cp312-musllinux_1_2_armv7l.whl
  • Upload date:
  • Size: 16.6 MB
  • Tags: CPython 3.12, musllinux: musl 1.2+ ARMv7l
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.6 {"installer":{"name":"uv","version":"0.11.6","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for plotive-0.2.1-cp312-cp312-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 2d67f496cc9ea7ce514d045a2a273909be7868de9fbcd7d448daa34d7e65b9ec
MD5 477a6f28b2b95cc4da3df9b3702e925f
BLAKE2b-256 d9845f185142cfe139520f23ca796a4e1594529f6dfe58ab4ab81b8676fb298f

See more details on using hashes here.

File details

Details for the file plotive-0.2.1-cp312-cp312-musllinux_1_2_aarch64.whl.

File metadata

  • Download URL: plotive-0.2.1-cp312-cp312-musllinux_1_2_aarch64.whl
  • Upload date:
  • Size: 16.7 MB
  • Tags: CPython 3.12, musllinux: musl 1.2+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.6 {"installer":{"name":"uv","version":"0.11.6","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for plotive-0.2.1-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 0213c191f332474dc9b6dac7bcb755214f2d2151b0fb8c6517d103bf2d6ade92
MD5 70fbb0f341a27110e5e81aa3f8bac4fb
BLAKE2b-256 7a92dac1d04eb6fec90385ce0beb68e98d80feedfa3711d7350ca7ed4bae97cd

See more details on using hashes here.

File details

Details for the file plotive-0.2.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

  • Download URL: plotive-0.2.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
  • Upload date:
  • Size: 16.4 MB
  • Tags: CPython 3.12, manylinux: glibc 2.17+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.6 {"installer":{"name":"uv","version":"0.11.6","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for plotive-0.2.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 a6b5cd3cef542bf4a25d30c730b34a403099b6513c2f9aa686265675749da705
MD5 845063b18c3cb55a840ac665149a1036
BLAKE2b-256 cd2c6daec2c6acf68e8a9037fca419154254c0cf0a6a56a7d72765743cafb45b

See more details on using hashes here.

File details

Details for the file plotive-0.2.1-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

  • Download URL: plotive-0.2.1-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
  • Upload date:
  • Size: 16.6 MB
  • Tags: CPython 3.12, manylinux: glibc 2.17+ s390x
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.6 {"installer":{"name":"uv","version":"0.11.6","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for plotive-0.2.1-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 e3d4739d563c578046a1f69f76b8bbed61da4b4d1f7cacf04db45537745e307b
MD5 2d7716b833f5e52b3d9b366d51912a2d
BLAKE2b-256 bfbc02a8cc17f0b32bdc9dcc3e4c60ba7f4c6862878b21621cba007441c831d4

See more details on using hashes here.

File details

Details for the file plotive-0.2.1-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

  • Download URL: plotive-0.2.1-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
  • Upload date:
  • Size: 18.2 MB
  • Tags: CPython 3.12, manylinux: glibc 2.17+ ppc64le
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.6 {"installer":{"name":"uv","version":"0.11.6","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for plotive-0.2.1-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 50535c19be4b1293433fd1f49854221ea92214fb314ee3b11b5e8d0fcc28b350
MD5 8146ae4135802b33d11f0de05d8afcc8
BLAKE2b-256 193510be4feb4449abce60c0d64840720c05686116c286b39b27384c347cad4f

See more details on using hashes here.

File details

Details for the file plotive-0.2.1-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

  • Download URL: plotive-0.2.1-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl
  • Upload date:
  • Size: 17.2 MB
  • Tags: CPython 3.12, manylinux: glibc 2.17+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.6 {"installer":{"name":"uv","version":"0.11.6","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for plotive-0.2.1-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 96e11124d12da00b749967f636ca0df14c34add3a155d6e21e70ee745deca1af
MD5 dd563e00c1dac4844bd7558ef5ca361e
BLAKE2b-256 7459eca5cad3cccb43cef8a8d63d0f03d187dbfebcffcfa2118cb57c9d9135c1

See more details on using hashes here.

File details

Details for the file plotive-0.2.1-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

  • Download URL: plotive-0.2.1-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
  • Upload date:
  • Size: 16.3 MB
  • Tags: CPython 3.12, manylinux: glibc 2.17+ ARMv7l
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.6 {"installer":{"name":"uv","version":"0.11.6","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for plotive-0.2.1-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 2d6003f553309a1a59bbf546c97411c578bce0990c0ae36c5840a412444f3cdb
MD5 9fa44fde2e794ec65cb9a4f095ea9d72
BLAKE2b-256 369ea25a66cd9a5b9e57c3f9c5b8a0d1fc9bf0493b1278579e406b759ab04c4a

See more details on using hashes here.

File details

Details for the file plotive-0.2.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

  • Download URL: plotive-0.2.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
  • Upload date:
  • Size: 16.5 MB
  • Tags: CPython 3.12, manylinux: glibc 2.17+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.6 {"installer":{"name":"uv","version":"0.11.6","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for plotive-0.2.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 ab3603991e3c7be412daffcf5597d934e5421ecc93aa2dfe261ce526efd40240
MD5 148d837cbbd657e589e5f6eb1d19a98b
BLAKE2b-256 9b7a2ac6f2fb40846db85896096a26d6fc979939ce52205c42290c880fcf9b81

See more details on using hashes here.

File details

Details for the file plotive-0.2.1-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

  • Download URL: plotive-0.2.1-cp312-cp312-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 12.8 MB
  • Tags: CPython 3.12, macOS 11.0+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.6 {"installer":{"name":"uv","version":"0.11.6","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for plotive-0.2.1-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 998a383be31f4bfc9b44269aae562672aae3f1cdb305c41d4e477f8cbdd678ed
MD5 eab85eb55e2a419dda9c1c6eab084d70
BLAKE2b-256 25b459a7242d0276ae796513e6a3d083f8e74d2d36e5b7ae2625d84b1ec179a8

See more details on using hashes here.

File details

Details for the file plotive-0.2.1-cp312-cp312-macosx_10_12_x86_64.whl.

File metadata

  • Download URL: plotive-0.2.1-cp312-cp312-macosx_10_12_x86_64.whl
  • Upload date:
  • Size: 12.9 MB
  • Tags: CPython 3.12, macOS 10.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.6 {"installer":{"name":"uv","version":"0.11.6","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for plotive-0.2.1-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 121e9f4c68b5e7f559798ef2f133158850e5328c0c416acb45a93ee6f7ed2759
MD5 e2ea68703338ff5ab6e9d5732693093f
BLAKE2b-256 c94dd087f1679e897752cf8a543cbc3bfa3451e9dbfe788e1da52f70d1244f80

See more details on using hashes here.

File details

Details for the file plotive-0.2.1-cp311-cp311-win_amd64.whl.

File metadata

  • Download URL: plotive-0.2.1-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 13.0 MB
  • Tags: CPython 3.11, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.6 {"installer":{"name":"uv","version":"0.11.6","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for plotive-0.2.1-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 1f273e9ae2f63f6200f97510d7c719fb92b5d0031931ce4d5ee23442a80c3e43
MD5 47241e750263ce2133d7e4f2796a19d0
BLAKE2b-256 efd5694e6293d36ffe736f4b80cd3dd712f364a150b3ae558dd84ce404ec81b8

See more details on using hashes here.

File details

Details for the file plotive-0.2.1-cp311-cp311-musllinux_1_2_x86_64.whl.

File metadata

  • Download URL: plotive-0.2.1-cp311-cp311-musllinux_1_2_x86_64.whl
  • Upload date:
  • Size: 16.8 MB
  • Tags: CPython 3.11, musllinux: musl 1.2+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.6 {"installer":{"name":"uv","version":"0.11.6","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for plotive-0.2.1-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 3e2abfd943082b9fda96e1084d7d14e5d724cab41283f5d7944cb1c19fc59a9e
MD5 06aa9dd34fa3898fd75119bdd0bb6c06
BLAKE2b-256 9e547a4d8f36aa6899f294e8ae36e61447e997e251ea63b7b80f24979c9d5e4b

See more details on using hashes here.

File details

Details for the file plotive-0.2.1-cp311-cp311-musllinux_1_2_i686.whl.

File metadata

  • Download URL: plotive-0.2.1-cp311-cp311-musllinux_1_2_i686.whl
  • Upload date:
  • Size: 16.9 MB
  • Tags: CPython 3.11, musllinux: musl 1.2+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.6 {"installer":{"name":"uv","version":"0.11.6","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for plotive-0.2.1-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 ef0068921e0a497f2d96ab0559623d0eab180a1f7eb1664216326ae2904337d1
MD5 972977bbad6781ea70df525a0fb343cf
BLAKE2b-256 372fa06e1e5b2cdd60f2f760933d60caad3e49a0d35ded6c11fd40594b99f032

See more details on using hashes here.

File details

Details for the file plotive-0.2.1-cp311-cp311-musllinux_1_2_armv7l.whl.

File metadata

  • Download URL: plotive-0.2.1-cp311-cp311-musllinux_1_2_armv7l.whl
  • Upload date:
  • Size: 16.6 MB
  • Tags: CPython 3.11, musllinux: musl 1.2+ ARMv7l
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.6 {"installer":{"name":"uv","version":"0.11.6","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for plotive-0.2.1-cp311-cp311-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 9c14701b951b778b6ead6ef0beead94f8894f6817ede89495ec5b101ef2deb72
MD5 30115d0cd3b7ab602e6ebf31a7134128
BLAKE2b-256 ea0f1ea7338356b59f5f6d5ee3f6f8282eb82eb0aeaf564ad03b65626a67c09a

See more details on using hashes here.

File details

Details for the file plotive-0.2.1-cp311-cp311-musllinux_1_2_aarch64.whl.

File metadata

  • Download URL: plotive-0.2.1-cp311-cp311-musllinux_1_2_aarch64.whl
  • Upload date:
  • Size: 16.7 MB
  • Tags: CPython 3.11, musllinux: musl 1.2+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.6 {"installer":{"name":"uv","version":"0.11.6","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for plotive-0.2.1-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 412abc93c82ea430c8abe210986966ab57923d818e24c2184c581ce4e156ea99
MD5 b9169311b0f26ec1d64422ffdf3f3da5
BLAKE2b-256 f9912739204d22f536d88967c46d27e3c33540380a3e2da5bcd6fd8b60993dab

See more details on using hashes here.

File details

Details for the file plotive-0.2.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

  • Download URL: plotive-0.2.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
  • Upload date:
  • Size: 16.4 MB
  • Tags: CPython 3.11, manylinux: glibc 2.17+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.6 {"installer":{"name":"uv","version":"0.11.6","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for plotive-0.2.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 d447770306aa47493979a8ed53b89057cb495d831a655b4211b5a5f7f9d1dc34
MD5 ded4b768d804d48955a242589ef6ea46
BLAKE2b-256 afa7b6c2a6618f2659b35e460df63c9109096ad0bf498a2797c645326fe63bda

See more details on using hashes here.

File details

Details for the file plotive-0.2.1-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

  • Download URL: plotive-0.2.1-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
  • Upload date:
  • Size: 16.6 MB
  • Tags: CPython 3.11, manylinux: glibc 2.17+ s390x
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.6 {"installer":{"name":"uv","version":"0.11.6","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for plotive-0.2.1-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 6dec238d53c1d6cf7f3291f495015e2e26491cfda7c67e042a7519d1cbb064cd
MD5 eae310588cc8e41107107de628de94d5
BLAKE2b-256 c87323fc3035e35d8d3b8afb6479899f954d72aafaccc84363321f0f581dde32

See more details on using hashes here.

File details

Details for the file plotive-0.2.1-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

  • Download URL: plotive-0.2.1-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
  • Upload date:
  • Size: 18.2 MB
  • Tags: CPython 3.11, manylinux: glibc 2.17+ ppc64le
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.6 {"installer":{"name":"uv","version":"0.11.6","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for plotive-0.2.1-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 5e9b533ad63145554a2bbb6c4bcbd44352abdef0509196f578977686e0393eae
MD5 f5ff9fb85903e388f8f3485f0f446b61
BLAKE2b-256 9788e4449f17655989a1e7707b3ab823d2c729d9d49e1ea119518960d08ad917

See more details on using hashes here.

File details

Details for the file plotive-0.2.1-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

  • Download URL: plotive-0.2.1-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl
  • Upload date:
  • Size: 17.2 MB
  • Tags: CPython 3.11, manylinux: glibc 2.17+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.6 {"installer":{"name":"uv","version":"0.11.6","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for plotive-0.2.1-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 b83f22ce45d01dff3ac64bdf6bc0902db476e39868fe26e41c6088020baa6c3d
MD5 0ac88a28942328d6bc5f9b0a2e1eaacc
BLAKE2b-256 f4195ac2660de31ea72d3000a61f92ed69fdd52641ad57f6677af2c3696e6959

See more details on using hashes here.

File details

Details for the file plotive-0.2.1-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

  • Download URL: plotive-0.2.1-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
  • Upload date:
  • Size: 16.3 MB
  • Tags: CPython 3.11, manylinux: glibc 2.17+ ARMv7l
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.6 {"installer":{"name":"uv","version":"0.11.6","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for plotive-0.2.1-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 985eabe6d1bf3af673942a6f4fc61c78640bbe9ed7a3871ff4b4711de7cdc918
MD5 00644134f412b926e306a7e5a11a0f95
BLAKE2b-256 9efcb0f87378d1710a48ae231d28fd1e8c733cfe2d42511082f8763da7756891

See more details on using hashes here.

File details

Details for the file plotive-0.2.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

  • Download URL: plotive-0.2.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
  • Upload date:
  • Size: 16.5 MB
  • Tags: CPython 3.11, manylinux: glibc 2.17+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.6 {"installer":{"name":"uv","version":"0.11.6","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for plotive-0.2.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 2c3d3c81367ae888cc8688c3e47f552b688b227434e55e23cd351685e1c05edb
MD5 a838b33cdb1a2b6f2610bbbb98e181d9
BLAKE2b-256 d41f3b17a8a7c3398dc35e98d7cbac63534c94cfd272920908b6f6a186f60db3

See more details on using hashes here.

File details

Details for the file plotive-0.2.1-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

  • Download URL: plotive-0.2.1-cp311-cp311-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 12.8 MB
  • Tags: CPython 3.11, macOS 11.0+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.6 {"installer":{"name":"uv","version":"0.11.6","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for plotive-0.2.1-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 d3b2faf233ec8b5b2018824dc44adee2671001eb83a32634860f4f92c2ae20ac
MD5 a31098ace7eb5cc4ec574c21cbdd9731
BLAKE2b-256 7c43916c9fc6451d4519542d36cc51bcbcae40dd574ba7df30322f852811c489

See more details on using hashes here.

File details

Details for the file plotive-0.2.1-cp311-cp311-macosx_10_12_x86_64.whl.

File metadata

  • Download URL: plotive-0.2.1-cp311-cp311-macosx_10_12_x86_64.whl
  • Upload date:
  • Size: 12.9 MB
  • Tags: CPython 3.11, macOS 10.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.6 {"installer":{"name":"uv","version":"0.11.6","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for plotive-0.2.1-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 b5604d72c107b39ab0aa21ab088f337e530c1fc5f10c3d7bbba7dc4afe831d7e
MD5 82c4701e55fc61343db27b12f11b3f5c
BLAKE2b-256 13689f08603fa5fafe5639b9ed852a2e5dbe5fce24d8eaab7222b01046893b26

See more details on using hashes here.

File details

Details for the file plotive-0.2.1-cp310-cp310-win_amd64.whl.

File metadata

  • Download URL: plotive-0.2.1-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 13.0 MB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.6 {"installer":{"name":"uv","version":"0.11.6","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for plotive-0.2.1-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 e06bb21e8ed65698369511e821cf01b553a8351ee7b69eb9157f4ecbbbb18420
MD5 93b118b4666ce7842742ab84c2ae5cd5
BLAKE2b-256 62907d8b75b7b95fd39d735aaadd0732a54a5b8a2765715ff9645e31f6c3c8c7

See more details on using hashes here.

File details

Details for the file plotive-0.2.1-cp310-cp310-musllinux_1_2_x86_64.whl.

File metadata

  • Download URL: plotive-0.2.1-cp310-cp310-musllinux_1_2_x86_64.whl
  • Upload date:
  • Size: 16.8 MB
  • Tags: CPython 3.10, musllinux: musl 1.2+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.6 {"installer":{"name":"uv","version":"0.11.6","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for plotive-0.2.1-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 e52de204a10494e57f1dbe60f9ea7c6204e70d17ac70403e805ea6aead0c414f
MD5 2f0cce9120039c1022c6009274befdd0
BLAKE2b-256 c5c2d23e6e938694602ef1baab92f3df80e06cce7f16f2179f76bec1ff0f8d9d

See more details on using hashes here.

File details

Details for the file plotive-0.2.1-cp310-cp310-musllinux_1_2_i686.whl.

File metadata

  • Download URL: plotive-0.2.1-cp310-cp310-musllinux_1_2_i686.whl
  • Upload date:
  • Size: 16.9 MB
  • Tags: CPython 3.10, musllinux: musl 1.2+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.6 {"installer":{"name":"uv","version":"0.11.6","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for plotive-0.2.1-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 7055582a0bfab7ad79cfa870ec73aa0d7438a22701bc3919ec930fa888b09c7e
MD5 1e3660c54c7ee264b6e5f778880a7b07
BLAKE2b-256 0873207ee77e495f1398d6a0dd4d865408e43161c5fd055cf7a016f1b9d5d8d9

See more details on using hashes here.

File details

Details for the file plotive-0.2.1-cp310-cp310-musllinux_1_2_armv7l.whl.

File metadata

  • Download URL: plotive-0.2.1-cp310-cp310-musllinux_1_2_armv7l.whl
  • Upload date:
  • Size: 16.6 MB
  • Tags: CPython 3.10, musllinux: musl 1.2+ ARMv7l
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.6 {"installer":{"name":"uv","version":"0.11.6","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for plotive-0.2.1-cp310-cp310-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 44b342fb8d3377f2b00991518d4159e118cfc609dcaebe964289360750fd2a3f
MD5 658d34a10befe29be5ae10a3b8a9efb3
BLAKE2b-256 8a9649cc0cf4d5bdf96fde8a126bde2d56517a75eb0a1c3386818981cb3a8e47

See more details on using hashes here.

File details

Details for the file plotive-0.2.1-cp310-cp310-musllinux_1_2_aarch64.whl.

File metadata

  • Download URL: plotive-0.2.1-cp310-cp310-musllinux_1_2_aarch64.whl
  • Upload date:
  • Size: 16.7 MB
  • Tags: CPython 3.10, musllinux: musl 1.2+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.6 {"installer":{"name":"uv","version":"0.11.6","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for plotive-0.2.1-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 25d20a7ba2d9b62eca1db8039b08137cc811d95eaf448081d7e9c186b628398a
MD5 71ed043210f80dd3b041e0d98921f5a9
BLAKE2b-256 4cb3ecdc7e72fde837ddec99005624de8fea59a13fe1bbaaae750b3f74bc46f6

See more details on using hashes here.

File details

Details for the file plotive-0.2.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

  • Download URL: plotive-0.2.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
  • Upload date:
  • Size: 16.4 MB
  • Tags: CPython 3.10, manylinux: glibc 2.17+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.6 {"installer":{"name":"uv","version":"0.11.6","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for plotive-0.2.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 792b644fce1441e5aa108b038fbc1deb2f6201469e2e5a1027d3cfaea46b0ba5
MD5 720bd16bacad021c29c4feb1a2447ab7
BLAKE2b-256 3fd1bda434d0014551f7e3d2fcc957461fedfbaba6955afba0c86df7517f78c0

See more details on using hashes here.

File details

Details for the file plotive-0.2.1-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

  • Download URL: plotive-0.2.1-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
  • Upload date:
  • Size: 16.6 MB
  • Tags: CPython 3.10, manylinux: glibc 2.17+ s390x
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.6 {"installer":{"name":"uv","version":"0.11.6","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for plotive-0.2.1-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 fc1d03364b06bb41095db7b03e659023d558fb3ee86a7bde8742f853fd5bb6a8
MD5 9ec3a34607c0acf12431523d572b84f9
BLAKE2b-256 acb9acb6357a36dbe89c95f0e7c5d9b7cec0694d5eb899e0019b7eb6b1385bee

See more details on using hashes here.

File details

Details for the file plotive-0.2.1-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

  • Download URL: plotive-0.2.1-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
  • Upload date:
  • Size: 18.2 MB
  • Tags: CPython 3.10, manylinux: glibc 2.17+ ppc64le
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.6 {"installer":{"name":"uv","version":"0.11.6","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for plotive-0.2.1-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 750e1d2e795d6336c086aa6aac7988f352ff7e72f2ebbe8a4e53cd78174ea804
MD5 042b46c9be5ae6ad183fe0e95a10d006
BLAKE2b-256 aed46ab505e3efb0e185c5a887e5eaa6bb92ddb15670dea9c67972f42af6e954

See more details on using hashes here.

File details

Details for the file plotive-0.2.1-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

  • Download URL: plotive-0.2.1-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl
  • Upload date:
  • Size: 17.2 MB
  • Tags: CPython 3.10, manylinux: glibc 2.17+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.6 {"installer":{"name":"uv","version":"0.11.6","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for plotive-0.2.1-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 987b2925df1f80768749d2ec93e7168244066b34fdb4fb78cdf92b090516358f
MD5 9ae7288eaa252f8e0e5f39d9a3816c12
BLAKE2b-256 46e055f9f455740a77cabf58790b00ac107ad31f210cb2b1f349066a612a46fa

See more details on using hashes here.

File details

Details for the file plotive-0.2.1-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

  • Download URL: plotive-0.2.1-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
  • Upload date:
  • Size: 16.3 MB
  • Tags: CPython 3.10, manylinux: glibc 2.17+ ARMv7l
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.6 {"installer":{"name":"uv","version":"0.11.6","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for plotive-0.2.1-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 158852e72eef69936af26166b8632d403405b34ed87344a047c0aa52399ae3a1
MD5 6b44483ca969d6ef595eb8c8582dac0d
BLAKE2b-256 ae3eda69d388c3faa4c6fbb9f65891f435cc39f1bc578c52d3e266acf89ee6a5

See more details on using hashes here.

File details

Details for the file plotive-0.2.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

  • Download URL: plotive-0.2.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
  • Upload date:
  • Size: 16.5 MB
  • Tags: CPython 3.10, manylinux: glibc 2.17+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.6 {"installer":{"name":"uv","version":"0.11.6","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for plotive-0.2.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 8ae0bd1d59097285eb66780db2750ab02775d1d38047bb85e6c359649284c34d
MD5 d5d2b5c97bed29c94e8aef61cb0e3d8d
BLAKE2b-256 0f9708088a0c90ef6ea6ba5b135ccdae1a1fc235beeeef9bca48747f40f5743d

See more details on using hashes here.

File details

Details for the file plotive-0.2.1-cp39-cp39-musllinux_1_2_x86_64.whl.

File metadata

  • Download URL: plotive-0.2.1-cp39-cp39-musllinux_1_2_x86_64.whl
  • Upload date:
  • Size: 16.8 MB
  • Tags: CPython 3.9, musllinux: musl 1.2+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.6 {"installer":{"name":"uv","version":"0.11.6","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for plotive-0.2.1-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 a8c9b6fbae8f91f709a4b40100e3a388525872537dffb5f62643e3178f7ec122
MD5 dfbdf74a92acfa5ad0ed0aa300db541b
BLAKE2b-256 57e9ec0a6189945ee9a774389b9604160e1485fb23d2aafb3ccf8c5639dd2e7a

See more details on using hashes here.

File details

Details for the file plotive-0.2.1-cp39-cp39-musllinux_1_2_i686.whl.

File metadata

  • Download URL: plotive-0.2.1-cp39-cp39-musllinux_1_2_i686.whl
  • Upload date:
  • Size: 16.9 MB
  • Tags: CPython 3.9, musllinux: musl 1.2+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.6 {"installer":{"name":"uv","version":"0.11.6","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for plotive-0.2.1-cp39-cp39-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 87d78e148d834c3c526b866541cf26e468cdf76ed0570b84e7bf1a755ea645d2
MD5 f0903aa1950f9b9d3d4e90c8ab09078a
BLAKE2b-256 d94697e6db781f3d5626ba1f279ea979bb5c4d26c313a5718a9611b0a2761edd

See more details on using hashes here.

File details

Details for the file plotive-0.2.1-cp39-cp39-musllinux_1_2_armv7l.whl.

File metadata

  • Download URL: plotive-0.2.1-cp39-cp39-musllinux_1_2_armv7l.whl
  • Upload date:
  • Size: 16.6 MB
  • Tags: CPython 3.9, musllinux: musl 1.2+ ARMv7l
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.6 {"installer":{"name":"uv","version":"0.11.6","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for plotive-0.2.1-cp39-cp39-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 aa5410a485ce83384a12e9004a310b0ae9aa82d16f3a6150fa6ac07f51d7b84c
MD5 74a3461db3300022fc75289f351d19df
BLAKE2b-256 d646075717440e49721ef278f5baf3cbca1d78bf6f9d8922e335f205e88c09ec

See more details on using hashes here.

File details

Details for the file plotive-0.2.1-cp39-cp39-musllinux_1_2_aarch64.whl.

File metadata

  • Download URL: plotive-0.2.1-cp39-cp39-musllinux_1_2_aarch64.whl
  • Upload date:
  • Size: 16.7 MB
  • Tags: CPython 3.9, musllinux: musl 1.2+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.6 {"installer":{"name":"uv","version":"0.11.6","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for plotive-0.2.1-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 62ab6c0ba577484d211846cc600f1d6042c43c2a87364094956da99b7830bff2
MD5 7f13a836a29c4d2ad7d2c4fd8e841003
BLAKE2b-256 84edab7f5d9c1dbd4f4c19d13f4ad5078e3da6caa62e4bda74f278a0ab52ceeb

See more details on using hashes here.

File details

Details for the file plotive-0.2.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

  • Download URL: plotive-0.2.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
  • Upload date:
  • Size: 16.4 MB
  • Tags: CPython 3.9, manylinux: glibc 2.17+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.6 {"installer":{"name":"uv","version":"0.11.6","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for plotive-0.2.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 c9b1af9deec1fbda6a23944e8b5de6eb44b92d7590ed58f625b810200742dba8
MD5 a4a2ece4c0f9e42cd7a33f2a6f67f3d2
BLAKE2b-256 2e7b0a167c0146248a456b4f4c050970e39817c7b955cb1f4040ecbd58f3b669

See more details on using hashes here.

File details

Details for the file plotive-0.2.1-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

  • Download URL: plotive-0.2.1-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
  • Upload date:
  • Size: 16.6 MB
  • Tags: CPython 3.9, manylinux: glibc 2.17+ s390x
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.6 {"installer":{"name":"uv","version":"0.11.6","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for plotive-0.2.1-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 fa55bc0e3ad033e8df12193d7b466d126c016777fd6abcffba420987e0c7a2ba
MD5 83be8f9a4af5031e1a9ea0737909b2b5
BLAKE2b-256 180207644c0cbbe9ccc20f3ed56289f0406af2e46eaa5c7a71c53c6d488bde61

See more details on using hashes here.

File details

Details for the file plotive-0.2.1-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

  • Download URL: plotive-0.2.1-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
  • Upload date:
  • Size: 18.2 MB
  • Tags: CPython 3.9, manylinux: glibc 2.17+ ppc64le
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.6 {"installer":{"name":"uv","version":"0.11.6","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for plotive-0.2.1-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 f359d96031ac7fb80e9eab829c1daace6d4ff6c3c290093af9b3e4e1e57ff2b9
MD5 356f9fdc55a7348267ad7a5f7a130bbc
BLAKE2b-256 0f572efb7dca845dc7bb7836211e39e849d0e157da203080e51490d6bc665315

See more details on using hashes here.

File details

Details for the file plotive-0.2.1-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

  • Download URL: plotive-0.2.1-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl
  • Upload date:
  • Size: 17.2 MB
  • Tags: CPython 3.9, manylinux: glibc 2.17+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.6 {"installer":{"name":"uv","version":"0.11.6","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for plotive-0.2.1-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 d30f65c48be29566de46102d67cdb4d1abb7e3eb008f6f0e9dadc0ca93b4b857
MD5 6b3193f2aef770659dcc6772818355bd
BLAKE2b-256 52a9ed413d152285a2db89f964cf5f43de52c15fd009c99372769862c307ef91

See more details on using hashes here.

File details

Details for the file plotive-0.2.1-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

  • Download URL: plotive-0.2.1-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
  • Upload date:
  • Size: 16.3 MB
  • Tags: CPython 3.9, manylinux: glibc 2.17+ ARMv7l
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.6 {"installer":{"name":"uv","version":"0.11.6","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for plotive-0.2.1-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 35ea2bfe7a1dd1516e7127cf8fb9b0ce7454c4ac1cb1d92a58ec003f7b42a0c9
MD5 e081c51c73cf44df16a6e74969457a0e
BLAKE2b-256 14256393a4aba6346ed42aabfdcac0d115b821a823c8dbffc5ec98546347591e

See more details on using hashes here.

File details

Details for the file plotive-0.2.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

  • Download URL: plotive-0.2.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
  • Upload date:
  • Size: 16.5 MB
  • Tags: CPython 3.9, manylinux: glibc 2.17+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.6 {"installer":{"name":"uv","version":"0.11.6","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for plotive-0.2.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 edb3bbb8a6502e315520f46c4a6bf65980f66e4c5cb418bd3081d7f184fc477e
MD5 cbe1a9095ab005b2c2a2554a2904c98f
BLAKE2b-256 0c0373d594620e0cc196cc30a5a8cd74f5178f9b9aff374c7ed0108cda30d857

See more details on using hashes here.

File details

Details for the file plotive-0.2.1-cp38-cp38-musllinux_1_2_x86_64.whl.

File metadata

  • Download URL: plotive-0.2.1-cp38-cp38-musllinux_1_2_x86_64.whl
  • Upload date:
  • Size: 16.8 MB
  • Tags: CPython 3.8, musllinux: musl 1.2+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.6 {"installer":{"name":"uv","version":"0.11.6","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for plotive-0.2.1-cp38-cp38-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 f24084ecbb5bae6891888568d2f35a509d918ded07f09097ec613bc944d4c44f
MD5 0338484310271452677b876d160ce8f5
BLAKE2b-256 8f932b2b010b34cad5f2dff5b512697a4f34611756d864072b80896acdd4a2c4

See more details on using hashes here.

File details

Details for the file plotive-0.2.1-cp38-cp38-musllinux_1_2_i686.whl.

File metadata

  • Download URL: plotive-0.2.1-cp38-cp38-musllinux_1_2_i686.whl
  • Upload date:
  • Size: 16.9 MB
  • Tags: CPython 3.8, musllinux: musl 1.2+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.6 {"installer":{"name":"uv","version":"0.11.6","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for plotive-0.2.1-cp38-cp38-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 5d17118a0f975f9c38fa1d6c727062969d3791accbf0e6043213445eb7e3dd2f
MD5 075119951aca3bc7195c4b2fee50e600
BLAKE2b-256 7961d77549d25302bbd47ac65274de4bc5e37a0a0096ec811849d7348d7c4d7d

See more details on using hashes here.

File details

Details for the file plotive-0.2.1-cp38-cp38-musllinux_1_2_armv7l.whl.

File metadata

  • Download URL: plotive-0.2.1-cp38-cp38-musllinux_1_2_armv7l.whl
  • Upload date:
  • Size: 16.6 MB
  • Tags: CPython 3.8, musllinux: musl 1.2+ ARMv7l
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.6 {"installer":{"name":"uv","version":"0.11.6","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for plotive-0.2.1-cp38-cp38-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 fbd93c9acc28868762da1d35b905294f14674f353cbef7cc590f4de1c86b508c
MD5 a76066983d54034edaf14c85f52a076d
BLAKE2b-256 cd83a15c065a8d988adc00ecaba2cc5f8c8b452d689bdc87149260d185a9e7a3

See more details on using hashes here.

File details

Details for the file plotive-0.2.1-cp38-cp38-musllinux_1_2_aarch64.whl.

File metadata

  • Download URL: plotive-0.2.1-cp38-cp38-musllinux_1_2_aarch64.whl
  • Upload date:
  • Size: 16.7 MB
  • Tags: CPython 3.8, musllinux: musl 1.2+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.6 {"installer":{"name":"uv","version":"0.11.6","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for plotive-0.2.1-cp38-cp38-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 f9e0958483abb8704b9b64af623ba7bb133223a64576e06cc84f25066b962524
MD5 db1cf5e4690a801b0d4dcd6c93dfbf4b
BLAKE2b-256 756ddd3f67a9b40ea80a4d7c3a6d32f7269af7e5542bcbe53193ea3c70836824

See more details on using hashes here.

File details

Details for the file plotive-0.2.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

  • Download URL: plotive-0.2.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
  • Upload date:
  • Size: 16.4 MB
  • Tags: CPython 3.8, manylinux: glibc 2.17+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.6 {"installer":{"name":"uv","version":"0.11.6","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for plotive-0.2.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 a5633d76209a8dc1cbf334204b1e69439c2ad552db82d864422b3187b6771731
MD5 9d513393a396b7dc4b456138933ed713
BLAKE2b-256 c44bb3858d72602d4a2d1f9854a7a2cdc4dd0f10c82d66caee9d65be527d28c5

See more details on using hashes here.

File details

Details for the file plotive-0.2.1-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

  • Download URL: plotive-0.2.1-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl
  • Upload date:
  • Size: 16.6 MB
  • Tags: CPython 3.8, manylinux: glibc 2.17+ s390x
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.6 {"installer":{"name":"uv","version":"0.11.6","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for plotive-0.2.1-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 b56d509e76681c6aecb9a685bd92a47ff80e5aafed077bd9b57e9b48b63f25cf
MD5 c3a00ffceedfcb5cf9e3c436378b72b5
BLAKE2b-256 f23ca702224f1cb6820a4a23dd9084766ede16cd4cee952e7c30a7e13b3c1663

See more details on using hashes here.

File details

Details for the file plotive-0.2.1-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

  • Download URL: plotive-0.2.1-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
  • Upload date:
  • Size: 18.2 MB
  • Tags: CPython 3.8, manylinux: glibc 2.17+ ppc64le
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.6 {"installer":{"name":"uv","version":"0.11.6","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for plotive-0.2.1-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 cc7adce7fce294a453e7d0fc902d1e103e399f9426bdf52ccdcc2374ba28de1c
MD5 7cb2092219a379971aa5113f7a89cf84
BLAKE2b-256 c99c9ddf1751f8b13af4e8c5457a1e76ead41a950b51c88e97be6c99946ddb1c

See more details on using hashes here.

File details

Details for the file plotive-0.2.1-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

  • Download URL: plotive-0.2.1-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl
  • Upload date:
  • Size: 17.2 MB
  • Tags: CPython 3.8, manylinux: glibc 2.17+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.6 {"installer":{"name":"uv","version":"0.11.6","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for plotive-0.2.1-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 2767412d6073ab38c6686d12729978eabdd603237816f5f8b1852d07798a440b
MD5 e5958c70c3251869f66cfe1d9947eec4
BLAKE2b-256 89d1ce1f932a463722eb975c4cc9a24b9b1eee352828ee818cb9628ab690b350

See more details on using hashes here.

File details

Details for the file plotive-0.2.1-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

  • Download URL: plotive-0.2.1-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
  • Upload date:
  • Size: 16.3 MB
  • Tags: CPython 3.8, manylinux: glibc 2.17+ ARMv7l
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.6 {"installer":{"name":"uv","version":"0.11.6","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for plotive-0.2.1-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 a70bb8efc23e7b34cf5e89d0bd6f88357998265d4c4dccb72847b28be93da449
MD5 992f842a2213d5dd4f9b4bd8f731dff1
BLAKE2b-256 39e216975ad28234e73ce2dfff13c034496c90219d43194703ef4a7624fa7aef

See more details on using hashes here.

File details

Details for the file plotive-0.2.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

  • Download URL: plotive-0.2.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
  • Upload date:
  • Size: 16.5 MB
  • Tags: CPython 3.8, manylinux: glibc 2.17+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.6 {"installer":{"name":"uv","version":"0.11.6","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for plotive-0.2.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 36b7a2932a17216d54a907faabcdc3147f4b91dcd3c05f4087eb67de28a7687f
MD5 0d0f1cd502cac12fa4b5648243244531
BLAKE2b-256 0bbae1a36fa8cb885beda931704f7c46b0be7ac4122c33d81098700174d3ff47

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