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.38.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.38.0
File Size Uploaded
sciqlopplots-0.38.0.tar.gz 1.8 MB Details

Built distributions (wheels)

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

Total release size: 154.0 MB

Release files / sciqlopplots-0.38.0.tar.gz

Download URL sciqlopplots-0.38.0.tar.gz
Size 1.8 MB
Tags Source
SHA-256 checksum
How to use checksums
b99f366910d8f4938603fb6e8a0737c8f84a163116dec6a7c2eb347db403b0c3
BLAKE2b-256 checksum
How to use checksums
4341cabd23ca98d76537fd8476773f5d6c8c99c53e760e037ea86465214ba195
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.38.0-cp314-cp314-win_amd64.whl

Download URL sciqlopplots-0.38.0-cp314-cp314-win_amd64.whl
Size 4.6 MB
Tags CPython 3.14 Windows x86-64
SHA-256 checksum
How to use checksums
5d62ffcd488f395f854d24f5cbe3a062472dd889420bc81a360f134b9d9c64b6
BLAKE2b-256 checksum
How to use checksums
7ee7a91089a12b295e10df78a6e8a406f1334f2bf4a360782bd779e6f19e59df
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.38.0-cp314-cp314-manylinux_2_39_aarch64.whl

Download URL sciqlopplots-0.38.0-cp314-cp314-manylinux_2_39_aarch64.whl
Size 6.8 MB
Tags CPython 3.14 Linux glibc 2.39+ ARM64
SHA-256 checksum
How to use checksums
9838a6152d0f11f372e1a5db9d2a54d4bbb632fb3d06e5b4922370acc79d689c
BLAKE2b-256 checksum
How to use checksums
9571a61268f90dc764f65a4a72fc474ab945bf9541f5a12e50dadca1201d6fb7
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.38.0-cp314-cp314-manylinux_2_34_x86_64.whl

Download URL sciqlopplots-0.38.0-cp314-cp314-manylinux_2_34_x86_64.whl
Size 7.3 MB
Tags CPython 3.14 Linux glibc 2.34+ x86-64
SHA-256 checksum
How to use checksums
7a141d771b99cc106f8f96aedac5423accb481db71f666227268d9bedc4e6cdc
BLAKE2b-256 checksum
How to use checksums
7c6b3bdb52cac0c90d61baf12b952489ba43aafb42b30260f1aafba047c200dc
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.38.0-cp314-cp314-macosx_13_0_x86_64.whl

Download URL sciqlopplots-0.38.0-cp314-cp314-macosx_13_0_x86_64.whl
Size 6.2 MB
Tags CPython 3.14 macOS 13.0+ x86-64
SHA-256 checksum
How to use checksums
fb0840bf7968329790e4075505d33cf86a141c9538cbd2020b4d633a7580c914
BLAKE2b-256 checksum
How to use checksums
74dd13c5bdb3c80d20cd4cdc4c513e50ebf7df37864b9f35019c19e2fcf4ccca
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.38.0-cp314-cp314-macosx_13_0_arm64.whl

Download URL sciqlopplots-0.38.0-cp314-cp314-macosx_13_0_arm64.whl
Size 5.7 MB
Tags CPython 3.14 macOS 13.0+ ARM64
SHA-256 checksum
How to use checksums
b94a745a75e6fab9a676773254cbdddbdeb8401dc87bff56bbf99411ea0028fa
BLAKE2b-256 checksum
How to use checksums
c2cf9665b69cacdd0ff1226a2467ee22c636b3661ff174c8d5ea50556da38d3c
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.38.0-cp313-cp313-win_amd64.whl

Download URL sciqlopplots-0.38.0-cp313-cp313-win_amd64.whl
Size 4.5 MB
Tags CPython 3.13 Windows x86-64
SHA-256 checksum
How to use checksums
3940316d16979022ab0b006072a3f8843c79596e6ae0969feb113bd5b02019c0
BLAKE2b-256 checksum
How to use checksums
7c7b0f9b98e0a15968e4a209d80c3ffc18723e29a6035185c13b4a07a799e925
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.38.0-cp313-cp313-manylinux_2_39_aarch64.whl

Download URL sciqlopplots-0.38.0-cp313-cp313-manylinux_2_39_aarch64.whl
Size 6.8 MB
Tags CPython 3.13 Linux glibc 2.39+ ARM64
SHA-256 checksum
How to use checksums
8d8ecbf97dd2d4fc0dc85beca1c1dcbe5a265602474f3f34ce6a3fb3fdd3276a
BLAKE2b-256 checksum
How to use checksums
0272c71bf679a6efb844b2966afb596aa2d9b6be67f254698d3b352d2054897d
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.38.0-cp313-cp313-manylinux_2_34_x86_64.whl

