Skip to main content

License: GPL v3 C++20 PyPi Coverage

SciQLopPlots

A high-performance scientific plotting library built on C++20/Qt6 with Python bindings via Shiboken6 (PySide6). Designed for the SciQLop data analysis platform but usable standalone.

Features

  • Async resampling — render millions of points smoothly; data is downsampled in background threads via NeoQCP pipelines
  • Multiple plot types — time series (line graphs), spectrograms (color maps), 2D histograms, parametric curves, N-D projection curves, waterfall plots
  • Interactive — pan, zoom, data-driven callbacks, vertical/horizontal/rectangular spans, tracers, straight lines, text, shapes, pixmaps
  • Multi-plot panels — synchronized axes, aligned margins, drag-and-drop from product trees
  • Reactive pipelines — connect plot properties with >> to build live data flows
  • Export — PDF (vector), PNG, JPG, BMP for both individual plots and panels
  • Busy indicator — visual feedback when data is loading or being processed
  • Runtime inspector — tree model/view for inspecting and editing plot properties
  • Cross-platform — Linux, macOS, Windows

Architecture

graph TD
    subgraph Python["Python Layer"]
        PY[SciQLopPlots package]
        SB[Shiboken6 bindings]
    end

    subgraph Plots["Plot Hierarchy"]
        PI[SciQLopPlotInterface<br/><i>QFrame</i>]
        SP[SciQLopPlot]
        TSP[SciQLopTimeSeriesPlot]
        NDP[SciQLopNDProjectionPlot]
    end

    subgraph Plotables["Plotables"]
        PTI[SciQLopPlottableInterface<br/><i>QObject</i>]
        GI[SciQLopGraphInterface]
        CMI[SciQLopColorMapInterface]
        LG[SciQLopLineGraph]
        SLG[SciQLopSingleLineGraph]
        CRV[SciQLopCurve]
        WF[SciQLopWaterfallGraph]
        NDC[SciQLopNDProjectionCurves]
        CMB[SciQLopColorMapBase]
        CM[SciQLopColorMap]
        H2D[SciQLopHistogram2D]
    end

    subgraph Items["Overlay Items"]
        VS[VerticalSpan]
        HS[HorizontalSpan]
        RS[RectangularSpan]
        TR[Tracer]
        SL[StraightLine]
    end

    subgraph MultiPlot["Multi-Plot"]
        PPI[SciQLopPlotPanelInterface]
        MPP[SciQLopMultiPlotPanel]
        AX[AxisSynchronizer]
        VA[VPlotsAlign]
    end

    PY --> SB --> PI

    PI --> SP
    PI --> NDP
    SP --> TSP

    PTI --> GI
    PTI --> CMI
    GI --> LG
    GI --> SLG
    GI --> CRV
    GI --> WF
    GI --> NDC
    CMI --> CMB
    CMB --> CM
    CMB --> H2D

    PPI --> MPP
    MPP --> AX
    MPP --> VA

    SP -.->|contains| PTI
    SP -.->|contains| Items
    MPP -.->|contains| SP

Data flow

sequenceDiagram
    participant User
    participant Plot as SciQLopPlot
    participant Resampler as Resampler<br/>(worker thread)
    participant NeoQCP as NeoQCP

    User->>Plot: pan / zoom
    Plot->>Resampler: new visible range
    Resampler->>Resampler: downsample data
    Resampler->>NeoQCP: resampled points
    NeoQCP->>Plot: render

For callback-driven data, the plot invokes a Python callable with (start, stop) on range change, and the returned arrays flow through the same resampling pipeline.

Quick start

pip install SciQLopPlots
import numpy as np
from PySide6.QtWidgets import QApplication
from SciQLopPlots import SciQLopPlot

app = QApplication([])
plot = SciQLopPlot()

# Static data
x = np.arange(0, 1000, dtype=np.float64)
y = np.sin(x / 100) * np.cos(x / 10)
plot.plot(x, y, labels=["signal"])

# Data callback (called on pan/zoom with visible range)
def get_data(start, stop):
    x = np.arange(start, stop, dtype=np.float64)
    y = np.column_stack([np.sin(x / 100), np.cos(x / 100)])
    return x, y

plot.plot(get_data, labels=["sin", "cos"])

