News

This post explains what a Python module is and how to use it to drastically extend the capabiltiies of your code. Plus: how to make your own!
Working with files in Python is pretty easy. But there’s a common mistake that can sneak into your code. Not closing the file ...
The __future__ module in Python is used for implementing features in the current Python version that will be incorporated in a future version. This is done so that you can adapt to the new feature.
Python’s development team chose defaults that reflect the most common real-world scenarios. But if you do need to tweak the way garbage collection works, you can use Python’s gc module.
Compile Python to C Python code can make calls directly into C modules. Those C modules can be either generic C libraries or libraries built specifically to work with Python. Cython generates the ...
To use the program, you'll need Python 2.7 or later, urllib2, and a program called "text" (see this article here to get it).