Pycard Advanced Splashscreen

a way to have a nice splashScreen. Just from Pycard import splash, and launch your application as usual just using something like:

from Pycard import splash, model

class MyApplication(model.Background):

 ...

myimage = 'a/path/to/an/image.jpg'
timeout = 30 # in seconds
wxapp = splash.PycardSplashedApp(MyApplication, myimage, timeout)
app = model.Application(wxapp)
app.MainLoop()

It shuld work with any model you use to launch your app, let me know if there's any issue!