Download URL sciqlopplots-0.38.0-cp313-cp313-manylinux_2_34_x86_64.whl
Size 7.3 MB
Tags CPython 3.13 Linux glibc 2.34+ x86-64
SHA-256 checksum
How to use checksums
48a58f201fa3216538f520015658d2be5636a42d57b067bbb74d40ad9472ba33
BLAKE2b-256 checksum
How to use checksums
20effd52cdc070c127ecf3910625abe024279a87cfeba54262c9a4b687d2ddcb
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.38.0-cp313-cp313-macosx_13_0_x86_64.whl

Download URL sciqlopplots-0.38.0-cp313-cp313-macosx_13_0_x86_64.whl
Size 6.2 MB
Tags CPython 3.13 macOS 13.0+ x86-64
SHA-256 checksum
How to use checksums
6537c1fec7abaf2a3937133955d6b8e393ae7681382cb35f94ac2c3d997ed0e9
BLAKE2b-256 checksum
How to use checksums
5c3140be96b724efdc1be329917dd457d2eaf14739d00cb7c6c8ae64b9e43a91
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.38.0-cp313-cp313-macosx_13_0_arm64.whl

Download URL sciqlopplots-0.38.0-cp313-cp313-macosx_13_0_arm64.whl
Size 5.7 MB
Tags CPython 3.13 macOS 13.0+ ARM64
SHA-256 checksum
How to use checksums
d50c2d9975895c5a3fe884bd1f7b2fdabf3ba93521d982e8a7881e6126aa041d
BLAKE2b-256 checksum
How to use checksums
dab95323d7c00bb8035db1ab7090175b3e2daa2f9e0c781aa7818f85ca9e1a80
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.38.0-cp312-cp312-win_amd64.whl

Download URL sciqlopplots-0.38.0-cp312-cp312-win_amd64.whl
Size 4.5 MB
Tags CPython 3.12 Windows x86-64
SHA-256 checksum
How to use checksums
1cb38c54c508b5fb4cc2a843adc6b704bf2c121de1ceac04f4ef2d19edcc30fc
BLAKE2b-256 checksum
How to use checksums
b754183b65048378cdc03cedcd03c2667e3a14609fd50e783aa2b3cb2d719cb1
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.38.0-cp312-cp312-manylinux_2_39_aarch64.whl

Download URL sciqlopplots-0.38.0-cp312-cp312-manylinux_2_39_aarch64.whl
Size 6.8 MB
Tags CPython 3.12 Linux glibc 2.39+ ARM64
SHA-256 checksum
How to use checksums
3937d1c90188c9ea7067d700b6bc2bae5741ed5a889974a5de4d619ca1ab8d9a
BLAKE2b-256 checksum
How to use checksums
9b0e1fbb9a2d784959a02ac413a75c55a6d823a5cf788ca14be167f68064db5e
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.38.0-cp312-cp312-manylinux_2_34_x86_64.whl

Download URL sciqlopplots-0.38.0-cp312-cp312-manylinux_2_34_x86_64.whl
Size 7.3 MB
Tags CPython 3.12 Linux glibc 2.34+ x86-64
SHA-256 checksum
How to use checksums
2a0659d9e66ef9645b1866d859da35cc3f4df810b24ad487279ff6e63abf4750
BLAKE2b-256 checksum
How to use checksums
e4640354ec4bb0e9cb2b9581331bde27bd4e6a8693b1cee764bd0daaabe88d58
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.38.0-cp312-cp312-macosx_13_0_x86_64.whl

Download URL sciqlopplots-0.38.0-cp312-cp312-macosx_13_0_x86_64.whl
Size 6.2 MB
Tags CPython 3.12 macOS 13.0+ x86-64
SHA-256 checksum
How to use checksums
3c14889dd8306547da656526632ab7ffd05acdd40b388c43da72e0e6d88c5ac5
BLAKE2b-256 checksum
How to use checksums
ef98835e0a95188450ea1f6c154d73a4a9388ea31a22c09ef4cb2b09bab0d4b8
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.38.0-cp312-cp312-macosx_13_0_arm64.whl

Download URL sciqlopplots-0.38.0-cp312-cp312-macosx_13_0_arm64.whl
Size 5.7 MB
Tags CPython 3.12 macOS 13.0+ ARM64
SHA-256 checksum
How to use checksums
49280dfe68d0c33a276e7e112e4ced5d6ef0c80e56eb13df0455374d4c088b4d
BLAKE2b-256 checksum
How to use checksums
5cecee4f59d771e2518dd3cd9a4330ae610fe2a0418d34793d7c9466e46fbfec
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.38.0-cp311-cp311-win_amd64.whl

Download URL sciqlopplots-0.38.0-cp311-cp311-win_amd64.whl
Size 4.5 MB
Tags CPython 3.11 Windows x86-64
SHA-256 checksum
How to use checksums
1b255dfa04aef019f3201e5edf6ff71622054945396c115b59b54b1e666af2d9
BLAKE2b-256 checksum
How to use checksums
414c9507227ee57955db3aac565dd31ba661e543644ecbc41d6ec58659ac84f5
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.38.0-cp311-cp311-manylinux_2_39_aarch64.whl

