-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathnltk3.py
54 lines (41 loc) · 1.54 KB
/
nltk3.py
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
47
48
49
50
51
52
53
54
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
print ' _____________________________________'
linkSource = opener.open(link).read()
#content = re.findall(r'<p>(.*?)</p>',linkSource)
#content = re.findall(r'<p>((.|\n)*)<p>___</p>',linkSource)
content = re.findall(r'<p>(.*?)</p>',linkSource)
linesOfInterest = re.findall(r'<p>(.*?)</p>',str(content))
print 'Content:'
for theContent in content:
print theContent
time.sleep(3)
except Exception, e:
print str(e)
except Exception,e:
print str(e)
pass
main()