Size: 1255
Comment: converted to 1.6 markup
|
Size: 1574
Comment: Add link to an example Python shell script
|
Deletions are marked like this. | Additions are marked like this. |
Line 21: | Line 21: |
'''Command line tool with optparse, subprocess, and logging''': Intermediate level * This script provides shortcuts for using a Git repository but the script could be used as a template for other shell tools: [[http://www.jperla.com/blog/2008/11/17/a-clean-python-shell-script/ | A Clean Python Shell Script ]]. |
Creating Command Line Tools With Python
The Python standard library has many modules that make creating commandline tools quite simple. Often command line tools are made with pure Python modules, or are a mixture of calls to an operating system and Python, through the subprocess module. Some of the commonly used modules to create commandline tools are: optparse, configparser, and subprocess.
PyCon2008 Presentation on Command Line Tools: Intermediate Level
- Summary: Presentation goes into detail on using threads, subprocess, optparse, configparser, and ORM's to create sophisticated tools.
Using Python To Create Unix Commandline Tools: Beginning/Intermediate Level
- Summary: An introductory article on how to create command line tools with Python. A beginner should learn how to create command line tool after finishing.
Command line tool with optparse, subprocess, and logging: Intermediate level
This script provides shortcuts for using a Git repository but the script could be used as a template for other shell tools: A Clean Python Shell Script.