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

Built distributions (wheels)

Table of built distributions (wheels) for SciQLopPlots 0.37.1
File
sciqlopplots-0.37.1-cp314-cp314-win_amd64.whl CPython 3.14 CPython 3.14 Windows x86-64 Details
sciqlopplots-0.37.1-cp314-cp314-manylinux_2_39_aarch64.whl CPython 3.14 CPython 3.14 Linux glibc 2.39+ ARM64 Details
sciqlopplots-0.37.1-cp314-cp314-manylinux_2_34_x86_64.whl CPython 3.14 CPython 3.14 Linux glibc 2.34+ x86-64 Details
sciqlopplots-0.37.1-cp314-cp314-macosx_13_0_x86_64.whl CPython 3.14 CPython 3.14 macOS 13.0+ x86-64 Details
sciqlopplots-0.37.1-cp314-cp314-macosx_13_0_arm64.whl CPython 3.14 CPython 3.14 macOS 13.0+ ARM64 Details
sciqlopplots-0.37.1-cp313-cp313-win_amd64.whl CPython 3.13 CPython 3.13 Windows x86-64 Details
sciqlopplots-0.37.1-cp313-cp313-manylinux_2_39_aarch64.whl CPython 3.13 CPython 3.13 Linux glibc 2.39+ ARM64 Details
sciqlopplots-0.37.1-cp313-cp313-manylinux_2_34_x86_64.whl CPython 3.13 CPython 3.13 Linux glibc 2.34+ x86-64 Details
sciqlopplots-0.37.1-cp313-cp313-macosx_13_0_x86_64.whl CPython 3.13 CPython 3.13 macOS 13.0+ x86-64 Details
sciqlopplots-0.37.1-cp313-cp313-macosx_13_0_arm64.whl CPython 3.13 CPython 3.13 macOS 13.0+ ARM64 Details
sciqlopplots-0.37.1-cp312-cp312-win_amd64.whl CPython 3.12 CPython 3.12 Windows x86-64 Details
sciqlopplots-0.37.1-cp312-cp312-manylinux_2_39_aarch64.whl CPython 3.12 CPython 3.12 Linux glibc 2.39+ ARM64 Details
sciqlopplots-0.37.1-cp312-cp312-manylinux_2_34_x86_64.whl CPython 3.12 CPython 3.12 Linux glibc 2.34+ x86-64 Details
sciqlopplots-0.37.1-cp312-cp312-macosx_13_0_x86_64.whl CPython 3.12 CPython 3.12 macOS 13.0+ x86-64 Details
sciqlopplots-0.37.1-cp312-cp312-macosx_13_0_arm64.whl CPython 3.12 CPython 3.12 macOS 13.0+ ARM64 Details
sciqlopplots-0.37.1-cp311-cp311-win_amd64.whl CPython 3.11 CPython 3.11 Windows x86-64 Details
sciqlopplots-0.37.1-cp311-cp311-manylinux_2_39_aarch64.whl CPython 3.11 CPython 3.11 Linux glibc 2.39+ ARM64 Details
sciqlopplots-0.37.1-cp311-cp311-manylinux_2_34_x86_64.whl CPython 3.11 CPython 3.11 Linux glibc 2.34+ x86-64 Details
sciqlopplots-0.37.1-cp311-cp311-macosx_13_0_x86_64.whl CPython 3.11 CPython 3.11 macOS 13.0+ x86-64 Details
sciqlopplots-0.37.1-cp311-cp311-macosx_13_0_arm64.whl CPython 3.11 CPython 3.11 macOS 13.0+ ARM64 Details
sciqlopplots-0.37.1-cp310-cp310-win_amd64.whl CPython 3.10 CPython 3.10 Windows x86-64 Details
sciqlopplots-0.37.1-cp310-cp310-manylinux_2_39_aarch64.whl CPython 3.10 CPython 3.10 Linux glibc 2.39+ ARM64 Details
sciqlopplots-0.37.1-cp310-cp310-manylinux_2_34_x86_64.whl CPython 3.10 CPython 3.10 Linux glibc 2.34+ x86-64 Details
sciqlopplots-0.37.1-cp310-cp310-macosx_13_0_x86_64.whl CPython 3.10 CPython 3.10 macOS 13.0+ x86-64 Details
sciqlopplots-0.37.1-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.1.tar.gz

Download URL sciqlopplots-0.37.1.tar.gz
Size 1.8 MB
Tags Source
SHA-256 checksum
How to use checksums
567ed371b98e563300f5b6c2822bf6a0c0f1b2f320dda017f55d6fedf212cbb8
BLAKE2b-256 checksum
How to use checksums
cdda6287a2db1791609e3ad51a0a9ded7fb350aeaa0edd8bc914f2e18ebb57c0
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.1-cp314-cp314-win_amd64.whl

