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.39.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.39.0
File Size Uploaded
sciqlopplots-0.39.0.tar.gz 1.8 MB Details

Built distributions (wheels)

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

Total release size: 154.7 MB

Release files / sciqlopplots-0.39.0.tar.gz

Download URL sciqlopplots-0.39.0.tar.gz
Size 1.8 MB
Tags Source
SHA-256 checksum
How to use checksums
af9d0ef4022f5a666b9fa7f8877a69e67aa773b4452a9db07bb012470c89ecbd
BLAKE2b-256 checksum
How to use checksums
0611d91789b48577ce954017ae9172be6d46b4e9a6f0d328ca49919c5236610f
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.39.0-cp314-cp314-win_amd64.whl

Download URL sciqlopplots-0.39.0-cp314-cp314-win_amd64.whl
Size 4.6 MB
Tags CPython 3.14 Windows x86-64
SHA-256 checksum
How to use checksums
91f9d65bccc301b56ed04d584374a87cfc1f81f838ddce4c134504b0d43257ed
BLAKE2b-256 checksum
How to use checksums
0b7f26c84e59546d7b148c4a643cb6dff2cdb0eb5fa2ff7e0218e68ee3b9733b
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.39.0-cp314-cp314-manylinux_2_39_aarch64.whl

Download URL sciqlopplots-0.39.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
d06e8a3a3d39fe635aff1e24f16817c199a2fb054b1cf6e3da009e18aae6f08f
BLAKE2b-256 checksum
How to use checksums
25d56ef4d5c07d32355a0d234a3aaa0e5ff3183652c83d8903aa96a94bbd4e82
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.39.0-cp314-cp314-manylinux_2_34_x86_64.whl

Download URL sciqlopplots-0.39.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
3eff608c21679a441cc7443f4d35c687d210f071d13dc9b61a07842ea687d429
BLAKE2b-256 checksum
How to use checksums
21213ab8864e478eedc6374c45cb28b53bc9970351fb5a4af392a5ff81dd733b
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.39.0-cp314-cp314-macosx_13_0_x86_64.whl

Download URL sciqlopplots-0.39.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
33adefe702bb1c261eaf1dd4004d6619d924edf7152f5b5a9c0bc0b810fcb2b7
BLAKE2b-256 checksum
How to use checksums
097b562f0a19104f184c0dd5f64d4b7e65d09c39b15be877acf27a6e6e7068de
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.39.0-cp314-cp314-macosx_13_0_arm64.whl

Download URL sciqlopplots-0.39.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
078d0029be6b4b79f3a8fec0407c208f4ac3e6c92bf58c433221485430c1f3fd
BLAKE2b-256 checksum
How to use checksums
76ac9b602bc9806f8ea7a1587fe9d91334c556f0008b6dfd8b7e66b8d1c84ba1
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.39.0-cp313-cp313-win_amd64.whl

Download URL sciqlopplots-0.39.0-cp313-cp313-win_amd64.whl
Size 4.5 MB
Tags CPython 3.13 Windows x86-64
SHA-256 checksum
How to use checksums
083c32e7648ddc1347fe4b58a9322adb829433e83ef2e5c9a511b37f3b7eaa30
BLAKE2b-256 checksum
How to use checksums
0ad1b37aa40656613d4f86515c742ab3b07890952abc78d1d031a59c50915ab3
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.39.0-cp313-cp313-manylinux_2_39_aarch64.whl

Download URL sciqlopplots-0.39.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
8b5e9ce3b02e14eadfbedc99624312ca839f9e9bb6e882329f30a850a0da97a5
BLAKE2b-256 checksum
How to use checksums
4fa468e8e25c91e888500a412cc24b50e7b2ad75d6f5535b0ef8efbed9a8ef0c
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.39.0-cp313-cp313-manylinux_2_34_x86_64.whl

Download URL sciqlopplots-0.39.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
8291d8b0f651899585d1678e039b434874de08fa3a43cc9d7f8fdd494a0f490b
BLAKE2b-256 checksum
How to use checksums
dc2945532a49c138d77abdae42697a3b1d9775c42d66ceb972223bed22acc018
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.39.0-cp313-cp313-macosx_13_0_x86_64.whl

Download URL sciqlopplots-0.39.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
1eb27ef06fcdba71ab9bedb31321a598cc4e638883546cffa12f64d85c0b54eb
BLAKE2b-256 checksum
How to use checksums
0d991bcad4a2d005653bb38d532d54e963e21b11b254e01b4cbf8a972fd2c0e8
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.39.0-cp313-cp313-macosx_13_0_arm64.whl

Download URL sciqlopplots-0.39.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
6f324fdf64746c0cae69d83de1811c232f9c85c98480c2e3db66069d0de17207
BLAKE2b-256 checksum
How to use checksums
589ac0f45d10b09ba478601780729190f92f4c41c1ccbae9f596c8cb329837ae
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.39.0-cp312-cp312-win_amd64.whl

Download URL sciqlopplots-0.39.0-cp312-cp312-win_amd64.whl
Size 4.5 MB
Tags CPython 3.12 Windows x86-64
SHA-256 checksum
How to use checksums
d4d06f93fba3486ce1511e050d31945a717a0ccbe930bfb5427179c616ee629f
BLAKE2b-256 checksum
How to use checksums
c97b56c280b70e7a6f48aa33bf2a2f658ea733f626244608c54de41a24cb7021
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.39.0-cp312-cp312-manylinux_2_39_aarch64.whl