plot.show()
app.exec()

Reactive pipelines

Connect plot properties with the >> operator to build live data pipelines:

from SciQLopPlots import SciQLopPlot

plot = SciQLopPlot()
graph = plot.plot(lambda start, stop: ..., labels=["signal"])

# Axis range changes automatically feed a transform, which pushes data to the graph
plot.x_axis.on.range >> get_data >> graph.on.data

# Direct property forwarding (no transform)
span.on.range >> plot.x_axis.on.range

# Chain multiple steps
source.on.range >> transform >> target.on.data

Run the gallery for a full feature showcase:

python tests/manual-tests/gallery.py

Runtime tracing

SciQLopPlots ships with a built-in tracer that emits Chrome trace JSON, viewable in Perfetto, Speedscope, or chrome://tracing. Always compiled in, runtime-toggled, ~1 ns when off.

Enable for a session, then open the file in Perfetto:

from SciQLopPlots import tracing

with tracing.session("/tmp/sciqlop.json"):
    panel.zoom_in_a_lot()       # whatever's slow

Annotate Python work to land alongside the C++ zones (plot.replot, setdata.colormap, resample.async_2d, …):

with tracing.zone("speasy.fetch", cat="data", product="amda/mms_fgm"):
    data = speasy.get_data(...)

@tracing.traced("layer.eval", cat="layer")
def render_layer(...): ...

tracing.counter("queue_depth", q.size(), cat="fetch")

You can also auto-enable at process start with the SCIQLOP_TRACE env var:

SCIQLOP_TRACE=/tmp/sciqlop.json python my_script.py

When tracy_enable=true is also passed at build time, the same PROFILE_HERE_N sites feed both the Chrome JSON tracer and the Tracy live-streaming view.

Building from source

Requires Qt6, PySide6 == 6.11.0, a C++20 compiler, and Meson.

# Development build (recommended — plain `debug` disables optimizations
# and makes the resampling pipelines noticeably sluggish)
meson setup build --buildtype=debugoptimized
meson compile -C build

# Install as editable Python package
pip install -e . --no-build-isolation

Build options

Option Type Default Description
trace_refcount bool false Enable reference count tracing
tracy_enable bool false Enable Tracy profiling
with_opengl bool true Enable OpenGL support

Contributing

Fork the repository, make your changes and submit a pull request. Bug reports and feature requests are welcome.

Credits

Development is supported by CDPP. We acknowledge support from Plas@Par.

Thanks

  • PySide6 — Qt bindings and Shiboken6 binding generator
  • NeoQCP — fork of QCustomPlot with async pipelines, multi-dtype support, and QRhi rendering

Release files for SciQLopPlots 0.36.1

For a detailed explanation of source distributions (sdists) and built distributions (wheels), please see the package formats documentation.

Source distribution (sdist)

Source distribution for SciQLopPlots 0.36.1
File Size Uploaded
sciqlopplots-0.36.1.tar.gz 1.7 MB Details

Built distributions (wheels)

