Embedding an Application in a Web browser

Daniel Nogradi nogradi at gmail.com
Tue Feb 14 10:23:06 EST 2006


> Is it possible to embed a Python application within Internet explorer?
> 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/



More information about the Python-list mailing list