Is there any boost::program_options like module for python
Asked
Active
Viewed 481 times
3
-
1It would be helpful if you said what the module actually did. Don't assume python programmers are familiar with 3rd party C++ libraries. – Tyler Eaves Jan 20 '11 at 15:25
1 Answers
6
For command-line options, you can use argparse or (deprecated) optparse or (even older) getopt. For config files, there's ConfigParser.

Andrew Jaffe
- 26,554
- 4
- 50
- 59