Table of built distributions (wheels) for SciQLopPlots 0.36.1
File
sciqlopplots-0.36.1-cp314-cp314-win_amd64.whl CPython 3.14 CPython 3.14 Windows x86-64 Details
sciqlopplots-0.36.1-cp314-cp314-manylinux_2_39_aarch64.whl CPython 3.14 CPython 3.14 Linux glibc 2.39+ ARM64 Details
sciqlopplots-0.36.1-cp314-cp314-manylinux_2_34_x86_64.whl CPython 3.14 CPython 3.14 Linux glibc 2.34+ x86-64 Details
sciqlopplots-0.36.1-cp314-cp314-macosx_13_0_x86_64.whl CPython 3.14 CPython 3.14 macOS 13.0+ x86-64 Details
sciqlopplots-0.36.1-cp314-cp314-macosx_13_0_arm64.whl CPython 3.14 CPython 3.14 macOS 13.0+ ARM64 Details
sciqlopplots-0.36.1-cp313-cp313-win_amd64.whl CPython 3.13 CPython 3.13 Windows x86-64 Details
sciqlopplots-0.36.1-cp313-cp313-manylinux_2_39_aarch64.whl CPython 3.13 CPython 3.13 Linux glibc 2.39+ ARM64 Details
sciqlopplots-0.36.1-cp313-cp313-manylinux_2_34_x86_64.whl CPython 3.13 CPython 3.13 Linux glibc 2.34+ x86-64 Details
sciqlopplots-0.36.1-cp313-cp313-macosx_13_0_x86_64.whl CPython 3.13 CPython 3.13 macOS 13.0+ x86-64 Details
sciqlopplots-0.36.1-cp313-cp313-macosx_13_0_arm64.whl CPython 3.13 CPython 3.13 macOS 13.0+ ARM64 Details
sciqlopplots-0.36.1-cp312-cp312-win_amd64.whl CPython 3.12 CPython 3.12 Windows x86-64 Details
sciqlopplots-0.36.1-cp312-cp312-manylinux_2_39_aarch64.whl CPython 3.12 CPython 3.12 Linux glibc 2.39+ ARM64 Details
sciqlopplots-0.36.1-cp312-cp312-manylinux_2_34_x86_64.whl CPython 3.12 CPython 3.12 Linux glibc 2.34+ x86-64 Details
sciqlopplots-0.36.1-cp312-cp312-macosx_13_0_x86_64.whl CPython 3.12 CPython 3.12 macOS 13.0+ x86-64 Details
sciqlopplots-0.36.1-cp312-cp312-macosx_13_0_arm64.whl CPython 3.12 CPython 3.12 macOS 13.0+ ARM64 Details
sciqlopplots-0.36.1-cp311-cp311-win_amd64.whl CPython 3.11 CPython 3.11 Windows x86-64 Details
sciqlopplots-0.36.1-cp311-cp311-manylinux_2_39_aarch64.whl CPython 3.11 CPython 3.11 Linux glibc 2.39+ ARM64 Details
sciqlopplots-0.36.1-cp311-cp311-manylinux_2_34_x86_64.whl CPython 3.11 CPython 3.11 Linux glibc 2.34+ x86-64 Details
sciqlopplots-0.36.1-cp311-cp311-macosx_13_0_x86_64.whl CPython 3.11 CPython 3.11 macOS 13.0+ x86-64 Details
sciqlopplots-0.36.1-cp311-cp311-macosx_13_0_arm64.whl CPython 3.11 CPython 3.11 macOS 13.0+ ARM64 Details
sciqlopplots-0.36.1-cp310-cp310-win_amd64.whl CPython 3.10 CPython 3.10 Windows x86-64 Details
sciqlopplots-0.36.1-cp310-cp310-manylinux_2_39_aarch64.whl CPython 3.10 CPython 3.10 Linux glibc 2.39+ ARM64 Details
sciqlopplots-0.36.1-cp310-cp310-manylinux_2_34_x86_64.whl CPython 3.10 CPython 3.10 Linux glibc 2.34+ x86-64 Details
sciqlopplots-0.36.1-cp310-cp310-macosx_13_0_x86_64.whl CPython 3.10 CPython 3.10 macOS 13.0+ x86-64 Details
sciqlopplots-0.36.1-cp310-cp310-macosx_13_0_arm64.whl CPython 3.10 CPython 3.10 macOS 13.0+ ARM64 Details

Total release size: 150.2 MB

Release files / sciqlopplots-0.36.1.tar.gz

Download URL sciqlopplots-0.36.1.tar.gz
Size 1.7 MB
Tags Source
SHA-256 checksum
How to use checksums
a9b68adfa2ec84199f0edd5b892bdf0f39389d75b7df280e27ebb4cba7f8284f
BLAKE2b-256 checksum
How to use checksums
7eafd81e340ef5135e7f4efbef87964287a10cb43d0eef30d1cbb1eece6622ff
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/7.0.0 CPython/3.13.14

Release files / sciqlopplots-0.36.1-cp314-cp314-win_amd64.whl

Download URL sciqlopplots-0.36.1-cp314-cp314-win_amd64.whl
Size 4.5 MB
Tags CPython 3.14 Windows x86-64
SHA-256 checksum
How to use checksums
e05422f2953731f2e2b0eb4850f46071cbfa35cc0a521285a453b4434869ba0e
BLAKE2b-256 checksum
How to use checksums
53f50a8b4d6f7eef366af9732d77d0fe5817493147cb86539fecff1b783fa12a
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/7.0.0 CPython/3.13.14

Release files / sciqlopplots-0.36.1-cp314-cp314-manylinux_2_39_aarch64.whl

Download URL sciqlopplots-0.36.1-cp314-cp314-manylinux_2_39_aarch64.whl
Size 6.6 MB
Tags CPython 3.14 Linux glibc 2.39+ ARM64
SHA-256 checksum
How to use checksums
3c16b1324eaffbead25273f3582d0f998e8178a2e50545f0121f296e9fd6ddd3
BLAKE2b-256 checksum
How to use checksums
1ef89ea37eb6053bc28159a0b3687caef2091c60e5557acb28c1d1ee7ae05a97
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/7.0.0 CPython/3.13.14

Release files / sciqlopplots-0.36.1-cp314-cp314-manylinux_2_34_x86_64.whl

Download URL sciqlopplots-0.36.1-cp314-cp314-manylinux_2_34_x86_64.whl
Size 7.1 MB
Tags CPython 3.14 Linux glibc 2.34+ x86-64
SHA-256 checksum
How to use checksums
f657f189d882858b097eace783a06f8df6698817b746685581db642921e16fe7
BLAKE2b-256 checksum
How to use checksums
6c2a5f9ea9edf7e79fb3ba817a2209013da1479f288cef79f125542827f83726
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/7.0.0 CPython/3.13.14

Release files / sciqlopplots-0.36.1-cp314-cp314-macosx_13_0_x86_64.whl

Download URL sciqlopplots-0.36.1-cp314-cp314-macosx_13_0_x86_64.whl
Size 6.0 MB
Tags CPython 3.14 macOS 13.0+ x86-64
SHA-256 checksum
How to use checksums
019d6191775eed3247656d48dbb5ecbeeaf1a4e0c3b3457c4109d190b7a00e38
BLAKE2b-256 checksum
How to use checksums
7d8fff34c165cb53fbf4a5f20a56bf6298580033191f3d6b2a0b4f605718520f
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/7.0.0 CPython/3.13.14

Release files / sciqlopplots-0.36.1-cp314-cp314-macosx_13_0_arm64.whl

Download URL sciqlopplots-0.36.1-cp314-cp314-macosx_13_0_arm64.whl
Size 5.6 MB
Tags CPython 3.14 macOS 13.0+ ARM64
SHA-256 checksum
How to use checksums
5004f3082e7564944c538c64d7800dfc8a75604e7348adeb5e215d65900d8306
BLAKE2b-256 checksum
How to use checksums
db140d21aae97d36c9a5e68132afa122fead2c2b95f1e10a568eacf9477f20dc
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/7.0.0 CPython/3.13.14

Release files / sciqlopplots-0.36.1-cp313-cp313-win_amd64.whl

Download URL sciqlopplots-0.36.1-cp313-cp313-win_amd64.whl
Size 4.4 MB
Tags CPython 3.13 Windows x86-64
SHA-256 checksum
How to use checksums
d9d7176b70f10b0b1221c69c32bd50392afcb33a2cf9e7991015c84e48bdf826
BLAKE2b-256 checksum
How to use checksums
0f73751ff3d2c84b9d68ea2c7855c789da8786a268c996d9f0af32869a8ef286
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/7.0.0 CPython/3.13.14

Release files / sciqlopplots-0.36.1-cp313-cp313-manylinux_2_39_aarch64.whl

Download URL sciqlopplots-0.36.1-cp313-cp313-manylinux_2_39_aarch64.whl
Size 6.6 MB
Tags CPython 3.13 Linux glibc 2.39+ ARM64
SHA-256 checksum
How to use checksums
656669c416d45f54e04fccddf30a9a35a85bf40c3be3f89a8616f08d4e0563ac
BLAKE2b-256 checksum
How to use checksums
3edffffa4988193ccf7f0d399a1c5d56fe68de3287493221bd14ecc7e1e3118a
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/7.0.0 CPython/3.13.14

Release files / sciqlopplots-0.36.1-cp313-cp313-manylinux_2_34_x86_64.whl

