Popular recipes by greg p http://code.activestate.com/recipes/users/4047849/2007-12-06T04:06:04-08:00ActiveState Code RecipesGenerate a Regular Expression to Match an Arbitrary Numeric Range (Python)
2007-10-28T20:21:38-07:00greg phttp://code.activestate.com/recipes/users/4047849/http://code.activestate.com/recipes/534137-generate-a-regular-expression-to-match-an-arbitrar/
<p style="color: grey">
Python
recipe 534137
by <a href="/recipes/users/4047849/">greg p</a>
(<a href="/recipes/tags/text/">text</a>).
</p>
<p>This function will generate a regular expression for you for any given numeric range. You can also run this code online here: <a href="http://utilitymill.com/utility/Regex_For_Range" rel="nofollow">http://utilitymill.com/utility/Regex_For_Range</a></p>
Generate a PDF Greeting Card (Python)
2007-12-06T04:06:04-08:00greg phttp://code.activestate.com/recipes/users/4047849/http://code.activestate.com/recipes/535155-generate-a-pdf-greeting-card/
<p style="color: grey">
Python
recipe 535155
by <a href="/recipes/users/4047849/">greg p</a>
(<a href="/recipes/tags/programs/">programs</a>).
Revision 2.
</p>
<p>Code to generate a PDF greeting card using a user specified image, and text.</p>
<p>You can try it out online here: <a href="http://utilitymill.com/utility/Greeting_Card_Generator" rel="nofollow">http://utilitymill.com/utility/Greeting_Card_Generator</a></p>
Barcodes - Convert UPC-E to UPC-A (Python)
2007-09-01T10:48:57-07:00greg phttp://code.activestate.com/recipes/users/4047849/http://code.activestate.com/recipes/528911-barcodes-convert-upc-e-to-upc-a/
<p style="color: grey">
Python
recipe 528911
by <a href="/recipes/users/4047849/">greg p</a>
(<a href="/recipes/tags/programs/">programs</a>).
</p>
<p>UPCE is a shortened version of UPCA. This recipe will convert UPCE to UPCA. There's also a check digit calculation function thrown in there for your enjoyment.</p>