-
Notifications
You must be signed in to change notification settings - Fork 1
/
generatefeedvector.py
53 lines (44 loc) · 1.26 KB
/
generatefeedvector.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
import sys
reload(sys)
sys.setdefaultencoding('utf-8')
import feedparser
import re
def getwordcounts(url):
d=feedparser.parse(url)
wc={}
for e in d.entries:
if 'summary' in e: summary=e.summary
else: summary = e.description
words=getwords(e.title+' '+summary)
for word in words:
wc.setdefault(word,0)
wc[word]+=1
return d.feed.title,wc
def getwords(html):
txt=re.compile(r'<[^>]+>').sub('',html)
words=re.compile(r'[^A-Z^a-z]+').split(txt)
return [word.lower() for word in words if word !='']
apcount={}
wordcounts={}
feedlist=[line for line in file('feedlist.txt')]
for feedurl in feedlist:
title,wc=getwordcounts(feedurl)
wordcounts[title]=wc
for word,count in wc.items():
apcount.setdefault(word,0)
if count>1:
apcount[word]+=1
wordlist=[]
for w,bc in apcount.items():
frac=float(bc)/len(feedlist)
if frac>0.1 and frac<0.5:wordlist.append(w)
out=file('blogdata.txt','w')
out.write('Blog')
for word in wordlist: out.write('\t%s' % word)
out.write('\n')
for blog,wc in wordcounts.items():
out.write(blog)
for word in wordlist:
if word in wc: out.write('\t%d' % wc[word])
else: out.write('\t0')
out.write('\n')