Download URL sciqlopplots-0.36.1-cp313-cp313-manylinux_2_34_x86_64.whl
Size 7.1 MB
Tags CPython 3.13 Linux glibc 2.34+ x86-64
SHA-256 checksum
How to use checksums
fea04c3c9e3f17e103cfd34292906ff41668783e1c8dadd1460f7876aa2f0473
BLAKE2b-256 checksum
How to use checksums
e67f82fd722a49ed1c588d15f4e78ab4f44df6cb5d4bf9eef3fcf9dd71206d92
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/7.0.0 CPython/3.13.14

Release files / sciqlopplots-0.36.1-cp313-cp313-macosx_13_0_x86_64.whl

Download URL sciqlopplots-0.36.1-cp313-cp313-macosx_13_0_x86_64.whl
Size 6.0 MB
Tags CPython 3.13 macOS 13.0+ x86-64
SHA-256 checksum
How to use checksums
03bb7ee2ed32e1b595db37fcac1f1606c5d57501ece6fad3df2f76a7371c2182
BLAKE2b-256 checksum
How to use checksums
007fd7ddffa7c409f41b9c4acdba52305c5397e88ad26cfc5f9b5c31ee0f025c
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/7.0.0 CPython/3.13.14

Release files / sciqlopplots-0.36.1-cp313-cp313-macosx_13_0_arm64.whl

Download URL sciqlopplots-0.36.1-cp313-cp313-macosx_13_0_arm64.whl
Size 5.6 MB
Tags CPython 3.13 macOS 13.0+ ARM64
SHA-256 checksum
How to use checksums
3d2e236fd689d6ebef1180cfe8672ddb0e282b3cf96174a2e1c7cdcca93aeefa
BLAKE2b-256 checksum
How to use checksums
7e8be3b5f01b671948826dac250a04f6d113b7d3db388a74c8f0e218cc635a4c
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/7.0.0 CPython/3.13.14

Release files / sciqlopplots-0.36.1-cp312-cp312-win_amd64.whl

Download URL sciqlopplots-0.36.1-cp312-cp312-win_amd64.whl
Size 4.4 MB
Tags CPython 3.12 Windows x86-64
SHA-256 checksum
How to use checksums
01a4899cb4c2029a073eb62fac787191912489fa1d448e843b5973ca1e790530
BLAKE2b-256 checksum
How to use checksums
3d110f417e82ee7a4e14413f5e8c3ffe967ee9625e23b0da9e2ed0ac87026a46
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/7.0.0 CPython/3.13.14

Release files / sciqlopplots-0.36.1-cp312-cp312-manylinux_2_39_aarch64.whl

Download URL sciqlopplots-0.36.1-cp312-cp312-manylinux_2_39_aarch64.whl
Size 6.6 MB
Tags CPython 3.12 Linux glibc 2.39+ ARM64
SHA-256 checksum
How to use checksums
73435c2817bd45e8a41c378942968cd165d2aefd77ad008cc2affd3b8268af4f
BLAKE2b-256 checksum
How to use checksums
6b7b1b635d78be9a274ee7f7b8ce178ee1a675da5817df7e784940e80e3c9524
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/7.0.0 CPython/3.13.14

Release files / sciqlopplots-0.36.1-cp312-cp312-manylinux_2_34_x86_64.whl

Download URL sciqlopplots-0.36.1-cp312-cp312-manylinux_2_34_x86_64.whl
Size 7.1 MB
Tags CPython 3.12 Linux glibc 2.34+ x86-64
SHA-256 checksum
How to use checksums
1b12952539366f985140bfe49227c90c4c8b19f0411288ae9a8201f03e7f8dd8
BLAKE2b-256 checksum
How to use checksums
0fe1f200403b11b6a6f4b1e4a4e1eca8fb7a010792d00f23f0645883bdf03c0c
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/7.0.0 CPython/3.13.14

Release files / sciqlopplots-0.36.1-cp312-cp312-macosx_13_0_x86_64.whl

Download URL sciqlopplots-0.36.1-cp312-cp312-macosx_13_0_x86_64.whl
Size 6.0 MB
Tags CPython 3.12 macOS 13.0+ x86-64
SHA-256 checksum
How to use checksums
9366123448284126e32cf2ca1471e288e52221cc8e4661511018f08dd90bd97c
BLAKE2b-256 checksum
How to use checksums
ff95afe407da057c229b157af48f07e2a9924e2d77a5fa9307b5ffd0341fda3b
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/7.0.0 CPython/3.13.14

