Top-rated recipes by Sébastien Sauvage http://code.activestate.com/recipes/users/2503505/top/2005-07-22T08:23:58-07:00ActiveState Code RecipesFile Tkinter dialogs (Python)
2005-07-22T08:23:58-07:00Sébastien Sauvagehttp://code.activestate.com/recipes/users/2503505/http://code.activestate.com/recipes/438123-file-tkinter-dialogs/
<p style="color: grey">
Python
recipe 438123
by <a href="/recipes/users/2503505/">Sébastien Sauvage</a>
.
</p>
<p>Basic Tkinter dialogs for directory selection, file selection and so on.
That's dirt simple (although the official documentation is not very explicit about these features).</p>
Change the wallpaper under Windows (Python)
2005-07-01T02:37:03-07:00Sébastien Sauvagehttp://code.activestate.com/recipes/users/2503505/http://code.activestate.com/recipes/435877-change-the-wallpaper-under-windows/
<p style="color: grey">
Python
recipe 435877
by <a href="/recipes/users/2503505/">Sébastien Sauvage</a>
(<a href="/recipes/tags/graphics/">graphics</a>).
</p>
<p>Change the current wallpaper under Windows</p>
No print error in console-less environments (Python)
2005-07-01T02:24:01-07:00Sébastien Sauvagehttp://code.activestate.com/recipes/users/2503505/http://code.activestate.com/recipes/435876-no-print-error-in-console-less-environments/
<p style="color: grey">
Python
recipe 435876
by <a href="/recipes/users/2503505/">Sébastien Sauvage</a>
(<a href="/recipes/tags/text/">text</a>).
</p>
<p>In console-less environments, printing raises an exception.
Disabling all print statements can be a pain.
This recipe allows you to leave all print statements in place.</p>
A simple non-recursive directory walker (Python)
2005-07-01T02:09:00-07:00Sébastien Sauvagehttp://code.activestate.com/recipes/users/2503505/http://code.activestate.com/recipes/435875-a-simple-non-recursive-directory-walker/
<p style="color: grey">
Python
recipe 435875
by <a href="/recipes/users/2503505/">Sébastien Sauvage</a>
(<a href="/recipes/tags/files/">files</a>).
</p>
<p>An equivalent of os.path.walk(), but without callback function.</p>