blob: 6f341c55a2e7fdef570e9df5e34a27bdd5de81f8 (
plain)
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
|
#!/bin/python
import requests
from bs4 import BeautifulSoup
import re
import sys
import time
###
# get images from websites
# will probably be updated to include other data
###
#returns an array of img src urls from a 4chan thread
def pull4chImgs(url):
result = []
resp = requests.get(url)
html = BeautifulSoup(resp.text, 'html.parser')
for a in html.find_all('a'):
if 'class' in a.attrs and 'fileThumb' in a.attrs['class']:
url = a.get('href')
if url[0:2] == '//':
url = 'https:' + url
result.append(url)
return result
def pullVids(url):
result = []
resp = requests.get(url)
html = BeautifulSoup(resp.text, 'html.parser')
for a in html.find_all('a'):
if '.webm' in a.get('href'):
result.append(a.get('href'))
return result
def pullImgs(url):
result = []
resp = requests.get(url)
html = BeautifulSoup(resp.text, 'html.parser')
for img in html.find_all('img'):
srcURL = img.get('src')
result.append(srcURL)
return result
#def pullPDFs(url):
# return pullPDFs(url, 0)
def pullPDFs(url, depth=0, alreadycrawled=[]):
if depth > 5 or url == '' or url is None or url in alreadycrawled:
return []
baseurl=url[0:url.find('/', 8)+1]
result = []
print(url)
resp = requests.get(url)
html = BeautifulSoup(resp.text, 'html.parser')
alreadycrawled.append(url)
for a in html.find_all('a'):
url = a.get('href')
if url is None or url == '' or url == '/':
continue
if baseurl not in url and 'http' in url[0:4]: #this means that the url is pointing to external site
continue
print('found ' + url)
if 'http' not in url:
url = baseurl+url
if url.find('.pdf')>0 and os.path.isfile(url):
result.append(url)
else:
time.sleep(5)
result = result + pullPDFs(url, depth+1, alreadycrawled)
return result
#return a list of strings of all the links on the given webpage (<a> elements) whose href contains the given search string
def getLinksContainingStr(url, s):
result = []
resp = requests.get(url)
html = BeautifulSoup(resp.text, 'html.parser')
for link in html.find_all('a'):
h = link.get('href')
if s in h:
result.append(h)
return result
#if len(sys.argv) < 2:
# sys.exit(0)
#for url in pull4chImgs(sys.argv[1]):
# print(url)
|