Stephen recently asked for advice on how I'd teach programming using Python to fellow academics. Specifically, an English major and a Materials Science (Matsci) researcher -- smart people deeply into their own disciplines... who happen to not have had programming experience. Here's what I said; if you have more comments/advice for Stephen, leave them in the comments.

Showing them the fundamentals in a common way, then diverging into their disciplinary interests, sounds about right. If they're both completely new to programming, you'll have a little while before they really branch off.

If you want a common starter text, Think Python may be good for this specific case. Just skip the sections related to graphics (Turtle at the start, Tkinter at the end). I also enjoy (and under different circumstances, would recommend) Learn Python The Hard Way and Dive Into Python, but the former is more geared towards web development and the latter is for people who have programmed in another language before.

For your English major friend, one of the exercises gets you into Markov analysis/generation of texts. This should be a fun place to play with poetry. The Markov Bible is a hilarious example of the sorts of things that can be done, and people have written entire books on text processing with Python.

For your Matsci friend, who you said was interested in data analysis, Allen's next book starts playing with things like census data -- that exercise should start being doable around the same time as the Markov analysis, because they're both fundamentally about "read from a file, do math, spit out to a file." They'll probably want to jump off into SciPy at some point to make plots and crunch more complex data.

For a fun change of pace and/or an intro session and/or while people are installing software on their machines, you can try CodingBat exercises. The Boston Python Workshop's exercises for Friday and Saturday are a tiny manageable collection. This also gets them into the habit of test-driven development (which is also a good approach to curriculum design, although I need a new name for it because Test Driven Learning is already taken).  CodingBat problems are very basic, so this only applies for the first few sessions before it'll get too easy for them.

I would structure your learning sessions primarily as pair programming time. They'll learn from each other's approaches, debug/unstick each other naturally, and learn how to cleanly structure and communicate about code. If you have them pair-program their way through the book, you can spend a chunk of your time writing your own dissertation while being on-call, as in passive pair programming.

Whatever you do, teach them fundamentals of software engineering as you go along -- commenting, testing, and version control specifically. Software Carpentry has good resources for this sort of thing. With the same rationale, take the first session and have them make and use github accounts while working through their starter exercises for the sake of everybody's sanity. This gets them in the habit of working in public, which is important if you ever want to...

...introduce them to a broader community of programmers, which you should do as quickly as possible. Whether that's "hey folks, join this Python mailing list" or "let's go to a local Python meetup and get you asking questions -- I'll go to your first one with you and model this introducing-self and question-asking thing in programming-land" or whatever you have around in your neck of the woods, it's basically the act of teaching them to learn from people other than you. And then... they're off, and they don't need you any more to keep learning and doing what they want to do. It's a great job, making ourselves obsolete.

Hope this helps, and good luck.