Go to file
Luke Campagnola 753ac9b4c4 Squashed commit of the following:
commit ca3fbe2ff9
Author: Luke Campagnola <luke.campagnola@gmail.com>
Date:   Thu Aug 7 08:41:30 2014 -0400

    Merged numerous updates from acq4:
    * Added HDF5 exporter
    * CSV exporter gets (x,y,y,y) export mode
    * Updates to SVG, Matplotlib exporter
    * Console can filter exceptions by string
    * Added tick context menu to GradientEditorItem
    * Added export feature to imageview
    * Parameter trees:
        - Option to save only user-editable values
        - Option to set visible title of parameters separately from name
        - Added experimental ParameterSystem for handling large systems of
            interdependent parameters
        - Auto-select editable portion of spinbox when editing
    * Added Vector.__abs__
    * Added replacement garbage collector for avoiding crashes on multithreaded Qt
    * Fixed "illegal instruction" caused by closing file handle 7 on OSX
    * configfile now reloads QtCore objects, Point, ColorMap, numpy arrays
    * Avoid triggering recursion issues in exception handler
    * Various bugfies and performance enhancements
2014-08-07 09:03:26 -04:00
doc Link ErrorBarItem in documentation 2014-06-27 11:05:05 -04:00
examples Add ErrorBarItem.setData 2014-06-27 10:55:55 -04:00
pyqtgraph Squashed commit of the following: 2014-08-07 09:03:26 -04:00
tools Update merge test to auto-check against github repo 2014-04-03 17:20:01 -04:00
.gitignore IDE files added to .gitignore 2014-02-08 09:15:28 +01:00
.mailmap cleaner mailamp 2013-09-12 12:36:02 +08:00
.travis.yml Added Travis CI support 2014-03-30 02:51:32 -04:00
CHANGELOG Add ErrorBarItem.setData 2014-06-27 10:55:55 -04:00
CONTRIBUTING.txt Update CONTRIB with instructions on checking style 2014-06-16 12:41:36 -06: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 typo in readme 2014-07-05 17:00:53 +02:00
setup.py Add test for repository size 2014-04-03 16:56:17 -04:00

README.md

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

Contributors

  • Megan Kratz
  • Paul Manis
  • Ingo Breßler
  • Christian Gavin
  • Michael Cristopher Hogg
  • Ulrich Leutner
  • Felix Schill
  • Guillaume Poulin
  • Antony Lee
  • Mattias Põldaru
  • Thomas S.
  • Fabio Zadrozny
  • Mikhail Terekhov
  • Pietro Zambelli
  • Stefan Holzmann

Requirements

  • PyQt 4.7+ or PySide
  • python 2.6, 2.7, or 3.x
  • NumPy
  • For 3D graphics: pyopengl and qt-opengl
  • 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 installation packages, see the website (pyqtgraph.org)
  • On debian-like systems, pyqtgraph requires the following packages: python-numpy, python-qt4 | python-pyside For 3D support: python-opengl, python-qt4-gl | python-pyside.qtopengl

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.