summaryrefslogtreecommitdiff
path: root/spotCheck.py
diff options
context:
space:
mode:
Diffstat (limited to 'spotCheck.py')
-rwxr-xr-xspotCheck.py38
1 files changed, 38 insertions, 0 deletions
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])