Download URL sciqlopplots-0.37.1-cp314-cp314-win_amd64.whl
Size 4.5 MB
Tags CPython 3.14 Windows x86-64
SHA-256 checksum
How to use checksums
b8ddd44181749165c9a554137be2fb5951e692faf5f411a16afb48fba3da4edb
BLAKE2b-256 checksum
How to use checksums
85fcfa7dcf2c54f7970ec1e2e970f40de939c1015531a905601233e98b6c11e2
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.1-cp314-cp314-manylinux_2_39_aarch64.whl

Download URL sciqlopplots-0.37.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
b0f43f610fe81c4d4663a6741ef7d60226a14509eb4a68cf91fadb1bae706a47
BLAKE2b-256 checksum
How to use checksums
5e59615b2594f3a7ef8d5a7d76785cd0e3b722977d2a7f0fb3bc5c6a9caa8c53
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.1-cp314-cp314-manylinux_2_34_x86_64.whl

Download URL sciqlopplots-0.37.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
24b5d4c369c1372816d532394fe67402eb2a0ddff21c25b08572ec0bde2741cb
BLAKE2b-256 checksum
How to use checksums
aca939bd64ea2dc59e6ece8b86105fada8ace837dd94717969cc6549d8b691a5
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.1-cp314-cp314-macosx_13_0_x86_64.whl

Download URL sciqlopplots-0.37.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
abe43eb9183a7ed8b7594826d715c8df9c1247b1cb8040c681c8d11b65db0abf
BLAKE2b-256 checksum
How to use checksums
9773444332bf79b038fb379885e728c7d78579cf34166c5e2cfef4ff77cae34b
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.1-cp314-cp314-macosx_13_0_arm64.whl

Download URL sciqlopplots-0.37.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
4095798adaad9c6bd3c7d82fe4671ea962eafd17ef4eec0157826e12d3378848
BLAKE2b-256 checksum
How to use checksums
312926c3c133e8f4637c09dc65078459820b78b042c13ea8c8479792cb538432
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.1-cp313-cp313-win_amd64.whl

Download URL sciqlopplots-0.37.1-cp313-cp313-win_amd64.whl
Size 4.4 MB
Tags CPython 3.13 Windows x86-64
SHA-256 checksum
How to use checksums
9a9290adf5e1b30a0afbc592697f55eb8f7a0a04a359dfb311c228f46643bc35
BLAKE2b-256 checksum
How to use checksums
d5a88e453e3199f7c06083ced93c962a8737620afd02224e75fecd9c14e83953
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.1-cp313-cp313-manylinux_2_39_aarch64.whl

Download URL sciqlopplots-0.37.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
f623e8d36aebe4813147fef3eb894aff2274d40cb11569631dceaa73cf1b626d
BLAKE2b-256 checksum
How to use checksums
a571b7bc60a2e823bff912f4b77c030e670d5dea3465e1167c297a9fc846605c
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.1-cp313-cp313-manylinux_2_34_x86_64.whl

Download URL sciqlopplots-0.37.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
2dfdb03a95a40a6a9a62b529f815b47418c3f7416166171298e1e6b41de898c4
BLAKE2b-256 checksum
How to use checksums
6a716034b8a2c985d6bf14c563f0e7a051878839ae0e911cee0aedf4662d282b
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.1-cp313-cp313-macosx_13_0_x86_64.whl

Download URL sciqlopplots-0.37.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
e36cd6eb9a3db2702299fa33fc9ecd5c2544c8b88bc96b92fb458b3c15962c00
BLAKE2b-256 checksum
How to use checksums
5aaf86f5ef90135a3074fe873d1c228467a746f438e423962f1c0d687626246e
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.1-cp313-cp313-macosx_13_0_arm64.whl

Download URL sciqlopplots-0.37.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
87726166753ebb85c1b9b96721ad5780c14bcdbdb5ef629d64ff0a6f0504f39e
BLAKE2b-256 checksum
How to use checksums
d7e481113635dddeca1704ac5e89a1a1adc230410bbea8d17439efe0825a66c1
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.1-cp312-cp312-win_amd64.whl

Download URL sciqlopplots-0.37.1-cp312-cp312-win_amd64.whl
Size 4.4 MB
Tags CPython 3.12 Windows x86-64
SHA-256 checksum
How to use checksums
7db526f5a5dd2eb6af1a69191ec9876c7960e1aafb5dfb1bb1ec8d21c6e3b494
BLAKE2b-256 checksum
How to use checksums
7598b106a0f69ed9f63152738cee6c99ec6004e7fdcc04761f37748ba625c67e
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.1-cp312-cp312-manylinux_2_39_aarch64.whl

Download URL sciqlopplots-0.37.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
88a72cc6133eff0edc656b6cbfb47779e055c504e260bea00191efe24caf65da
BLAKE2b-256 checksum
How to use checksums
fb2bf4d6159ba35b432ac26c87a209e359647b00e42d87bf08ed073a243efbc6
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.1-cp312-cp312-manylinux_2_34_x86_64.whl

