2013-09-12 06:01:52 +00:00
|
|
|
PyQtGraph
|
|
|
|
=========
|
|
|
|
|
|
|
|
A pure-Python graphics library for PyQt/PySide
|
2013-09-12 06:22:26 +00:00
|
|
|
|
2013-09-12 06:01:52 +00:00
|
|
|
Copyright 2012 Luke Campagnola, University of North Carolina at Chapel Hill
|
2013-09-12 06:22:26 +00:00
|
|
|
|
|
|
|
<http://www.pyqtgraph.org>
|
2013-09-12 06:01:52 +00:00
|
|
|
|
|
|
|
Maintainer
|
|
|
|
----------
|
2013-09-12 06:22:26 +00:00
|
|
|
|
2014-03-01 14:37:59 +00:00
|
|
|
* Luke Campagnola <luke.campagnola@gmail.com>
|
2013-09-12 06:01:52 +00:00
|
|
|
|
|
|
|
Contributors
|
|
|
|
------------
|
2013-09-12 06:22:26 +00:00
|
|
|
|
|
|
|
* Megan Kratz
|
|
|
|
* Paul Manis
|
|
|
|
* Ingo Breßler
|
|
|
|
* Christian Gavin
|
|
|
|
* Michael Cristopher Hogg
|
|
|
|
* Ulrich Leutner
|
|
|
|
* Felix Schill
|
|
|
|
* Guillaume Poulin
|
2013-12-15 16:38:44 +00:00
|
|
|
* Antony Lee
|
2013-12-29 14:17:23 +00:00
|
|
|
* Mattias Põldaru
|
2014-03-01 02:09:03 +00:00
|
|
|
* Thomas S.
|
2014-03-05 16:05:09 +00:00
|
|
|
* Fabio Zadrozny
|
2014-03-01 14:37:59 +00:00
|
|
|
* Mikhail Terekhov
|
2014-03-06 20:30:36 +00:00
|
|
|
* Pietro Zambelli
|
2014-05-08 14:40:58 +00:00
|
|
|
* Stefan Holzmann
|
2014-10-25 18:24:15 +00:00
|
|
|
* Nicholas TJ
|
|
|
|
* John David Reaver
|
2014-11-14 13:12:33 +00:00
|
|
|
* David Kaplan
|
2015-03-01 21:52:15 +00:00
|
|
|
* Martin Fitzpatrick
|
2015-03-14 19:49:45 +00:00
|
|
|
* Daniel Lidstrom
|
2015-07-11 16:32:29 +00:00
|
|
|
* Eric Dill
|
2013-09-12 06:01:52 +00:00
|
|
|
|
|
|
|
Requirements
|
|
|
|
------------
|
2013-09-12 06:22:26 +00:00
|
|
|
|
2015-03-01 21:52:15 +00:00
|
|
|
* PyQt 4.7+, PySide, or PyQt5
|
2013-09-12 06:22:26 +00:00
|
|
|
* python 2.6, 2.7, or 3.x
|
2014-03-14 18:11:53 +00:00
|
|
|
* NumPy
|
|
|
|
* For 3D graphics: pyopengl and qt-opengl
|
2013-09-12 06:22:26 +00:00
|
|
|
* Known to run on Windows, Linux, and Mac.
|
2013-09-12 06:01:52 +00:00
|
|
|
|
|
|
|
Support
|
|
|
|
-------
|
2013-09-12 06:22:26 +00:00
|
|
|
|
|
|
|
Post at the [mailing list / forum](https://groups.google.com/forum/?fromgroups#!forum/pyqtgraph)
|
2013-09-12 06:01:52 +00:00
|
|
|
|
|
|
|
Installation Methods
|
|
|
|
--------------------
|
2013-09-12 06:22:26 +00:00
|
|
|
|
|
|
|
* To use with a specific project, simply copy the pyqtgraph subdirectory
|
2013-12-29 14:17:23 +00:00
|
|
|
anywhere that is importable from your project. PyQtGraph may also be
|
|
|
|
used as a git subtree by cloning the git-core repository from github.
|
2013-09-12 06:22:26 +00:00
|
|
|
* To install system-wide from source distribution:
|
|
|
|
`$ python setup.py install`
|
2014-07-05 15:00:53 +00:00
|
|
|
* For installation packages, see the website (pyqtgraph.org)
|
2014-03-14 18:11:53 +00:00
|
|
|
* 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
|
2013-09-12 06:01:52 +00:00
|
|
|
|
|
|
|
Documentation
|
|
|
|
-------------
|
2013-09-12 06:22:26 +00:00
|
|
|
|
|
|
|
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
|
2013-09-12 06:01:52 +00:00
|
|
|
doc/html.
|
2013-09-12 06:22:26 +00:00
|
|
|
* If you acquired this code via GitHub, then you can build the documentation using sphinx.
|
2013-09-12 06:01:52 +00:00
|
|
|
From the documentation directory, run:
|
|
|
|
`$ make html`
|
2013-09-12 06:22:26 +00:00
|
|
|
|
|
|
|
Please feel free to pester Luke or post to the forum if you need a specific
|
2013-12-29 14:17:23 +00:00
|
|
|
section of documentation to be expanded.
|