Created
September 5, 2019 17:01
-
-
Save priyanshujain/a3b0f3abeecd41b6af16e12c4b8ec60a to your computer and use it in GitHub Desktop.
Python script 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 python | |
""" | |
coding=utf-8 | |
Python script template | |
""" | |
import logging | |
logging.basicConfig(level=logging.DEBUG) | |
def main(): | |
""" | |
Main function documentation template | |
:return: None | |
:rtype: None | |
""" | |
pass | |
# Main section | |
if __name__ == '__main__': | |
main() |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment