Skip to content

Instantly share code, notes, and snippets.

@priyanshujain
Created September 5, 2019 17:01
Show Gist options
  • Save priyanshujain/a3b0f3abeecd41b6af16e12c4b8ec60a to your computer and use it in GitHub Desktop.
Save priyanshujain/a3b0f3abeecd41b6af16e12c4b8ec60a to your computer and use it in GitHub Desktop.
Python script template
#!/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