Note that there are some explanatory texts on larger screens.

plurals
  1. PO
    text
    copied!<p>Your system already has Python on it. Use the text editor or IDE of your choice; I like vim. </p> <p>I can't tell you what third-party modules you need without knowing what kind of development you will be doing. Use apt as much as you can to get the libraries.</p> <hr> <p>To speak to your edit:</p> <p>This isn't minimalistic, like handing a .NET newbie notepad and a compiler: a decent text editor and the stdlib are all you really need to start out. You will likely need third-party libraries to develop whatever kind of applications you are writing, but I cannot think of any third-party modules <em>all</em> Python programmers will really need or want.</p> <p>Unlke the .NET/Windows programming world, there is no one set of dev tools that stands above all others. Different people use different editors a whole lot. In Python, a module namespace is fully within a single file and project organization is based on the filesystem, so people do not lean on their IDEs as hard. Different projects use different version control software, which has been booming with new faces recently. Most of these are better than TFS and all are 1000 times better than SourceSafe.</p> <p>When I want an interactive session, I use the vanilla Python interpreter. Various more fancy interpreters exist: bpython, ipython, IDLE. bpython is the least fancy of these and is supposed to be good about not doing weird stuff. ipython and IDLE can lead to strange bugs where code that works in them doens't work in normal Python and vice-versa; I've seen this first hand with IDLE.</p> <p>For some of the tools you asked about and some others</p> <ul> <li>In .NET you would use NUnit. In Python, use the stdlib <code>unittest</code> module. There are various third-party extensions and test runners, but <code>unittest</code> should suit you okay. <ul> <li>If you really want to look into something beyond this, get <code>unittest2</code>, a backport of the 2.7 version of <code>unittest</code>. It has incorporated all the best things from the third-party tools and is really neat.</li> </ul></li> <li>In .NET you would use SQL Server. In Python, you may use PostgreSQL, MySQL, sqlite, or some other database. Python specifies a unified API for databases and porting from one to another typically goes pretty smoothly. sqlite is in the stdlib. <ul> <li>There are various Object Relational Models to make using databases more abstracted. SQLAlchemy is the most notable of these.</li> </ul></li> <li>If you are doing network programming, get Twisted.</li> <li>If you are doing numerical math, get numpy and scipy.</li> <li>If you are doing web development, choose a framework. There are about 200000: Pylons, zope, Django, CherryPy, werkzeug...I won't bother starting an argument by recommending one. Most of these will happily work with various servers with a quick setting.</li> <li>If you want to do GUI development, there are quite a few Python bindings. The stdlib ships with Tk bindings I would not bother with. There are wx bindings (wxpython), GTK+ bindings (pygtk), and two sets of Qt bindings. If you want to do native Windows GUI development, get IronPython and do it in .NET. There are win32 bindings, but they'll make you want to pull your hair out trying to use them directly.</li> </ul>
 

Querying!

 
Guidance

SQuiL has stopped working due to an internal error.

If you are curious you may find further information in the browser console, which is accessible through the devtools (F12).

Reload