When writing a Flask application the main function is… is defined in the __init__.py file by the developer so that the entry point into our application is well defined. code example
Example: how to define main in python
# Defining main function
def main():
print("hello World")
# Using the special variable
# __name__
if __name__=="__main__":
main()