osintalex
osintalex
Ready for review! Sorry I couldn't figure out how to test the optional import of Pydantic throwing an error. This was the closest I got but it doesn't work since...
Any interest in me taking a crack at this?
I think `IsUri` would be pretty useful if poss. I'm literally about to work on something where I'd use that if it was an option. Could keep it simple and...
That all makes sense! Would you be interested in a PR on `IsUri` using the Pydantic logic? Appreciate that might be better to leave to you as the author of...
It's ready for review ☺️
Ready for review ☺️
Think that's all your changes and conflicts gone, let me know if I missed anything.
Unfortunately this isn't letting me resign automatically 😢 If you're interested in the PR I can manually resign this or happy to resign if you can retrigger the workflow.
I think something like this could give you what you want to achieve, if I've understood correctly. Instead of specifying the `--password` option and leaving it blank, you just don't...
You can manually specify the metavar like this: ```python import typer from typing import Optional def main(name: Optional[str] = typer.Argument(None, metavar='name')): if name: typer.echo(f'Name: {name}') if __name__ == '__main__': typer.run(main)...