Misc Cleanup Update

This commit is contained in:
2019-07-04 18:39:01 +02:00
parent 0269c384da
commit 841d47e9c1
7 changed files with 95 additions and 87 deletions

View File

@@ -1,16 +1,16 @@
#!/usr/bin/env python
#title: template.py
#description: Template for any programm
#author: Authors seperated by comma
#license: License for the programm
#date: Date of creation
#version: Versionnumber
#usage: Description of how to use the programm quickly
#notes: Notes for parameters, thanks (...)
#dependencies: Preinstalled packages
#known_issues: Known issues in this version
#python_version: Compatible (tested) python version
#==============================================================================
# title: template.py
# description: Template for any programm
# author: Authors seperated by comma
# license: License for the programm
# date: Date of creation
# version: Versionnumber
# usage: Description of how to use the programm quickly
# notes: Notes for parameters, thanks (...)
# dependencies: Preinstalled packages
# known_issues: Known issues in this version
# python_version: Compatible (tested) python version
# ==============================================================================
# IMPORTS
@@ -23,14 +23,14 @@ from datetime import date
# EXECUTION
if __name__ == '__main__':
# Print welcoming message
print("Hello world")
# Print welcoming message
print("Hello world")
# For benchmarking starting the timer now
start_time = time.time()
# For benchmarking starting the timer now
start_time = time.time()
# Get parameters, call functions, execute program (...)
# Get parameters, call functions, execute program (...)
# BENCHMARKING [END]
sec = time.time() - start_time
print("The program took " + str(sec) + " seconds (" + str(sec/60) + " minutes) for execution.")
print("The program took " + str(sec) + " seconds (" + str(sec/60) + " minutes) for execution.")