Last active
January 30, 2016 00:41
-
-
Save nficano/eb6f9a337e5ba2dbdae6 to your computer and use it in GitHub Desktop.
Python Boilerplate
This file contains 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 -*- | |
import sys | |
def main(): | |
args = sys.argv[1] | |
# start here | |
if __name__ == '__main__': | |
main() |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment