Andrew :<br>If your running version 2,7 or later you can.<br>>>> import argparse<br>>>> dir(argparse)<br>['Action', 'ArgumentDefaultsHelpFormatter', 'ArgumentError', 'ArgumentParser', '<br>
ArgumentTypeError', 'FileType', 'HelpFormatter', 'Namespace', 'ONE_OR_MORE', 'OP<br>TIONAL', 'PARSER', 'REMAINDER', 'RawDescriptionHelpFormatter', 'RawTextHelpForma<br>
tter', 'SUPPRESS', 'ZERO_OR_MORE', '_', '_ActionsContainer', '_AppendAction', '_<br>AppendConstAction', '_ArgumentGroup', '_AttributeHolder', '_CountAction', '_Help<br>
Action', '_MutuallyExclusiveGroup', '_StoreAction', '_StoreConstAction', '_Store<br>FalseAction', '_StoreTrueAction', '_SubParsersAction', '_UNRECOGNIZED_ARGS_ATTR'<br>
, '_VersionAction', '__all__', '__builtins__', '__cached__', '__doc__', '__file_<br>_', '__name__', '__package__', '__version__', '_callable', '_copy', '_ensure_val<br>
ue', '_get_action_name', '_os', '_re', '_sys', '_textwrap', 'ngettext']<br>>>> help(argparse)<br>prints out the help library.<br><br>There are standard documentation and <font size="4"><span style="color: rgb(204, 0, 0);">examples</span></font> for argparse in the python standard Libaray<br>
here <a href="http://docs.python.org/dev/library/argparse.html">http://docs.python.org/dev/library/argparse.html</a><br><br>Learning the standard library is essential to well rounded Python knowledge.<br>Good luck with your Python scripts!<br>
,RJ<br>