Last active
November 9, 2016 09:57
-
-
Save oogali/7692849 to your computer and use it in GitHub Desktop.
A template for your Python program, per a blog post from GvR
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 | |
import sys | |
def main(argv=None): | |
if argv is None: | |
argv = sys.argv | |
return 0 | |
if __name__ == '__main__': | |
sys.exit(main()) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment