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.3.0.tar.gz (51.2 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.3.0-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl (16.8 MB view details)

Uploaded PyPymusllinux: musl 1.2+ x86-64

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

Uploaded PyPymusllinux: musl 1.2+ i686

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

Uploaded PyPymusllinux: musl 1.2+ ARMv7l

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

Uploaded PyPymusllinux: musl 1.2+ ARM64

plotive-0.3.0-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.3.0-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (16.6 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ s390x

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

Uploaded PyPymanylinux: glibc 2.17+ ppc64le

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

Uploaded PyPymanylinux: glibc 2.17+ i686

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

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

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

Uploaded PyPymanylinux: glibc 2.17+ ARM64

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

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.14tmusllinux: musl 1.2+ i686

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

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.14tmanylinux: glibc 2.17+ s390x

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

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ppc64le

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

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ARMv7l

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

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ARM64

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

Uploaded CPython 3.14Windows ARM64

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

Uploaded CPython 3.14Windows x86-64

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

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.14musllinux: musl 1.2+ i686

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

Uploaded CPython 3.14musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

plotive-0.3.0-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.3.0-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl (16.6 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ s390x

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

Uploaded CPython 3.14manylinux: glibc 2.17+ ppc64le

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

Uploaded CPython 3.14manylinux: glibc 2.17+ i686

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

Uploaded CPython 3.14manylinux: glibc 2.17+ ARMv7l

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

Uploaded CPython 3.14manylinux: glibc 2.17+ ARM64

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

Uploaded CPython 3.14macOS 11.0+ ARM64

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

Uploaded CPython 3.14macOS 10.12+ x86-64

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

Uploaded CPython 3.13tmusllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.13tmusllinux: musl 1.2+ i686

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

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.13tmanylinux: glibc 2.17+ s390x

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

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ppc64le

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

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ARMv7l

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

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ARM64

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

Uploaded CPython 3.13Windows ARM64

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

Uploaded CPython 3.13Windows x86-64

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

Uploaded CPython 3.13Windows x86

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

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.13musllinux: musl 1.2+ i686

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

Uploaded CPython 3.13musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

plotive-0.3.0-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.3.0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl (16.6 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ s390x

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

Uploaded CPython 3.13manylinux: glibc 2.17+ ppc64le

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

Uploaded CPython 3.13manylinux: glibc 2.17+ i686

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

Uploaded CPython 3.13manylinux: glibc 2.17+ ARMv7l

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

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

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

Uploaded CPython 3.13macOS 11.0+ ARM64

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

Uploaded CPython 3.13macOS 10.12+ x86-64

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

Uploaded CPython 3.12Windows ARM64

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

Uploaded CPython 3.12Windows x86-64

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

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.12musllinux: musl 1.2+ i686

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

Uploaded CPython 3.12musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

plotive-0.3.0-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.3.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl (16.6 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ s390x

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

Uploaded CPython 3.12manylinux: glibc 2.17+ ppc64le

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

Uploaded CPython 3.12manylinux: glibc 2.17+ i686

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

Uploaded CPython 3.12manylinux: glibc 2.17+ ARMv7l

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

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

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

Uploaded CPython 3.12macOS 11.0+ ARM64

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

Uploaded CPython 3.12macOS 10.12+ x86-64

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

Uploaded CPython 3.11Windows x86-64

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

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.11musllinux: musl 1.2+ i686

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

Uploaded CPython 3.11musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

plotive-0.3.0-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.3.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl (16.6 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ s390x

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

Uploaded CPython 3.11manylinux: glibc 2.17+ ppc64le

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

Uploaded CPython 3.11manylinux: glibc 2.17+ i686

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

Uploaded CPython 3.11manylinux: glibc 2.17+ ARMv7l

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

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

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

Uploaded CPython 3.11macOS 11.0+ ARM64

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

Uploaded CPython 3.11macOS 10.12+ x86-64

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

Uploaded CPython 3.10Windows x86-64

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

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.10musllinux: musl 1.2+ i686

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

Uploaded CPython 3.10musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

plotive-0.3.0-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.3.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl (16.6 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ s390x

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

Uploaded CPython 3.10manylinux: glibc 2.17+ ppc64le

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

Uploaded CPython 3.10manylinux: glibc 2.17+ i686

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

Uploaded CPython 3.10manylinux: glibc 2.17+ ARMv7l

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

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

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

Uploaded CPython 3.9musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.9musllinux: musl 1.2+ i686

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

Uploaded CPython 3.9musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

plotive-0.3.0-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.3.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl (16.6 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ s390x

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

Uploaded CPython 3.9manylinux: glibc 2.17+ ppc64le

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

Uploaded CPython 3.9manylinux: glibc 2.17+ i686

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

Uploaded CPython 3.9manylinux: glibc 2.17+ ARMv7l

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

Uploaded CPython 3.9manylinux: glibc 2.17+ ARM64

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

Uploaded CPython 3.8musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.8musllinux: musl 1.2+ i686

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

Uploaded CPython 3.8musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.8musllinux: musl 1.2+ ARM64

plotive-0.3.0-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.3.0-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl (16.6 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ s390x

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

Uploaded CPython 3.8manylinux: glibc 2.17+ ppc64le

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

Uploaded CPython 3.8manylinux: glibc 2.17+ i686

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

Uploaded CPython 3.8manylinux: glibc 2.17+ ARMv7l

plotive-0.3.0-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.3.0.tar.gz.

File metadata

  • Download URL: plotive-0.3.0.tar.gz
  • Upload date:
  • Size: 51.2 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.3.0.tar.gz
Algorithm Hash digest
SHA256 2140aa33dc2dde65a567fc706a50ca1c5cc88e44ab22a114161e67b4eca11ca3
MD5 635b6f74457a7d30b190ea9ff1ddc78e
BLAKE2b-256 5b78a740e77f85b05c8766b27848637291186684e7de835897e5415dfb6623f1

See more details on using hashes here.

File details

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

File metadata

  • Download URL: plotive-0.3.0-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.3.0-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 ae76645f17d609afa6b837c17ab51907c5cb2a7d073d0dc5007c070168402282
MD5 f416432b4505f447e76835959587684d
BLAKE2b-256 a1e0cf5623fcdbd88011a9108775553e6a1c87a4cf425ee157389f5451187bc7

See more details on using hashes here.

File details

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

File metadata

  • Download URL: plotive-0.3.0-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.3.0-pp311-pypy311_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 eb45ea62d6e9ae37a1b49976b92c955c049f85098d2fb1b38c9b93042113d1c3
MD5 daf9c4dae1cdb618938d24d70f5fda6a
BLAKE2b-256 b607711ebe8d3db591cefd57158a8badf70debec3a72ff611d36b99c524ec973

See more details on using hashes here.

File details

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

File metadata

  • Download URL: plotive-0.3.0-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.3.0-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 7909e21149bf0e6f608263c192bc47a5ccf54a6ae91b05659c530b44d6af4b88
MD5 e5ebf80c029d83dfcdde6402c1b53fae
BLAKE2b-256 31fd9a2da40a8e8017e93c6c3d758e3f10006f5d5e3116b8de9bff2620dba87b

See more details on using hashes here.

File details

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

File metadata

  • Download URL: plotive-0.3.0-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.3.0-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 ade1eeba0c00ab6bf32c92a53651acb00e82dbdfdb00f0e8cf0eb4f88400a46e
MD5 eaf916bb8e5704ebdfdfdbc6312e7c1e
BLAKE2b-256 27359a0312787d964859b9da453e516b8b0a3aeb4bb787ff2d84e8eb52bef4c1

See more details on using hashes here.

File details

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

File metadata

  • Download URL: plotive-0.3.0-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.3.0-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 6c54f620af566454abb0759f90dcb11a0ce023b1544541283a3fd7d2aa681b5c
MD5 2f8229f2f32d619508e358cfeee416f9
BLAKE2b-256 7f00313a0a6f1f765fb7adf50bd692ef08b179f371a0efedb1f62b1e13e0ed48

See more details on using hashes here.

File details

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

File metadata

  • Download URL: plotive-0.3.0-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.3.0-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 4a81aecd2db8fab2c24a8f2d1894500f4321f2c8111945a65aac69a7f36f4cf6
MD5 e3e7eded3bb35c2618459c0bdf6b1e69
BLAKE2b-256 daf8c7dc4ccf24e5a6bd0b8fac0de772e4a2cac2fbb8fb999c6199dc527ab33c

See more details on using hashes here.

File details

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

File metadata

  • Download URL: plotive-0.3.0-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.3.0-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 f7933a06854430e455c30d216e4ed44923a5ee4ef65d8b20670f5f6bb840fe07
MD5 bb0aaf52445b51f4d18c5b1fea9a16f4
BLAKE2b-256 9a40778c78d455c97df5cbbc8f283919f8aa09c1264afbec3e7a6f53801a156c

See more details on using hashes here.

File details

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

File metadata

  • Download URL: plotive-0.3.0-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.3.0-pp311-pypy311_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 efdeb987a75c9dc4d424bbad511bbcd78aaffe029e0955d79b79a2a59c16d154
MD5 1b6ad14a957e3753e52bedec7b6da54d
BLAKE2b-256 2e6944186b34bb40d12dd97f1cc4d2648a25f017fd86fdb18ac06a96ee82f9e4

See more details on using hashes here.

File details

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

File metadata

  • Download URL: plotive-0.3.0-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.3.0-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 f59091efe4b5d9cf0b9798f3b0b8762e9d6e58fdff361bfe5268c73a7e582b2a
MD5 a5b5c6d9d0abb0bf0dc585095dd58904
BLAKE2b-256 c6fee3977323eb3423ca84d142b9e527737c9c5ad1a891a8f348d9c7004ca28e

See more details on using hashes here.

File details

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

File metadata

  • Download URL: plotive-0.3.0-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.3.0-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 7ddd413328507c1bb59d4671b2916b0db79b6ef9cb06104f484c6909de7fc286
MD5 81b0c39e21a3888c5d90d29bf786ccca
BLAKE2b-256 340e932e3e0b802c8fb565b6e9fcecfd23deaa95fba93eb4196c4f88334401ea

See more details on using hashes here.

File details

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

File metadata

  • Download URL: plotive-0.3.0-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.3.0-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 15183573625422f9c1bc85f4d77cb0e113227ca66e9abc573e95cc3c95994eac
MD5 f4c0840b75487669c7547d46569f905c
BLAKE2b-256 ac3fd45346c66a6a2f4654d3a3c09fbaa598083f6fde49894e8e2b16d3cfded2

See more details on using hashes here.

File details

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

File metadata

  • Download URL: plotive-0.3.0-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.3.0-cp314-cp314t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 f7c55f9bc982115eb0b2d3207fd33058f9dd2e66b241d72bbe85009e34b878c6
MD5 f15e4e5d54959a48fddf57d10f375980
BLAKE2b-256 a86d2161e808239a600cbcce0069f6bc930da511583e15a77ab4fe22158f5ce0

See more details on using hashes here.

File details

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

File metadata

  • Download URL: plotive-0.3.0-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.3.0-cp314-cp314t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 366e87edf8fcc7e65475f342143c10e4b3dc12491e5d9aba7ca2f31fd6167836
MD5 134b6f069ff5582dde1cfdfdaab334d3
BLAKE2b-256 607d9bff8abc5ba5593ae1761bcfae0b3eed2a980839d570de1e3213f94414d4

See more details on using hashes here.

File details

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

File metadata

  • Download URL: plotive-0.3.0-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.3.0-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 d3342c2f2176895f8869532c7f75895d598ce7e1f03b8ca8a7c1172f0ec27167
MD5 02577389a6b27bd12257ce2d106920fe
BLAKE2b-256 5e12deb1255d347ff540fa341f050c7a8d85cfde6a66300bb2fba38054ef1652

See more details on using hashes here.

File details

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

File metadata

  • Download URL: plotive-0.3.0-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.3.0-cp314-cp314t-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 9fb50c8c41263824061d12e8a091f374ddb14eb12f7d4a7962cb157b28134ff7
MD5 e30c0fcbbc5b6e2126aba5d1fd00f30e
BLAKE2b-256 bf3092352002a37e5f4f2dff9bff7fa169050e9f6185d7a2281fefdaf1892432

See more details on using hashes here.

File details

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

File metadata

  • Download URL: plotive-0.3.0-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.3.0-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 db726dc53f2332b9de3fe277b8f5d20a033345dc2a7e555fef49e9568b7fcde0
MD5 dc1e107ea21071250410d9dd2ac45e16
BLAKE2b-256 ef60182477f43062dfde463ba1b9861144f2924fa25a4280c542e0bc41cfabdb

See more details on using hashes here.

File details

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

File metadata

  • Download URL: plotive-0.3.0-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.3.0-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 9c20be36631140ea9f597cb3aa83c09c9251bba56d89b7bd7a510e7c36c40218
MD5 6d5b50b9a851cda0a483f0eb23f3ada7
BLAKE2b-256 f3ea261e85027862f0ad4eb9684bf1f2a437a24f218ca8875ae4ac030772ad15

See more details on using hashes here.

File details

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

File metadata

  • Download URL: plotive-0.3.0-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.3.0-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 073a47b02e146742a3cf2810f527f56a7a8a408d9253eb4d4e3af1c669ddf1e3
MD5 f94fb129e78257c09a199ffce5d333c5
BLAKE2b-256 4e7ba0f505b90f8a55fc0c3d19be44fdc63ac295c958828bb7ee83cc30cc64e8

See more details on using hashes here.

File details

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

File metadata

  • Download URL: plotive-0.3.0-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.3.0-cp314-cp314-win_arm64.whl
Algorithm Hash digest
SHA256 0fcd1cc2754b2a623ef00d36f254a08ba8ec47afe9ef95de6c0c157f51d8ba0e
MD5 613e287c29b12af0a9229da158b6510a
BLAKE2b-256 8fa8e02c8aa189cedc3ce91334f89d46a080a1773c8a365f3b23480c823f3d6b

See more details on using hashes here.

File details

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

File metadata

  • Download URL: plotive-0.3.0-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.3.0-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 7c92d99f5d5c6b0b6959e56f21dac224ea9959f52e6b70ae9cd411d11ed5c819
MD5 08d27f9b832d886cebf4298a3c09e568
BLAKE2b-256 6648bb52c92e28350b8a42cda678ce8696018db690756226c577cefc8ba3b4a2

See more details on using hashes here.

File details

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

File metadata

  • Download URL: plotive-0.3.0-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.3.0-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 56cb1bf8552ce8b8166cfeca8fde8e590806080cc773be476478e2b1b928d4e7
MD5 9a5a651896d0fc964037b97061ebfa58
BLAKE2b-256 9fde790452079b5aacad41552606d4cf3524ba243e33f04c02fd0228d39f4980

See more details on using hashes here.

File details

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

File metadata

  • Download URL: plotive-0.3.0-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.3.0-cp314-cp314-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 1b6f9c4f5aa59468b814f01789157dce2209fa457a0e391dadf0d54e540ed018
MD5 f2731bce1bb911914804d996aa72565d
BLAKE2b-256 1162eb3ba522e882920ab842cb3869d24e37362320e72d833c6cd423a3241f18

See more details on using hashes here.

File details

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

File metadata

  • Download URL: plotive-0.3.0-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.3.0-cp314-cp314-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 c4c8070e1e2f9c20db8b514a2af4bd2259ab6ac38c83b0ca7f8f4d15b0bf617a
MD5 0da5a03691cd0c548479df0e014bfad0
BLAKE2b-256 1c7d1ba21b76edc47bd5ebbf0a912da9c051224d8d7e62eb5f3a5639b1a55153

See more details on using hashes here.

File details

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

File metadata

  • Download URL: plotive-0.3.0-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.3.0-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 3fcb3b6457a62186e2b6e1209bff7f1de7c7a66ff096225dadf4f516a0bb6023
MD5 a516d7f3772f9e2d7fc3d554060ec8ce
BLAKE2b-256 b440573df7f6afdf502a3dd755cade1ec25177c9bff15ba519e005f3b606d5e3

See more details on using hashes here.

File details

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

File metadata

  • Download URL: plotive-0.3.0-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.3.0-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 b7d6f50bb5c73f324d3e37bf60c57cc0584a67b8102151bef2bd90ec61bcfcb6
MD5 1d6556767755a7e729e4243efa5c6bb2
BLAKE2b-256 3bb8e36eb602c1f465f7fa416f59442a9df7b93b9dcfa16ec69b2aac2c5cd710

See more details on using hashes here.

File details

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

File metadata

  • Download URL: plotive-0.3.0-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.3.0-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 dd9d35047bf3fa9bc5d89575a2db04adba714fa7fbab4aaef7ae49444440338e
MD5 3239188ecfe4d5178c24b96b5cbb11ec
BLAKE2b-256 bcfcaeb9c6fae44229374c3cc5fe0703cf46882bf806851e133e1883d96f6570

See more details on using hashes here.

File details

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

File metadata

  • Download URL: plotive-0.3.0-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.3.0-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 bd96866cabb992e8986d810172cbd0bdb9454eee47bc4ab833fe5bd5780e29a4
MD5 ec51c58d680faef78e2afe2495f686b7
BLAKE2b-256 f914b41507321329d401a3c3a85e5d9b28930a5c2e62b5216b17412987225e45

See more details on using hashes here.

File details

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

File metadata

  • Download URL: plotive-0.3.0-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.3.0-cp314-cp314-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 14f5edb94d7402665009392dea3ed8604048f09a1bd70e5a6d5ae5bed6fd9ac0
MD5 90d6471f7fbf659ca1f6cb7b6266dd74
BLAKE2b-256 0f4f9ecd5e1d2b107c68ce04fadd6d91009668d6ca8d42129f069dceb380207c

See more details on using hashes here.

File details

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

File metadata

  • Download URL: plotive-0.3.0-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.3.0-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 7e299c7664a3b67490ad8d694f5f26f952da1b62175eb004e22da767a11ba5c9
MD5 d97f998b1fdfaab0626724d888f572e7
BLAKE2b-256 eabeef1f5c299c3faf4c2b978db65243c1712c03853f15701bb7eb502d1acdd9

See more details on using hashes here.

File details

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

File metadata

  • Download URL: plotive-0.3.0-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.3.0-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 9a21ee111306fbb9586be5cf5c9b2e3d22fc487b2d591522e3ac1de81e68535d
MD5 1eb98d09eccbd3a53724edfe093bba78
BLAKE2b-256 058e5e5c6d3cb7ed28d8fdf30e5469c8b638129019295f46e6598e6e7b41200b

See more details on using hashes here.

File details

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

File metadata

  • Download URL: plotive-0.3.0-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.3.0-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 9b2c4612600788d8bdc4f135f1bf617dd2fa9f707aa6f2243d8f1c26a22b0e5c
MD5 26d173e7e41ac992fc1c602705480113
BLAKE2b-256 b69c81c36993607f8f4195cae042a4095b73732436bcd8796ff26dc8f7d5a014

See more details on using hashes here.

File details

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

File metadata

  • Download URL: plotive-0.3.0-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.3.0-cp314-cp314-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 613dbfc308f6fd835fc8494648729c6aa45f7cf6da79ec8de138a9a8312058f4
MD5 e3b17e0ea0b453d87a73f0bd3122771f
BLAKE2b-256 06cc91b2ffcc7e390173f1ddf53a4a74ea70a3e5ec8417d65b5b8f5395f20751

See more details on using hashes here.

File details

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

File metadata

  • Download URL: plotive-0.3.0-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.3.0-cp313-cp313t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 8a35a8647b4d08ff0e8d82312c5fac42cc90b5bd86f66f8bbecba3f3a3d0ba10
MD5 fd5d3d8c0144c8bfea95d9ce8d2e6c49
BLAKE2b-256 221658dcf212990587630710f07a7e39f48fcfc0c295f4cd5ccf11add7be2f63

See more details on using hashes here.

File details

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

File metadata

  • Download URL: plotive-0.3.0-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.3.0-cp313-cp313t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 30770c93b60e6152e1eecca6039ee3a006bf99b3d06428e59c9c51f95bbc88ed
MD5 42a37f80a92a871af45073dc55d41dae
BLAKE2b-256 d1bb40b6cb9a67293a3bd498bae99ff23df85f8e3bd9471964c322dbd8953611

See more details on using hashes here.

File details

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

File metadata

  • Download URL: plotive-0.3.0-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.3.0-cp313-cp313t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 0f080b292f09a5ac602fbe9baefd2d7a65fc72f39456b2a06cb7f94f0d019ed8
MD5 545e75a8ccb2830a5bbd1e371c04f408
BLAKE2b-256 603ae3006fe9ec462343e2df2eba5d465c39358728350dd886bb2351326b9db6

See more details on using hashes here.

File details

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

File metadata

  • Download URL: plotive-0.3.0-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.3.0-cp313-cp313t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 5cba841b16ce2ef45a6eedd7d42a849c7058ebd6bbc07c32c9e3a6be9ef39265
MD5 4134f960475a4344e9f000f6e170ada7
BLAKE2b-256 01f8067a85d894aaae32d8f87c1a97aa0cc12a894258c13584e056fc7959ec46

See more details on using hashes here.

File details

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

File metadata

  • Download URL: plotive-0.3.0-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.3.0-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 3f2812c690b84006ed7cfe211ff31cefb3a190b8260950bccff77427ee31934d
MD5 71ddb0b7b7268c639e1a06ad309e178a
BLAKE2b-256 589bd01c2ede6089b07be854e19413cf85cad70b430c3825836edfb6120227db

See more details on using hashes here.

File details

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

File metadata

  • Download URL: plotive-0.3.0-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.3.0-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 b925a044a38484ec8758101491cc960a8642670cac8471f1ce846b398870bc23
MD5 18f625d81d790d31b98bb5c2c30cf11a
BLAKE2b-256 d29f279e2b4adaf11293dd3440fdce823f5f4c57e7a937125cab899d438a562b

See more details on using hashes here.

File details

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

File metadata

  • Download URL: plotive-0.3.0-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.3.0-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 f604b80e7ffe189822f4db1a0a195ffdf5c32594b4da4ca1b3c792c6103b8749
MD5 1b385b38b1fb61cbc5d047939170c148
BLAKE2b-256 d67b1b66e7ba1b789d42c8c023b87d11e52e784b97192dd2b251bd1df2b40494

See more details on using hashes here.

File details

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

File metadata

  • Download URL: plotive-0.3.0-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.3.0-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 ddb16b084a9bf1a6d80045a060db3a65946e8ffc8d0d628c95860f60ac475404
MD5 34c409460edbb59aea325202e18e80b1
BLAKE2b-256 850c5f8be8aee029e701e844bf4920fd11a1b99717f3149172ae9aef4466ca66

See more details on using hashes here.

File details

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

File metadata

  • Download URL: plotive-0.3.0-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.3.0-cp313-cp313-win_arm64.whl
Algorithm Hash digest
SHA256 a906813fe674cacda41d11ae00ee4371bf8ddaecb044461be4c0f0ce1cf3dfa6
MD5 21d510a17d2f26dd60c6192f9fda3aeb
BLAKE2b-256 52291fbd2d4072684599b2a50bdd8e9e8857355c09ac0502f0bcdd583584d349

See more details on using hashes here.

File details

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

File metadata

  • Download URL: plotive-0.3.0-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.3.0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 a9a7d3640aa783a70d9c480a7d5819c6f07feba700929a5769ef8b49fb590469
MD5 a66a0508425e517ccf0fe659079ed495
BLAKE2b-256 f99ab2897a95a529a774f57b0a7f79a9ee5f6bf5d3f0b290ae929794f31ff996

See more details on using hashes here.

File details

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

File metadata

  • Download URL: plotive-0.3.0-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.3.0-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 e474f393ad858cc6f5356b1010d0d661057822ddfcf4bb99005bbe529b3c9d82
MD5 4b0181b66b23cd2633651ce8db676dec
BLAKE2b-256 df7dd8e908de9f50f30f9b751650710accbca2bc373e3d431aec8205a9cc7df0

See more details on using hashes here.

File details

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

File metadata

  • Download URL: plotive-0.3.0-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.3.0-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 aabb25d8c9ab6d7d76a8f26a12b8fc8dfd2875938b326ae4095b171de432730d
MD5 4572f2e0ad17529906d05d481865c797
BLAKE2b-256 7887f66e7bf8cbb2d9716ffd92cd26f4576148d5e18849f4a338cd7f1457e623

See more details on using hashes here.

File details

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

File metadata

  • Download URL: plotive-0.3.0-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.3.0-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 bae3afc4ea66e137fe8d35d84e32fd313991bd9319855d368bef829489ae5df0
MD5 b949905162c07967b4cb291ec4c7da63
BLAKE2b-256 e19e0ce7d2664ba8821a9257dc7ab2605f65b9eb760189d8bf3e8262a11759d3

See more details on using hashes here.

File details

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

File metadata

  • Download URL: plotive-0.3.0-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.3.0-cp313-cp313-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 a301893965bc4abaa48ddac86a808f91f96c18b490086f2ab792d5c8bb10be85
MD5 46f09ce801cc0868b7cf98d93826463d
BLAKE2b-256 d82ccc04dd33e7d058060a0139e437e4631caf9a583f717cb8220a57778d52c1

See more details on using hashes here.

File details

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

File metadata

  • Download URL: plotive-0.3.0-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.3.0-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 e8248601a0d88721f945cff953bb8befa426a245d6c0df7885f0a3b56e502afa
MD5 2ae83e2aba0ef1f5052d5af199c0c2c7
BLAKE2b-256 4194d5f1b8fa514bdec9f1a5f50755a17d26a14956dfe9d0869a19894cd37c81

See more details on using hashes here.

File details

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

File metadata

  • Download URL: plotive-0.3.0-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.3.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 ba03c104ae1d694fb67239015789bc4f103d0cc0b7812ef3811303088dae91b5
MD5 675f2d8d49e183587dca017c8d174d70
BLAKE2b-256 3935cb68d48c01eeb2ff12176a192bd318de23dc7849fb2fb76c181411f01789

See more details on using hashes here.

File details

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

File metadata

  • Download URL: plotive-0.3.0-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.3.0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 56131531e45149d1b9d0e9cce44c42ef04ec14c195619f876c3681401d2df3fb
MD5 cb16bf799aa53fae3d3d0b0f0234c44f
BLAKE2b-256 c792baa1913f07db1cf0197daf3d94aa9dfc897c802adb7eb325e2b19fabbfce

See more details on using hashes here.

File details

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

File metadata

  • Download URL: plotive-0.3.0-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.3.0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 775a542040d886e1271b81f11106b630e059173e678863b2b8f0bab2dd0b1534
MD5 8c84bd78abf38c84d4cbb7c80e99ea97
BLAKE2b-256 d981e7ef3a6ce84a44aacfac77a2d440f521e4ea1f749206a206bb3d09d34297

See more details on using hashes here.

File details

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

File metadata

  • Download URL: plotive-0.3.0-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.3.0-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 8341d4b6e4a5f3c55135d36177c0b8c33e6146749d61e61e65e9cf9990e2be1c
MD5 5b3f5edabe97811b6b2a0f749603d94b
BLAKE2b-256 9830190f457ca7bb7f50682ffbe553cd050385baf9dc9ff7668e2733ca51382c

See more details on using hashes here.

File details

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

File metadata

  • Download URL: plotive-0.3.0-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.3.0-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 4cc2a8dce30f02f1b8f8af0497481902ad59f3762da834bca2e1c2872cb9acd9
MD5 2661b5524f05fbd9e53a7fb77c1c7c0e
BLAKE2b-256 1da8d7c58b87b1e06455ab664565b389f690bf3a149ce3a3373db19102939f74

See more details on using hashes here.

File details

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

File metadata

  • Download URL: plotive-0.3.0-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.3.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 e2468578461077815916dcd1fbccd8a2c7ee1484eed6b1fabf9c6cac6572147b
MD5 b1e63df941016f2e2d331097f9961e55
BLAKE2b-256 c978093d428b2eb9cce49c8f75dcbc76fa8251cc5108d3c93af2cc46c7c32c36

See more details on using hashes here.

File details

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

File metadata

  • Download URL: plotive-0.3.0-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.3.0-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 a5bdc8fe6a4c993d7bc1bc4338b15a7715944a2f4933cfc264a5b816119f5d16
MD5 9e1f117c5603ac8f3c4519fa608f873a
BLAKE2b-256 5a299930a10e6a472e4c2816dbde76ea10f5e84fecd843ca31cd1bce7491d52d

See more details on using hashes here.

File details

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

File metadata

  • Download URL: plotive-0.3.0-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.3.0-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 104c18363966e6270ec9e78abd1701fd4f309d988c9bb6fbf8b2ba3e4a1718d1
MD5 ddefb9c33e36d4f3d7c8b28e93d645b2
BLAKE2b-256 b20f49236c04f939c2af2378674fe1428ffd0f37dd4daf7ab39305ab9066bc2d

See more details on using hashes here.

File details

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

File metadata

  • Download URL: plotive-0.3.0-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.3.0-cp312-cp312-win_arm64.whl
Algorithm Hash digest
SHA256 01098b8f936a97fe489cc0ff566bf727674f03baeefdaf9707c7c2ee7286328d
MD5 ce0170c572afe3882d23721df9b43f25
BLAKE2b-256 a46be56c4825dabc6549122bdd757cf6cae4e2d5628d4652bdc843b883ec6ca8

See more details on using hashes here.

File details

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

File metadata

  • Download URL: plotive-0.3.0-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.3.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 ddd5af7b0c7babde8e844b85f1d2d0fbff251272eadeca9c1437574da1c1285f
MD5 c74476b5f555050d166896bf60ef491d
BLAKE2b-256 61516a78ed8c4ab8420951feb650ba7c102971ade9def1dce061415b6d426022

See more details on using hashes here.

File details

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

File metadata

  • Download URL: plotive-0.3.0-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.3.0-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 e7470ef45c5b72b87beb3d72040d1e39325cb50b854ae8059dd28fe472e60951
MD5 373695bbb794214dca43b3e728745892
BLAKE2b-256 fa57e6dc8c32db898f476b15fa94cfe4e0ea6da2ddac17e7e42970724261cded

See more details on using hashes here.

File details

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

File metadata

  • Download URL: plotive-0.3.0-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.3.0-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 9ec734dca4efc650754c339983bd14fa5423874da8cb075301d61cdba02b4541
MD5 fa7547e89a59677d1bdd18084b7c926a
BLAKE2b-256 7c2a48219dfa77602cbfe2c998a706a6752f8744fbd4f56f937594247fc99fbf

See more details on using hashes here.

File details

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

File metadata

  • Download URL: plotive-0.3.0-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.3.0-cp312-cp312-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 a029812a9cd820aace659a779b1d55b1d0a96f756edce8a530fae6959f0e1927
MD5 b76a00bd86a60d7bcf6ba893695e62d6
BLAKE2b-256 65a7d71fe97844421aa948e4c946d77cf754f9a64cc44f7b6301d621a85a9282

See more details on using hashes here.

File details

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

File metadata

  • Download URL: plotive-0.3.0-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.3.0-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 4e89ea80362fb11102b3f86a7cd0b182deb261ca0db8db9b340ea950c7a40c70
MD5 d62316aaf51b0b0b645d261d80c80101
BLAKE2b-256 3822ef2dd80ad27567b09ed25a978d0cc34dd85ea8a04379e7e62db4873145db

See more details on using hashes here.

File details

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

File metadata

  • Download URL: plotive-0.3.0-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.3.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 9105397d118fcea2586857f0768e3494908497d70d948a812535e55bc7aec425
MD5 71d323fe38b30095ebb9d9ae6b9dcd08
BLAKE2b-256 3138add19f7d4ecbc2dfb118fdd5951da2ecfc2d10bbc2b670a53f0cad69eea7

See more details on using hashes here.

File details

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

File metadata

  • Download URL: plotive-0.3.0-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.3.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 7abfdfd1f9f06db89d3221267ec545ab5a3ae5be111087b28cf56886ee4dcbae
MD5 1770c0a6f66c8472c84091a150278495
BLAKE2b-256 aa76b7c6b9ea2ad154b388c071c9f3ebe45a84f5eb5a70bc9a7991bcab7b9e26

See more details on using hashes here.

File details

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

File metadata

  • Download URL: plotive-0.3.0-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.3.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 b8251bd58c68e51e3a8cd4b11dc2d27d8483c1e5129f0cb3d36c1b3c9f619425
MD5 a67d66ebdf35d68e6902f7ed75188273
BLAKE2b-256 b6549630c619114ac6635919f6d6d1b556dbd3dea668378ed4e65e0e211dfed3

See more details on using hashes here.

File details

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

File metadata

  • Download URL: plotive-0.3.0-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.3.0-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 782f1e1fb38fd7e592f62b051d3cd492234db323959d55848b0dfb2296f4af8b
MD5 e0344b108eddcb975a81cc58ca1ef54e
BLAKE2b-256 3a811190724e11f42c670ff77a9e9a1208935ff4f4e7939685300fda28ba7c11

See more details on using hashes here.

File details

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

File metadata

  • Download URL: plotive-0.3.0-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.3.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 343acb501e494a6a67402b0f2ba11f377887772bccb1aa56bb8f84a3ad2bd766
MD5 4850d04ee81ea8f637b6e2cc00446415
BLAKE2b-256 6f2e9079bd02b60bf905ca73aecd64812d8aa9176a1d6dd00736d4113e33cc7f

See more details on using hashes here.

File details

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

File metadata

  • Download URL: plotive-0.3.0-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.3.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 5411dea9cd0793d9cefa729626f4db8966f5c5b73d92143966cad1ee5e8bc892
MD5 e19cfb4adb75dd38d2a88f8611cdc2bb
BLAKE2b-256 fedda182019c7825d5915caf8e61db3411d024e4a0a7e12d070341a42e8a519a

See more details on using hashes here.

File details

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

File metadata

  • Download URL: plotive-0.3.0-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.3.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 2b78d57a281ace8de04bc86abec4cca48dc78b246d0db3c75722732ac28627c9
MD5 2e0d623bd8cc314b9f3841a1f62d1678
BLAKE2b-256 16bdd91e6683b1e5a23fc3b08e807f7119c4c0ea8ff818fca6ea7641282132a7

See more details on using hashes here.

File details

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

File metadata

  • Download URL: plotive-0.3.0-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.3.0-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 2a2e65764ec5a96101130169dd8e4eebf65350b3ea1160e9c2c7a7ef69d7fbd7
MD5 d108a67bf6a0af99840c9c396f98fadc
BLAKE2b-256 dc4e4b3bcb64ab1714157609d6ae8e007bf0b4986bd7cb4c6b7a254d25403730

See more details on using hashes here.

File details

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

File metadata

  • Download URL: plotive-0.3.0-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.3.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 3cdda6297e2d88abfbd7136610dc1236310b3639207f2fbfeba7b84a43366e88
MD5 fc6f2938c936ff2e959a8901838a10fc
BLAKE2b-256 8370df2a761ceaebf7791add2c55701a359c8d138a8861ab67b8bfa7bb975d78

See more details on using hashes here.

File details

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

File metadata

  • Download URL: plotive-0.3.0-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.3.0-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 8dd4c6b3acecba008eb429ff037bd428df493e56584225c3932f779ff7931515
MD5 f22cac3c15cb1c29150ff5fe6dd2c426
BLAKE2b-256 4c52f63a19df32470af6d00273e1304fe8cca20f972f070d2d953f487c9ef225

See more details on using hashes here.

File details

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

File metadata

  • Download URL: plotive-0.3.0-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.3.0-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 f0a8d43aa661677e8c1d399b55fd808d93ee08c0477215b3a91a07802702f004
MD5 f2b7d005e48ca52b80d00f91de14159c
BLAKE2b-256 b1d6ebb1f2a44f2fc9b11e6cac7b2c273b9c37a2e30fb9bed22461f85c51f6ff

See more details on using hashes here.

File details

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

File metadata

  • Download URL: plotive-0.3.0-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.3.0-cp311-cp311-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 7b1e2fd207c9d8dfc1a4b4cd2f80dd06ccd97c1ef34848553b0c39117908a069
MD5 71f685fba778ac3a996185b537b21d09
BLAKE2b-256 32db8fc9586c9b6e66540af5831fc7f90acd7cb20a33d460738023cd471c555c

See more details on using hashes here.

File details

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

File metadata

  • Download URL: plotive-0.3.0-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.3.0-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 503407aaa564adee681fe728beef2836a6d366fe4ec012ada722cdadd23c7cf0
MD5 05d39b012ac71c02b533cf5a3a5c2aba
BLAKE2b-256 9326b75bfede9e2b966f2e58e67600c8b8ecd2d9707a27b362b538b1dc2eca68

See more details on using hashes here.

File details

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

File metadata

  • Download URL: plotive-0.3.0-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.3.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 eb825ba08fa69248a0b573878e6dd98451a3256d79742d7cc13b77e3f0f32961
MD5 e4e3baf3d0c01e4ad03efab9e27deb52
BLAKE2b-256 00f8dd6af77f1e56b7dd6ae68eecff99701a625b2cc2b5badfdb08273c55703c

See more details on using hashes here.

File details

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

File metadata

  • Download URL: plotive-0.3.0-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.3.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 42b95e955c52a8153e3324166966bd527050d35b8911a67391ec328fd72c45ed
MD5 87bdc8029a77b90e2d1aee9db35e26f1
BLAKE2b-256 67c20c74d365a0cfefc26019b7f5753e8ecadfbe3dd52e43e76e9609389a780e

See more details on using hashes here.

File details

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

File metadata

  • Download URL: plotive-0.3.0-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.3.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 12fec48d2e1b561a61e17b45e39497a9c86bc44071709e1d209343e0d4bb9681
MD5 d65287419b38127a9566c1b9cb8be617
BLAKE2b-256 745acfd83834f83a1fd6b2b861dfc91202bc9a3d79206f7935d7e304fc8ef8c6

See more details on using hashes here.

File details

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

File metadata

  • Download URL: plotive-0.3.0-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.3.0-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 224e89adaf1bceb12f30d76de41ef944d822b319853f73335e858112c36440bc
MD5 7a13f3b1ae74bcbc656553733351f8e3
BLAKE2b-256 3ba00953b03ff3424d82f375e2c4e67b9cf0f5f63fb6248cfc72ad18a5c2d418

See more details on using hashes here.

File details

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

File metadata

  • Download URL: plotive-0.3.0-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.3.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 a466ef1d89dc3fe59cc6500bfaaccc4f50726f269df964eb3fe9ad6c51fbd418
MD5 81e90ff4a372c1c011ce0928969ce38f
BLAKE2b-256 c627cb38ee724782eb3c0091b250f1d5c82536169b051af83fb9cf8909266f83

See more details on using hashes here.

File details

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

File metadata

  • Download URL: plotive-0.3.0-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.3.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 ac5b492a5dc36a2d7773d54b24a2cab642c0022f8725c1971cbe30ad6e7e1cf4
MD5 990178d31df5aebdb82bb52bbb21415e
BLAKE2b-256 a16ca373c95f081708b37dbf6ed1af3a2657d746af12644a149453f5fdc60c99

See more details on using hashes here.

File details

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

File metadata

  • Download URL: plotive-0.3.0-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.3.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 ef7df59695fd7bb21fef8e3b574811f17352086a5b2844cb38f6961c272c7706
MD5 1766d73c3d34365a31f88b1c3e3dc277
BLAKE2b-256 65c58c2720c96941735b6cb009933db484777c53166c6f45fdd23adeca059d02

See more details on using hashes here.

File details

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

File metadata

  • Download URL: plotive-0.3.0-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.3.0-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 6b44287849ba0bbd40270ee279c5d14619bc47220e23406e8e15985ef7a2f3f8
MD5 0f9621c8980e7c99fd853e5a29a222f9
BLAKE2b-256 ac1d351958bd2cd3443a5a669dac26de586c4e0c4f9f55bb8dc26242e5e5bd59

See more details on using hashes here.

File details

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

File metadata

  • Download URL: plotive-0.3.0-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.3.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 20e51eb86d2c4444a7365a89e3e025f941b806affd0ae834ea08103da2cbe5b9
MD5 c049db39f8d67f5661939344827a0937
BLAKE2b-256 b949cb2c9bf14d92994563446b2682aac74daf79ebd4301bf1cd2f2f52b4bf5c

See more details on using hashes here.

File details

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

File metadata

  • Download URL: plotive-0.3.0-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.3.0-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 5984709ed6e09fc9215b63b323bd4f83a70dcf63dea6adebb674283ddc3cde47
MD5 9d32928019ced5c3f013ee7a46a69eef
BLAKE2b-256 7fbf865a56ea2f93703e777566ef03c1b78ec195c6f4f63d473521d22ca11b08

See more details on using hashes here.

File details

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

File metadata

  • Download URL: plotive-0.3.0-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.3.0-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 f4f4be67d9406efa92780b93fcb80b281774739be9e76f6355da7d33d773ca29
MD5 da61bf84d1d68c4e34eb151765242f2c
BLAKE2b-256 570193d6dee8a8bdf95e3fe88d49f5faba49b81388708608ac5800e12eeae8c9

See more details on using hashes here.

File details

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

File metadata

  • Download URL: plotive-0.3.0-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.3.0-cp310-cp310-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 c06d7fae15745a9589289cfbf42e0b591b76845f6e58a60b593e8b2dc84a6df0
MD5 4c51eeb868a2f764945239d7205bcbeb
BLAKE2b-256 79968eafee7464dfcae8a407e39763aa15b4c75d6866f47c6c530779f59572ca

See more details on using hashes here.

File details

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

File metadata

  • Download URL: plotive-0.3.0-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.3.0-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 afa7cfc27d51f4ca6f46cfbd12fb90ed68f5f029a11fcc2eebd3d6cdb7e3c277
MD5 2c75c250fc5f21686d4ddf1a0454359b
BLAKE2b-256 4da9c7c69a9c88b1fbc3dbbb6b7a1c8a4ea9d02c826ef4dc6725c874cefed82d

See more details on using hashes here.

File details

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

File metadata

  • Download URL: plotive-0.3.0-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.3.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 b81e538bbe3c1bee3192bfd0100377f243a5c34ea5a103aea12e0c1aeb2f7330
MD5 436d642948da6b90002f4834acc30d23
BLAKE2b-256 f1cb703d83e4c2dc8a40e9f53f3a738b8396fb54b6cf04ab791133c3f6f481fa

See more details on using hashes here.

File details

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

File metadata

  • Download URL: plotive-0.3.0-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.3.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 7f040e641029fafe50f2bb84abbc33702d70e2a354113aa1915532b1319bd535
MD5 6daea33e8e3bb734d17e964cf9f765bc
BLAKE2b-256 67990bd758bf81e40fba518840949e4fab2afb31dd909d14f7d96c8f1d1b98bb

See more details on using hashes here.

File details

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

File metadata

  • Download URL: plotive-0.3.0-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.3.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 8056fc4bf473dc1c4aa64af96e70097e67eed9a8fcae39d1ce4ccdde6c3f5482
MD5 15c37411b917be26e6f8c8d6943e1ab6
BLAKE2b-256 238bd627ed1e4553cbfd54f9a870e4982dedaf1c84af24e8b61b153028f1dd46

See more details on using hashes here.

File details

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

File metadata

  • Download URL: plotive-0.3.0-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.3.0-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 a6616ae062b45d3b463b8d3740a79aaeb759301f3dbf6cb0a05d35d5f8576c29
MD5 9f4930497f4e49c8009ddd9c6d7afcbf
BLAKE2b-256 b2cd3b9826b031e460ad6f2926924a6f1fb64f0d8e35626c1cac41bed1a48c5a

See more details on using hashes here.

File details

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

File metadata

  • Download URL: plotive-0.3.0-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.3.0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 e7a6158469940cd86c8606237baf5e8786df922401654986ed0df3e66d972ce6
MD5 a84ec6226c9ea48e490a5826bcb038d4
BLAKE2b-256 4a475a933f7fa06a5d761859d69ec6de0df4ea389378c2aa5bf56a8864bb1137

See more details on using hashes here.

File details

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

File metadata

  • Download URL: plotive-0.3.0-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.3.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 c70fefc69ba90d906cd0ab873adf074b96915e78fd9a3ad104239178f88348e3
MD5 6406fa444e0fbc8b6327fff0f37f98b8
BLAKE2b-256 7255aaca6c6caa8d41a3e49a24c03d6a5a2d0a020b5f528dc3d499926ece72d2

See more details on using hashes here.

File details

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

File metadata

  • Download URL: plotive-0.3.0-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.3.0-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 27d371e2734fbebe5fa9a6bc302ed01262299e6d016880a6c60ab417edf242fa
MD5 6588d4e18bdb6c0bd8f17f9307d7eb7e
BLAKE2b-256 73670af26fb42129fd62639b70ce78aade39c1d90fca4a1cdbec875c0842b894

See more details on using hashes here.

File details

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

File metadata

  • Download URL: plotive-0.3.0-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.3.0-cp39-cp39-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 8e28c3aa02d7c0220645481cce7a938336f8cae401ff855206e3c20296c26cea
MD5 95fd7c9f51689b2428971eb4777f9365
BLAKE2b-256 112c6f802dbd34c65d4667b0adf397d6f209c49870c55128cf4e923a86eeae9f

See more details on using hashes here.

File details

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

File metadata

  • Download URL: plotive-0.3.0-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.3.0-cp39-cp39-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 bdbd123c4c9cb2d9cd35552f9510d70954b96a644560cf33439d3b734c65fd3b
MD5 4d1013780591d0584f734266513592d8
BLAKE2b-256 826080f58af7cab627af9e9e0221c796759043b3731f4a5b3b8e749ad17540b4

See more details on using hashes here.

File details

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

File metadata

  • Download URL: plotive-0.3.0-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.3.0-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 a48248e2ca8b71b9ea293cba75fbe797929151c91038b93e336ddb0309b12022
MD5 65fc60d7bda6115d8e4229584c396671
BLAKE2b-256 b3e8ccd7c8ee3e80b7a361c3b2a20570c7f9988013ef3bd0755dc0c3396cdbe6

See more details on using hashes here.

File details

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

File metadata

  • Download URL: plotive-0.3.0-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.3.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 e5e86eea5d26a1d78c112891ef3a94f7a7e7c289c5c637e05f4d465cd6140a6f
MD5 b0a1569d0b536e8f797467d7a10581e0
BLAKE2b-256 753d9bb6fd478e5efdf28b637f65fd1455217d448a15f65c1102a4bd98e2204b

See more details on using hashes here.

File details

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

File metadata

  • Download URL: plotive-0.3.0-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.3.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 4a965d572ddce223337a1d8606ce7fe8820f546614e0c45d28fdb14c68bd2947
MD5 4c5b7ce5bbde055dccef6adf3cbf42c8
BLAKE2b-256 9a36e24be5e618b6a4b1cd49740859425a9db59420aaaeea014123eb5fb03c3e

See more details on using hashes here.

File details

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

File metadata

  • Download URL: plotive-0.3.0-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.3.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 21c5227a990bbf3bd371f24563759f44e27c223df5089f1e24f5ed933c8c112a
MD5 0d9b88238b7144f28dca1c5791d2a197
BLAKE2b-256 4cfe5666bd413c67e02730e293ed96a168efdce2884462390dd14090e3b5caf8

See more details on using hashes here.

File details

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

File metadata

  • Download URL: plotive-0.3.0-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.3.0-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 407bcf24106fb5ee92dea580ccb8f3becffd7065324c2ee16d847d3bb02cf30b
MD5 ed27f8526a26df8685f7b2e729fae610
BLAKE2b-256 d05c1a7f57b2428cca7afa55216015756d1597df5699085fbfa5e2f4220e3a9b

See more details on using hashes here.

File details

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

File metadata

  • Download URL: plotive-0.3.0-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.3.0-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 01c5a0cc782c9a38d252bb3b2f04b44d84ae237e52756d46a030dd139f255929
MD5 15dcc1bc89df77f89261510de31051e0
BLAKE2b-256 995e851199ce4968fb7cf792f14c5f56912db071910174753f8db024bb579828

See more details on using hashes here.

File details

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

File metadata

  • Download URL: plotive-0.3.0-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.3.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 dd167c8e0a6ffe1630c15e49ab70a5e2dd861e4ec95f16ce28f0acfdaba18ba1
MD5 330d96566c998a7fd9ad856779f07f87
BLAKE2b-256 e571a272070f6639aaa66741a349077f5e0192ead01cdac49ff227090681f0e9

See more details on using hashes here.

File details

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

File metadata

  • Download URL: plotive-0.3.0-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.3.0-cp38-cp38-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 85846c916017cef02c4ff65903011b863a6d1ecf21d13d29517cbae97df0ad23
MD5 ceb44b066a52f9ca41820ef27f25ee11
BLAKE2b-256 6557cc94898bd40c6eef7527c5a672840d77d15a7973412e745db83d8f7d7170

See more details on using hashes here.

File details

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

File metadata

  • Download URL: plotive-0.3.0-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.3.0-cp38-cp38-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 595bf84c97f87edf91e09017ddf413b2b27d1f6427209c068bb3ab3c36488d37
MD5 dbcf6e91d76944acb30d923408ee93ac
BLAKE2b-256 daeb435ed48edf647ae8576c36330e816383e5862b8d233c91771d0cc40c5dac

See more details on using hashes here.

File details

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

File metadata

  • Download URL: plotive-0.3.0-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.3.0-cp38-cp38-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 946d2f2e202e13ec0122f6e1387d8d9d8e8c6055df0cb7c96ef4036a5bf26f68
MD5 84959c77f4c3657cc5b7e3cf2ae7c90a
BLAKE2b-256 fab0766d727f9414347cd2a65716ccf7c7ea719c8bce2c929bac97c98b162f87

See more details on using hashes here.

File details

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

File metadata

  • Download URL: plotive-0.3.0-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.3.0-cp38-cp38-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 abbabac08c203529135e4ccff3953eac660ce570fd118e21192640c3b356e65b
MD5 40fbc3c74d0355542dab0aa72932077e
BLAKE2b-256 4403d9a95bf0c585d67072d19eec9c5723300ad3c52e600194677b67bc1d35d7

See more details on using hashes here.

File details

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

File metadata

  • Download URL: plotive-0.3.0-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.3.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 94c34835b355d18cdf2d478412d87f591e17a98e00c50d24b5ae0c2c03fb7907
MD5 d0186b564962282f404604eb87a6a69a
BLAKE2b-256 c18ed544bfd7b6246442289b906f156f398ebe76c451ddbef6d48011278bcb83

See more details on using hashes here.

File details

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

File metadata

  • Download URL: plotive-0.3.0-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.3.0-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 3ee07d66a65b2b36f97c48dbaebe42ad0b0e2d3e25b55bf12652d6a9d9aff151
MD5 2e89d64ebca436cd98637ad596560590
BLAKE2b-256 50dbfdee7fafeba516accdda1139810991b9de8f5048fe62279fe63899a37c11

See more details on using hashes here.

File details

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

File metadata

  • Download URL: plotive-0.3.0-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.3.0-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 1c2cb46fb53f4d53e8ce125dd106f9b18e13989bb1af590febfb5d9fbcba8815
MD5 679fddd574d1b1a34f83fd59b941e8b3
BLAKE2b-256 081256d2e58f5b355230228c0046dc77b82c9700af9f6fbd780782b25fec2193

See more details on using hashes here.

File details

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

File metadata

  • Download URL: plotive-0.3.0-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.3.0-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 b9fc3b967aeaa75048a4a453944f4dd4064cc1b29299aadfe3c92d9e54e7146d
MD5 d17dd92cc06638480a5058171809d478
BLAKE2b-256 c66a61f8233b9744c2b7b51524ecbf85e01e17043bca0bf1bfd1d98cf63a9bef

See more details on using hashes here.

File details

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

File metadata

  • Download URL: plotive-0.3.0-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.3.0-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 cbc3788166f8d15fa3a34691f7eb2f6fd5c36bdb9b7de5b90845bbae57a6077f
MD5 ba2a7910b429bd219315b87be1f82a6f
BLAKE2b-256 bf77ee47a5f954c6a0c78c513eaa14ed6653d5104ed465869937f86efb8c3333

See more details on using hashes here.

File details

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

File metadata

  • Download URL: plotive-0.3.0-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.3.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 ccae3484f27e467bfd6911a4334bb27714971348857c7bc83a4b8724662b0145
MD5 58fa8a34e4b9046cd74abe1a7eafcd74
BLAKE2b-256 4f861144640f06d9b779efd0073692a3710a379c7b89f64f1b5171349f2dd522

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