summaryrefslogtreecommitdiff
path: root/spotCheck.py
diff options
context:
space:
mode:
authorMatt Singleton <matt@xcolour.net>2017-04-16 23:21:22 -0400
committerMatt Singleton <matt@xcolour.net>2017-04-16 23:21:22 -0400
commit4622a264b8d6e0446a52d96b7df220d357c082a9 (patch)
treeb0434765df662d53d47cecadba355b8d9f523bc4 /spotCheck.py
parente690fdfa6f1eebac5a4790668ab946e82f947eaf (diff)
move files around for packaging reasons
Diffstat (limited to 'spotCheck.py')
-rwxr-xr-xspotCheck.py41
1 files changed, 0 insertions, 41 deletions
diff --git a/spotCheck.py b/spotCheck.py
deleted file mode 100755
index d1edda4..0000000
--- a/spotCheck.py
+++ /dev/null
@@ -1,41 +0,0 @@
-#!/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,
- 'wat' : buildWashTimes,
- 'csm' : buildCSM,
- 'abc' : buildABC}
-
- 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])