diff options
author | Matt Singleton <matt@xcolour.net> | 2017-04-16 23:21:22 -0400 |
---|---|---|
committer | Matt Singleton <matt@xcolour.net> | 2017-04-16 23:21:22 -0400 |
commit | 4622a264b8d6e0446a52d96b7df220d357c082a9 (patch) | |
tree | b0434765df662d53d47cecadba355b8d9f523bc4 /spotCheck.py | |
parent | e690fdfa6f1eebac5a4790668ab946e82f947eaf (diff) |
move files around for packaging reasons
Diffstat (limited to 'spotCheck.py')
-rwxr-xr-x | spotCheck.py | 41 |
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]) |