Python to generate nice looking SVG graph http://pygal.org/
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
jaraco 10ada27be4 adding upgrade notes 16 years ago
src/svg Library now uses lxml for XML processing. This technique has a much cleaner and robust implementation. I tried using the Python 2.5 element tree, but it doesn't support processing instructions (as far as I can tell). 16 years ago
tests Changed TimeSeries test to match that of the ruby test. 16 years ago
license.txt Added a license file. 17 years ago
readme.txt adding upgrade notes 16 years ago
release.howto Added release.howto 17 years ago
setup.cfg Finished the first functional implementation of the Schedule. 17 years ago
setup.py Library now uses lxml for XML processing. This technique has a much cleaner and robust implementation. I tried using the Python 2.5 element tree, but it doesn't support processing instructions (as far as I can tell). 16 years ago

readme.txt

Upgrade Notes

-------------

Upgrading from 1.x to 2.0

I suggest removing SVG 1.0 from the python installation. This involves removing the SVG directory (or svg_chart*) from site-packages.

Change import statements to import from the new namespace.

from SVG import Bar
Bar.VerticalBar(...)
becomes
from svg.charts.bar import VerticalBar
VerticalBar(...)

--- Still to do ---

- Factor out default stylesheets so that individual properties may be overridden without copying the entire stylesheet into another app.
- Implement javascript-based animation (See JellyGraph for a Silverlight example of what simple animation can do for a charting library).
- Convert to using element-tree instead of whatever I'm using