From 9302f2f7ed6585cd384391753d0d711f672e12a5 Mon Sep 17 00:00:00 2001 From: ssstvinc2 Date: Thu, 9 Feb 2017 20:28:28 -0500 Subject: Deleted a few unnecessary files from the repo --- legacy_py/downloadFiles.py | 24 ------------------------ 1 file changed, 24 deletions(-) delete mode 100644 legacy_py/downloadFiles.py (limited to 'legacy_py/downloadFiles.py') 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') -''' -- cgit v1.2.3