Download URL sciqlopplots-0.39.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
bed4961224432e0df2fa70de05a135976903c89dfbdd8c031ebb77a14d43cc21
BLAKE2b-256 checksum
How to use checksums
4af913ac4c80a44123cae3e9cd810f00ba5e621a66e5e42b8461dfa2cf63ac65
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.39.0-cp312-cp312-manylinux_2_34_x86_64.whl

Download URL sciqlopplots-0.39.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
fccb40850f49ec572a29772589d11e583357b3b1d2715906a11d75aca5bd7792
BLAKE2b-256 checksum
How to use checksums
b78df5c2e36b040036162465218a9594630232780ca5f35f62b4d50df18e2665
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.39.0-cp312-cp312-macosx_13_0_x86_64.whl

Download URL sciqlopplots-0.39.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
dc1d93f0a9d1880c934081ec089bf8efd615f509278b4fe5699ec0595ec7a80a
BLAKE2b-256 checksum
How to use checksums
8023ec2266d8954d461088dc3781b4e09191420de696a12ce1a89d4a5ebafe4e
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.39.0-cp312-cp312-macosx_13_0_arm64.whl

Download URL sciqlopplots-0.39.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
ba04091b29c12760af5d28e7636ca602d2952e70437b60c096baeee47a70061b
BLAKE2b-256 checksum
How to use checksums
edd0d9aa9af4839880016e194c1e9dbf56fce6c266d9dbacb68e26e75c90c114
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.39.0-cp311-cp311-win_amd64.whl

Download URL sciqlopplots-0.39.0-cp311-cp311-win_amd64.whl
Size 4.5 MB
Tags CPython 3.11 Windows x86-64
SHA-256 checksum
How to use checksums
bc0ffa96a063a561172b59b6a25facea4ef3aeb5ea0dd7488fe45a86c1219bab
BLAKE2b-256 checksum
How to use checksums
6775d6d89f4f5fb32f6924b0b549a865b0a72de3d64e657ee646ee9d99839dcf
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.39.0-cp311-cp311-manylinux_2_39_aarch64.whl

Download URL sciqlopplots-0.39.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
28e7fa508d8722b960cc7b0fb7b43a63b310415639cd56ecbb626b306261b7ed
BLAKE2b-256 checksum
How to use checksums
5e6abccc17c8e95ea6697cd28bf1f24220ba7f72a067e00dc6bd70d390add33f
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.39.0-cp311-cp311-manylinux_2_34_x86_64.whl

Download URL sciqlopplots-0.39.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
ed781d45b76c5254e08a0e4c15826d00f4a4802140741124625693f60b4096c9
BLAKE2b-256 checksum
How to use checksums
c7ce7a8a8767c3e7508a32f5e01a7fe9c04ba0e6b6c8d314e19f372c2181c639
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.39.0-cp311-cp311-macosx_13_0_x86_64.whl

Download URL sciqlopplots-0.39.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
42776587b703ca002a3d4ae7c1d98a67639cdd694df959ae3b828d006806ead6
BLAKE2b-256 checksum
How to use checksums
69bbdf736ab6d39231063e2406bbd5a56e91fd4dccb5bb7a62c7c254a3a18b54
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.39.0-cp311-cp311-macosx_13_0_arm64.whl

Download URL sciqlopplots-0.39.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
8eff40fe965a8873e700003ca82dcf54e58aa675832ea17b69bfb25029b7daf2
BLAKE2b-256 checksum
How to use checksums
6e9d18e71ead010909317c007d31daaed0caa99921c16f715586df023857d44b
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.39.0-cp310-cp310-win_amd64.whl

Download URL sciqlopplots-0.39.0-cp310-cp310-win_amd64.whl
Size 4.5 MB
Tags CPython 3.10 Windows x86-64
SHA-256 checksum
How to use checksums
acc63b6a163fd89841cd188d5cd79247c9a05f3afb5b7c3691493cade8df4129
BLAKE2b-256 checksum
How to use checksums
00b67d16a00eb3e714dac503a012919828a75c79da5e381858f714d58bc61eae
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.39.0-cp310-cp310-manylinux_2_39_aarch64.whl

Download URL sciqlopplots-0.39.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
642f2457c890dccb2c73bfbcb1dbc09e2b16922b2ffcc847e21fe32d0e0447ba
BLAKE2b-256 checksum
How to use checksums
e41aba2403a257d7ffbf2575afa7154bb4a385838340fdf431dd6eaf349200aa
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.39.0-cp310-cp310-manylinux_2_34_x86_64.whl

Download URL sciqlopplots-0.39.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
48770b6d8510cf88175b136b61f20e6b8663e2d708daaa55c9ab90c410f9cc90
BLAKE2b-256 checksum
How to use checksums
288b30949a66b4b472f936bbefb3717f5a5ead04ba00fb016b16cf8160dc405f
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.39.0-cp310-cp310-macosx_13_0_x86_64.whl

Download URL sciqlopplots-0.39.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
671245993de90ea24b43a434edbdc6c72199b239f15278ad365afc0589a61968
BLAKE2b-256 checksum
How to use checksums
8aed024d394b77eb2d0cc26ab38201a438ebbeb7273f4881283ecac4774b7868
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.39.0-cp310-cp310-macosx_13_0_arm64.whl

Download URL sciqlopplots-0.39.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
8521670b748a0e2fed5acb0b3e943860d3c07f2e52c93b7f8d46f0ea968a0770
BLAKE2b-256 checksum
How to use checksums
420aad4eef3f605e011d529360d40584a387602d0fd0b2878f99d9694ca2fc06
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.39.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