-
-
Save wisicn/80c9e49d4b600a745b4c287115d4391e to your computer and use it in GitHub Desktop.
Skeleton Python3 file template
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 python3 -tt | |
""" | |
Module documentation. | |
""" | |
# Imports | |
import sys | |
#import os | |
# Global variables | |
# Class declarations | |
# Function declarations | |
def main(): | |
args = sys.argv[1:] | |
if not args: | |
print('usage: [--flags options] [inputs] ') | |
sys.exit(1) | |
# Main body | |
if __name__ == '__main__': | |
main() |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment