using python logo at startup

Mike Driscoll kyosohma at gmail.com
Tue Apr 21 13:50:19 EDT 2009


On Apr 21, 11:46 am, Dhruv <dhruv.howud... at gmail.com> wrote:
> Is there a way to display/flash "python powered" logo for like 2
> seconds at startup of a helloworld application?
>
> Well actually I have an application that takes data from an excel file
> and generates a kml file and opens it up with google earth. All this
> is compiled in an exe file using py2exe. Now I just want to display
> the python logo before the actual script starts. Just for the sake of
> informing the user that this application was made using python.
>
> Is this possible?

Sure. You just need to pick a GUI toolkit and have it display a
picture for a few seconds and then disappear. wxPython has a built-in
splash screen widget made for just this purpose. Tkinter may too, or
you could just roll your own in it.

- Mike



More information about the Python-list mailing list