summaryrefslogtreecommitdiff
path: root/legacy_py/downloadFiles.py
diff options
context:
space:
mode:
authorssstvinc2 <sstvinc2@gmail.com>2017-02-09 20:28:28 -0500
committerssstvinc2 <sstvinc2@gmail.com>2017-02-09 20:28:28 -0500
commit9302f2f7ed6585cd384391753d0d711f672e12a5 (patch)
tree3a733ad19ae55b6b5d207f42163ba840a75d19f9 /legacy_py/downloadFiles.py
parentcbbd1122c78834b1beef349797d142ed6d23218a (diff)
Deleted a few unnecessary files from the repo
Diffstat (limited to 'legacy_py/downloadFiles.py')
-rw-r--r--legacy_py/downloadFiles.py24
1 files changed, 0 insertions, 24 deletions
diff --git a/legacy_py/downloadFiles.py b/legacy_py/downloadFiles.py
deleted file mode 100644
index 9a79e27..0000000
--- a/legacy_py/downloadFiles.py
+++ /dev/null
@@ -1,24 +0,0 @@
-import os
-
-files=[]
-files.append('http://www.nytimes.com')
-files.append('http://www.nbcnews.com')
-files.append('http://www.foxnews.com')
-
-stories=[]
-stories.append('https://www.nytimes.com/2017/02/03/business/dealbook/trump-congress-financial-regulations.html')
-stories.append('http://www.nbcnews.com/news/us-news/over-100-000-visas-have-been-revoked-immigration-ban-justice-n716121')
-stories.append('http://www.foxnews.com/politics/2017/02/03/calls-mount-for-trump-administration-to-label-muslim-brotherhood-terrorist-organization.html')
-
-for i in range(len(files)):
- os.system('wget -O source'+str(i+1)+'.html --no-check-certificate '+files[i])
-
-for i in range(len(stories)):
- os.system('wget -O story'+str(i+1)+'.html --no-check-certificate '+stories[i])
-
-'''
-f=open('testOut.html', 'r', encoding="utf8")
-content=f.read()
-f.close()
-#os.remove('testOut.html')
-'''