Release files / sciqlopplots-0.36.1-cp312-cp312-macosx_13_0_arm64.whl

Download URL sciqlopplots-0.36.1-cp312-cp312-macosx_13_0_arm64.whl
Size 5.6 MB
Tags CPython 3.12 macOS 13.0+ ARM64
SHA-256 checksum
How to use checksums
19c64f3d5bf31f1241614f0e8adfb0dc9f78dfb486b998c70230c4f6bac612f6
BLAKE2b-256 checksum
How to use checksums
fae1e1104fefb67251b2dda4bcb830294139f8c7db55cfe1f037a1a57f9bb77f
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/7.0.0 CPython/3.13.14

Release files / sciqlopplots-0.36.1-cp311-cp311-win_amd64.whl

Download URL sciqlopplots-0.36.1-cp311-cp311-win_amd64.whl
Size 4.4 MB
Tags CPython 3.11 Windows x86-64
SHA-256 checksum
How to use checksums
d24cd9a244e002f5cef296e4724e4ee6b2b7ffcd5131d026f5c18909ae117f9b
BLAKE2b-256 checksum
How to use checksums
af60dea29b5fb1b6804686e0141d9cb513472583bc0ce6cb0366b2f322dfc905
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/7.0.0 CPython/3.13.14

Release files / sciqlopplots-0.36.1-cp311-cp311-manylinux_2_39_aarch64.whl

Download URL sciqlopplots-0.36.1-cp311-cp311-manylinux_2_39_aarch64.whl
Size 6.6 MB
Tags CPython 3.11 Linux glibc 2.39+ ARM64
SHA-256 checksum
How to use checksums
3019bc1a88b4208ca8154df6a6a9c93721e966dc8fe819a9e4f71d1b02f3daea
BLAKE2b-256 checksum
How to use checksums
1c8921a62202ed101228760e1bf1573e5ad8239c9b1c745f415fdf7ef63324db
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/7.0.0 CPython/3.13.14

Release files / sciqlopplots-0.36.1-cp311-cp311-manylinux_2_34_x86_64.whl

Download URL sciqlopplots-0.36.1-cp311-cp311-manylinux_2_34_x86_64.whl
Size 7.1 MB
Tags CPython 3.11 Linux glibc 2.34+ x86-64
SHA-256 checksum
How to use checksums
f5849df95fa6123bce75805bde8370386415f06e59a81c6344544a3751018141
BLAKE2b-256 checksum
How to use checksums
d8751d3948d7782d38221a8a3047b4dc1fe9879fab81e80b5de63b0d168b6a05
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/7.0.0 CPython/3.13.14

Release files / sciqlopplots-0.36.1-cp311-cp311-macosx_13_0_x86_64.whl

Download URL sciqlopplots-0.36.1-cp311-cp311-macosx_13_0_x86_64.whl
Size 6.0 MB
Tags CPython 3.11 macOS 13.0+ x86-64
SHA-256 checksum
How to use checksums
0bb8ed4bf6e2313184cca6473af229346cc9bc9ae2ceeacc5e2f6bf6d8aea7f0
BLAKE2b-256 checksum
How to use checksums
293d053f50d246e852c99bb11756a05279e8da86c4a0b126ad754e001944b9aa
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/7.0.0 CPython/3.13.14

Release files / sciqlopplots-0.36.1-cp311-cp311-macosx_13_0_arm64.whl

Download URL sciqlopplots-0.36.1-cp311-cp311-macosx_13_0_arm64.whl
Size 5.6 MB
Tags CPython 3.11 macOS 13.0+ ARM64
SHA-256 checksum
How to use checksums
63f7c64814d981763cd03b247b7cb9c6add3a35d849ccef37e5626b991e4b9de
BLAKE2b-256 checksum
How to use checksums
525d030ae840d1e17ddb06ad95c520ace2853d2c04297372156e481d16e4c112
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/7.0.0 CPython/3.13.14

Release files / sciqlopplots-0.36.1-cp310-cp310-win_amd64.whl

