See this from the OLPC project:<br><a href="http://blogs.gnome.org/johan/2007/01/18/introducing-python-launcher/" target="_blank" onclick="return top.js.OpenExtLink(window,event,this)">http://blogs.gnome.org/johan/2007/01/18/introducing-python-launcher/
</a><br><br>python-launcher
is a daemon that caches GTK imports. kinda like mod_python for GTK.
Maybe we should add this to maemo and give it a control panel applet or
something?
<br><br>It would make GTK Python apps usable from a startup time perspective.<br><br><div><span class="gmail_quote">On 11/10/07, <b class="gmail_sendername">Martin Grimme</b> <<a href="mailto:martin.grimme@gmail.com">
martin.grimme@gmail.com</a>> wrote:</span><blockquote class="gmail_quote" style="border-left: 1px solid rgb(204, 204, 204); margin: 0pt 0pt 0pt 0.8ex; padding-left: 1ex;">Hi,<br><br>if you are importing lots of modules, you can get the startup time down by
<br>not importing the modules at the top of a file, but at the place where you need it in a function.<br>Note that modules are loaded only once, so subsequent import commands will have no effect.
<br><br>Example:<br>instead of this:<br><br> import os<br><br> def foo():<br> print os.listdir()<br><br><br>you can write this:<br><br> def foo():<br> import os<br> print os.listdir()<br><br><br>Cheers,<br>
Martin
<br><br><br><div><span class="gmail_quote">2007/11/9, Jesse Guardiani <<a href="mailto:jesse@guardiani.us" target="_blank" onclick="return top.js.OpenExtLink(window,event,this)">jesse@guardiani.us</a>>:</span><blockquote class="gmail_quote" style="border-left: 1px solid rgb(204, 204, 204); margin: 0pt 0pt 0pt 0.8ex; padding-left: 1ex;">
<div><span class="e" id="q_1162b611df7a5cca_1">
Hello,<br><br>Is there anything that can be done about python startup time?<br>I recently wrote a very simple little pygtk + glade application that is less than 110 lines of code and it takes between 5 and 9 seconds to start up.
<br> <a href="http://www.guardiani.us/projects/tip_calc/browser/trunk/src/tip_calc/tip_calc.py" target="_blank" onclick="return top.js.OpenExtLink(window,event,this)">http://www.guardiani.us/projects/tip_calc/browser/trunk/src/tip_calc/tip_calc.py
</a><br>Any way to get that startup time down?
<br><span><br clear="all"><br>-- <br>Jesse Guardiani<br>Software Developer / Sys Admin<br><a href="mailto:jesse@guardiani.us" target="_blank" onclick="return top.js.OpenExtLink(window,event,this)">jesse@guardiani.us
</a>
</span><br></span></div>_______________________________________________<br>maemo-developers mailing list<br><a href="mailto:maemo-developers@maemo.org" target="_blank" onclick="return top.js.OpenExtLink(window,event,this)">
maemo-developers@maemo.org
</a><br><a href="https://lists.maemo.org/mailman/listinfo/maemo-developers" target="_blank" onclick="return top.js.OpenExtLink(window,event,this)">https://lists.maemo.org/mailman/listinfo/maemo-developers</a><br><br></blockquote>
</div><br>
<br>_______________________________________________<br>maemo-developers mailing list<br><a onclick="return top.js.OpenExtLink(window,event,this)" href="mailto:maemo-developers@maemo.org">maemo-developers@maemo.org</a><br>
<a onclick="return top.js.OpenExtLink(window,event,this)" href="https://lists.maemo.org/mailman/listinfo/maemo-developers" target="_blank">https://lists.maemo.org/mailman/listinfo/maemo-developers</a><br><br></blockquote>
</div><br><br clear="all"><br>-- <br>Jesse Guardiani<br>Software Developer / Sys Admin<br><a href="mailto:jesse@guardiani.us">jesse@guardiani.us</a>