diff --git a/getting_started/08_scripts.md b/getting_started/08_scripts.md index 3ad103adf5ed2e8fac3949fab30271617c4039ae..ec759f3f5b655e1c3d32ab881f1bc74b8e5dce32 100644 --- a/getting_started/08_scripts.md +++ b/getting_started/08_scripts.md @@ -124,7 +124,9 @@ print(sys.argv[0]) ``` For more sophisticated argument parsing you can use `argparse` - good documentation and examples of this can be found on the web. + > argparse can automatically produce help text for the user, validate input etc., so it is strongly recommended. + --- <a class="anchor" id="example-script"></a>