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.37.0

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.37.0
File Size Uploaded
sciqlopplots-0.37.0.tar.gz 1.8 MB Details

Built distributions (wheels)

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

Total release size: 151.1 MB

Release files / sciqlopplots-0.37.0.tar.gz

Download URL sciqlopplots-0.37.0.tar.gz
Size 1.8 MB
Tags Source
SHA-256 checksum
How to use checksums
97cb1419655092fd58e5777f13dda046b07a72a384b740705808837f46a31a21
BLAKE2b-256 checksum
How to use checksums
7d3abbc260df69ab26c8314b4fa3136bfbb05423e7dd9a1a12a5ab345fe601d7
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.37.0-cp314-cp314-win_amd64.whl

Download URL sciqlopplots-0.37.0-cp314-cp314-win_amd64.whl
Size 4.5 MB
Tags CPython 3.14 Windows x86-64
SHA-256 checksum
How to use checksums
e2bd56559e507a2835b3dfe4fa2844f7429915c21b3fbf5e1fc8a614c4bdf531
BLAKE2b-256 checksum
How to use checksums
d82c741e423521eb02daca45ce9b9b2d96ad8c2e56c9f6da3115c4c5a776f12b
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.37.0-cp314-cp314-manylinux_2_39_aarch64.whl

Download URL sciqlopplots-0.37.0-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
0f0b511ac7a522412c9fe695e76bad97c3de1c9afc6d85f88ddcde40550386d3
BLAKE2b-256 checksum
How to use checksums
35090032d432449de3a3c7cf31d8c11c42190e4eedf43b43b4f58bb6d8a3f855
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.37.0-cp314-cp314-manylinux_2_34_x86_64.whl

Download URL sciqlopplots-0.37.0-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
fd7d0cf43ea5102ea31ec100b4497fa70ab43dc7a307efaaf56d75c6b4fabe99
BLAKE2b-256 checksum
How to use checksums
f12dbb347b137dd2a4889de8b7340f5e3d5cf92567f28182b8efef90152d9fa5
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.37.0-cp314-cp314-macosx_13_0_x86_64.whl

Download URL sciqlopplots-0.37.0-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
d99f867b89b1aef31b962e50f3d43ef2a4f26990b0e03d48c9f46a110ae71341
BLAKE2b-256 checksum
How to use checksums
847300b72a4ea410e7a31106e4165d62b831bd9061f400fdd7c676572c4b83a9
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.37.0-cp314-cp314-macosx_13_0_arm64.whl

Download URL sciqlopplots-0.37.0-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
2b12add7b5a0b88cf274f5a7739a770761d002196b2628a166032c5c60c615c9
BLAKE2b-256 checksum
How to use checksums
3789c093bb896a6f3f080576539e651168e6524f64af799b34c08d21ce67df1c
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.37.0-cp313-cp313-win_amd64.whl

Download URL sciqlopplots-0.37.0-cp313-cp313-win_amd64.whl
Size 4.4 MB
Tags CPython 3.13 Windows x86-64
SHA-256 checksum
How to use checksums
61aae0e8130655984d26c2b946530d3bcc9f6da02cf087fe7540be4d4c79b31f
BLAKE2b-256 checksum
How to use checksums
96870f894b6d117fc85d7c35a19065850f29c466211ccbd419cb79b6962ab2c6
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.37.0-cp313-cp313-manylinux_2_39_aarch64.whl

Download URL sciqlopplots-0.37.0-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
152c8d845c2f351658ee957dc1108b6658659317a21525b6f10229483d2cfd37
BLAKE2b-256 checksum
How to use checksums
6d71cb2f0439084e81c58ed739bdc69dc9d3a730835e853f7cb4928d69fe45c7
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.37.0-cp313-cp313-manylinux_2_34_x86_64.whl

Download URL sciqlopplots-0.37.0-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
340f05764d48483de3f83599c20ae5cbff7ff2492d69bfcde792a60e549bdee3
BLAKE2b-256 checksum
How to use checksums
3ca3a785621f640a1d656aa59f6efeb67998abdc2f79ac686acbd27744354d08
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.37.0-cp313-cp313-macosx_13_0_x86_64.whl

Download URL sciqlopplots-0.37.0-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
dd6841f211f92a27ef57b4d32bba746fc78c09c4be4bb3d9b0e758717dabf6c4
BLAKE2b-256 checksum
How to use checksums
75b39044944180cc10c8c9f6553544e4ef03f215b588ce915510b91460af5ad6
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.37.0-cp313-cp313-macosx_13_0_arm64.whl

Download URL sciqlopplots-0.37.0-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
f1ce1bc261600a6a9f89152d683e5a7342b565f3f0c5adf23000e34413319a43
BLAKE2b-256 checksum
How to use checksums
e81d840a17ba3fa1cf21f49b8abb4ce97ebf3c835297515e0009204de6f3c55c
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.37.0-cp312-cp312-win_amd64.whl

Download URL sciqlopplots-0.37.0-cp312-cp312-win_amd64.whl
Size 4.4 MB
Tags CPython 3.12 Windows x86-64
SHA-256 checksum
How to use checksums
40ed434739eab4e9213d7984765e743dbaac107ca1342aa186e596b13d76e3c3
BLAKE2b-256 checksum
How to use checksums
61dfc93a972817118ceb4f77c71071c64efa29fb3f133166c961aae77e66ae57
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.37.0-cp312-cp312-manylinux_2_39_aarch64.whl