Download URL sciqlopplots-0.36.1-cp310-cp310-win_amd64.whl
Size 4.4 MB
Tags CPython 3.10 Windows x86-64
SHA-256 checksum
How to use checksums
10c39a67e5409cbd80c0d2bddb1bfccd482fbe9f0b22e4f6a4cbea6e5c5f9776
BLAKE2b-256 checksum
How to use checksums
159d5dbd4b6bdd4f9eab7c1c2596ba2db42a8ff8ae3cdc5d6d26841a37c2e533
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/7.0.0 CPython/3.13.14

Release files / sciqlopplots-0.36.1-cp310-cp310-manylinux_2_39_aarch64.whl

Download URL sciqlopplots-0.36.1-cp310-cp310-manylinux_2_39_aarch64.whl
Size 6.6 MB
Tags CPython 3.10 Linux glibc 2.39+ ARM64
SHA-256 checksum
How to use checksums
fd078acc4f7b800352fa84bb3cd0882691f98fa2104029a5b83ed542f34cb359
BLAKE2b-256 checksum
How to use checksums
9aa8e43c7d1f811b240e30825e3d81384f4bb84fc628352872b26ad91de7e8f2
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/7.0.0 CPython/3.13.14

Release files / sciqlopplots-0.36.1-cp310-cp310-manylinux_2_34_x86_64.whl

Download URL sciqlopplots-0.36.1-cp310-cp310-manylinux_2_34_x86_64.whl
Size 7.1 MB
Tags CPython 3.10 Linux glibc 2.34+ x86-64
SHA-256 checksum
How to use checksums
6f692727e78f6e878e01e242da2c6f4bb50bebd3bbf6633e9ae99598ae8144e1
BLAKE2b-256 checksum
How to use checksums
5b0d21001ac2ad2b8495db5f7eba5611f04f9ec8a43d94615fbc206371c2f4bc
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/7.0.0 CPython/3.13.14

Release files / sciqlopplots-0.36.1-cp310-cp310-macosx_13_0_x86_64.whl

Download URL sciqlopplots-0.36.1-cp310-cp310-macosx_13_0_x86_64.whl
Size 6.0 MB
Tags CPython 3.10 macOS 13.0+ x86-64
SHA-256 checksum
How to use checksums
b84ec83b03de56a8caf00097d6fced188bfe7f217f70bc45dca49b7065e6a241
BLAKE2b-256 checksum
How to use checksums
e8585a5ae1980a3e923da8bf9d9e46db7dfefba4a3d38ddeb620bd7bcfbc9816
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/7.0.0 CPython/3.13.14

Release files / sciqlopplots-0.36.1-cp310-cp310-macosx_13_0_arm64.whl

Download URL sciqlopplots-0.36.1-cp310-cp310-macosx_13_0_arm64.whl
Size 5.6 MB
Tags CPython 3.10 macOS 13.0+ ARM64
SHA-256 checksum
How to use checksums
8913b335a0bda8a45fcaadee86b8cea255b595081bb15b2bea172b4ab6bc901d
BLAKE2b-256 checksum
How to use checksums
9903d0cb5eaeced8346857d923e6a8ca1acf6726490176e138ee1fd9954fd0e7
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/7.0.0 CPython/3.13.14

Release history Release notifications | RSS feed

This release

0.36.1 This release

26 release files

0.9.0

16 release files

0.8.2

16 release files

0.8.1

16 release files

0.8.0

16 release files

0.7.1

16 release files

0.7.0

18 release files

0.6.5

18 release files

0.6.4

18 release files

0.6.3

20 release files

0.6.2

20 release files

0.6.1

20 release files

0.6.0

20 release files

0.5.0

15 release files

0.4.3

12 release files

0.3.4

9 release files

0.3.3

9 release files

0.2.6

9 release files

0.2.5

9 release files

0.2.4

9 release files

0.2.2

5 release files

0.1.8

9 release files

0.1.7

9 release files

0.1.6

9 release files

0.1.5

9 release files

0.1.4

9 release files

0.1.3

9 release files

0.1.2

9 release files

0.1.1

9 release files

0.1.0

5 release files

0.0.7

9 release files

0.0.3

7 release files

0.0.1

1 release file

Anthropic, PBC Visionary sponsor Bloomberg Visionary sponsor Hudson River Trading Visionary sponsor Meta Visionary sponsor NVIDIA Visionary sponsor Microsoft Sustainability sponsor Depot Continuous Integration AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page