Tagged Questions
2
votes
1answer
1k views
Python, how to parse strings to look like sys.argv
I would like to parse a string like this:
-o 1 --long "Some long string"
into this:
["-o", "1", "--long", 'Some long string']
or similar.
This is different than either getopt, or optparse, ...