Top-rated recipes tagged "meta:loc=541"http://code.activestate.com/recipes/tags/meta:loc=541/top/2017-05-06T19:06:05-07:00ActiveState Code RecipesTkinter table with scrollbars (Python) 2017-05-06T19:06:05-07:00Miguel Martínez Lópezhttp://code.activestate.com/recipes/users/4189907/http://code.activestate.com/recipes/580793-tkinter-table-with-scrollbars/ <p style="color: grey"> Python recipe 580793 by <a href="/recipes/users/4189907/">Miguel Martínez López</a> (<a href="/recipes/tags/scrollbars/">scrollbars</a>, <a href="/recipes/tags/table/">table</a>, <a href="/recipes/tags/tkinter/">tkinter</a>). Revision 13. </p> <p>I created here a tkinter table with scrollbar support. I use one of my other recipes for the mousewheel support and scrolling:</p> <p><a href="https://code.activestate.com/recipes/580640-scrolling-frame-with-mouse-wheel-support" rel="nofollow">https://code.activestate.com/recipes/580640-scrolling-frame-with-mouse-wheel-support</a></p> Python config file parser (Python) 2008-08-02T12:55:21-07:00Frithiof andreas Jensenhttp://code.activestate.com/recipes/users/4166085/http://code.activestate.com/recipes/576404-python-config-file-parser/ <p style="color: grey"> Python recipe 576404 by <a href="/recipes/users/4166085/">Frithiof andreas Jensen</a> . </p> <p>Config - reads a configuration file.</p> <p>This module parses a configuration file using a restricted Python syntax. The Python tokenizer/parser is used to read the file, unwanted expressions are removed from the parser output before the result is compiled and executed. The initialised configuration settings are returned in a dict.</p>