Last active
January 15, 2021 17:58
-
-
Save Calinou/77d617701fb0f6ef699db03258cc2374 to your computer and use it in GitHub Desktop.
Python template for utilities and helper scripts
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env python | |
import os | |
def main() -> None: | |
# Change to the directory where the script is located, | |
# so that the script can be run from any location. | |
os.chdir(os.path.dirname(os.path.realpath(__file__))) | |
print("Hello world!") | |
if __name__ == "__main__": | |
main() |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment