-
-
Save wolftales/ee2dc158d05a7c52732ad0fd2e381c9c to your computer and use it in GitHub Desktop.
Template main python
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 python3 | |
# -*- coding: utf-8 -*- | |
"""Example Title | |
Short description | |
Long description (Optional) | |
Requirements: | |
- asdf | |
Usage: ./example_title.py | |
""" | |
__author__ = "author" | |
__date__ = "YYYY-MM-DD" | |
__email__ = "[email protected]" | |
# Import Libraries | |
import sys | |
def main(): | |
""" Main program """ | |
if __name__ == "__main__": | |
sys.exit(main()) | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment