<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
<HTML>
<HEAD>
<META HTTP-EQUIV="Content-Type" CONTENT="text/html; charset=iso-8859-1">
<META NAME="Generator" CONTENT="MS Exchange Server version 6.5.7653.3">
<TITLE>RE: python startup time</TITLE>
</HEAD>
<BODY>
<!-- Converted from text/plain format -->

<P><FONT SIZE=2>Hi Jesse,<BR>
<BR>
Python-launcher is in the roadmap, as I've said in PyMaemo's release email.<BR>
I'm planing to have a test version next week.<BR>
<BR>
Regards,<BR>
Luciano<BR>
<BR>
<BR>
-----Original Message-----<BR>
From: maemo-developers-bounces@maemo.org on behalf of ext Jesse Guardiani<BR>
Sent: Fri 16-Nov-07 13:30<BR>
To: Maemo Developers<BR>
Subject: Re: python startup time<BR>
<BR>
See this from the OLPC project:<BR>
<A HREF="http://blogs.gnome.org/johan/2007/01/18/introducing-python-launcher/">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<BR>
for GTK. Maybe we should add this to maemo and give it a control panel<BR>
applet or something?<BR>
<BR>
It would make GTK Python apps usable from a startup time perspective.<BR>
<BR>
On 11/10/07, Martin Grimme &lt;martin.grimme@gmail.com&gt; wrote:<BR>
&gt;<BR>
&gt; Hi,<BR>
&gt;<BR>
&gt; if you are importing lots of modules, you can get the startup time down by<BR>
&gt; not importing the modules at the top of a file, but at the place where you<BR>
&gt; need it in a function.<BR>
&gt; Note that modules are loaded only once, so subsequent import commands will<BR>
&gt; have no effect.<BR>
&gt;<BR>
&gt; Example:<BR>
&gt; instead of this:<BR>
&gt;<BR>
&gt;&nbsp;&nbsp; import os<BR>
&gt;<BR>
&gt;&nbsp;&nbsp; def foo():<BR>
&gt;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; print os.listdir()<BR>
&gt;<BR>
&gt;<BR>
&gt; you can write this:<BR>
&gt;<BR>
&gt;&nbsp;&nbsp; def foo():<BR>
&gt;&nbsp;&nbsp;&nbsp;&nbsp; import os<BR>
&gt;&nbsp;&nbsp;&nbsp;&nbsp; print os.listdir()<BR>
&gt;<BR>
&gt;<BR>
&gt; Cheers,<BR>
&gt; Martin<BR>
&gt;<BR>
&gt;<BR>
&gt; 2007/11/9, Jesse Guardiani &lt;jesse@guardiani.us&gt;:<BR>
&gt; &gt;<BR>
&gt; &gt; Hello,<BR>
&gt; &gt;<BR>
&gt; &gt; Is there anything that can be done about python startup time?<BR>
&gt; &gt; I recently wrote a very simple little pygtk + glade application that is<BR>
&gt; &gt; less than 110 lines of code and it takes between 5 and 9 seconds to start<BR>
&gt; &gt; up.<BR>
&gt; &gt;&nbsp;&nbsp;&nbsp;&nbsp; <A HREF="http://www.guardiani.us/projects/tip_calc/browser/trunk/src/tip_calc/tip_calc.py">http://www.guardiani.us/projects/tip_calc/browser/trunk/src/tip_calc/tip_calc.py</A><BR>
&gt; &gt;<BR>
&gt; &gt; Any way to get that startup time down?<BR>
&gt; &gt;<BR>
&gt; &gt;<BR>
&gt; &gt; --<BR>
&gt; &gt; Jesse Guardiani<BR>
&gt; &gt; Software Developer / Sys Admin<BR>
&gt; &gt; jesse@guardiani.us<BR>
&gt; &gt; _______________________________________________<BR>
&gt; &gt; maemo-developers mailing list<BR>
&gt; &gt; maemo-developers@maemo.org<BR>
&gt; &gt; <A HREF="https://lists.maemo.org/mailman/listinfo/maemo-developers">https://lists.maemo.org/mailman/listinfo/maemo-developers</A><BR>
&gt; &gt;<BR>
&gt; &gt;<BR>
&gt;<BR>
&gt; _______________________________________________<BR>
&gt; maemo-developers mailing list<BR>
&gt; maemo-developers@maemo.org<BR>
&gt; <A HREF="https://lists.maemo.org/mailman/listinfo/maemo-developers">https://lists.maemo.org/mailman/listinfo/maemo-developers</A><BR>
&gt;<BR>
&gt;<BR>
<BR>
<BR>
--<BR>
Jesse Guardiani<BR>
Software Developer / Sys Admin<BR>
jesse@guardiani.us<BR>
<BR>
</FONT>
</P>

</BODY>
</HTML>