fparser.scripts.read ==================== .. py:module:: fparser.scripts.read .. autoapi-nested-parse:: Python script with command line options which calls the Fortran File Reader with the supplied filename(s) and outputs the reader's representation of the code(s). Functions --------- .. autoapisummary:: fparser.scripts.read.runner fparser.scripts.read.main Module Contents --------------- .. py:function:: runner(_, options, args) Call the Fortran File reader for each filename in args and print out its content. :param options: command line argument information from the options parser :type options: :py:class:`optparse.Values` :param args: a list of Fortran filepaths :type args: list of str :raises NotImplementedError: if the task option is not set to "show". .. py:function:: main() Check input options then call the runner function.