ActivePython & SVG (Scalable Vector Graphics)

2001-10-02 Thread USER wilhelm.medetz
Is it possible to use ActivePython for   1)   scripting inside SVG files 2)   accessing the SVG DOM   Many thanks for any hints   W. Medetz   -- Wilhelm Medetz   Simulation & Control Hauptstr. 9

RE: ActivePython & SVG (Scalable Vector Graphics)

2001-10-02 Thread Griffiths, Jeff
as SVG is an XML language, you can use python's XML support to create and alter SVG documents. I've done this using Microsoft's XMLDOM object in ASP, but not in native python yet - I'm sure it's pretty straightforward. All you really need is a knowledge of the SVG schema.   A really