*For a much better description of argument parsing in Python, please visit https://docs.python.org/3/library/argparse.html.*
I'm creating this post because even though it's not too complicated, I keep forgetting how to do argument parsing in Python. I also tricked myself into thinking each time that I already wrote a blog post on this. Let's correct this once and for all and include a quick example!
```python
import argparse
parser = argparse.ArgumentParser(description="Description to show in help")