#!/usr/bin/env python3
# -*- coding: utf-8 -*-

"""\
TODO - write program/module Docstring (description)
"""

'''
Fill all TODO fields and lines, then delete all TODO notes.
'''

__author__     = "name and surname"  # TODO
__maintainer__ = "name and surname"  # TODO
__email__      = "email address"     # TODO
__copyright__  = "\xa9 year(s) institution, city\nAll Rights Reserved." # TODO
__license__    = "TODO choose some"  # TODO recommended: MIT, GPL,EUPL; add LICENSE file
__version__    = "0.0.0"             # TODO write and maintain correct values
__status__     = "Development"       # TODO or "Prototype" or "Production"
__date__       = "yyyy/mm/dd"        # TODO write and maintain correct values
__credits__    = []                  # TODO - fill if any (list of strings)
__all__        = []                  # TODO - fill if any objects to export (list of strings)  


# system libraries
# TODO - 1st enter all used system libraries as import ....

# TODO - 2nd enter all used system libraries as from ... import ....

# third-party well-known libraries
# TODO - enter all used 3rd party well-known libraries

# other third-party libraries
# TODO - enter all used other 3rd party libraries

# local/own/project libraries
# TODO

# other modules for this program
# TODO

# TODO enter your constants, clasess, functions etc.


def main():
    pass  # TODO change to your code


if __name__ == '__main__':
    main()
