Popular recipes by Shekhar Tiwatne http://code.activestate.com/recipes/users/2071240/2012-02-27T12:32:11-08:00ActiveState Code RecipesSimple Validation decorator (Python) 2010-03-26T06:54:47-07:00Shekhar Tiwatnehttp://code.activestate.com/recipes/users/2071240/http://code.activestate.com/recipes/577149-simple-validation-decorator/ <p style="color: grey"> Python recipe 577149 by <a href="/recipes/users/2071240/">Shekhar Tiwatne</a> (<a href="/recipes/tags/validation/">validation</a>). </p> <p>Validation decorator based on formencode package. It uses validation schemas.</p> Easier positional arguments for optparse (Python) 2012-02-27T12:32:11-08:00Shekhar Tiwatnehttp://code.activestate.com/recipes/users/2071240/http://code.activestate.com/recipes/574459-easier-positional-arguments-for-optparse/ <p style="color: grey"> Python recipe 574459 by <a href="/recipes/users/2071240/">Shekhar Tiwatne</a> (<a href="/recipes/tags/extending/">extending</a>). Revision 5. </p> <p>Many times I find myself write a cli that takes two/more positional arguments. Something like mycp file1 file2 [options] I have to write extra code everytime to show correct usage/hints to user if he invokes command this way mycp file1 Positional arguments are required ones unlike optional arguments.</p> <p>The solution below lets cli writer add a positional argument so parser can generate usage friendlier to positional args.</p> <p>Some inspiration: <a href="http://aspn.activestate.com/ASPN/Cookbook/Python/Recipe/573441" rel="nofollow">http://aspn.activestate.com/ASPN/Cookbook/Python/Recipe/573441</a></p> Publish list data as CSV file (Python) 2008-06-19T01:59:33-07:00Shekhar Tiwatnehttp://code.activestate.com/recipes/users/2071240/http://code.activestate.com/recipes/573461-publish-list-data-as-csv-file/ <p style="color: grey"> Python recipe 573461 by <a href="/recipes/users/2071240/">Shekhar Tiwatne</a> (<a href="/recipes/tags/web/">web</a>). </p> <p>Simple decorator for CherryPy/TurboGears useful for publishing some data as a CSV file.</p> Contract verification in Python (Python) 2007-08-14T02:31:10-07:00Shekhar Tiwatnehttp://code.activestate.com/recipes/users/2071240/http://code.activestate.com/recipes/528872-contract-verification-in-python/ <p style="color: grey"> Python recipe 528872 by <a href="/recipes/users/2071240/">Shekhar Tiwatne</a> (<a href="/recipes/tags/oop/">oop</a>). </p> <p>Tiny "zope interface" dependent recipe for contract verfification.</p> Rebind class properties (Python) 2005-12-17T09:26:20-08:00Shekhar Tiwatnehttp://code.activestate.com/recipes/users/2071240/http://code.activestate.com/recipes/440634-rebind-class-properties/ <p style="color: grey"> Python recipe 440634 by <a href="/recipes/users/2071240/">Shekhar Tiwatne</a> (<a href="/recipes/tags/oop/">oop</a>). Revision 2. </p> <p>Sometimes you define properties in base class and override the getter setter methods in derived classes. Then you find out the base class though has derived properties are still pointing to baseclasse's methods not the overriden ones.</p> Query a rpm file and return a dict with of various rpm tags (Python) 2004-10-23T12:48:45-07:00Shekhar Tiwatnehttp://code.activestate.com/recipes/users/2071240/http://code.activestate.com/recipes/306705-query-a-rpm-file-and-return-a-dict-with-of-various/ <p style="color: grey"> Python recipe 306705 by <a href="/recipes/users/2071240/">Shekhar Tiwatne</a> (<a href="/recipes/tags/administration/">administration</a>, <a href="/recipes/tags/packaging/">packaging</a>, <a href="/recipes/tags/rpm/">rpm</a>). Revision 4. </p> <p>A simple script which queries a rpm package and prints few important rpm tags.</p>