diff --git a/har_parser.py b/har_parser.py index 3001027..5b9d476 100644 --- a/har_parser.py +++ b/har_parser.py @@ -97,20 +97,12 @@ def main(): if not isinstance(part_element, dict): continue # Skip if part_element is not a dict - # Save 'key' and 'file' values to variables - # These variables will be overwritten in each iteration - # if multiple parts exist. part_key = part_element.get('key') part_file = part_element.get('file') if part_key is not None: names[part_key] = part_file - - # At this point, part_key and part_file are available. - # The user has not specified what to do with them yet. - # For example, to print them: - # if part_key and part_file: - # print(f"Found part: key='{part_key}', file='{part_file}'") + print("\nProcessed data (truncated values):")