Oct-02-2019, 11:49 PM
Oct-03-2019, 01:39 AM
Oct-03-2019, 01:56 AM
I managed to solve here :
Using the getopt module, thanks.
Using the getopt module, thanks.
Oct-03-2019, 10:41 AM
JohnnyCoffee Wrote:Using the getopt module, thanks.getop is not the best option at all.
Buggy manual parsing with bad documentation and no one use it

In in standard library is argparse which is okay.
I use Click if need to make command line interfaces.
Did a quick review here,a usage example here and here.
Oct-04-2019, 01:28 AM
(Oct-03-2019, 10:41 AM)snippsat Wrote: [ -> ]Grateful had already made the correction.JohnnyCoffee Wrote:Using the getopt module, thanks.getop is not the best option at all. Buggy manual parsing with bad documentation and no one use itIn in standard library is argparse which is okay. I use Click if need to make command line interfaces. Did a quick review here,a usage example here and here.