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

Built distributions (wheels)

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

Total release size: 154.2 MB

Release files / sciqlopplots-0.38.1.tar.gz

Download URL sciqlopplots-0.38.1.tar.gz
Size 1.8 MB
Tags Source
SHA-256 checksum
How to use checksums
0dc5f825378aaa1ed97d098c10b8c7d096ed6f0266cb67c5ca46e20d19e5bdd2
BLAKE2b-256 checksum
How to use checksums
5f1e9343b8b6609f5713a0834c260f2c4d41a2e80e28a2acd72ef5e1613dd03e
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.1-cp314-cp314-win_amd64.whl

Download URL sciqlopplots-0.38.1-cp314-cp314-win_amd64.whl
Size 4.6 MB
Tags CPython 3.14 Windows x86-64
SHA-256 checksum
How to use checksums
658812367132ee66aa734c65166f3ab0d3709d3facc17f778633682ac6eb1d03
BLAKE2b-256 checksum
How to use checksums
44215fb07920ea30d426d7b70a6a9cffca2bc33f494aeccfccec6bda1cd490be
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.1-cp314-cp314-manylinux_2_39_aarch64.whl

Download URL sciqlopplots-0.38.1-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
fb5988e812a130dbfb22d29f800a4e6aef12c526641abaf0e9d908e32af7738b
BLAKE2b-256 checksum
How to use checksums
7e58dd8b95fc2e48816eb0068b30253046887750e6044593290e17544dfb1b42
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.1-cp314-cp314-manylinux_2_34_x86_64.whl

Download URL sciqlopplots-0.38.1-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
c2ee82965eb53ac9ad0d21ffcee5f9ecbdaa29b7b9ff034eb103cadf8a5ce74a
BLAKE2b-256 checksum
How to use checksums
35c8dd528df52034c97a52c0f081b49a56b0bb31dcb813e04a2fd79b61889d55
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.1-cp314-cp314-macosx_13_0_x86_64.whl

Download URL sciqlopplots-0.38.1-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
1280d6db7003072e0297c98cdf6e1bdbf0da89da5cffa42541608452c8c734e6
BLAKE2b-256 checksum
How to use checksums
7da689102ccee817e7d60050ff72358c6877c43f61b05567fd84ec742dd5146a
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.1-cp314-cp314-macosx_13_0_arm64.whl

Download URL sciqlopplots-0.38.1-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
f02710304d022c26e52d7fcb4b4de14a31c9756c2d67b501c118ff397851f8cd
BLAKE2b-256 checksum
How to use checksums
63500d4436550adadf197e58308e92dbbda098cbb65c106af5d9b3f044e29eee
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.1-cp313-cp313-win_amd64.whl

Download URL sciqlopplots-0.38.1-cp313-cp313-win_amd64.whl
Size 4.5 MB
Tags CPython 3.13 Windows x86-64
SHA-256 checksum
How to use checksums
e8f34e3f8c48bf5c3de0aabd37b17ddddb34ccff5dd02107039fc00faa340beb
BLAKE2b-256 checksum
How to use checksums
fc6673793df34240f98af2b98a46d3779393e62bf2f5c3dbeb3888d9da9d7f3f
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.1-cp313-cp313-manylinux_2_39_aarch64.whl

Download URL sciqlopplots-0.38.1-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
292293671083610dd35d34414892d70a9f92cd3666edf5fae7a3dc065a71744d
BLAKE2b-256 checksum
How to use checksums
4af13c88ea8b7090a1f8f2c31e5aa7cbecca8cef143d95cc06a815a77bc59b42
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.1-cp313-cp313-manylinux_2_34_x86_64.whl

Download URL sciqlopplots-0.38.1-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
211d214f87834ca2f3f8611a2ad126db896a9f0fb7344f340e92b526ad9e4386
BLAKE2b-256 checksum
How to use checksums
a5339cc4ee0caad71dd24944b160545c81ecb708b95b64f4d33049db48571cd5
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.1-cp313-cp313-macosx_13_0_x86_64.whl

Download URL sciqlopplots-0.38.1-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
9b8a43a62f685029177d3944fd168fb42d5c3ebce0c5bce318af75b9073e430b
BLAKE2b-256 checksum
How to use checksums
4d6e9b2cfefd25fcaadceac60ff95af96ed38628ae26724c0ee3d759498fb1b3
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.1-cp313-cp313-macosx_13_0_arm64.whl

Download URL sciqlopplots-0.38.1-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
005acf7dc9616e611f50cf110e985177fc7bba7d28b3027cfc1930612765b332
BLAKE2b-256 checksum
How to use checksums
33ded4a0a48580a41e798800daf4b89d6d3b25e8ca501ab8762df18edee00b13
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.1-cp312-cp312-win_amd64.whl

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

Download URL sciqlopplots-0.38.1-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
2aa701c47b75f3fc1aeb29dacfb6ecb3b2ac9c990a0db35cb5f7ad7c3db166c7
BLAKE2b-256 checksum
How to use checksums
1ac748b8d799cb7fe8b5f5f580ddbb6d6abef3d7159d9d7576d2c04e3512c770
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.1-cp312-cp312-manylinux_2_34_x86_64.whl

Download URL sciqlopplots-0.38.1-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
6c8751f96a3a1061f0049ce990376409aa854d1f11c5bf6e5c4f99ab9edd6ee5
BLAKE2b-256 checksum
How to use checksums
cf84b9ee93d03f61242e59fd1c7ff7271cd9b7ebb9e86ee88f5dfd2a4023c48c
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.1-cp312-cp312-macosx_13_0_x86_64.whl

Download URL sciqlopplots-0.38.1-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
a0ebbff199c2d85cd305782fe3bd86dd9c999326a109f6c9b41cbbd38a1705e4
BLAKE2b-256 checksum
How to use checksums
98b1f19d1d1cc0ad1af76b3a11ff75ac0b10504c0dcbd222baa76ca48b3a34c7
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.1-cp312-cp312-macosx_13_0_arm64.whl

Download URL sciqlopplots-0.38.1-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
ed0ae29e1bb33be1d610a9b2248b73269d40e758beceaed0c32f1d3747fa7acb
BLAKE2b-256 checksum
How to use checksums
fcfdb4e0ef5e55ec80a4b624ae25fd3db4a26386707374904226f3ba0edeb890
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.1-cp311-cp311-win_amd64.whl

Download URL sciqlopplots-0.38.1-cp311-cp311-win_amd64.whl
Size 4.5 MB
Tags CPython 3.11 Windows x86-64
SHA-256 checksum
How to use checksums
2c81fe667e6899233474b2a011c1f7938aa01c38e51127dac25e2a3f821f5da5
BLAKE2b-256 checksum
How to use checksums
646376621aab589f5b8173517e0c06763d96172badda1d81b159de8425cb93cf
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.1-cp311-cp311-manylinux_2_39_aarch64.whl

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

Download URL sciqlopplots-0.38.1-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
0bf472d803f976c917ea1dd5c9966d73b8101224f615f541ca279393bd52977d
BLAKE2b-256 checksum
How to use checksums
fe35c023310c81c9fc55ff46986d8018fbdc05a10338a365e637ea09d3c746c6
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.1-cp311-cp311-macosx_13_0_x86_64.whl

Download URL sciqlopplots-0.38.1-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
9ad5d3f55c7e29fa805cf95a1a569d0077e480a4044b250446613218407b77a9
BLAKE2b-256 checksum
How to use checksums
041b1880cd4410cc0768d76f3fdcd68ae739cfe9786f8bb69d41a64f3acb7a76
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.1-cp311-cp311-macosx_13_0_arm64.whl

Download URL sciqlopplots-0.38.1-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
7c158428354778b474f098d1369dc26ee6fc15d9852b95f0a9e09ea9dd1c4fd7
BLAKE2b-256 checksum
How to use checksums
a2bd20afc2b7526d98996bae743ce207f0dcca394b0d9ccbdf1c6c050db38f26
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.1-cp310-cp310-win_amd64.whl

Download URL sciqlopplots-0.38.1-cp310-cp310-win_amd64.whl
Size 4.5 MB
Tags CPython 3.10 Windows x86-64
SHA-256 checksum
How to use checksums
f3d87242f087d94031c3125350f1d8e113b46d282a0b2e58b77edcc220ec3237
BLAKE2b-256 checksum
How to use checksums
b9fe5dc81da94ed6ae48cf0b2b2afd176c254c4feddb9fd7e155ce6bff918ab3
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.1-cp310-cp310-manylinux_2_39_aarch64.whl

Download URL sciqlopplots-0.38.1-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
1b91a8ddaaf5539153e5e7390d70008957bd9520f60f6e8e4e0d62703b47f998
BLAKE2b-256 checksum
How to use checksums
058bcd58da8bfde90f09af44df80e5c9a39dba5802f5794364770832294ed63a
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.1-cp310-cp310-manylinux_2_34_x86_64.whl

Download URL sciqlopplots-0.38.1-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
51ed99b1bb6d77211a67e6c338e29eca66f7d32a9aa42183936bf0074e18c463
BLAKE2b-256 checksum
How to use checksums
595b5dcead7ef0b3c73b22941c014b3639ec5cf13c066156c358ac02675fce66
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.1-cp310-cp310-macosx_13_0_x86_64.whl

Download URL sciqlopplots-0.38.1-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
114b9589f164aed9a63cb3021021894c41aa49541856f77ce2af612efce40903
BLAKE2b-256 checksum
How to use checksums
769de9155010fa11b65a8ff335e3c0828cef58a67c637cd117a514b7c59c1cf9
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.1-cp310-cp310-macosx_13_0_arm64.whl

Download URL sciqlopplots-0.38.1-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
cbdd4fc2f0f104e4e972dbc6a0cf4b5a04d3dc0633ef79157a2c08285ae8ee99
BLAKE2b-256 checksum
How to use checksums
3ce8e12c07d7bff360da65a4a3e22643886715610ec386ef4690a31b8a1de63f
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.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