forked from geekcomputers/Python
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpsunotify.py
52 lines (46 loc) · 1.23 KB
/
psunotify.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
from __future__ import print_function
import re
import mechanize
import urllib2
br = mechanize.Browser()
br.addheaders = [
(
"User-Agent",
"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.120 Safari/537.36",
)
]
br.set_handle_robots(False)
# For page exploration
page = input("Enter Page No:")
# print type(page)
p = urllib2.Request(
"https://www.google.co.in/search?q=gate+psu+2017+ext:pdf&start=" + page
)
ht = br.open(p)
text = '<cite\sclass="_Rm">(.+?)</cite>'
patt = re.compile(text)
h = ht.read()
urls = re.findall(patt, h)
int = 0
while int < len(urls):
urls[int] = urls[int].replace("<b>", "")
urls[int] = urls[int].replace("</b>", "")
int = int + 1
print(urls)
for url in urls:
try:
temp = url.split("/")
q = temp[len(temp) - 1]
if "http" in url:
r = urllib2.urlopen(url)
else:
r = urllib2.urlopen("http://" + url)
file = open("psu2" + q + ".pdf", "wb")
file.write(r.read())
file.close()
print("Done")
except urllib2.URLError as e:
print(
"Sorry there exists a problem with this URL Please Download this Manually "
+ str(url)
)