Skip to main content

Qt plotting widgets for Python

Project description

https://raw.githubusercontent.com/PierreRaybaut/PythonQwt/master/qwt/tests/data/testlauncher.png

The PythonQwt package is a 2D-data plotting library using Qt graphical user interfaces for the Python programming language. It is compatible with PyQt4, PyQt5, PyQt6 and PySide6.

The PythonQwt project was initiated to solve -at least temporarily- the obsolescence issue of PyQwt (the Python-Qwt C++ bindings library) which is no longer maintained. The idea was to translate the original Qwt C++ code to Python and then to optimize some parts of the code by writing new modules based on NumPy and other libraries.

The PythonQwt package consists of a single Python package named qwt which is a pure Python implementation of Qwt C++ library with some limitations: efforts were concentrated on basic plotting features, leaving higher level features to the guiqwt library.

See README and documentation (online or PDF) for more details on the library and changelog for recent history of changes.

The following example is a good starting point to see how to set up a simple plot widget:

from qtpy import QtWidgets as QW
import qwt
import numpy as np

app = QW.QApplication([])
x = np.linspace(-10, 10, 500)
plot = qwt.QwtPlot("Trigonometric functions")
plot.insertLegend(qwt.QwtLegend(), qwt.QwtPlot.BottomLegend)
qwt.QwtPlotCurve.make(x, np.cos(x), "Cosinus", plot, linecolor="red", antialiased=True)
qwt.QwtPlotCurve.make(x, np.sin(x), "Sinus", plot, linecolor="blue", antialiased=True)
plot.resize(600, 300)
plot.show()
app.exec_()
https://raw.githubusercontent.com/PierreRaybaut/PythonQwt/master/doc/_static/QwtPlot_example.png

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

PythonQwt-0.10.6.tar.gz (1.2 MB view details)

Uploaded Source

Built Distribution

PythonQwt-0.10.6-py2.py3-none-any.whl (1.0 MB view details)

Uploaded Python 2 Python 3

File details

Details for the file PythonQwt-0.10.6.tar.gz.

File metadata

  • Download URL: PythonQwt-0.10.6.tar.gz
  • Upload date:
  • Size: 1.2 MB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.11.3

File hashes

Hashes for PythonQwt-0.10.6.tar.gz
Algorithm Hash digest
SHA256 2be5b280d694ef45aa63ee1c379f4a76b0d0379f0b33eee639d1ba0d4c0afd1b
MD5 33230c96c038c7439a5acea2a9d8f087
BLAKE2b-256 6dc04c408616e52b89e79125a2d8904e4fc08dfa2d22472df6f994972b645e5c

See more details on using hashes here.

Provenance

File details

Details for the file PythonQwt-0.10.6-py2.py3-none-any.whl.

File metadata

  • Download URL: PythonQwt-0.10.6-py2.py3-none-any.whl
  • Upload date:
  • Size: 1.0 MB
  • Tags: Python 2, Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.11.3

File hashes

Hashes for PythonQwt-0.10.6-py2.py3-none-any.whl
Algorithm Hash digest
SHA256 2528de07f302d1beb31251a5252a0db9bf89eb47d647761bcf975cb15d413604
MD5 b4f4c47ce755201d39135602540c5252
BLAKE2b-256 0491649414d69ea04831a1d95754146b390124a7d5ccda3b5a83f20177e1f7d0

See more details on using hashes here.

Provenance

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page