Go to file
Martin Fitzpatrick e0c22e2796 Adding some additional deprectated APIs for Qt5. Example plots (mostly) working.
This adds some remaining APIs that were deprecated in Qt5. These are easy to do
as they're all documented, e.g.
http://qt-project.org/doc/qt-5.0/qtwidgets/qgraphicsitem-compat.html

Tested with most of the examples. Although I can't be sure as I
don't know what the 'correct' output is, they look like they work.

Some issues with interaction e.g. on the color bar plot.
2014-02-14 11:05:10 +01:00
doc Added documentation on using pyqtgraph as a subpackage. 2013-12-23 15:20:56 -05:00
examples Added BarGraphItem.shape() to allow better mouse interaction 2014-02-09 10:38:29 -05:00
pyqtgraph Adding some additional deprectated APIs for Qt5. Example plots (mostly) working. 2014-02-14 11:05:10 +01:00
tests SVG export fixes 2012-12-26 13:48:12 -05:00
tools remove print 2014-01-23 13:32:20 -05:00
.gitignore Reorganized setup.py code 2014-01-12 10:35:31 -05:00
.mailmap cleaner mailamp 2013-09-12 12:36:02 +08:00
CHANGELOG Added BarGraphItem.shape() to allow better mouse interaction 2014-02-09 10:38:29 -05:00
LICENSE.txt - Major reorganization; we now follow the standard python package structure. 2012-12-26 17:51:52 -05:00
MANIFEST.in Updated build system to use pybuild 2014-01-12 23:59:53 -05:00
README.md Fixed AxisItem to support unicode in tick strings 2013-12-29 09:17:23 -05:00
setup.py quiet setup.py warning about install_requires 2014-01-23 13:28:30 -05:00

PyQtGraph

A pure-Python graphics library for PyQt/PySide

Copyright 2012 Luke Campagnola, University of North Carolina at Chapel Hill

http://www.pyqtgraph.org

Maintainer

  • Luke Campagnola ('luke.campagnola@%s.com' % 'gmail')

Contributors

  • Megan Kratz
  • Paul Manis
  • Ingo Breßler
  • Christian Gavin
  • Michael Cristopher Hogg
  • Ulrich Leutner
  • Felix Schill
  • Guillaume Poulin
  • Antony Lee
  • Mattias Põldaru

Requirements

  • PyQt 4.7+ or PySide
  • python 2.6, 2.7, or 3.x
  • numpy, scipy
  • For 3D graphics: pyopengl
  • Known to run on Windows, Linux, and Mac.

Support

Post at the mailing list / forum

Installation Methods

  • To use with a specific project, simply copy the pyqtgraph subdirectory anywhere that is importable from your project. PyQtGraph may also be used as a git subtree by cloning the git-core repository from github.
  • To install system-wide from source distribution: $ python setup.py install
  • For instalation packages, see the website (pyqtgraph.org)

Documentation

There are many examples; run python -m pyqtgraph.examples for a menu.

Some (incomplete) documentation exists at this time.

  • Easiest place to get documentation is at http://www.pyqtgraph.org/documentation
  • If you acquired this code as a .tar.gz file from the website, then you can also look in doc/html.
  • If you acquired this code via GitHub, then you can build the documentation using sphinx. From the documentation directory, run: $ make html

Please feel free to pester Luke or post to the forum if you need a specific section of documentation to be expanded.