Skip to content

Commit 7fedcfd

Browse files
committed
Doc: added panorama image + intro text
1 parent ce33ebe commit 7fedcfd

File tree

3 files changed

+20
-3
lines changed

3 files changed

+20
-3
lines changed

doc/images/panorama.png

151 KB
Loading

doc/overview.rst

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,7 @@ entire curve is still painted (in other words, when working with large
3232
amount of data, there is no performance gain when zooming in).
3333

3434
Other API compatibility issues with `Qwt`:
35-
- `QwtPlot.MinimizeMemory` option was removed as this option has no sense
36-
in python-qwt (the polyline plotting is not taking more memory than the
37-
array data that is already there).
35+
36+
- `QwtPlot.MinimizeMemory` option was removed as this option has no sense
37+
in python-qwt (the polyline plotting is not taking more memory than the
38+
array data that is already there).

qwt/__init__.py

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,23 @@
44
# Copyright (c) 2002 Uwe Rathmann, for the original C++ code
55
# Copyright (c) 2015 Pierre Raybaut, for the Python translation/optimization
66
# (see LICENSE file for more details)
7+
"""
8+
python-qwt
9+
==========
710
11+
The ``python-qwt`` package is a 2D-data plotting library using Qt graphical
12+
user interfaces for the Python programming language.
13+
14+
It consists of a single Python package named `qwt` which is a pure Python
15+
implementation of Qwt C++ library with some limitations.
16+
17+
.. image:: images/panorama.png
18+
19+
External resources:
20+
* Bug reports and feature requests: `GitHub`_
21+
22+
.. _GitHub: https://github.com/PierreRaybaut/python-qwt
23+
"""
824
__version__ = '0.1.1'
925
QWT_VERSION_STR = '6.1.2'
1026

0 commit comments

Comments
 (0)