This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/python | |
import plistlib, sys | |
# Grab the path to the spx file | |
file_path = sys.argv[1] | |
# ingest the spx (which is a plist) | |
file_data = plistlib.readPlist(file_path) |