Go to file
Luke Campagnola b96a0f1b39 Added example scripts used for bundling with py2exe 2012-10-11 11:57:51 -04:00
GraphicsScene Now detects and switches between PyQt / PySide automatically; no need to distribute different versions of the library anymore. 2012-09-09 19:07:36 -04:00
PIL_Fix sync changes from acq4: 2011-04-25 08:51:18 -04:00
canvas Many minor updates: 2012-10-02 21:23:59 -04:00
console - Fixed issue with numpy.concatenate wrapper 2012-10-09 20:40:48 -04:00
dockarea added dockarea example 2012-07-10 16:30:03 -04:00
documentation Many minor updates: 2012-10-02 21:23:59 -04:00
examples Better support for frozen environments: 2012-10-11 00:57:24 -04:00
exporters Better support for frozen environments: 2012-10-11 00:57:24 -04:00
flowchart Better support for frozen environments: 2012-10-11 00:57:24 -04:00
graphicsItems converted all png files to compiled .py file; this allows easier packaging with py2exe 2012-10-11 11:14:35 -04:00
imageview Now detects and switches between PyQt / PySide automatically; no need to distribute different versions of the library anymore. 2012-09-09 19:07:36 -04:00
metaarray Minor changes: 2012-09-09 18:56:48 -04:00
multiprocess Parallelizer: more clever assessment of CPU count (ignores hyperthreaded cores on linux) 2012-08-31 17:20:05 -04:00
opengl Better support for frozen environments: 2012-10-11 00:57:24 -04:00
parametertree converted all png files to compiled .py file; this allows easier packaging with py2exe 2012-10-11 11:14:35 -04:00
pixmaps converted all png files to compiled .py file; this allows easier packaging with py2exe 2012-10-11 11:14:35 -04:00
tools Added example scripts used for bundling with py2exe 2012-10-11 11:57:51 -04:00
widgets Added preliminary support for python 2.6 2012-09-13 10:12:59 -04:00
Point.py Started Python3 compatibility changes 2012-05-11 18:05:41 -04:00
Qt.py fixed error message in Qt.py 2012-10-06 02:23:23 -04:00
README Updated README to reflect REALITY 2012-03-28 14:16:42 -04:00
SRTTransform.py Many minor updates: 2012-10-02 21:23:59 -04:00
SRTTransform3D.py Added functions.transformCoordinates() for mapping numpy arrays of coordinates from QTransform and QMatrix4x4 2012-10-06 16:56:53 -04:00
SignalProxy.py Started Python3 compatibility changes 2012-05-11 18:05:41 -04:00
ThreadsafeTimer.py Enforced LF file endings 2012-05-23 20:29:16 -04:00
Vector.py Python3 compatibility updates 2012-07-09 08:36:59 -04:00
WidgetGroup.py Bugfixes: 2012-07-12 15:35:58 -04:00
__init__.py Better support for frozen environments: 2012-10-11 00:57:24 -04:00
configfile.py Added preliminary support for python 2.6 2012-09-13 10:12:59 -04:00
debug.py Started Python3 compatibility changes 2012-05-11 18:05:41 -04:00
exceptionHandling.py Python3 compatibility updates 2012-07-09 08:36:59 -04:00
frozenSupport.py Better support for frozen environments: 2012-10-11 00:57:24 -04:00
functions.py Fixed bug in functions.invertQTransform -- incorrectly checked for scipy.weave instead of scipy.linalg 2012-10-10 15:10:04 -04:00
graphicsWindows.py Started Python3 compatibility changes 2012-05-11 18:05:41 -04:00
license.txt Added short readme file 2011-04-05 13:05:05 -04:00
numpy_fix.py - Fixed issue with numpy.concatenate wrapper 2012-10-09 20:40:48 -04:00
pgcollections.py Added preliminary support for python 2.6 2012-09-13 10:12:59 -04:00
ptime.py fix--forgot to add ptime module 2010-07-27 00:09:10 -04:00
python2_3.py Bugfixes: 2012-07-12 15:35:58 -04:00
rebuildUi.py Many minor updates: 2012-10-02 21:23:59 -04:00
reload.py reloadAll now raises exception if any modules fail to reload 2012-06-21 21:24:44 -04:00
setup.py Added preliminary support for python 2.6 2012-09-13 10:12:59 -04:00
units.py Added a few more files to get flowcharts working 2012-04-04 20:28:48 -04:00

README

PyQtGraph - A pure-Python graphics library for PyQt/PySide
Copyright 2011 Luke Campagnola, University of North Carolina at Chapel Hill
http://http://luke.campagnola.me/code/pyqtgraph

Authors:
    Luke Campagnola   ('luke.campagnola@%s.com' % 'gmail')
    Megan Kratz
    Ingo Breßler

Requirements:
    PyQt 4.7+ or PySide
    python 2.7+ (no python 3 support yet)
    numpy, scipy

    Known to run on Windows, Linux, and Mac.

Support:
    Post at the mailing list / forum:
    https://groups.google.com/forum/?fromgroups#!forum/pyqtgraph

Installation:
    Pyqtgraph currently does not have (or really require) any installation 
    scripts. All that is needed is for the pyqtgraph folder to be placed 
    someplace importable. Most people will prefer to simply place this folder 
    within a larger project folder. If you want to make pyqtgraph available 
    system-wide, copy the folder to one of the directories listed in python's 
    sys.path list.

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://http://luke.campagnola.me/code/pyqtgraph/documentation
    - If you acquired this code as a .tar.gz file from the website, then you can also look in 
      pyqtgraph/documentation/html.
    - If you acquired this code via BZR, 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.