News

The newly approved Python Enhancement Proposal 751 gives Python a standard lock file format for specifying the dependencies of projects. Here’s the what, why, and when.
Working with files in Python is pretty easy. But there’s a common mistake that can sneak into your code. Not closing the file ...
In this example, we have opened a new file, written the words “Hello World!” and then closed the file. The “w+” tells Python that we are writing to a new file.
Some months back I developed some pyuno code for converting spreadsheets into CSV files from the command line. Pyuno being the Python interface to the OpenOffice runtime. One of the enhancement ...