Python's first mainstream package was the .egg file. Now there's a new format in town called the Wheel (*.whl). A wheel "is designed to contain all the files for a PEP 376 compatible install in a way that is very close to the on-disk format". In this article, we will learn how to create a […]
Really Simple Syndication (RSS) has been with us for a long time and allows us to see new articles on our favorite website easily. Python doesn't have an RSS reader module in the standard library, so we'll be using the Universal Feed Parser 5.1.3 to do our parsing. If you do not have it already, […]
The other day I had an interesting task I needed to complete with Reportlab. I needed to create a PDF in landscape orientation that had to be rotated 90 degrees when I saved it. To make it easier to lay out the document, I created a class with a flag that allows me to save […]
Happy New Year! It's the end of 2013 and the beginning of 2014, so it's time to see which articles made it into the top ten list this year. I ran the statistics on December 31st and came up with the following list: Python: A Simple Step-by-Step SQLite Tutorial (37,658 page views) Python 101: How […]
December 20, 2013 by
Mike Packt Publishing contacted me today to let me know that they are having a $5 eBook sale on all of their eBooks. They have a lot of Python books, so I thought I should let my readers know about the offer. I have reviewed some of their books in the past, so feel free to […]
December 19, 2013 by
Mike The other day I was trying to figure out a way to monitor the print queue on Windows. The task at hand was to keep track of what documents went to the printer and completely successfully. The idea was that when the print completed, the document would then be archived. To do this sort of […]