How To Parse MBSA Files Using Python Script
Have you ever needed to analyze MBSA files using Python? Well, you can stop cramming now because Azmath just shared the answer to your problem with this nice Python script! #——————————————————————————- # Name: MBSA parser # Author: Azmath # Created: 11/07/2012 # Copyright: (c) 2012 #——————————————————————————- from xml.etree import ElementTree with open(‘test.mbsa’, ‘rt’) as f: [...]