Download URL sciqlopplots-0.38.0-cp311-cp311-manylinux_2_39_aarch64.whl
Size 6.8 MB
Tags CPython 3.11 Linux glibc 2.39+ ARM64
SHA-256 checksum
How to use checksums
4153c751cd883f5e6b0f1966ff184d8d01502ebb5d7052052fcf7ebdd112267a
BLAKE2b-256 checksum
How to use checksums
75b43ebc40dd226aaf951086b55a699a710a570d4592df546bf51f589727b753
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.38.0-cp311-cp311-manylinux_2_34_x86_64.whl

Download URL sciqlopplots-0.38.0-cp311-cp311-manylinux_2_34_x86_64.whl
Size 7.3 MB
Tags CPython 3.11 Linux glibc 2.34+ x86-64
SHA-256 checksum
How to use checksums
eabbaa2a1a4669482a1a2725c08df2afbfe6a7f82543364be5f111ccc9f875f6
BLAKE2b-256 checksum
How to use checksums
a6bfcad10ef719105701c40c7ac2b0dd8a3fb4336de32261171daf704b15f8ca
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.38.0-cp311-cp311-macosx_13_0_x86_64.whl

Download URL sciqlopplots-0.38.0-cp311-cp311-macosx_13_0_x86_64.whl
Size 6.2 MB
Tags CPython 3.11 macOS 13.0+ x86-64
SHA-256 checksum
How to use checksums
b7b31dc17d282e4ccc9236e8ecbecfa5afe9d09717ea0d65cd4d10dbd675841a
BLAKE2b-256 checksum
How to use checksums
100759bfca41694251a4ce9ce9696dbba77049715cea9aee588b128a66bcb4af
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.38.0-cp311-cp311-macosx_13_0_arm64.whl

Download URL sciqlopplots-0.38.0-cp311-cp311-macosx_13_0_arm64.whl
Size 5.7 MB
Tags CPython 3.11 macOS 13.0+ ARM64
SHA-256 checksum
How to use checksums
cab3ec51a8f6a801ea145141ad20aad1d06cd44cc3a68c815306db263650343a
BLAKE2b-256 checksum
How to use checksums
bbd37ce61d347ca103508ece398f8f6523e6a5d6cae0da8fcfccd8e9a60bdaee
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.38.0-cp310-cp310-win_amd64.whl

Download URL sciqlopplots-0.38.0-cp310-cp310-win_amd64.whl
Size 4.5 MB
Tags CPython 3.10 Windows x86-64
SHA-256 checksum
How to use checksums
9715559d5e7fc1a25949058b2b7371a5db128ebc7f778683a6ea2d5019e538fa
BLAKE2b-256 checksum
How to use checksums
a6753cc9aca8e5c9653f13918a39de944f4de117d0a075423b39e40d90e2b5ad
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.38.0-cp310-cp310-manylinux_2_39_aarch64.whl

Download URL sciqlopplots-0.38.0-cp310-cp310-manylinux_2_39_aarch64.whl
Size 6.8 MB
Tags CPython 3.10 Linux glibc 2.39+ ARM64
SHA-256 checksum
How to use checksums
802fa9aa2d7901234e85010fd2fc0f337316cf24f0c357308c233576f70b781d
BLAKE2b-256 checksum
How to use checksums
9775420ccf2ceea7cde532c36ad1a616be99ea855d5a04178388b0d1c03c00de
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.38.0-cp310-cp310-manylinux_2_34_x86_64.whl

Download URL sciqlopplots-0.38.0-cp310-cp310-manylinux_2_34_x86_64.whl
Size 7.3 MB
Tags CPython 3.10 Linux glibc 2.34+ x86-64
SHA-256 checksum
How to use checksums
469db2b49a8cdbc871ae3de5be96b6d27372487330bc163367ae550d0f1e45a6
BLAKE2b-256 checksum
How to use checksums
59787446d351618a2656e608044370bee1b176c4fc956bf32d8fb5dd227e8333
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.38.0-cp310-cp310-macosx_13_0_x86_64.whl

Download URL sciqlopplots-0.38.0-cp310-cp310-macosx_13_0_x86_64.whl
Size 6.2 MB
Tags CPython 3.10 macOS 13.0+ x86-64
SHA-256 checksum
How to use checksums
106e585efc8995cc672d71f08d0a971cd5ca2ae05c43c4147160fa2e6cf837d6
BLAKE2b-256 checksum
How to use checksums
585c784b5b3af9b66e7fa3d9b58c509c5af24840fc84a2a94d7143533351b3d9
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.38.0-cp310-cp310-macosx_13_0_arm64.whl

Download URL sciqlopplots-0.38.0-cp310-cp310-macosx_13_0_arm64.whl
Size 5.7 MB
Tags CPython 3.10 macOS 13.0+ ARM64
SHA-256 checksum
How to use checksums
7bcb46e2402626580115d9800b6c6bef9a049b32ec3ac97561ee95bb20e4980d
BLAKE2b-256 checksum
How to use checksums
076a20155d2d77f9585dc142df00a41a789065367f22ae3cff7ef09574746001
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.38.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