- Major reorganization; we now follow the standard python package structure.

- Overhaul of SVG export system. Seems to work well.
- Fixed image export bugs
- Added basic 3D line plot class
This commit is contained in:
Luke Campagnola 2012-12-26 17:51:52 -05:00
commit 45048467b3
330 changed files with 890 additions and 250 deletions

View File

@ -1,4 +1,4 @@
Copyright (c) 2011 University of North Carolina at Chapel Hill Copyright (c) 2012 University of North Carolina at Chapel Hill
Luke Campagnola ('luke.campagnola@%s.com' % 'gmail') Luke Campagnola ('luke.campagnola@%s.com' % 'gmail')
The MIT License The MIT License

View File

@ -1,6 +1,6 @@
PyQtGraph - A pure-Python graphics library for PyQt/PySide PyQtGraph - A pure-Python graphics library for PyQt/PySide
Copyright 2011 Luke Campagnola, University of North Carolina at Chapel Hill Copyright 2012 Luke Campagnola, University of North Carolina at Chapel Hill
http://http://luke.campagnola.me/code/pyqtgraph http://www.pyqtgraph.org
Authors: Authors:
Luke Campagnola ('luke.campagnola@%s.com' % 'gmail') Luke Campagnola ('luke.campagnola@%s.com' % 'gmail')
@ -9,30 +9,29 @@ Authors:
Requirements: Requirements:
PyQt 4.7+ or PySide PyQt 4.7+ or PySide
python 2.7+ (no python 3 support yet) python 2.6, 2.7, or 3.x
numpy, scipy numpy, scipy
For 3D graphics: pyopengl
Known to run on Windows, Linux, and Mac. Known to run on Windows, Linux, and Mac.
Support: Support:
Post at the mailing list / forum: Post at the mailing list / forum:
https://groups.google.com/forum/?fromgroups#!forum/pyqtgraph https://groups.google.com/forum/?fromgroups#!forum/pyqtgraph
Installation: Installation Methods:
Pyqtgraph currently does not have (or really require) any installation - To use with a specific project, simply copy the pyqtgraph subdirectory
scripts. All that is needed is for the pyqtgraph folder to be placed anywhere that is importable from your project
someplace importable. Most people will prefer to simply place this folder - To install system-wide from source distribution:
within a larger project folder. If you want to make pyqtgraph available $ python setup.py install
system-wide, copy the folder to one of the directories listed in python's - For instalation packages, see the website (pyqtgraph.org)
sys.path list.
Documentation: Documentation:
There are many examples; run "python -m pyqtgraph.examples" for a menu There are many examples; run "python -m pyqtgraph.examples" for a menu.
Some (incomplete) documentation exists at this time. Some (incomplete) documentation exists at this time.
- Easiest place to get documentation is at - Easiest place to get documentation is at
http://http://luke.campagnola.me/code/pyqtgraph/documentation http://www.pyqtgraph.org/documentation
- If you acquired this code as a .tar.gz file from the website, then you can also look in - If you acquired this code as a .tar.gz file from the website, then you can also look in
pyqtgraph/documentation/html. doc/html.
- If you acquired this code via BZR, then you can build the documentation using sphinx. - If you acquired this code via BZR, then you can build the documentation using sphinx.
From the documentation directory, run: From the documentation directory, run:
$ make html $ make html

View File

Before

Width:  |  Height:  |  Size: 67 KiB

After

Width:  |  Height:  |  Size: 67 KiB

View File

Before

Width:  |  Height:  |  Size: 25 KiB

After

Width:  |  Height:  |  Size: 25 KiB

Some files were not shown because too many files have changed in this diff Show More