|
|
|
|
|
by Daishiman
299 days ago
|
|
All due respect but Typer looks like the kind of library that you want to use after your CLI has enough args that you wouldn't be able to get away with the sort of "Hello World" simplicity that you pine for. Nobody's stopping you from manually parsing a couple of arguments. I still do it all the time and it's OK. If anything the magic of gradual typing is that you get to use it as necessity arises. |
|
That said, I think it's true that production python tends to look more like my example, and less `print("hello world")`.