This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env python | |
# -*- coding: utf-8 -*- | |
"""A one-line description or name. | |
A longer description that spans multiple lines. Explain the purpose of the | |
file and provide a short list of the key classes/functions it contains. This | |
is the docstring shown when some does 'import foo;foo?' in IPython, so it | |
should be reasonably useful and informative. | |
""" | |
# ----------------------------------------------------------------------------- |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env python | |
# -*- coding: utf-8 -*- | |
"""Options Parsing Template | |
This script presents most of the options and ways to use the optparse library, | |
structured for easy use in a python application. | |
""" | |
# ----------------------------------------------------------------------------- | |
# Copyright (c) 2015 José Fonseca. | |
# |