vote up 10 vote down star
4

I've got some experience with bash, which I don't mind, but now that I'm doing a lot of windows development I'm needing to do basic stuff/write basic scripts using the windows command line language. For some reason said language really irritates me, so I was considering learning Python and using that instead.

So my question is is Python suitable for such things... moving files around, creating scripts to do things like unzipping a backup and restoring a SQL database, etc.

flag

Yes! I am a recent convert. I used to write tons of windows bat files (plus with NAnt) to do those tasks then switched to Python and I could not believe how much easier and productive it was. – Ray Vega Oct 18 '08 at 7:20
See stackoverflow.com/questions/209470/…. The answer for Windows is exactly the same as for bash. – S.Lott Oct 18 '08 at 11:36

12 Answers

vote up 12 vote down check

Python is well suited for these tasks, and I would guess much easier to develop in and debug than windows batch files.

The question is, I think, how easy and painless it is to ensure that all the computers that you have to run these scripts on, have python installed.

link|flag
vote up 5 vote down

Are you aware of PowerShell?

link|flag
vote up 5 vote down

Sure, python is a pretty good choice for those tasks (I'm sure many will recommend PowerShell instead).

Here is a fine introduction from that point of view:

http://www.redhatmagazine.com/2008/02/07/python-for-bash-scripters-a-well-kept-secret/

EDIT: About gnud's concern: http://www.portablepython.com/

link|flag
vote up 2 vote down

Python is certainly well suited to that. If you're going down that road, you might also want to investigate SCons which is a build system itself built with Python. The cool thing is the build scripts are actually full-blown Python scripts themselves, so you can do anything in the build script that you could otherwise do in Python. It makes make look pretty anemic in comparison.

Upon rereading your question, I should note that SCons is more suited to building software projects than to writing system maintenance scripts. But I wouldn't hesitate to recommend Python to you in any case.

link|flag
vote up 3 vote down

Anything is a good replacement for the Batch file system in windows. Perl, Python, Powershell are all good choices.

link|flag
vote up 3 vote down

@BKB definitely has a valid concern. Here's a couple links you'll want to check if you run into any issues that can't be solved with the standard library:

  • Pywin32 is a package for working with low-level win32 APIs (advanced file system modifications, COM interfaces, etc.)
  • Tim Golden's Python page: he maintains a WMI wrapper package that builds off of Pywin32, but be sure to also check out his "Win32 How Do I" page for details on how to accomplish typical Windows tasks in Python.
link|flag
vote up 0 vote down

I've been using a lot of Windows Script Files lately. More powerful than batch scripts, and since it uses Windows scripting, there's nothing to install.

link|flag
vote up 1 vote down

Python, along with Pywin32, would be fine for Windows automation. However, VBScript or JScript used with the Winows Scripting Host works just as well, and requires nothing additional to install.

link|flag
vote up -2 vote down

As much as I love python, I don't think it a good choice to replace basic windows batch scripts.

I can't see see someone having to import modules like sys, os or getopt to do basic things you can do with shell like call a program, check environment variable or an argument.

Also, in my experience, goto is much easier to understand to most sysadmins than a function call.

link|flag
I find that the explicit os.this and sys.that is an advantage of Python. The shell's random collection of features is hard to get a mental grip on. Python's libraries make it easier to understand. – S.Lott Oct 19 '08 at 0:52
I would have to agree with S. Lott on this. It is not much extra work and the explicitness keeps the global namespace from being cluttered. – Paul D. Eden Dec 8 '08 at 21:14
vote up 0 vote down

I've done a decent amount of scripting in both Linux/Unix and Windows environments, in Python, Perl, batch files, Bash, etc. My advice is that if it's possible, install Cygwin and use Bash (it sounds from your description like installing a scripting language or env isn't a problem?). You'll be more comfortable with that since the transition is minimal.

If that's not an option, then here's my take. Batch files are very kludgy and limited, but make a lot of sense for simple tasks like 'copy some files' or 'restart this service'. Python will be cleaner, easier to maintain, and much more powerful. However, the downside is that either you end up calling external applications from Python with subprocess, popen or similar. Otherwise, you end up writing a bunch more code to do things that are comparatively simple in batch files, like copying a folder full of files. A lot of this depends on what your scripts are doing. Text/string processing is going to be much cleaner in Python, for example.

Lastly, it's probably not an attractive alternative, but you might also consider VBScript as an alternative. I don't enjoy working with it as a language personally, but if portability is any kind of concern then it wins out by virtue of being available out of the box in any copy of Windows. Because of this I've found myself writing scripts that were unwieldy as batch files in VBScript instead, since I can't usually depend on Python or Perl or Bash being available on Windows.

link|flag
"copying a folder full of files" - a standard module shutil could help. – J.F. Sebastian Oct 19 '08 at 15:25
vote up 4 vote down

Summury

Windows : no need to think, use Python. Unix : quick or run-it-once scripts are for bash, serious and/or long life time scripts are for Python.

The big talk

In a windows env, Python is definitely the best choice since cmd is crappy and PowerShell has not really settled yet. What's more Python can run on several platform so it's a better investment. Finally, Python has a huge set of library so you will almost never hit the "god-I-can't-do-that" wall. Untrue with cmd and PowerShell.

In a Linux env, this is a bit different. A lot of one liners are shorter, faster, more efficient and often more readable in pure bash. But if you know your quick and dirty script is going to stay around for a while or will need to be improved, go for Python since it's far easier to maintain and extend and you will be able to do most of the task you can do with GNU tools with the standard library. And if you can't, you can still call the command line from a Python script.

And of course you can call python from the shell using -c option :

python -c  "for line in open('/etc/fstab') : print line"

Some more literatur about Python used for sysadmin tasks :

link|flag
vote up 0 vote down

As a follow up, after some experimentation the thing I've found Python most useful for is any situation involving text manipulation (yourStringHere.replace(), regexes for more complex stuff) or testing some basic concept really quickly, which it is excellent for.

For stuff like SQL DB restore scripts I find I still usually just resort to batch files, as it's usually either something short enough that it actually takes more Python code to make the appropriate system calls or I can reuse snippets of code from other people reducing the writing time to just enough to tweak existing code to fit my needs.

As an addendum I would highly recommend IPython as a great interactive shell complete with tab completion and easy docstring access.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.