19 lines
316 B
Python
19 lines
316 B
Python
#!/usr/bin/env python
|
|
# -*- coding: utf-8 -*-
|
|
"""
|
|
Module Docstring
|
|
"""
|
|
|
|
__author__ = "Your Name"
|
|
__version__ = "0.1.0"
|
|
__license__ = "MIT"
|
|
|
|
|
|
def main():
|
|
""" Main entry point of the app """
|
|
print "hello world"
|
|
|
|
|
|
if __name__ == "__main__":
|
|
""" This is executed when run from the command line """
|
|
main() |