Python

About Python

I’ve begun learning Python. I already love it, if only for not having to type { } every five seconds. ;)

According to the python.org website:

Python® is a dynamic object-oriented programming language that can be used for many kinds of software development. It offers strong support for integration with other languages and tools, comes with extensive standard libraries, and can be learned in a few days. Many Python programmers report substantial productivity gains and feel the language encourages the development of higher quality, more maintainable code.

Python on the command line

Via RootPrompt comes this IBM developerWorks article on “Using Python to create UNIX command line tools”. I’ve been experimenting with Python off-and-on for a while now, and what I’ve seen so far I love. Thanks to Noah Gift for the, as he describes it, “command line interface manifesto.”

Can you write a command line tool? Maybe you can, but can you write a really good command line tool? This articles covers making a robust command line tool in Python, complete with built-in help menus, error handling, and option handling. For some strange reason, it is not widely known that the standard library in Python® has all of the tools necessary to make incredible powerful *NIX command line tools.

Arguably, Python is the best language for making *NIX command line tools, period, due to its batteries-included philosophy, and its emphasis on readable code. Just a warning, though; these are dangerous ideas, when you find out how easy it is to create a command line tool in Python, you might be spoiled for life. To my knowledge, there has never been an article published in this detail on creating command line tools in Python, so I hope you enjoy it.

links for 2007-10-26

links for 2007-05-04

Dive Into Python

Dive Into Python is a Python book for experienced programmers. You can buy a printed copy, read it online, or download it in a variety of formats. It is also available in multiple languages.

http://diveintopython.org/