-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlexiconURL.py
executable file
·144 lines (120 loc) · 4.52 KB
/
lexiconURL.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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
from urllib import urlopen
import urllib
import nltk
import re
# page = urlopen("http://www.a1consolidated.com.au/").read()
# page = urlopen("http://www.abmresources.com.au/").read()
# url = "http://www.adelaideresources.com.au/"
# url = "http://www.gascoyneresources.com.au/"
# page = urlopen("http://www.a1consolidated.com.au/investor-centre/asx-announcements/").read()
# # print page[:60]
# # cPage = nltk.clean_html(page)
# # print cPage[:100]
# lPdf = re.findall('<a href="([^"]+\.pdf)"', page)
# # print len(lPdf)
# print lPdf[:5]
##### read online pdf incorrectly but may be useful
# pdf = urlopen("http://www.a1consolidated.com.au/images/uploads/Resignation_of_Director_and_Final_Directors_Interest_Notice.pdf").read()
# print pdf[:500]
# print len(pdf)
##### first trial download a pdf from website
# url = "http://www.a1consolidated.com.au/images/uploads/Resignation_of_Director_and_Final_Directors_Interest_Notice.pdf"
# print "downloading with urllib"
# urllib.urlretrieve(url, "goldnerds1.pdf")
linksPage = urlopen("http://goldnerds.com.au/").read()
urls = re.findall('<a href="(http://[^"]+)"', linksPage)
countErrorSites = {"failUrl":[], "noneAnnoucement":[], "failAnnoucements":[]}
##### loop all the http:// links within linksPage
for i in range(len(urls)-11):
print "\n##### %d site #####" % i
url = urls[i+11]
while url[-1] == '/':
url = url[:-1] ##### get rid of the '/' at the end of url
print "url is \""+url+"\""
try:
urlopen(url).read()
except IOError:
print "----- cannot read url -----"
countErrorSites['failUrl'].append(url) ##### record inaccessible urls
continue
else:
sourceHome = urlopen(url).read()
hrefsHome = re.findall('<a href="([^"]+)"', sourceHome)
urlAnnounces = []
for hrefA in hrefsHome:
if re.findall('(?i)announcement', hrefA): ########## need to check whether it is a website link
if hrefA[-4:] != '.pdf':
if hrefA not in urlAnnounces:
urlAnnounces.append(hrefA)
if len(urlAnnounces) <= 0:
print "----- no annoucement page -----"
countErrorSites['noneAnnoucement'].append(url)
continue
else:
# try:
# urlAnnounce
# except NameError:
# print "----- no annoucement page -----"
# countErrorSites['noneAnnoucement'].append(url)
# continue
# else:
for urlAnnounce in urlAnnounces:
if not re.findall('http://', urlAnnounce):
while(urlAnnounce[0] == '/'):
urlAnnounce = urlAnnounce[1:] ##### get rid of all '/'s at the end of announcement url
urlAnnounce = url+'/'+urlAnnounce
print urlAnnounce
try:
urlopen(urlAnnounce).read()
except IOError:
print "----- cannot read annoucement page -----"
countErrorSites['failAnnoucements'].append(url)
continue
else:
sourceAnnounce = urlopen(urlAnnounce).read()
hrefsPdf = re.findall('<a href="([^"]+.pdf)"', sourceAnnounce)
print "pdfs on announcement page:"
print hrefsPdf
##### keep record of links of pdfs in urls
if len(hrefsPdf) > 0:
f = open('files/linksOfPdfsInURLs.txt', 'a+')
f.write(url+":\n")
for hrefPdf in hrefsPdf:
f.write(hrefPdf+"\n")
f.write("\n\n")
f.close()
reports = []
for hrefP in hrefsPdf:
# if re.findall('(?:A|a)nnual', hrefP):
if re.findall('(?i)preliminary[\w\W]?economic[\w\W]?assessment|(?i)scope|(?i)technical', hrefP):
if not re.findall('http://', hrefP):
while(hrefP[0] == '/'):
hrefP = hrefP[1:]
hrefP = url+'/'+hrefP
if hrefP not in reports:
reports.append(hrefP)
print "!!!!!List of useful reports:"
print reports
if len(reports) > 0:
def callbackfunc(blocknum, blocksize, totalsize):
percent = 100.0 * blocknum * blocksize / totalsize
if percent > 100:
percent = 100
print "%.2f%%"% percent
print "downloading reports....."
j = 0
for report in reports:
nameReport = "files/"+report.split('/')[-1]
urllib.urlretrieve(report, nameReport, callbackfunc)
j += 1
print "%d pdf downloaded" % j
f = open("files/countErrorSites.txt", "a+")
f.write("failUrls:\n")
for failU in countErrorSites['failUrl']:
f.write(failU+"\n")
f.write("\n\nnoneAnnoucement:\n")
for noneA in countErrorSites['noneAnnoucement']:
f.write(noneA+"\n")
f.write("\n\nfailAnnoucements:\n")
for failA in countErrorSites['failAnnoucements']:
f.write(failA+"\n")