summaryrefslogtreecommitdiff
path: root/legacy_py/downloadFiles.py
blob: 9a79e27e43cd114991fdfb99ff1738a3abc8e035 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
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')
'''