(args)
| 500 | |
| 501 | |
| 502 | def main(args): |
| 503 | data = read_data(args) |
| 504 | augmenter = get_augmenter(args) |
| 505 | |
| 506 | augmented_data = augmenter.parse(data) |
| 507 | |
| 508 | # write augmented data as json file |
| 509 | with open(args.output, "w") as f: |
| 510 | json.dump(augmented_data, f) |
| 511 | |
| 512 | |
| 513 | if __name__ == "__main__": |
no test coverage detected