Skip to content

Instantly share code, notes, and snippets.

@rochacbruno
rochacbruno / mainpython.md
Last active November 2, 2025 01:35
Use of __main__.py

The use of __main__.py to create executables

myprojectfolder/
    |_ __main__.py
    |_ __init__.py

Being __main__.py:

print("Hello")