-
Notifications
You must be signed in to change notification settings - Fork 1
/
charities_scraper.py
56 lines (47 loc) · 1.76 KB
/
charities_scraper.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
from requests import get
from requests.exceptions import RequestException
from contextlib import closing
from bs4 import BeautifulSoup
import re
def simple_get(url):
"""
Attempts to get the content at `url` by making an HTTP GET request.
If the content-type of response is some kind of HTML/XML, return the
text content, otherwise return None.
"""
try:
with closing(get(url, stream=True)) as resp:
if is_good_response(resp):
return resp.content
else:
return None
except RequestException as e:
log_error('Error during requests to {0} : {1}'.format(url, str(e)))
return None
def is_good_response(resp):
"""
Returns True if the response seems to be HTML, False otherwise.
"""
content_type = resp.headers['Content-Type'].lower()
return (resp.status_code == 200
and content_type is not None
and content_type.find('html') > -1)
def log_error(e):
"""
It is always a good idea to log errors.
This function just prints them, but you can
make it do anything.
"""
print(e)
# Get the descriptions of various charitable organizations
raw_html = simple_get('https://www.uschamberfoundation.org/corporate-citizenship-center/descriptions-nonprofits-working-disasters')
html = BeautifulSoup(raw_html, 'html.parser')
for i, p in enumerate(html.select('tr')):
print(i, p.text)
# Get the links of various charitable organizations
html_page = simple_get("https://www.uschamberfoundation.org/corporate-citizenship-center/descriptions-nonprofits-working-disasters")
soup = BeautifulSoup(html_page)
links = []
for link in soup.findAll('a', attrs={'href': re.compile("^http://")}):
links.append(link.get('href'))
print(links[4:53])