Download URL sciqlopplots-0.37.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
922123fd115e3e789f66a6f8dfb88be797cb5f6f38f11e75fd50b59c511c1a0d
BLAKE2b-256 checksum
How to use checksums
e138f43ae61a0849377c644637fee0e0ebd5a212465595c9864cb45ce811e60b
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.1-cp312-cp312-macosx_13_0_x86_64.whl

Download URL sciqlopplots-0.37.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
ab40a2fe27e3b195c79693b4b5c317924ce4efae5af215a0c2d9aefa96c47426
BLAKE2b-256 checksum
How to use checksums
9fec27b0852130e702b591cab160d60b495a146aaac607ca108ca6be2ea138f7
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.1-cp312-cp312-macosx_13_0_arm64.whl

Download URL sciqlopplots-0.37.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
85c0039769b46e4d999a6ef4d5736a109bbca93ff4bcb103a51003b8c9e1ec3e
BLAKE2b-256 checksum
How to use checksums
058235293b9a8d00e1a9f6ec7fb154c3c245a53ee40e88a9f19690f99968b361
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.1-cp311-cp311-win_amd64.whl

Download URL sciqlopplots-0.37.1-cp311-cp311-win_amd64.whl
Size 4.4 MB
Tags CPython 3.11 Windows x86-64
SHA-256 checksum
How to use checksums
ba3ddcb1d81fc4b3087afbe12749ce222e4e76761f2ae672cfdee93e5f2d1c45
BLAKE2b-256 checksum
How to use checksums
11a733c709aa106336211ed7fc3ff2d39f41186c002930868ae3d35c4cf69306
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.1-cp311-cp311-manylinux_2_39_aarch64.whl

Download URL sciqlopplots-0.37.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
4a9a5b71f692e382666e465daae86cd6a558dc09da704c296b44c8a860755df6
BLAKE2b-256 checksum
How to use checksums
a76fe3066999067b3233e7156f950183dffdeb9ddb83a7ac322282b62f0d00d1
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.1-cp311-cp311-manylinux_2_34_x86_64.whl

Download URL sciqlopplots-0.37.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
a046b5b94a69ea1b9dec3a57fe8a9e3611ef58d952c6babbabbfb2d242384163
BLAKE2b-256 checksum
How to use checksums
adfc3131a3683c09a89fd22a231672e249390068a1379d4a9f33a45e266135a1
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.1-cp311-cp311-macosx_13_0_x86_64.whl

Download URL sciqlopplots-0.37.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
ebb2139a317c29d6c24c2353585b2bd1a3d5a0def65265d48758085dc7837bd6
BLAKE2b-256 checksum
How to use checksums
200b6a472bb40c52d4f1ae6617b755d630df8cc9b34433e5765b58598b52d804
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.1-cp311-cp311-macosx_13_0_arm64.whl

Download URL sciqlopplots-0.37.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
76abb6da13dd7d338a537700dc4e4bc234a250fd427fb2ea651ac552a6781cb2
BLAKE2b-256 checksum
How to use checksums
b72dc5dd5f88418233dd202492b0944bab0dea92dd9df0ef3ef42f1196297a4a
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.1-cp310-cp310-win_amd64.whl

Download URL sciqlopplots-0.37.1-cp310-cp310-win_amd64.whl
Size 4.4 MB
Tags CPython 3.10 Windows x86-64
SHA-256 checksum
How to use checksums
5ce4ee00fccd1ef846bf55effaf14d08fb9162bbb23422331871f42777aa63b6
BLAKE2b-256 checksum
How to use checksums
1b1327ec466798fa733a1542eca1eaffd8291d16c136ec5426cf32070d2a3f30
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.1-cp310-cp310-manylinux_2_39_aarch64.whl

Download URL sciqlopplots-0.37.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
b1f8ca541c4a98bf6327606714003aef8885839f4208242ba561b22aca212830
BLAKE2b-256 checksum
How to use checksums
f33815d1e2c382cfcd91edd4067655754894500a925e892a6a352eaeff6801df
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.1-cp310-cp310-manylinux_2_34_x86_64.whl

Download URL sciqlopplots-0.37.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
cf76944ffc0513c2ad4a1e9aac32693cc515c273731db99335684e6387efd2fd
BLAKE2b-256 checksum
How to use checksums
4ff6658df5fd7ae6d707113273f3a70a5781b29780d8fdbce8d346158f988829
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.1-cp310-cp310-macosx_13_0_x86_64.whl

Download URL sciqlopplots-0.37.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
020b32621f88d1a80f78842970cffc8009b44d9aa1b70c78108efbe775bc937e
BLAKE2b-256 checksum
How to use checksums
f3c2e9e48713f20abbbf7d257ae60f863d32fc593fd6fd833360b8b1abc7e307
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.1-cp310-cp310-macosx_13_0_arm64.whl

Download URL sciqlopplots-0.37.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
2a53f9437ac53f254bbe05f3d95678a611ab5ad4c4d3d79b144f22337aa1d334
BLAKE2b-256 checksum
How to use checksums
7a09f1f546a0eb0b998166e7cdfc701fb43fc2fb7fce053fc5c1f84443326638
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.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