I'm using click for parsing command line argument https://click.palletsprojects.com/en/7.x/
import click
@click.option('-n', '--name', required=True, type=str, help='...')
def create(name: str):
I want to use regular express to make sure the name matching a particular pattern. How to do it using click?