D
Daniel Nogradi
Is it possible to embed a Python application within Internet explorer?
Do you mean perhaps embedding python into a webserver? If you want to
use apache as your server that is possible, check the mod_python
module which embeds the python interpreter into apache. You can then
write your application in python (displaying your animated graphics,
etc) and visitors to your server will see what you the output from
your program.
For further info:
http://modpython.org/
If so how do people recommend going about it.
As for the application it has to be able display simple animated
graphics such as circles, lines and squares. However if someone clicks
on a shape it should open up another application, such as Word.
Thanks,
Rod
Python Newbie
Do you mean perhaps embedding python into a webserver? If you want to
use apache as your server that is possible, check the mod_python
module which embeds the python interpreter into apache. You can then
write your application in python (displaying your animated graphics,
etc) and visitors to your server will see what you the output from
your program.
For further info:
http://modpython.org/