From f8c6b0084e7d0928121d4c05d3b1f47b10c303c7 Mon Sep 17 00:00:00 2001 From: ssstvinc2 Date: Mon, 6 Mar 2017 18:12:59 -0500 Subject: Added spotCheck ability. Other minor tweaks --- spotCheck.py | 38 ++++++++++++++++++++++++++++++++++++++ 1 file changed, 38 insertions(+) create mode 100755 spotCheck.py (limited to 'spotCheck.py') diff --git a/spotCheck.py b/spotCheck.py new file mode 100755 index 0000000..5c0e54d --- /dev/null +++ b/spotCheck.py @@ -0,0 +1,38 @@ +#!/usr/bin/env python3 + + +from parser import * +from unbiasedObjects import * +import sys + +def spotCheck(src): + + fns = {'hil' : buildTheHill, + 'cbs' : buildCBS, + 'npr' : buildNPR, + 'fox' : buildFoxNews, + 'gdn' : buildGuardian, + 'blz' : buildBlaze, + 'bbc' : buildBBC, + 'nbc' : buildNBC} + + data=fns[src]() + + print('H1s:\n--------------') + for h in data.h1Arr: + print(h.title) + + print('\n\nH2s:\n--------------') + for h in data.h2Arr: + print(h.title) + + print('\n\nH3s:\n--------------') + for h in data.h3Arr: + print(h.title) + + print('\n\n') + + + +if __name__=='__main__': + spotCheck(sys.argv[1]) -- cgit v1.2.3