Download URL sciqlopplots-0.37.0-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
3ea00a7ab3e417a122cd986baa68f46566cbcbb670ab04b5a6e6ed5c6ee85a8b
BLAKE2b-256 checksum
How to use checksums
10abc89abf1b5ca87355f0dc907f996082677d98c83ab01f0168c9a31d96f090
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.37.0-cp312-cp312-manylinux_2_34_x86_64.whl

Download URL sciqlopplots-0.37.0-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
f2e8e3987bf6ed5b3e977299776c296fb85c5aeff5b09b1c41585fa30a04f461
BLAKE2b-256 checksum
How to use checksums
0044c2615b54c618ce463b11ad08e4916d0daa3299e62f78c473b0b03db5a6f8
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.37.0-cp312-cp312-macosx_13_0_x86_64.whl

Download URL sciqlopplots-0.37.0-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
45cefd8cc3ad5113b15a8e2f8f2780a072ed4fe9ebedc3ba4c7f6cb1ce6d9898
BLAKE2b-256 checksum
How to use checksums
541646140ad3c9e14421527052e134473c53bf48675661dc09d719ff0d10adf0
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.37.0-cp312-cp312-macosx_13_0_arm64.whl

Download URL sciqlopplots-0.37.0-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
c654076460d104e3dc6136964edcca95381ab941e98faa3203dd76c94cc9a37e
BLAKE2b-256 checksum
How to use checksums
5dedf87f75e3dd814698342165a1433589c73e37ccb2aa78e7ad98dd802d3647
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.37.0-cp311-cp311-win_amd64.whl

Download URL sciqlopplots-0.37.0-cp311-cp311-win_amd64.whl
Size 4.4 MB
Tags CPython 3.11 Windows x86-64
SHA-256 checksum
How to use checksums
69a1d6fdaf2f385f737a74ee77ad87a5d61a7bb01a3956b2c577ce23b1b67fd7
BLAKE2b-256 checksum
How to use checksums
9f3177683768209512e346f19ccd12e816f8da77414e8397f0029e1a952e677e
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.37.0-cp311-cp311-manylinux_2_39_aarch64.whl

Download URL sciqlopplots-0.37.0-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
610051a1b0bd30e4b4fc1288d5c26b73d568e06a056e86052714e41607ca4e46
BLAKE2b-256 checksum
How to use checksums
acbe5eeb2d716bf81417ac48aac50dc91c6da69fb928e3421c9dbe3103b20fa7
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.37.0-cp311-cp311-manylinux_2_34_x86_64.whl

Download URL sciqlopplots-0.37.0-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
1b2120fcff90a2cd2fa8f19fd100a1eaf9dfdbd56deaf6eb8880fbc95e030860
BLAKE2b-256 checksum
How to use checksums
efc35e97a6a4d35f9e9e47418d390d6789890c7c4be8378b8e08f71da5319eae
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.37.0-cp311-cp311-macosx_13_0_x86_64.whl

Download URL sciqlopplots-0.37.0-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
5e8658d38c202af75a319756021d1a721e2ebae3529c4f9ffcaf7f0c9e94d0b7
BLAKE2b-256 checksum
How to use checksums
2a7a45dc8dd33e85a66b93c4535429080eaad9fb870775e61d71023c15e27f21
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.37.0-cp311-cp311-macosx_13_0_arm64.whl

Download URL sciqlopplots-0.37.0-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
93e909bcec8d5973af49020e5eac1fd0c59fa1fcd141676367240733040b3ca2
BLAKE2b-256 checksum
How to use checksums
b25ba9da26d174300dac62cb60abd2338576c91e75acdfd8e737509957452a82
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.37.0-cp310-cp310-win_amd64.whl

Download URL sciqlopplots-0.37.0-cp310-cp310-win_amd64.whl
Size 4.4 MB
Tags CPython 3.10 Windows x86-64
SHA-256 checksum
How to use checksums
44c18264a264e651bdf95663ecd2006583c49e5fbf4367c072e5d050122493cc
BLAKE2b-256 checksum
How to use checksums
e60494e4cf03afae85246b168f8226343b5f0d4bf7e84039fb07978ebd8ebff7
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.37.0-cp310-cp310-manylinux_2_39_aarch64.whl

Download URL sciqlopplots-0.37.0-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
852dee029b61fabda9bd38e94ad976b345b864f7572c789aa397693d500cd384
BLAKE2b-256 checksum
How to use checksums
7b8ff3184a10b65a1bb0a3d9dd9a9ee85bbd3468225593800aec887fb405ea98
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.37.0-cp310-cp310-manylinux_2_34_x86_64.whl

Download URL sciqlopplots-0.37.0-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
c4506a8fed2f2b10317e4ecd8a2a7d3d30df1f3f4f69fce9ca217ea12b2be937
BLAKE2b-256 checksum
How to use checksums
b34d231ab2be641415cabecb682a228fe35fb8692d16374250b365cd3366d871
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.37.0-cp310-cp310-macosx_13_0_x86_64.whl

Download URL sciqlopplots-0.37.0-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
0d4848d0cde43fa7e955ae72461a1d6d7dd3ad28189542181fb016edd411c411
BLAKE2b-256 checksum
How to use checksums
af3a24b0999e961f259d6f38afa535442ac4ff8c639eb1e587642ec54f067421
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.37.0-cp310-cp310-macosx_13_0_arm64.whl

Download URL sciqlopplots-0.37.0-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
55145e4f7203909bc87baecebd027358110606b9d4ea2bba63527c52a19ce97d
BLAKE2b-256 checksum
How to use checksums
967e11cd37be02f82a0df571d96c52f319307532ccc35e48e3e3dcade7b4fb15
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.37.0 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