You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Currently, the dataframe_from_inp (and similar functions) scan the text file twice to extract the content. First, by running the get_inp_sections_details function, then by scanning to the section of interest.
It might be possible to avoid the first scan through the of text file by using a pre-populated list of end_strings in the extract_section_of_file function call, thereby possibly removing the need to run get_inp_sections_details. This would be useful when dealing with large files and/or over a network.
The text was updated successfully, but these errors were encountered:
Currently, the
dataframe_from_inp
(and similar functions) scan the text file twice to extract the content. First, by running theget_inp_sections_details
function, then by scanning to the section of interest.It might be possible to avoid the first scan through the of text file by using a pre-populated list of
end_strings
in theextract_section_of_file
function call, thereby possibly removing the need to runget_inp_sections_details
. This would be useful when dealing with large files and/or over a network.The text was updated successfully, but these errors were encountered: