-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathnltk2.py
More file actions
46 lines (35 loc) · 1.15 KB
/
nltk2.py
File metadata and controls
46 lines (35 loc) · 1.15 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
import time
import urllib2
from urllib2 import urlopen
import re
import cookielib, urllib2
from cookielib import CookieJar
import datetime
cj = CookieJar()
opener = urllib2.build_opener(urllib2.HTTPCookieProcessor(cj))
opener.addheaders = [('User-agent', 'Mozilla/5.0')]
def main():
try:
page = 'http://feeds.huffingtonpost.com/huffingtonpost/raw_feed'
sourceCode = opener.open(page).read()
#print sourceCode
try:
titles = re.findall(r'<title>(.*?)</title>',sourceCode)
links = re.findall(r'<link.*?href=\"(.*?)\"',sourceCode)
#for title in titles:
#print title
for link in links:
if '.rdf' in link:
pass
else:
print 'let\'s visit:', link
linkSource = opener.open(link).read()
content = re.findall(r'<p>(.*?)</p>',linkSource)
for theContent in content:
print theContent
except Exception, e:
print str(e)
except Exception,e:
print str(e)
pass
main()