Python - Creating a Command Line Argument (argparse)
For those who often use the Terminal on Linux or cmd on Windows, they will often come into contact with the Command Line for example
$ cd -h
$ sudo apt-get -h
$ dpkg --help
$ arp -a
With python we can create programs to run on the terminal. Example :
import argparse #module
def server_start (server, port):
print "Starting% s ... OK"% server
print "% s port:% s"% [...]