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
# Example: | |
# python lighthouse2csv.py -o output.csv lighthouse1.json lighthouse2.json lighthouse3.json | |
import json | |
import sys | |
import csv | |
import argparse | |
if __name__=="__main__": | |
parser = argparse.ArgumentParser() |