Skip to content

Instantly share code, notes, and snippets.

@Calinou
Last active January 15, 2021 17:58
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Calinou/77d617701fb0f6ef699db03258cc2374 to your computer and use it in GitHub Desktop.
Save Calinou/77d617701fb0f6ef699db03258cc2374 to your computer and use it in GitHub Desktop.
Python template for utilities and helper scripts
#!/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