Tag: python

  • Python is a Great Prototyping Language…but One Should Never Ship a Prototype

    I really like how Python lets me start to get things working before everything is working. I can fire up an interactive debugger and immediately start playing with some library I Googled up and think I might need, quickly get it doing stuff, plug it in to other code and quickly get the whole doing […]

  • Python Command Line Arguments

    For quite some time I have thought I shouldn’t parse my own command line arguments in Python, but each time I looked for the “right” way to do it, I turned back. Today, I decided to persist. Now I know why I turned back, the libraries were terrible. I want to have: mycleverprog.py mycommand –nifty-option […]