A beginner-friendly decorator alternative to if __name__ == '__main__': main() idiom.
Project description
@main_function
A beginner-friendly decorator alternative to if __name__ == '__main__': main() idiom.
This PyPi is meant to demonstrate a decorator-based alternative to the old-school idiom, if __name__ == '__main__': main(). Traditionally, this idiom indicates that a script is meant to both be run directly and be imported as a module, but its (possibly unjustified) prevalence in educational materials nudges beginners to wrap their head around magic methods and how Python works under the hood before it might be appropriate. Purely from cursory overview of beginner-to-intermediate educational content available for free, the idea of using magic methods for this specific purpose does seem to be the biggest source of confusion for people new to Python - as of the moment of writing this, YouTube video explaining what this bit of code does by Corey Schafer is sitting on 1,7 million views (one of his best), and video explaining the same concept by mCoding is at 865 thousand views (his most viewed video ever). Question asking what this idiom does on StackOverflow has more than 7600 upvotes, and more than 3200 bookmarks (second most upvoted Python question). Furthermore, this improvement fits in line with introduction of dataclasses, which is basically a way of declaring classes without writing boilerplate magic methods.
This very telling, self-explanatory decorator provides an alternative for people who don’t want to remove the if __name__ == “__main__”: main() idiom altogether, be it for lack of understanding, concerns about future extensibility or any other reason.
- Example:
This (following from main_function import main_function):
@main_function def main() -> None: print("Hello, world!")
Is fully equivalent to this:
def main() -> None: print("Hello, world!") if __name__ == "__main__": main()
- For further discussion that has inspired this PyPi, please see this:
Credits
This package was created with Cookiecutter and the audreyr/cookiecutter-pypackage project template.
License
MIT
History
1.0.0 (2022-08-31)
First release on PyPI.
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file main_function-1.0.6.tar.gz
.
File metadata
- Download URL: main_function-1.0.6.tar.gz
- Upload date:
- Size: 11.0 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.1 CPython/3.10.4
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 6d551df02ed2ff2aad465dfa433d70fcd538f56dd777f6978f668865de150806 |
|
MD5 | 884636497e1397254bb550d3b865147d |
|
BLAKE2b-256 | d8e4ef4bb3907b0e55d0f2a62ef85d824914166f0546cc34ad73a6d0a13ecf3d |
File details
Details for the file main_function-1.0.6-py2.py3-none-any.whl
.
File metadata
- Download URL: main_function-1.0.6-py2.py3-none-any.whl
- Upload date:
- Size: 3.8 kB
- Tags: Python 2, Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.1 CPython/3.10.4
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 194fae2e1213a3c61760dd3375866f3106b42f75bc70b5faeddbb857e0b6a658 |
|
MD5 | 2fe294b79a16dda976ec7bf5da1ca5c9 |
|
BLAKE2b-256 | 3ed1ebddadde1e7c9375ddc42e8ff585dc36a177216c565cb52f98ecdbd15868 |