网页爬虫(Scraping)是现代数据采集的重要渠道,爬虫技术应该说也一直伴随互联网的的快速发展而不断演进着。大部分网站也不甘心自己的宝贵数据就这么被爬虫给一个个爬了下来,于是网页技术中的反爬虫技巧也在不断的提高,爬虫与反爬虫这两个对手就在这‘你来我往’中不断提升各自的修行。
我们这一次开一个头,先解决9.9公益日面对的问题,由此稍微展开一小点,让彭小天天朋友以小见大,以后见到其他的类型的时候,不会慌,知道应该往哪个方向寻找解决方案
在讲网页爬虫之前,我们要先讲一下网页web page,我们爬数据都是从网页上爬下来,那网页是怎样的一种格式?我们到底爬的是什么东西?
我们看到的网页都是有浏览器解析后的呈现,浏览器解析的是网页的代码文件。网页代码常见文件很多,最基本的是 html, css, javascript, 其中
In [ ]:
In [ ]:
In [ ]:
In [ ]:
In [ ]:
In [ ]:
In [ ]:
In [ ]:
In [ ]:
可以了可以了,看个十七八遍就行了。梦想是美好的,现实是骨感的。我们讲网络爬虫呢,主要还是针对html,诶,诶,不要走啊,不要走啊~~~~
你要这样想,我们都是真诚的人,我们都喜欢透过现象看本质,要抓重点,有了重点,才有李云龙,才有新垣结衣,来来来,我们来看看html长成什么样子
My first paragraph.
(有没有看到,每一个部分写完了都要以反斜杠结尾,表示已经描述完成这个部分,就跟用对讲机结尾时讲的'Over'一样。脑补“导演,导演,这是第一幕,over“ - "导演,导演,这是第二幕第1场,over“。) html是非常结构化的语言,一层结构下面有另外一层结构,一环套一环,每一环节里面再详细描述,这个部分应该写什么内容,怎么写。像上面这段html,作用是搭建出网页的结构,头(head)是什么,主体(body)内容是什么,主体内容中的标题(h1)是什么,段落内容(p)是什么。这里的head, body, title, h1, p, 都叫tag(标签)。在浏览器解析了这段代码,读取、建立网页的树形结构,并渲染、绘制出我们看到的网页。 我们要爬的数据,就嵌在这些层级结构中。这是一般的结构,看起来如果不习惯的话,没关系,我想一个例子
In [ ]:
比如在这里,我们需要网络爬虫沿着html的层级结构,定位到乔帮主的姓名和生卒年信息在哪个标签里面,然后copy下来。 但首先,我们需要查看html代码,确定这样的信息能不能爬下来,应该用什么样的方法来爬,然后用人工的方式定位这些信息的位置,然后再用其他工具,将人工定位转为用工具来识别位置的特征,实现定位。
所以,最基本的网络爬虫中,有两个方面是最主要的:
通过查看html网页结构,我们必须了解
来来来,这样,以chrome为例,将网址(https://www.charitywatch.org/top-rated-charities) copy到地址栏,回车,然后在页面上用鼠标右键点击,选择 inspect ,chrome就将你带入查看网页代码的界面了
点击页面右上方的Elements一栏,进入HTML代码查看页面,
我们可以清楚的看到HTML的层次结构,点击小三角还能够展开这一项的内容,同时,左边页面将显示该段代码对应的网页位置。
我们也可以直接用鼠标右键移到左边网页中的位置,右键点击,然后在出现菜单中点击inspect,就可以在右侧的代码页面中看到对应的代码,非常方便
这里有几个关键信息:
有了具体基金会的详情页面,我们点开进去看看
同样我们可以在 页面中 “Calculated Total Expenses (rounded): $15,000,000“ 的位置用右键激活inspect 模式
在HTML中,我们看到了相应的信息以及他们的位置,那我们试着把这页html拿下来,仔细看看怎么爬。
In [ ]:
我们要用到的是python 的几个经典包,包括 BeautifulSoup, urllib, 或者requests
In [1]:
from bs4 import BeautifulSoup
import urllib.request
import urllib.parse
import requests
# urllib.request
import re
import json
import json2html
import pandas as pd
In [2]:
#
url_list ="https://www.charitywatch.org/top-rated-charities"
url_c1 = "https://www.charitywatch.org/ratings-and-metrics/naacp-legal-defense-and-educational-fund/18"
#我们先看 基金会列表页面的HTML代码下载,然后在看具体基金会介绍页面的HTML获取
page_list = urllib.request.urlopen(url_list)
soup = BeautifulSoup(page_list, 'lxml')
该网页的 HTML信息就存到了soup这个变量里面,然后我们看一看这些HTML信息是什么
In [14]:
print(soup.prettify())#可以用 ctrl+F 来搜索关键词 id="results" 然后就可以看到相应的HTML代码
<!DOCTYPE html>
<!-- BEGIN html -->
<html dir="ltr" lang="en-US">
<!-- BEGIN head -->
<head>
<!-- Meta Tags -->
<meta content="text/html; charset=utf-8" http-equiv="Content-Type"/>
<meta content="Efficient charities, highly rated charity, best charity list, Top-Rated Charities, Guide, Borochoff, Daniel Borochoff," name="keywords"/>
<meta content="CharityWatch Top Rated Charities spend 75% or more of their budgets on programs, spend less than $25 to raise $100, and openly disclose financial information and documentation to CharityWatch." name="description"/>
<meta content="width=device-width, initial-scale=1.0" name="viewport"/>
<link href="https://www.charitywatch.org/" rel="canonical"/>
<!-- Title -->
<title>
Top Rated Charities | Charity Ratings | Charity Rankings | CharityWatch
</title>
<meta content="Top Rated Charities | Charity Ratings | Charity Rankings | CharityWatch" property="og:title"/>
<meta content="CharityWatch Top Rated Charities spend 75% or more of their budgets on programs, spend less than $25 to raise $100, and openly disclose financial information and documentation to CharityWatch." property="og:description"/>
<meta content="https://www.charitywatch.org/img/charity_watch_logo.png" property="og:image"/>
<meta content="https://www.charitywatch.org/top-rated-charities" property="og:url"/>
<!-- Font -->
<link href="//fonts.googleapis.com/css?family=Lato:400,700" rel="stylesheet" type="text/css"/>
<!-- Stylesheets -->
<link href="//netdna.bootstrapcdn.com/font-awesome/4.0.3/css/font-awesome.css" rel="stylesheet"/>
<link href="/css/foundation.min.css" rel="stylesheet"/>
<!-- <link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css" integrity="sha384-BVYiiSIFeK1dGmJRAkycuHAHRg32OmUcww7on3RYdg4Va+PmSTsz/K68vbdEjh4u" crossorigin="anonymous"> -->
<link href="/css/template_mobile.css?34234224232" rel="stylesheet"/>
<link href="/css/smoothness/jquery-ui-1.10.3.custom.css" rel="stylesheet"/>
<link href="/css/jquery.bxslider.css" rel="stylesheet"/>
<link href="/css/slicknav.min.css" rel="stylesheet"/>
<!-- Scripts -->
<script src="/js/lib/jquery-2.0.3.min.js" type="text/javascript">
</script>
<script src="/js/lib/jquery-ui-1.10.3.custom.min.js" type="text/javascript">
</script>
<script src="/js/lib/jquery.bxslider.min.js" type="text/javascript">
</script>
<script src="/js/lib/jquery.slicknav.min.js" type="text/javascript">
</script>
<script src="/js/charitywatch.js" type="text/javascript">
</script>
</head>
<body>
<div class="menu_wrapper">
<div id="menu">
<ul id="nav">
<li class="show-for-small-only" onclick="document.location.href='/home'">
HOME
</li>
<li onclick="document.location.href='/charities'">
<a href="/charities">
Charity Ratings
</a>
</li>
<li class="on" onclick="document.location.href='/top-rated-charities'">
<a href="/top-rated-charities">
Top-Rated Charities
</a>
</li>
<li onclick="document.location.href='/top-charity-salaries'">
<a href="/top-charity-salaries">
Top Compensation
</a>
</li>
<li onclick="document.location.href='/high-asset-charities'">
<a href="/high-asset-charities">
High Assets
</a>
</li>
<li onclick="document.location.href='/charitywatch-articles'">
<a href="/charitywatch-articles">
Articles
</a>
</li>
<li onclick="document.location.href='/about-charitywatch'">
<a href="/about-charitywatch">
About Us
</a>
</li>
<li onclick="document.location.href='/charity-donation-links'">
<a href="/charity-donation-links">
Links
</a>
</li>
<li onclick="document.location.href='/join'">
<a href="/join">
Membership
</a>
</li>
</ul>
<div class="clear">
</div>
</div>
</div>
<div class="container">
<div class="row padt-lg">
<div class="medium-7 large-8 column hide-for-small-only">
</div>
<div class="small-12 medium-5 large-4 column pull-right">
<div class="input-group">
<span class="input-group-label">
<i class="fa fa-search">
</i>
</span>
<input autocomplete="off" class="input-group-field" id="search" name="search" onkeyup="searchSite();" placeholder="SEARCH" type="text"/>
</div>
</div>
</div>
<div id="supmenu">
<ul>
<li class="hide-for-small-only">
<a href="/home">
<i class="fa fa-home">
</i>
Home
</a>
</li>
<li class="supmenu-green" id="mnuDonate">
<i class="fa fa-gift">
</i>
Donate
</li>
<li>
<a href="/login">
<i class="fa fa-sign-in">
</i>
Login
</a>
</li>
</ul>
</div>
<div id="logo">
<a href="/home">
<img src="/img/charitywatch-logo.png"/>
</a>
</div>
<div id="twentyfive">
<img src="/img/charitywatch-25-years.png"/>
</div>
<div id="main_wrapper">
<div class="bg_white">
<p class="bg_white">
</p>
<h2>
Top Rated Charities
</h2>
<p>
Groups included on the CharityWatch Top-Rated list generally spend 75% or more of their budgets on programs, spend $25 or less to raise $100 in public support, do not hold excessive assets in reserve, have met CharityWatch's governance benchmarks, and receive "open-book" status for disclosure of basic financial information and documents to CharityWatch.
<em>
Please see the
<a href="/charitywatch-criteria-methodology">
Criteria
</a>
section of the website for more information on the rating criteria and methodology that CharityWatch adheres to.
</em>
<br/>
<br/>
Because many factors determine a worthy charity, we at CharityWatch suggest that you use the ratings on this page not as the sole determining factor in your decision, but rather as an aid.
</p>
<p class="bg_white">
</p>
<p>
</p>
<p>
This list is subject to change depending on the information CharityWatch receives concerning charitable organizations.
</p>
</div>
<div class="row">
<div class="small-12 medium-4 column">
<div id="submenu">
<div class="show-for-small-only">
<select id="category_select" onchange="display_category_top_rated_select();">
<option value="0">
All Categories
</option>
<option value="2">
AFRICAN-AMERICAN
</option>
<option value="3">
AIDS
</option>
<option value="4">
AMERICAN INDIAN
</option>
<option value="5">
ANIMAL & ANIMAL PROTECTION
</option>
<option value="6">
ASIA & ASIAN-AMERICAN
</option>
<option value="7">
BLIND & VISUALLY IMPAIRED
</option>
<option value="8">
CANCER
</option>
<option value="9">
CHILD PROTECTION
</option>
<option value="10">
CHILD SPONSORSHIP
</option>
<option value="11">
CIVIL RIGHTS & ADVOCACY
</option>
<option value="12">
CONSUMER PROTECTION & LEGAL AID
</option>
<option value="13">
CRIME & FIRE PREVENTION
</option>
<option value="14">
DISABLED
</option>
<option value="15">
DRUG & ALCOHOL ABUSE
</option>
<option value="16">
ENVIRONMENT
</option>
<option value="17">
GUN CONTROL (PRO/CON )
</option>
<option value="18">
HEALTH - GENERAL
</option>
<option value="19">
HISPANIC
</option>
<option value="20">
HOMELESSNESS & HOUSING
</option>
<option value="21">
HUMAN RIGHTS
</option>
<option value="22">
HUMAN SERVICES
</option>
<option value="23">
HUNGER
</option>
<option value="24">
INTERNATIONAL RELIEF & DEVELOPMENT
</option>
<option value="25">
JEWISH & ISRAEL
</option>
<option value="41">
LGBTQ RIGHTS & ADVOCACY
</option>
<option value="26">
LITERACY
</option>
<option value="27">
MENTAL HEALTH & DISABILITIES
</option>
<option value="28">
PEACE & INTERNATIONAL RELATIONS
</option>
<option value="30">
PUBLIC POLICY
</option>
<option value="40">
REPRODUCTIVE HEALTH, FAMILY PLANNING, & ABORTION
</option>
<option value="31">
SENIOR CITIZENS
</option>
<option value="32">
TERMINALLY OR CHRONICALLY ILL
</option>
<option value="33">
VETERANS & MILITARY
</option>
<option value="38">
WOMEN'S HEALTH
</option>
<option value="34">
WOMEN'S RIGHTS
</option>
<option value="35">
YOUTH DEVELOPMENT
</option>
<option value="36">
YOUTH-RESIDENTIAL
</option>
</select>
</div>
<ul class="hide-for-small-only">
<li class="charity_title nohover">
Top-Rated By Category
</li>
<li class="category on" id="0" onclick="display_category_top_rated('0');">
ALL CATEGORIES
</li>
<li class="category" id="2" onclick="display_category_top_rated('2');">
AFRICAN-AMERICAN
</li>
<li class="category" id="3" onclick="display_category_top_rated('3');">
AIDS
</li>
<li class="category" id="4" onclick="display_category_top_rated('4');">
AMERICAN INDIAN
</li>
<li class="category" id="5" onclick="display_category_top_rated('5');">
ANIMAL & ANIMAL PROTECTION
</li>
<li class="category" id="6" onclick="display_category_top_rated('6');">
ASIA & ASIAN-AMERICAN
</li>
<li class="category" id="7" onclick="display_category_top_rated('7');">
BLIND & VISUALLY IMPAIRED
</li>
<li class="category" id="8" onclick="display_category_top_rated('8');">
CANCER
</li>
<li class="category" id="9" onclick="display_category_top_rated('9');">
CHILD PROTECTION
</li>
<li class="category" id="10" onclick="display_category_top_rated('10');">
CHILD SPONSORSHIP
</li>
<li class="category" id="11" onclick="display_category_top_rated('11');">
CIVIL RIGHTS & ADVOCACY
</li>
<li class="category" id="12" onclick="display_category_top_rated('12');">
CONSUMER PROTECTION & LEGAL AID
</li>
<li class="category" id="13" onclick="display_category_top_rated('13');">
CRIME & FIRE PREVENTION
</li>
<li class="category" id="14" onclick="display_category_top_rated('14');">
DISABLED
</li>
<li class="category" id="15" onclick="display_category_top_rated('15');">
DRUG & ALCOHOL ABUSE
</li>
<li class="category" id="16" onclick="display_category_top_rated('16');">
ENVIRONMENT
</li>
<li class="category" id="17" onclick="display_category_top_rated('17');">
GUN CONTROL (PRO/CON )
</li>
<li class="category" id="18" onclick="display_category_top_rated('18');">
HEALTH - GENERAL
</li>
<li class="category" id="19" onclick="display_category_top_rated('19');">
HISPANIC
</li>
<li class="category" id="20" onclick="display_category_top_rated('20');">
HOMELESSNESS & HOUSING
</li>
<li class="category" id="21" onclick="display_category_top_rated('21');">
HUMAN RIGHTS
</li>
<li class="category" id="22" onclick="display_category_top_rated('22');">
HUMAN SERVICES
</li>
<li class="category" id="23" onclick="display_category_top_rated('23');">
HUNGER
</li>
<li class="category" id="24" onclick="display_category_top_rated('24');">
INTERNATIONAL RELIEF & DEVELOPMENT
</li>
<li class="category" id="25" onclick="display_category_top_rated('25');">
JEWISH & ISRAEL
</li>
<li class="category" id="41" onclick="display_category_top_rated('41');">
LGBTQ RIGHTS & ADVOCACY
</li>
<li class="category" id="26" onclick="display_category_top_rated('26');">
LITERACY
</li>
<li class="category" id="27" onclick="display_category_top_rated('27');">
MENTAL HEALTH & DISABILITIES
</li>
<li class="category" id="28" onclick="display_category_top_rated('28');">
PEACE & INTERNATIONAL RELATIONS
</li>
<li class="category" id="30" onclick="display_category_top_rated('30');">
PUBLIC POLICY
</li>
<li class="category" id="40" onclick="display_category_top_rated('40');">
REPRODUCTIVE HEALTH, FAMILY PLANNING, & ABORTION
</li>
<li class="category" id="31" onclick="display_category_top_rated('31');">
SENIOR CITIZENS
</li>
<li class="category" id="32" onclick="display_category_top_rated('32');">
TERMINALLY OR CHRONICALLY ILL
</li>
<li class="category" id="33" onclick="display_category_top_rated('33');">
VETERANS & MILITARY
</li>
<li class="category" id="38" onclick="display_category_top_rated('38');">
WOMEN'S HEALTH
</li>
<li class="category" id="34" onclick="display_category_top_rated('34');">
WOMEN'S RIGHTS
</li>
<li class="category" id="35" onclick="display_category_top_rated('35');">
YOUTH DEVELOPMENT
</li>
<li class="category" id="36" onclick="display_category_top_rated('36');">
YOUTH-RESIDENTIAL
</li>
</ul>
</div>
</div>
<div class="small-12 medium-8 column" id="results">
<div class="charity_title">
AFRICAN-AMERICAN
</div>
<table class="small" width="100%">
<tbody>
<tr>
<td>
<a href="/ratings-and-metrics/naacp-legal-defense-and-educational-fund/18">
NAACP Legal Defense and Educational Fund
</a>
</td>
<td width="2%">
A-
</td>
</tr>
<tr>
<td>
<a href="/ratings-and-metrics/national-urban-league-national-office/19">
National Urban League (National Office)
</a>
</td>
<td width="2%">
A
</td>
</tr>
</tbody>
</table>
<div class="divider">
</div>
<div class="charity_title">
AIDS
</div>
<table class="small" width="100%">
<tbody>
<tr>
<td>
<a href="/ratings-and-metrics/elizabeth-glaser-pediatric-aids-foundation/24">
Elizabeth Glaser Pediatric AIDS Foundation
</a>
</td>
<td width="2%">
A-
</td>
</tr>
<tr>
<td>
<a href="/ratings-and-metrics/foundation-for-aids-research-amfar/25">
Foundation for AIDS Research (amfAR)
</a>
</td>
<td width="2%">
A-
</td>
</tr>
</tbody>
</table>
<div class="divider">
</div>
<div class="charity_title">
AMERICAN INDIAN
</div>
<table class="small" width="100%">
<tbody>
<tr>
<td>
<a href="/ratings-and-metrics/american-indian-college-fund/28">
American Indian College Fund
</a>
</td>
<td width="2%">
B+
</td>
</tr>
</tbody>
</table>
<div class="divider">
</div>
<div class="charity_title">
ANIMAL & ANIMAL PROTECTION
</div>
<table class="small" width="100%">
<tbody>
<tr>
<td>
<a href="/ratings-and-metrics/african-wildlife-foundation/237">
African Wildlife Foundation
</a>
</td>
<td width="2%">
A-
</td>
</tr>
<tr>
<td>
<a href="/ratings-and-metrics/american-bird-conservancy/239">
American Bird Conservancy
</a>
</td>
<td width="2%">
A
</td>
</tr>
<tr>
<td>
<a href="/ratings-and-metrics/american-humane/44">
American Humane
</a>
</td>
<td width="2%">
A
</td>
</tr>
<tr>
<td>
<a href="/ratings-and-metrics/animal-welfare-institute/47">
Animal Welfare Institute
</a>
</td>
<td width="2%">
A+
</td>
</tr>
<tr>
<td>
<a href="/ratings-and-metrics/bat-conservation-international/49">
Bat Conservation International
</a>
</td>
<td width="2%">
A-
</td>
</tr>
<tr>
<td>
<a href="/ratings-and-metrics/best-friends-animal-society/50">
Best Friends Animal Society
</a>
</td>
<td width="2%">
B+
</td>
</tr>
<tr>
<td>
<a href="/ratings-and-metrics/dian-fossey-gorilla-fund-international/54">
Dian Fossey Gorilla Fund International
</a>
</td>
<td width="2%">
A
</td>
</tr>
<tr>
<td>
<a href="/ratings-and-metrics/friends-of-animals/58">
Friends of Animals
</a>
</td>
<td width="2%">
A
</td>
</tr>
<tr>
<td>
<a href="/ratings-and-metrics/humane-farming-association/62">
Humane Farming Association
</a>
</td>
<td width="2%">
A-
</td>
</tr>
<tr>
<td>
<a href="/ratings-and-metrics/jane-goodall-institute/66">
Jane Goodall Institute
</a>
</td>
<td width="2%">
A-
</td>
</tr>
<tr>
<td>
<a href="/ratings-and-metrics/marine-mammal-center/68">
Marine Mammal Center
</a>
</td>
<td width="2%">
A-
</td>
</tr>
<tr>
<td>
<a href="/ratings-and-metrics/performing-animal-welfare-society/75">
Performing Animal Welfare Society
</a>
</td>
<td width="2%">
A
</td>
</tr>
<tr>
<td>
<a href="/ratings-and-metrics/petsmart-charities/595">
PetSmart Charities
</a>
</td>
<td width="2%">
A+
</td>
</tr>
<tr>
<td>
<a href="/ratings-and-metrics/redrover/633">
RedRover
</a>
</td>
<td width="2%">
B+
</td>
</tr>
<tr>
<td>
<a href="/ratings-and-metrics/wildlife-conservation-society/80">
Wildlife Conservation Society
</a>
</td>
<td width="2%">
A
</td>
</tr>
</tbody>
</table>
<div class="divider">
</div>
<div class="charity_title">
ASIA & ASIAN-AMERICAN
</div>
<table class="small" width="100%">
<tbody>
<tr>
<td>
<a href="/ratings-and-metrics/asia-foundation/81">
Asia Foundation
</a>
</td>
<td width="2%">
A
</td>
</tr>
<tr>
<td>
<a href="/ratings-and-metrics/asia-society/82">
Asia Society
</a>
</td>
<td width="2%">
A-
</td>
</tr>
<tr>
<td>
<a href="/ratings-and-metrics/asian-american-legal-defense-education-fund/83">
Asian American Legal Defense & Education Fund
</a>
</td>
<td width="2%">
A-
</td>
</tr>
<tr>
<td>
<a href="/ratings-and-metrics/japan-society/84">
Japan Society
</a>
</td>
<td width="2%">
A
</td>
</tr>
</tbody>
</table>
<div class="divider">
</div>
<div class="charity_title">
BLIND & VISUALLY IMPAIRED
</div>
<table class="small" width="100%">
<tbody>
<tr>
<td>
<a href="/ratings-and-metrics/guide-dog-foundation-for-the-blind/93">
Guide Dog Foundation for the Blind
</a>
</td>
<td width="2%">
A
</td>
</tr>
<tr>
<td>
<a href="/ratings-and-metrics/helen-keller-international/97">
Helen Keller International
</a>
</td>
<td width="2%">
A
</td>
</tr>
<tr>
<td>
<a href="/ratings-and-metrics/national-federation-of-the-blind/105">
National Federation of the Blind
</a>
</td>
<td width="2%">
A-
</td>
</tr>
<tr>
<td>
<a href="/ratings-and-metrics/prevent-blindness/107">
Prevent Blindness
</a>
</td>
<td width="2%">
A-
</td>
</tr>
<tr>
<td>
<a href="/ratings-and-metrics/seva-foundation/435">
Seva Foundation
</a>
</td>
<td width="2%">
A
</td>
</tr>
</tbody>
</table>
<div class="divider">
</div>
<div class="charity_title">
CANCER
</div>
<table class="small" width="100%">
<tbody>
<tr>
<td>
<a href="/ratings-and-metrics/breast-cancer-prevention-partners/114">
Breast Cancer Prevention Partners
</a>
</td>
<td width="2%">
A-
</td>
</tr>
<tr>
<td>
<a href="/ratings-and-metrics/breast-cancer-research-foundation/117">
Breast Cancer Research Foundation
</a>
</td>
<td width="2%">
A+
</td>
</tr>
<tr>
<td>
<a href="/ratings-and-metrics/cancer-research-institute/123">
Cancer Research Institute
</a>
</td>
<td width="2%">
A
</td>
</tr>
<tr>
<td>
<a href="/ratings-and-metrics/entertainment-industry-foundation/149">
Entertainment Industry Foundation
</a>
</td>
<td width="2%">
A-
</td>
</tr>
<tr>
<td>
<a href="/ratings-and-metrics/leukemia-lymphoma-society/135">
Leukemia & Lymphoma Society
</a>
</td>
<td width="2%">
B+
</td>
</tr>
<tr>
<td>
<a href="/ratings-and-metrics/memorial-sloan-kettering-cancer-center/137">
Memorial Sloan Kettering Cancer Center
</a>
</td>
<td width="2%">
A-
</td>
</tr>
<tr>
<td>
<a href="/ratings-and-metrics/multiple-myeloma-research-foundation/138">
Multiple Myeloma Research Foundation
</a>
</td>
<td width="2%">
A
</td>
</tr>
<tr>
<td>
<a href="/ratings-and-metrics/national-breast-cancer-coalition-fund/139">
National Breast Cancer Coalition Fund
</a>
</td>
<td width="2%">
A
</td>
</tr>
<tr>
<td>
<a href="/ratings-and-metrics/ovarian-cancer-research-fund-alliance/725">
Ovarian Cancer Research Fund Alliance
</a>
</td>
<td width="2%">
A
</td>
</tr>
<tr>
<td>
<a href="/ratings-and-metrics/pancreatic-cancer-action-network/721">
Pancreatic Cancer Action Network
</a>
</td>
<td width="2%">
A
</td>
</tr>
<tr>
<td>
<a href="/ratings-and-metrics/prevent-cancer-foundation/146">
Prevent Cancer Foundation
</a>
</td>
<td width="2%">
A-
</td>
</tr>
<tr>
<td>
<a href="/ratings-and-metrics/prostate-cancer-foundation/147">
Prostate Cancer Foundation
</a>
</td>
<td width="2%">
A
</td>
</tr>
</tbody>
</table>
<div class="divider">
</div>
<div class="charity_title">
CHILD PROTECTION
</div>
<table class="small" width="100%">
<tbody>
<tr>
<td>
<a href="/ratings-and-metrics/child-find-of-america/155">
Child Find of America
</a>
</td>
<td width="2%">
A+
</td>
</tr>
<tr>
<td>
<a href="/ratings-and-metrics/childrens-defense-fund/158">
Children's Defense Fund
</a>
</td>
<td width="2%">
A
</td>
</tr>
<tr>
<td>
<a href="/ratings-and-metrics/childrens-health-fund/159">
Children's Health Fund
</a>
</td>
<td width="2%">
A-
</td>
</tr>
<tr>
<td>
<a href="/ratings-and-metrics/marine-toys-for-tots-foundation/162">
Marine Toys for Tots Foundation
</a>
</td>
<td width="2%">
A-
</td>
</tr>
<tr>
<td>
<a href="/ratings-and-metrics/prevent-child-abuse-america-national-office/165">
Prevent Child Abuse America (National Office)
</a>
</td>
<td width="2%">
A+
</td>
</tr>
<tr>
<td>
<a href="/ratings-and-metrics/ronald-mcdonald-house-charities-national-office/166">
Ronald McDonald House Charities (National Office)
</a>
</td>
<td width="2%">
A-
</td>
</tr>
</tbody>
</table>
<div class="divider">
</div>
<div class="charity_title">
CHILD SPONSORSHIP
</div>
<table class="small" width="100%">
<tbody>
<tr>
<td>
<a href="/ratings-and-metrics/childfund-international/168">
ChildFund International
</a>
</td>
<td width="2%">
A-
</td>
</tr>
<tr>
<td>
<a href="/ratings-and-metrics/children-incorporated/169">
Children Incorporated
</a>
</td>
<td width="2%">
A
</td>
</tr>
<tr>
<td>
<a href="/ratings-and-metrics/children-international/170">
Children International
</a>
</td>
<td width="2%">
A
</td>
</tr>
<tr>
<td>
<a href="/ratings-and-metrics/compassion-international/172">
Compassion International
</a>
</td>
<td width="2%">
A
</td>
</tr>
<tr>
<td>
<a href="/ratings-and-metrics/pearl-s-buck-international/173">
Pearl S. Buck International
</a>
</td>
<td width="2%">
A
</td>
</tr>
<tr>
<td>
<a href="/ratings-and-metrics/save-the-children/175">
Save the Children
</a>
</td>
<td width="2%">
A
</td>
</tr>
<tr>
<td>
<a href="/ratings-and-metrics/unbound/171">
Unbound
</a>
</td>
<td width="2%">
A+
</td>
</tr>
<tr>
<td>
<a href="/ratings-and-metrics/world-vision/176">
World Vision
</a>
</td>
<td width="2%">
A-
</td>
</tr>
</tbody>
</table>
<div class="divider">
</div>
<div class="charity_title">
CIVIL RIGHTS & ADVOCACY
</div>
<table class="small" width="100%">
<tbody>
<tr>
<td>
<a href="/ratings-and-metrics/american-civil-liberties-union-aclu/177">
American Civil Liberties Union (ACLU)
</a>
</td>
<td width="2%">
A-
</td>
</tr>
<tr>
<td>
<a href="/ratings-and-metrics/american-civil-liberties-union-aclu-foundation/178">
American Civil Liberties Union (ACLU) Foundation
</a>
</td>
<td width="2%">
A
</td>
</tr>
<tr>
<td>
<a href="/ratings-and-metrics/astraea-lesbian-foundation-for-justice/756">
Astraea Lesbian Foundation for Justice
</a>
</td>
<td width="2%">
A
</td>
</tr>
<tr>
<td>
<a href="/ratings-and-metrics/center-for-community-change/349">
Center for Community Change
</a>
</td>
<td width="2%">
A-
</td>
</tr>
<tr>
<td>
<a href="/ratings-and-metrics/center-for-constitutional-rights/182">
Center for Constitutional Rights
</a>
</td>
<td width="2%">
A-
</td>
</tr>
<tr>
<td>
<a href="/ratings-and-metrics/innocence-project/737">
Innocence Project
</a>
</td>
<td width="2%">
A-
</td>
</tr>
</tbody>
</table>
<div class="divider">
</div>
<div class="charity_title">
CONSUMER PROTECTION & LEGAL AID
</div>
<table class="small" width="100%">
<tbody>
<tr>
<td>
<a href="/ratings-and-metrics/action-on-smoking-and-health/196">
Action on Smoking and Health
</a>
</td>
<td width="2%">
A
</td>
</tr>
<tr>
<td>
<a href="/ratings-and-metrics/food-and-water-watch/198">
Food and Water Watch
</a>
</td>
<td width="2%">
B+
</td>
</tr>
<tr>
<td>
<a href="/ratings-and-metrics/government-accountability-project-gap/682">
Government Accountability Project (GAP)
</a>
</td>
<td width="2%">
A
</td>
</tr>
<tr>
<td>
<a href="/ratings-and-metrics/innocence-project/737">
Innocence Project
</a>
</td>
<td width="2%">
A-
</td>
</tr>
<tr>
<td>
<a href="/ratings-and-metrics/public-citizen-foundation/205">
Public Citizen Foundation
</a>
</td>
<td width="2%">
A
</td>
</tr>
</tbody>
</table>
<div class="divider">
</div>
<div class="charity_title">
CRIME & FIRE PREVENTION
</div>
<table class="small" width="100%">
<tbody>
<tr>
<td>
<a href="/ratings-and-metrics/concerns-of-police-survivors-cops/211">
Concerns of Police Survivors (COPS)
</a>
</td>
<td width="2%">
A-
</td>
</tr>
<tr>
<td>
<a href="/ratings-and-metrics/fortune-society/216">
Fortune Society
</a>
</td>
<td width="2%">
A-
</td>
</tr>
</tbody>
</table>
<div class="divider">
</div>
<div class="charity_title">
DISABLED
</div>
<table class="small" width="100%">
<tbody>
<tr>
<td>
<a href="/ratings-and-metrics/christopher-dana-reeve-foundation/225">
Christopher & Dana Reeve Foundation
</a>
</td>
<td width="2%">
A-
</td>
</tr>
<tr>
<td>
<a href="/ratings-and-metrics/goodwill-industries-international-national-office/226">
Goodwill Industries International (National Office)
</a>
</td>
<td width="2%">
A
</td>
</tr>
</tbody>
</table>
<div class="divider">
</div>
<div class="charity_title">
DRUG & ALCOHOL ABUSE
</div>
<table class="small" width="100%">
<tbody>
<tr>
<td>
<a href="/ratings-and-metrics/drug-policy-alliance/229">
Drug Policy Alliance
</a>
</td>
<td width="2%">
B+
</td>
</tr>
<tr>
<td>
<a href="/ratings-and-metrics/partnership-for-drug-free-kids/233">
Partnership for Drug-Free Kids
</a>
</td>
<td width="2%">
A
</td>
</tr>
</tbody>
</table>
<div class="divider">
</div>
<div class="charity_title">
ENVIRONMENT
</div>
<table class="small" width="100%">
<tbody>
<tr>
<td>
<a href="/ratings-and-metrics/african-wildlife-foundation/237">
African Wildlife Foundation
</a>
</td>
<td width="2%">
A-
</td>
</tr>
<tr>
<td>
<a href="/ratings-and-metrics/alaska-conservation-foundation/238">
Alaska Conservation Foundation
</a>
</td>
<td width="2%">
A-
</td>
</tr>
<tr>
<td>
<a href="/ratings-and-metrics/american-bird-conservancy/239">
American Bird Conservancy
</a>
</td>
<td width="2%">
A
</td>
</tr>
<tr>
<td>
<a href="/ratings-and-metrics/american-rivers/242">
American Rivers
</a>
</td>
<td width="2%">
B+
</td>
</tr>
<tr>
<td>
<a href="/ratings-and-metrics/arbor-day-foundation/261">
Arbor Day Foundation
</a>
</td>
<td width="2%">
A-
</td>
</tr>
<tr>
<td>
<a href="/ratings-and-metrics/center-for-biological-diversity/243">
Center for Biological Diversity
</a>
</td>
<td width="2%">
A
</td>
</tr>
<tr>
<td>
<a href="/ratings-and-metrics/conservation-fund/245">
Conservation Fund
</a>
</td>
<td width="2%">
A+
</td>
</tr>
<tr>
<td>
<a href="/ratings-and-metrics/conservation-international-foundation/246">
Conservation International Foundation
</a>
</td>
<td width="2%">
A
</td>
</tr>
<tr>
<td>
<a href="/ratings-and-metrics/earth-island-institute/250">
Earth Island Institute
</a>
</td>
<td width="2%">
A-
</td>
</tr>
<tr>
<td>
<a href="/ratings-and-metrics/earthjustice/251">
Earthjustice
</a>
</td>
<td width="2%">
A
</td>
</tr>
<tr>
<td>
<a href="/ratings-and-metrics/earthworks/252">
Earthworks
</a>
</td>
<td width="2%">
A
</td>
</tr>
<tr>
<td>
<a href="/ratings-and-metrics/environmental-defense-action-fund/731">
Environmental Defense Action Fund
</a>
</td>
<td width="2%">
A+
</td>
</tr>
<tr>
<td>
<a href="/ratings-and-metrics/environmental-defense-fund/253">
Environmental Defense Fund
</a>
</td>
<td width="2%">
A-
</td>
</tr>
<tr>
<td>
<a href="/ratings-and-metrics/food-and-water-watch/198">
Food and Water Watch
</a>
</td>
<td width="2%">
B+
</td>
</tr>
<tr>
<td>
<a href="/ratings-and-metrics/izaak-walton-league-of-america/259">
Izaak Walton League of America
</a>
</td>
<td width="2%">
B+
</td>
</tr>
<tr>
<td>
<a href="/ratings-and-metrics/keep-america-beautiful-national-office/260">
Keep America Beautiful (National Office)
</a>
</td>
<td width="2%">
A
</td>
</tr>
<tr>
<td>
<a href="/ratings-and-metrics/national-audubon-society/262">
National Audubon Society
</a>
</td>
<td width="2%">
B+
</td>
</tr>
<tr>
<td>
<a href="/ratings-and-metrics/national-park-trust/264">
National Park Trust
</a>
</td>
<td width="2%">
A
</td>
</tr>
<tr>
<td>
<a href="/ratings-and-metrics/national-wildlife-federation/266">
National Wildlife Federation
</a>
</td>
<td width="2%">
A
</td>
</tr>
<tr>
<td>
<a href="/ratings-and-metrics/natural-resources-defense-council/267">
Natural Resources Defense Council
</a>
</td>
<td width="2%">
A-
</td>
</tr>
<tr>
<td>
<a href="/ratings-and-metrics/nature-conservancy/268">
Nature Conservancy
</a>
</td>
<td width="2%">
B+
</td>
</tr>
<tr>
<td>
<a href="/ratings-and-metrics/rainforest-action-network/271">
Rainforest Action Network
</a>
</td>
<td width="2%">
A-
</td>
</tr>
<tr>
<td>
<a href="/ratings-and-metrics/rainforest-alliance/272">
Rainforest Alliance
</a>
</td>
<td width="2%">
A-
</td>
</tr>
<tr>
<td>
<a href="/ratings-and-metrics/sierra-club-foundation/277">
Sierra Club Foundation
</a>
</td>
<td width="2%">
A
</td>
</tr>
<tr>
<td>
<a href="/ratings-and-metrics/trout-unlimited-national-office/279">
Trout Unlimited (National Office)
</a>
</td>
<td width="2%">
A-
</td>
</tr>
<tr>
<td>
<a href="/ratings-and-metrics/trust-for-public-land/280">
Trust for Public Land
</a>
</td>
<td width="2%">
A-
</td>
</tr>
<tr>
<td>
<a href="/ratings-and-metrics/union-of-concerned-scientists/281">
Union of Concerned Scientists
</a>
</td>
<td width="2%">
A-
</td>
</tr>
<tr>
<td>
<a href="/ratings-and-metrics/waterorg/645">
Water.org
</a>
</td>
<td width="2%">
A-
</td>
</tr>
<tr>
<td>
<a href="/ratings-and-metrics/waterkeeper-alliance/282">
Waterkeeper Alliance
</a>
</td>
<td width="2%">
A+
</td>
</tr>
<tr>
<td>
<a href="/ratings-and-metrics/wilderness-society/283">
Wilderness Society
</a>
</td>
<td width="2%">
B+
</td>
</tr>
<tr>
<td>
<a href="/ratings-and-metrics/world-resources-institute/284">
World Resources Institute
</a>
</td>
<td width="2%">
A+
</td>
</tr>
<tr>
<td>
<a href="/ratings-and-metrics/yosemite-conservancy/715">
Yosemite Conservancy
</a>
</td>
<td width="2%">
A-
</td>
</tr>
</tbody>
</table>
<div class="divider">
</div>
<div class="charity_title">
GUN CONTROL (PRO/CON )
</div>
<table class="small" width="100%">
<tbody>
<tr>
<td>
<a href="/ratings-and-metrics/national-rifle-association-nra-foundation/289">
National Rifle Association (NRA) Foundation
</a>
</td>
<td width="2%">
A+
</td>
</tr>
</tbody>
</table>
<div class="divider">
</div>
<div class="charity_title">
HEALTH - GENERAL
</div>
<table class="small" width="100%">
<tbody>
<tr>
<td>
<a href="/ratings-and-metrics/als-association-national-office/290">
ALS Association (National Office)
</a>
</td>
<td width="2%">
A-
</td>
</tr>
<tr>
<td>
<a href="/ratings-and-metrics/american-brain-tumor-association/291">
American Brain Tumor Association
</a>
</td>
<td width="2%">
A-
</td>
</tr>
<tr>
<td>
<a href="/ratings-and-metrics/american-kidney-fund/295">
American Kidney Fund
</a>
</td>
<td width="2%">
A+
</td>
</tr>
<tr>
<td>
<a href="/ratings-and-metrics/american-liver-foundation/297">
American Liver Foundation
</a>
</td>
<td width="2%">
A-
</td>
</tr>
<tr>
<td>
<a href="/ratings-and-metrics/american-lung-association-national-office/298">
American Lung Association (National Office)
</a>
</td>
<td width="2%">
A
</td>
</tr>
<tr>
<td>
<a href="/ratings-and-metrics/american-red-cross/360">
American Red Cross
</a>
</td>
<td width="2%">
B+
</td>
</tr>
<tr>
<td>
<a href="/ratings-and-metrics/city-of-hope-affiliates/302">
City of Hope & Affiliates
</a>
</td>
<td width="2%">
A-
</td>
</tr>
<tr>
<td>
<a href="/ratings-and-metrics/cj-first-candle-national-office/312">
CJ First Candle (National Office)
</a>
</td>
<td width="2%">
A
</td>
</tr>
<tr>
<td>
<a href="/ratings-and-metrics/clinton-foundation/478">
Clinton Foundation
</a>
</td>
<td width="2%">
A
</td>
</tr>
<tr>
<td>
<a href="/ratings-and-metrics/crohns-colitis-foundation-of-america/303">
Crohn's & Colitis Foundation of America
</a>
</td>
<td width="2%">
A
</td>
</tr>
<tr>
<td>
<a href="/ratings-and-metrics/cystic-fibrosis-foundation/304">
Cystic Fibrosis Foundation
</a>
</td>
<td width="2%">
A-
</td>
</tr>
<tr>
<td>
<a href="/ratings-and-metrics/diabetes-action-research-and-education-foundation/307">
Diabetes Action Research and Education Foundation
</a>
</td>
<td width="2%">
A
</td>
</tr>
<tr>
<td>
<a href="/ratings-and-metrics/diabetes-research-institute-foundation/308">
Diabetes Research Institute Foundation
</a>
</td>
<td width="2%">
B+
</td>
</tr>
<tr>
<td>
<a href="/ratings-and-metrics/hearing-health-foundation/305">
Hearing Health Foundation
</a>
</td>
<td width="2%">
A+
</td>
</tr>
<tr>
<td>
<a href="/ratings-and-metrics/huntingtons-disease-society-of-america/314">
Huntington's Disease Society of America
</a>
</td>
<td width="2%">
B+
</td>
</tr>
<tr>
<td>
<a href="/ratings-and-metrics/jdrf-international/315">
JDRF International
</a>
</td>
<td width="2%">
A-
</td>
</tr>
<tr>
<td>
<a href="/ratings-and-metrics/michael-j-fox-foundation-for-parkinsons-research/320">
Michael J. Fox Foundation for Parkinson's Research
</a>
</td>
<td width="2%">
A
</td>
</tr>
<tr>
<td>
<a href="/ratings-and-metrics/national-hemophilia-foundation-national-office/329">
National Hemophilia Foundation (National Office)
</a>
</td>
<td width="2%">
A
</td>
</tr>
<tr>
<td>
<a href="/ratings-and-metrics/national-jewish-health/330">
National Jewish Health
</a>
</td>
<td width="2%">
A-
</td>
</tr>
<tr>
<td>
<a href="/ratings-and-metrics/national-kidney-foundation/331">
National Kidney Foundation
</a>
</td>
<td width="2%">
B+
</td>
</tr>
<tr>
<td>
<a href="/ratings-and-metrics/national-psoriasis-foundation/695">
National Psoriasis Foundation
</a>
</td>
<td width="2%">
A-
</td>
</tr>
<tr>
<td>
<a href="/ratings-and-metrics/parkinsons-foundation-pre-merger-national-parkinson-foundation/334">
Parkinson's Foundation (pre-merger, National Parkinson Foundation)
</a>
</td>
<td width="2%">
A-
</td>
</tr>
<tr>
<td>
<a href="/ratings-and-metrics/parkinsons-foundation-pre-merger-parkinsons-disease-foundation/337">
Parkinson's Foundation (pre-merger, Parkinson's Disease Foundation)
</a>
</td>
<td width="2%">
A-
</td>
</tr>
<tr>
<td>
<a href="/ratings-and-metrics/partnership-for-a-healthier-america/762">
Partnership for a Healthier America
</a>
</td>
<td width="2%">
A
</td>
</tr>
<tr>
<td>
<a href="/ratings-and-metrics/pkd-foundation/338">
PKD Foundation
</a>
</td>
<td width="2%">
A-
</td>
</tr>
</tbody>
</table>
<div class="divider">
</div>
<div class="charity_title">
HISPANIC
</div>
<table class="small" width="100%">
<tbody>
<tr>
<td>
<a href="/ratings-and-metrics/hispanic-scholarship-fund/345">
Hispanic Scholarship Fund
</a>
</td>
<td width="2%">
A
</td>
</tr>
<tr>
<td>
<a href="/ratings-and-metrics/latinojustice-prldef/346">
LatinoJustice PRLDEF
</a>
</td>
<td width="2%">
A-
</td>
</tr>
</tbody>
</table>
<div class="divider">
</div>
<div class="charity_title">
HOMELESSNESS & HOUSING
</div>
<table class="small" width="100%">
<tbody>
<tr>
<td>
<a href="/ratings-and-metrics/bowery-residents-committee/348">
Bowery Residents' Committee
</a>
</td>
<td width="2%">
A
</td>
</tr>
<tr>
<td>
<a href="/ratings-and-metrics/center-for-community-change/349">
Center for Community Change
</a>
</td>
<td width="2%">
A-
</td>
</tr>
<tr>
<td>
<a href="/ratings-and-metrics/coalition-for-the-homeless/350">
Coalition for the Homeless
</a>
</td>
<td width="2%">
A-
</td>
</tr>
<tr>
<td>
<a href="/ratings-and-metrics/habitat-for-humanity-international-national-office/351">
Habitat for Humanity International (National Office)
</a>
</td>
<td width="2%">
B+
</td>
</tr>
<tr>
<td>
<a href="/ratings-and-metrics/homes-for-our-troops/535">
Homes for Our Troops
</a>
</td>
<td width="2%">
A
</td>
</tr>
<tr>
<td>
<a href="/ratings-and-metrics/national-alliance-to-end-homelessness/352">
National Alliance to End Homelessness
</a>
</td>
<td width="2%">
A+
</td>
</tr>
</tbody>
</table>
<div class="divider">
</div>
<div class="charity_title">
HUMAN RIGHTS
</div>
<table class="small" width="100%">
<tbody>
<tr>
<td>
<a href="/ratings-and-metrics/center-for-victims-of-torture/354">
Center for Victims of Torture
</a>
</td>
<td width="2%">
A-
</td>
</tr>
<tr>
<td>
<a href="/ratings-and-metrics/committee-to-protect-journalists/355">
Committee to Protect Journalists
</a>
</td>
<td width="2%">
A-
</td>
</tr>
<tr>
<td>
<a href="/ratings-and-metrics/human-rights-first/357">
Human Rights First
</a>
</td>
<td width="2%">
A
</td>
</tr>
<tr>
<td>
<a href="/ratings-and-metrics/human-rights-watch/358">
Human Rights Watch
</a>
</td>
<td width="2%">
A-
</td>
</tr>
</tbody>
</table>
<div class="divider">
</div>
<div class="charity_title">
HUMAN SERVICES
</div>
<table class="small" width="100%">
<tbody>
<tr>
<td>
<a href="/ratings-and-metrics/american-red-cross/360">
American Red Cross
</a>
</td>
<td width="2%">
B+
</td>
</tr>
<tr>
<td>
<a href="/ratings-and-metrics/the-y-national-office/372">
The Y (National Office)
</a>
</td>
<td width="2%">
A
</td>
</tr>
</tbody>
</table>
<div class="divider">
</div>
<div class="charity_title">
HUNGER
</div>
<table class="small" width="100%">
<tbody>
<tr>
<td>
<a href="/ratings-and-metrics/action-against-hunger-usa/374">
Action Against Hunger-USA
</a>
</td>
<td width="2%">
A
</td>
</tr>
<tr>
<td>
<a href="/ratings-and-metrics/city-harvest/378">
City Harvest
</a>
</td>
<td width="2%">
B+
</td>
</tr>
<tr>
<td>
<a href="/ratings-and-metrics/feed-my-starving-children/760">
Feed My Starving Children
</a>
</td>
<td width="2%">
A
</td>
</tr>
<tr>
<td>
<a href="/ratings-and-metrics/feeding-america/381">
Feeding America
</a>
</td>
<td width="2%">
B+
</td>
</tr>
<tr>
<td>
<a href="/ratings-and-metrics/food-bank-for-new-york-city/382">
Food Bank For New York City
</a>
</td>
<td width="2%">
A-
</td>
</tr>
<tr>
<td>
<a href="/ratings-and-metrics/hunger-project/386">
Hunger Project
</a>
</td>
<td width="2%">
B+
</td>
</tr>
<tr>
<td>
<a href="/ratings-and-metrics/meals-on-wheels-america-national-office/733">
Meals on Wheels America (National Office)
</a>
</td>
<td width="2%">
A-
</td>
</tr>
<tr>
<td>
<a href="/ratings-and-metrics/one-acre-fund/720">
One Acre Fund
</a>
</td>
<td width="2%">
A
</td>
</tr>
</tbody>
</table>
<div class="divider">
</div>
<div class="charity_title">
INTERNATIONAL RELIEF & DEVELOPMENT
</div>
<table class="small" width="100%">
<tbody>
<tr>
<td>
<a href="/ratings-and-metrics/accion-international/387">
Accion International
</a>
</td>
<td width="2%">
A-
</td>
</tr>
<tr>
<td>
<a href="/ratings-and-metrics/actionaid-usa/388">
ActionAid USA
</a>
</td>
<td width="2%">
A-
</td>
</tr>
<tr>
<td>
<a href="/ratings-and-metrics/africare/389">
Africare
</a>
</td>
<td width="2%">
A+
</td>
</tr>
<tr>
<td>
<a href="/ratings-and-metrics/all-hands-volunteers/767">
All Hands Volunteers
</a>
</td>
<td width="2%">
A+
</td>
</tr>
<tr>
<td>
<a href="/ratings-and-metrics/american-jewish-joint-distribution-committee/710">
American Jewish Joint Distribution Committee
</a>
</td>
<td width="2%">
A+
</td>
</tr>
<tr>
<td>
<a href="/ratings-and-metrics/american-near-east-refugee-aid-anera/391">
American Near East Refugee Aid (ANERA)
</a>
</td>
<td width="2%">
A
</td>
</tr>
<tr>
<td>
<a href="/ratings-and-metrics/american-red-cross/360">
American Red Cross
</a>
</td>
<td width="2%">
B+
</td>
</tr>
<tr>
<td>
<a href="/ratings-and-metrics/american-refugee-committee/392">
American Refugee Committee
</a>
</td>
<td width="2%">
A+
</td>
</tr>
<tr>
<td>
<a href="/ratings-and-metrics/care-usa/396">
CARE USA
</a>
</td>
<td width="2%">
A+
</td>
</tr>
<tr>
<td>
<a href="/ratings-and-metrics/catholic-relief-services/398">
Catholic Relief Services
</a>
</td>
<td width="2%">
A+
</td>
</tr>
<tr>
<td>
<a href="/ratings-and-metrics/charity-water/400">
charity: water
</a>
</td>
<td width="2%">
A
</td>
</tr>
<tr>
<td>
<a href="/ratings-and-metrics/church-world-service/403">
Church World Service
</a>
</td>
<td width="2%">
B+
</td>
</tr>
<tr>
<td>
<a href="/ratings-and-metrics/clinton-foundation/478">
Clinton Foundation
</a>
</td>
<td width="2%">
A
</td>
</tr>
<tr>
<td>
<a href="/ratings-and-metrics/direct-relief-direct-relief-foundation/405">
Direct Relief & Direct Relief Foundation
</a>
</td>
<td width="2%">
A
</td>
</tr>
<tr>
<td>
<a href="/ratings-and-metrics/doctors-without-borders-usa/406">
Doctors Without Borders USA
</a>
</td>
<td width="2%">
A
</td>
</tr>
<tr>
<td>
<a href="/ratings-and-metrics/episcopal-relief-development/407">
Episcopal Relief & Development
</a>
</td>
<td width="2%">
A
</td>
</tr>
<tr>
<td>
<a href="/ratings-and-metrics/finca-international/408">
FINCA International
</a>
</td>
<td width="2%">
A
</td>
</tr>
<tr>
<td>
<a href="/ratings-and-metrics/fistula-foundation/592">
Fistula Foundation
</a>
</td>
<td width="2%">
A
</td>
</tr>
<tr>
<td>
<a href="/ratings-and-metrics/grameen-foundation-usa/409">
Grameen Foundation USA
</a>
</td>
<td width="2%">
A
</td>
</tr>
<tr>
<td>
<a href="/ratings-and-metrics/healthright-international/410">
HealthRight International
</a>
</td>
<td width="2%">
A
</td>
</tr>
<tr>
<td>
<a href="/ratings-and-metrics/hias/754">
HIAS
</a>
</td>
<td width="2%">
A
</td>
</tr>
<tr>
<td>
<a href="/ratings-and-metrics/international-medical-corps/413">
International Medical Corps
</a>
</td>
<td width="2%">
A
</td>
</tr>
<tr>
<td>
<a href="/ratings-and-metrics/international-rescue-committee/414">
International Rescue Committee
</a>
</td>
<td width="2%">
A+
</td>
</tr>
<tr>
<td>
<a href="/ratings-and-metrics/lutheran-world-relief/416">
Lutheran World Relief
</a>
</td>
<td width="2%">
A
</td>
</tr>
<tr>
<td>
<a href="/ratings-and-metrics/map-international/417">
MAP International
</a>
</td>
<td width="2%">
B+
</td>
</tr>
<tr>
<td>
<a href="/ratings-and-metrics/medical-teams-international/419">
Medical Teams International
</a>
</td>
<td width="2%">
B+
</td>
</tr>
<tr>
<td>
<a href="/ratings-and-metrics/mennonite-central-committee-us/420">
Mennonite Central Committee U.S.
</a>
</td>
<td width="2%">
A-
</td>
</tr>
<tr>
<td>
<a href="/ratings-and-metrics/mercy-corps/421">
Mercy Corps
</a>
</td>
<td width="2%">
A
</td>
</tr>
<tr>
<td>
<a href="/ratings-and-metrics/one-acre-fund/720">
One Acre Fund
</a>
</td>
<td width="2%">
A
</td>
</tr>
<tr>
<td>
<a href="/ratings-and-metrics/operation-usa/422">
Operation USA
</a>
</td>
<td width="2%">
A-
</td>
</tr>
<tr>
<td>
<a href="/ratings-and-metrics/opportunity-international/423">
Opportunity International
</a>
</td>
<td width="2%">
A
</td>
</tr>
<tr>
<td>
<a href="/ratings-and-metrics/oxfam-america/424">
Oxfam-America
</a>
</td>
<td width="2%">
A-
</td>
</tr>
<tr>
<td>
<a href="/ratings-and-metrics/partners-in-health/425">
Partners In Health
</a>
</td>
<td width="2%">
A+
</td>
</tr>
<tr>
<td>
<a href="/ratings-and-metrics/project-concern-international/427">
Project Concern International
</a>
</td>
<td width="2%">
A-
</td>
</tr>
<tr>
<td>
<a href="/ratings-and-metrics/project-hope/428">
Project HOPE
</a>
</td>
<td width="2%">
B+
</td>
</tr>
<tr>
<td>
<a href="/ratings-and-metrics/rotary-foundation-of-rotary-international/430">
Rotary Foundation of Rotary International
</a>
</td>
<td width="2%">
A+
</td>
</tr>
<tr>
<td>
<a href="/ratings-and-metrics/samaritans-purse/432">
Samaritan's Purse
</a>
</td>
<td width="2%">
A-
</td>
</tr>
<tr>
<td>
<a href="/ratings-and-metrics/save-the-children/175">
Save the Children
</a>
</td>
<td width="2%">
A
</td>
</tr>
<tr>
<td>
<a href="/ratings-and-metrics/seva-foundation/435">
Seva Foundation
</a>
</td>
<td width="2%">
A
</td>
</tr>
<tr>
<td>
<a href="/ratings-and-metrics/team-rubicon/758">
Team Rubicon
</a>
</td>
<td width="2%">
A-
</td>
</tr>
<tr>
<td>
<a href="/ratings-and-metrics/technoserve/436">
TechnoServe
</a>
</td>
<td width="2%">
A
</td>
</tr>
<tr>
<td>
<a href="/ratings-and-metrics/unbound/171">
Unbound
</a>
</td>
<td width="2%">
A+
</td>
</tr>
<tr>
<td>
<a href="/ratings-and-metrics/united-methodist-committee-on-relief/437">
United Methodist Committee on Relief
</a>
</td>
<td width="2%">
A+
</td>
</tr>
<tr>
<td>
<a href="/ratings-and-metrics/united-states-fund-for-unicef/439">
United States Fund for UNICEF
</a>
</td>
<td width="2%">
A
</td>
</tr>
<tr>
<td>
<a href="/ratings-and-metrics/waterorg/645">
Water.org
</a>
</td>
<td width="2%">
A-
</td>
</tr>
<tr>
<td>
<a href="/ratings-and-metrics/world-vision/176">
World Vision
</a>
</td>
<td width="2%">
A-
</td>
</tr>
</tbody>
</table>
<div class="divider">
</div>
<div class="charity_title">
JEWISH & ISRAEL
</div>
<table class="small" width="100%">
<tbody>
<tr>
<td>
<a href="/ratings-and-metrics/american-jewish-committee/444">
American Jewish Committee
</a>
</td>
<td width="2%">
B+
</td>
</tr>
<tr>
<td>
<a href="/ratings-and-metrics/american-jewish-joint-distribution-committee/710">
American Jewish Joint Distribution Committee
</a>
</td>
<td width="2%">
A+
</td>
</tr>
<tr>
<td>
<a href="/ratings-and-metrics/american-jewish-world-service/446">
American Jewish World Service
</a>
</td>
<td width="2%">
A
</td>
</tr>
<tr>
<td>
<a href="/ratings-and-metrics/anti-defamation-league-foundation/447">
Anti-Defamation League & Foundation
</a>
</td>
<td width="2%">
B+
</td>
</tr>
<tr>
<td>
<a href="/ratings-and-metrics/bend-the-arc-a-jewish-partnership-for-justice/452">
Bend the Arc - A Jewish Partnership for Justice
</a>
</td>
<td width="2%">
B+
</td>
</tr>
<tr>
<td>
<a href="/ratings-and-metrics/friends-of-the-israel-defense-forces/712">
Friends of the Israel Defense Forces
</a>
</td>
<td width="2%">
A-
</td>
</tr>
<tr>
<td>
<a href="/ratings-and-metrics/hadassah/449">
Hadassah
</a>
</td>
<td width="2%">
A
</td>
</tr>
<tr>
<td>
<a href="/ratings-and-metrics/hias/754">
HIAS
</a>
</td>
<td width="2%">
A
</td>
</tr>
<tr>
<td>
<a href="/ratings-and-metrics/jewish-national-fund/453">
Jewish National Fund
</a>
</td>
<td width="2%">
A
</td>
</tr>
<tr>
<td>
<a href="/ratings-and-metrics/new-israel-fund/456">
New Israel Fund
</a>
</td>
<td width="2%">
A-
</td>
</tr>
<tr>
<td>
<a href="/ratings-and-metrics/simon-wiesenthal-center/457">
Simon Wiesenthal Center
</a>
</td>
<td width="2%">
B+
</td>
</tr>
</tbody>
</table>
<div class="divider">
</div>
<div class="charity_title">
LGBTQ RIGHTS & ADVOCACY
</div>
<table class="small" width="100%">
<tbody>
<tr>
<td>
<a href="/ratings-and-metrics/astraea-lesbian-foundation-for-justice/756">
Astraea Lesbian Foundation for Justice
</a>
</td>
<td width="2%">
A
</td>
</tr>
<tr>
<td>
<a href="/ratings-and-metrics/trevor-project/727">
Trevor Project
</a>
</td>
<td width="2%">
A
</td>
</tr>
</tbody>
</table>
<div class="divider">
</div>
<div class="charity_title">
LITERACY
</div>
<table class="small" width="100%">
<tbody>
<tr>
<td>
<a href="/ratings-and-metrics/proliteracy-worldwide/458">
ProLiteracy Worldwide
</a>
</td>
<td width="2%">
A-
</td>
</tr>
</tbody>
</table>
<div class="divider">
</div>
<div class="charity_title">
MENTAL HEALTH & DISABILITIES
</div>
<table class="small" width="100%">
<tbody>
<tr>
<td>
<a href="/ratings-and-metrics/alzheimers-association-national-office/461">
Alzheimer's Association (National Office)
</a>
</td>
<td width="2%">
B+
</td>
</tr>
<tr>
<td>
<a href="/ratings-and-metrics/american-foundation-for-suicide-prevention/464">
American Foundation for Suicide Prevention
</a>
</td>
<td width="2%">
A
</td>
</tr>
<tr>
<td>
<a href="/ratings-and-metrics/arc-of-the-united-states-national-office/465">
Arc of the United States (National Office)
</a>
</td>
<td width="2%">
A-
</td>
</tr>
<tr>
<td>
<a href="/ratings-and-metrics/brain-behavior-research-foundation/468">
Brain & Behavior Research Foundation
</a>
</td>
<td width="2%">
A+
</td>
</tr>
<tr>
<td>
<a href="/ratings-and-metrics/mental-health-america/469">
Mental Health America
</a>
</td>
<td width="2%">
A-
</td>
</tr>
<tr>
<td>
<a href="/ratings-and-metrics/nami/470">
NAMI
</a>
</td>
<td width="2%">
B+
</td>
</tr>
<tr>
<td>
<a href="/ratings-and-metrics/trevor-project/727">
Trevor Project
</a>
</td>
<td width="2%">
A
</td>
</tr>
</tbody>
</table>
<div class="divider">
</div>
<div class="charity_title">
PEACE & INTERNATIONAL RELATIONS
</div>
<table class="small" width="100%">
<tbody>
<tr>
<td>
<a href="/ratings-and-metrics/afs-usa/472">
AFS-USA
</a>
</td>
<td width="2%">
B+
</td>
</tr>
<tr>
<td>
<a href="/ratings-and-metrics/clinton-foundation/478">
Clinton Foundation
</a>
</td>
<td width="2%">
A
</td>
</tr>
<tr>
<td>
<a href="/ratings-and-metrics/international-peace-institute/474">
International Peace Institute
</a>
</td>
<td width="2%">
A
</td>
</tr>
<tr>
<td>
<a href="/ratings-and-metrics/physicians-for-social-responsibility-national-office/475">
Physicians for Social Responsibility (National Office)
</a>
</td>
<td width="2%">
B+
</td>
</tr>
</tbody>
</table>
<div class="divider">
</div>
<div class="charity_title">
PUBLIC POLICY
</div>
<table class="small" width="100%">
<tbody>
<tr>
<td>
<a href="/ratings-and-metrics/brookings-institution/489">
Brookings Institution
</a>
</td>
<td width="2%">
A-
</td>
</tr>
<tr>
<td>
<a href="/ratings-and-metrics/common-cause-education-fund/492">
Common Cause Education Fund
</a>
</td>
<td width="2%">
A
</td>
</tr>
<tr>
<td>
<a href="/ratings-and-metrics/government-accountability-project-gap/682">
Government Accountability Project (GAP)
</a>
</td>
<td width="2%">
A
</td>
</tr>
</tbody>
</table>
<div class="divider">
</div>
<div class="charity_title">
REPRODUCTIVE HEALTH, FAMILY PLANNING, & ABORTION
</div>
<table class="small" width="100%">
<tbody>
<tr>
<td>
<a href="/ratings-and-metrics/american-refugee-committee/392">
American Refugee Committee
</a>
</td>
<td width="2%">
A+
</td>
</tr>
<tr>
<td>
<a href="/ratings-and-metrics/center-for-reproductive-rights/2">
Center for Reproductive Rights
</a>
</td>
<td width="2%">
A-
</td>
</tr>
<tr>
<td>
<a href="/ratings-and-metrics/engenderhealth/3">
EngenderHealth
</a>
</td>
<td width="2%">
A-
</td>
</tr>
<tr>
<td>
<a href="/ratings-and-metrics/fistula-foundation/592">
Fistula Foundation
</a>
</td>
<td width="2%">
A
</td>
</tr>
<tr>
<td>
<a href="/ratings-and-metrics/friends-of-unfpa/480">
Friends of UNFPA
</a>
</td>
<td width="2%">
A
</td>
</tr>
<tr>
<td>
<a href="/ratings-and-metrics/guttmacher-institute/5">
Guttmacher Institute
</a>
</td>
<td width="2%">
A-
</td>
</tr>
<tr>
<td>
<a href="/ratings-and-metrics/international-planned-parenthood-federation-western-hemisphere/6">
International Planned Parenthood Federation-Western Hemisphere
</a>
</td>
<td width="2%">
A-
</td>
</tr>
<tr>
<td>
<a href="/ratings-and-metrics/pai/483">
PAI
</a>
</td>
<td width="2%">
A
</td>
</tr>
<tr>
<td>
<a href="/ratings-and-metrics/pathfinder-international/11">
Pathfinder International
</a>
</td>
<td width="2%">
A
</td>
</tr>
<tr>
<td>
<a href="/ratings-and-metrics/pci-media-impact/482">
PCI-Media Impact
</a>
</td>
<td width="2%">
A
</td>
</tr>
<tr>
<td>
<a href="/ratings-and-metrics/planned-parenthood-federation-of-america/13">
Planned Parenthood Federation of America
</a>
</td>
<td width="2%">
A-
</td>
</tr>
<tr>
<td>
<a href="/ratings-and-metrics/population-connection/484">
Population Connection
</a>
</td>
<td width="2%">
B+
</td>
</tr>
<tr>
<td>
<a href="/ratings-and-metrics/population-council/485">
Population Council
</a>
</td>
<td width="2%">
A
</td>
</tr>
<tr>
<td>
<a href="/ratings-and-metrics/population-services-international/486">
Population Services International
</a>
</td>
<td width="2%">
A+
</td>
</tr>
</tbody>
</table>
<div class="divider">
</div>
<div class="charity_title">
SENIOR CITIZENS
</div>
<table class="small" width="100%">
<tbody>
<tr>
<td>
<a href="/ratings-and-metrics/meals-on-wheels-america-national-office/733">
Meals on Wheels America (National Office)
</a>
</td>
<td width="2%">
A-
</td>
</tr>
<tr>
<td>
<a href="/ratings-and-metrics/national-council-on-aging/503">
National Council on Aging
</a>
</td>
<td width="2%">
A+
</td>
</tr>
<tr>
<td>
<a href="/ratings-and-metrics/unbound/171">
Unbound
</a>
</td>
<td width="2%">
A+
</td>
</tr>
</tbody>
</table>
<div class="divider">
</div>
<div class="charity_title">
TERMINALLY OR CHRONICALLY ILL
</div>
<table class="small" width="100%">
<tbody>
<tr>
<td>
<a href="/ratings-and-metrics/compassion-choices/508">
Compassion & Choices
</a>
</td>
<td width="2%">
B+
</td>
</tr>
<tr>
<td>
<a href="/ratings-and-metrics/give-kids-the-world/509">
Give Kids the World
</a>
</td>
<td width="2%">
B+
</td>
</tr>
<tr>
<td>
<a href="/ratings-and-metrics/starlight-childrens-foundation-national-office/514">
Starlight Children's Foundation (National Office)
</a>
</td>
<td width="2%">
A
</td>
</tr>
<tr>
<td>
<a href="/ratings-and-metrics/sunshine-foundation-national-office/515">
Sunshine Foundation (National Office)
</a>
</td>
<td width="2%">
B+
</td>
</tr>
</tbody>
</table>
<div class="divider">
</div>
<div class="charity_title">
VETERANS & MILITARY
</div>
<table class="small" width="100%">
<tbody>
<tr>
<td>
<a href="/ratings-and-metrics/armed-services-ymca-of-the-usa/524">
Armed Services YMCA of the USA
</a>
</td>
<td width="2%">
A
</td>
</tr>
<tr>
<td>
<a href="/ratings-and-metrics/bob-woodruff-family-foundation/713">
Bob Woodruff Family Foundation
</a>
</td>
<td width="2%">
A-
</td>
</tr>
<tr>
<td>
<a href="/ratings-and-metrics/fisher-house-foundation/531">
Fisher House Foundation
</a>
</td>
<td width="2%">
A+
</td>
</tr>
<tr>
<td>
<a href="/ratings-and-metrics/gary-sinise-foundation/745">
Gary Sinise Foundation
</a>
</td>
<td width="2%">
A
</td>
</tr>
<tr>
<td>
<a href="/ratings-and-metrics/guide-dog-foundation-for-the-blind/93">
Guide Dog Foundation for the Blind
</a>
</td>
<td width="2%">
A
</td>
</tr>
<tr>
<td>
<a href="/ratings-and-metrics/homes-for-our-troops/535">
Homes for Our Troops
</a>
</td>
<td width="2%">
A
</td>
</tr>
<tr>
<td>
<a href="/ratings-and-metrics/hope-for-the-warriors/755">
Hope For The Warriors
</a>
</td>
<td width="2%">
A-
</td>
</tr>
<tr>
<td>
<a href="/ratings-and-metrics/intrepid-fallen-heroes-fund/537">
Intrepid Fallen Heroes Fund
</a>
</td>
<td width="2%">
A
</td>
</tr>
<tr>
<td>
<a href="/ratings-and-metrics/national-military-family-association/540">
National Military Family Association
</a>
</td>
<td width="2%">
A
</td>
</tr>
<tr>
<td>
<a href="/ratings-and-metrics/navy-marine-corps-relief-society/545">
Navy-Marine Corps Relief Society
</a>
</td>
<td width="2%">
A
</td>
</tr>
<tr>
<td>
<a href="/ratings-and-metrics/operation-homefront/547">
Operation Homefront
</a>
</td>
<td width="2%">
A
</td>
</tr>
<tr>
<td>
<a href="/ratings-and-metrics/semper-fi-fund/536">
Semper Fi Fund
</a>
</td>
<td width="2%">
A+
</td>
</tr>
<tr>
<td>
<a href="/ratings-and-metrics/team-rubicon/758">
Team Rubicon
</a>
</td>
<td width="2%">
A-
</td>
</tr>
<tr>
<td>
<a href="/ratings-and-metrics/tragedy-assistance-program-for-survivors-taps/638">
Tragedy Assistance Program for Survivors (TAPS)
</a>
</td>
<td width="2%">
A
</td>
</tr>
<tr>
<td>
<a href="/ratings-and-metrics/wounded-warriors-family-support/750">
Wounded Warriors Family Support
</a>
</td>
<td width="2%">
A
</td>
</tr>
</tbody>
</table>
<div class="divider">
</div>
<div class="charity_title">
WOMEN'S HEALTH
</div>
<table class="small" width="100%">
<tbody>
<tr>
<td>
<a href="/ratings-and-metrics/breast-cancer-prevention-partners/114">
Breast Cancer Prevention Partners
</a>
</td>
<td width="2%">
A-
</td>
</tr>
<tr>
<td>
<a href="/ratings-and-metrics/breast-cancer-research-foundation/117">
Breast Cancer Research Foundation
</a>
</td>
<td width="2%">
A+
</td>
</tr>
<tr>
<td>
<a href="/ratings-and-metrics/engenderhealth/3">
EngenderHealth
</a>
</td>
<td width="2%">
A-
</td>
</tr>
<tr>
<td>
<a href="/ratings-and-metrics/fistula-foundation/592">
Fistula Foundation
</a>
</td>
<td width="2%">
A
</td>
</tr>
<tr>
<td>
<a href="/ratings-and-metrics/guttmacher-institute/5">
Guttmacher Institute
</a>
</td>
<td width="2%">
A-
</td>
</tr>
<tr>
<td>
<a href="/ratings-and-metrics/international-planned-parenthood-federation-western-hemisphere/6">
International Planned Parenthood Federation-Western Hemisphere
</a>
</td>
<td width="2%">
A-
</td>
</tr>
<tr>
<td>
<a href="/ratings-and-metrics/national-breast-cancer-coalition-fund/139">
National Breast Cancer Coalition Fund
</a>
</td>
<td width="2%">
A
</td>
</tr>
<tr>
<td>
<a href="/ratings-and-metrics/planned-parenthood-federation-of-america/13">
Planned Parenthood Federation of America
</a>
</td>
<td width="2%">
A-
</td>
</tr>
</tbody>
</table>
<div class="divider">
</div>
<div class="charity_title">
WOMEN'S RIGHTS
</div>
<table class="small" width="100%">
<tbody>
<tr>
<td>
<a href="/ratings-and-metrics/astraea-lesbian-foundation-for-justice/756">
Astraea Lesbian Foundation for Justice
</a>
</td>
<td width="2%">
A
</td>
</tr>
<tr>
<td>
<a href="/ratings-and-metrics/center-for-reproductive-rights/2">
Center for Reproductive Rights
</a>
</td>
<td width="2%">
A-
</td>
</tr>
<tr>
<td>
<a href="/ratings-and-metrics/global-fund-for-women/561">
Global Fund for Women
</a>
</td>
<td width="2%">
A
</td>
</tr>
<tr>
<td>
<a href="/ratings-and-metrics/guttmacher-institute/5">
Guttmacher Institute
</a>
</td>
<td width="2%">
A-
</td>
</tr>
<tr>
<td>
<a href="/ratings-and-metrics/women-for-women-international-us/565">
Women for Women International U.S.
</a>
</td>
<td width="2%">
B+
</td>
</tr>
</tbody>
</table>
<div class="divider">
</div>
<div class="charity_title">
YOUTH DEVELOPMENT
</div>
<table class="small" width="100%">
<tbody>
<tr>
<td>
<a href="/ratings-and-metrics/big-brothers-big-sisters-of-america-national-office/567">
Big Brothers/Big Sisters of America (National Office)
</a>
</td>
<td width="2%">
A
</td>
</tr>
<tr>
<td>
<a href="/ratings-and-metrics/boy-scouts-of-america-national-office/568">
Boy Scouts of America (National Office)
</a>
</td>
<td width="2%">
A-
</td>
</tr>
<tr>
<td>
<a href="/ratings-and-metrics/boys-girls-clubs-of-america-national-office/569">
Boys & Girls Clubs of America (National Office)
</a>
</td>
<td width="2%">
A-
</td>
</tr>
<tr>
<td>
<a href="/ratings-and-metrics/camp-fire-national-headquarters/570">
Camp Fire National Headquarters
</a>
</td>
<td width="2%">
A-
</td>
</tr>
<tr>
<td>
<a href="/ratings-and-metrics/donorschooseorg/706">
DonorsChoose.org
</a>
</td>
<td width="2%">
A+
</td>
</tr>
<tr>
<td>
<a href="/ratings-and-metrics/girls-incorporated-national-office/573">
Girls Incorporated (National Office)
</a>
</td>
<td width="2%">
A
</td>
</tr>
<tr>
<td>
<a href="/ratings-and-metrics/junior-achievement-usa-national-office/574">
Junior Achievement USA (National Office)
</a>
</td>
<td width="2%">
B+
</td>
</tr>
<tr>
<td>
<a href="/ratings-and-metrics/scholarship-america/576">
Scholarship America
</a>
</td>
<td width="2%">
A+
</td>
</tr>
</tbody>
</table>
<div class="divider">
</div>
<div class="charity_title">
YOUTH-RESIDENTIAL
</div>
<table class="small" width="100%">
<tbody>
<tr>
<td>
<a href="/ratings-and-metrics/cedars/580">
CEDARS
</a>
</td>
<td width="2%">
A
</td>
</tr>
<tr>
<td>
<a href="/ratings-and-metrics/covenant-house/582">
Covenant House
</a>
</td>
<td width="2%">
B+
</td>
</tr>
<tr>
<td>
<a href="/ratings-and-metrics/sos-childrens-villages-usa/584">
SOS Children's Villages - USA
</a>
</td>
<td width="2%">
B+
</td>
</tr>
</tbody>
</table>
</div>
</div>
</div>
<div id="footer">
<div class="row">
<div class="small-12 column text-center">
© 1995 - 2017 CharityWatch |
<a href="/privacy-tos">
Privacy Policy & Terms of Use
</a>
<br class="show-for-small-only"/>
<a href="/charities">
Charity Ratings
</a>
|
<a href="/top-rated-charities">
Top-Rated Charities
</a>
|
<a href="/top-charity-salaries">
Top Compensation
</a>
|
<a href="/high-asset-charities">
High Assets
</a>
|
<a href="/charitywatch-articles">
Articles
</a>
|
<a href="/about-charitywatch">
About Us
</a>
|
<a href="/charity-donation-links">
Links
</a>
|
<a href="/join">
Membership
</a>
<div class="clear">
</div>
</div>
</div>
</div>
</div>
<!-- end container -->
<script type="text/javascript">
jQuery( document ).ready( function()
{
jQuery('#mnuDonate, #joinToday, #join, #gift, #additional, #renew').click(function() {
var this_click_item = jQuery(this).attr('id');
jQuery("#checkoutDialog").remove();
var $div = jQuery( "<div id='checkoutDialog'></div>" );
jQuery('body').append($div);
$div.load('/checkout/index.php', function() {
$div.dialog({
autoOpen: false,
show: {
effect: "fade",
duration: 750
},
hide: {
effect: "fade",
duration: 750
},
title: 'Thank you for supporting CharityWatch',
resizable: false,
width: '100%',
maxWidth: 750,
// height: 800,
modal: true,
close: function(event, ui) {
jQuery(this).empty();
jQuery(this).dialog('destroy');
location.reload();
}
});
$div.dialog('open');
if (this_click_item == 'gift') {
jQuery('#giftMembership').attr('checked', 'checked');
} else if (this_click_item == 'additional') {
jQuery('#additionalSupport').attr('checked', 'checked');
} else if (this_click_item == 'renew') {
jQuery('#renewMembership').attr('checked', 'checked');
}
});
return false;
});
});
</script>
<script>
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
})(window,document,'script','//www.google-analytics.com/analytics.js','ga');
ga('create', 'UA-27062591-1', 'auto');
ga('send', 'pageview');
</script>
</body>
</html>
因为我们看到,HTML对应的基金会列表代码,是在一个 < div class="small-12 medium-8 column" id="results" > 的结构中,div 是这个结构的标签,class, id 是它的参数。那么我们把这个大的结构抓出来,再到这里面去找信息,逻辑上是讲得通的。
那么怎样定位?
我们可以沿着层次树桩结构,一层一层的走到这一步,比如说 沿着标签 head->body->div->等等 也可以根据标签的一些特性,直接定位,比如说我们这个标签 div 的 参数id 内容是 results,搜了一下,这一页就只有这样的一个id="results"的标签,那么用参数id就可以直接定位了
In [3]:
#用beautiful soup 的一个强大功能 ‘find_all’
# find_all既可以直接定位标签,find_all('div') 这样就把所有的div都抓出来
# 也可以搜索满足参数条件的内容来定位我们关注的结构,
# 比如说这里我们看到 id="results",这是 id 这个参数内容是 results
charities = soup.find_all(id="results")
In [4]:
charities[0]
Out[4]:
<div class="small-12 medium-8 column" id="results">
<div class="charity_title">AFRICAN-AMERICAN</div><table class="small" width="100%"><tbody><tr>
<td><a href="/ratings-and-metrics/naacp-legal-defense-and-educational-fund/18">NAACP Legal Defense and Educational Fund</a></td>
<td width="2%">A-</td>
</tr><tr>
<td><a href="/ratings-and-metrics/national-urban-league-national-office/19">National Urban League (National Office)</a></td>
<td width="2%">A</td>
</tr></tbody></table><div class="divider"></div><div class="charity_title">AIDS</div><table class="small" width="100%"><tbody><tr>
<td><a href="/ratings-and-metrics/elizabeth-glaser-pediatric-aids-foundation/24">Elizabeth Glaser Pediatric AIDS Foundation</a></td>
<td width="2%">A-</td>
</tr><tr>
<td><a href="/ratings-and-metrics/foundation-for-aids-research-amfar/25">Foundation for AIDS Research (amfAR)</a></td>
<td width="2%">A-</td>
</tr></tbody></table><div class="divider"></div><div class="charity_title">AMERICAN INDIAN</div><table class="small" width="100%"><tbody><tr>
<td><a href="/ratings-and-metrics/american-indian-college-fund/28">American Indian College Fund</a></td>
<td width="2%">B+</td>
</tr></tbody></table><div class="divider"></div><div class="charity_title">ANIMAL & ANIMAL PROTECTION</div><table class="small" width="100%"><tbody><tr>
<td><a href="/ratings-and-metrics/african-wildlife-foundation/237">African Wildlife Foundation</a></td>
<td width="2%">A-</td>
</tr><tr>
<td><a href="/ratings-and-metrics/american-bird-conservancy/239">American Bird Conservancy</a></td>
<td width="2%">A</td>
</tr><tr>
<td><a href="/ratings-and-metrics/american-humane/44">American Humane</a></td>
<td width="2%">A</td>
</tr><tr>
<td><a href="/ratings-and-metrics/animal-welfare-institute/47">Animal Welfare Institute</a></td>
<td width="2%">A+</td>
</tr><tr>
<td><a href="/ratings-and-metrics/bat-conservation-international/49">Bat Conservation International</a></td>
<td width="2%">A-</td>
</tr><tr>
<td><a href="/ratings-and-metrics/best-friends-animal-society/50">Best Friends Animal Society</a></td>
<td width="2%">B+</td>
</tr><tr>
<td><a href="/ratings-and-metrics/dian-fossey-gorilla-fund-international/54">Dian Fossey Gorilla Fund International</a></td>
<td width="2%">A</td>
</tr><tr>
<td><a href="/ratings-and-metrics/friends-of-animals/58">Friends of Animals</a></td>
<td width="2%">A</td>
</tr><tr>
<td><a href="/ratings-and-metrics/humane-farming-association/62">Humane Farming Association</a></td>
<td width="2%">A-</td>
</tr><tr>
<td><a href="/ratings-and-metrics/jane-goodall-institute/66">Jane Goodall Institute</a></td>
<td width="2%">A-</td>
</tr><tr>
<td><a href="/ratings-and-metrics/marine-mammal-center/68">Marine Mammal Center</a></td>
<td width="2%">A-</td>
</tr><tr>
<td><a href="/ratings-and-metrics/performing-animal-welfare-society/75">Performing Animal Welfare Society</a></td>
<td width="2%">A</td>
</tr><tr>
<td><a href="/ratings-and-metrics/petsmart-charities/595">PetSmart Charities</a></td>
<td width="2%">A+</td>
</tr><tr>
<td><a href="/ratings-and-metrics/redrover/633">RedRover</a></td>
<td width="2%">B+</td>
</tr><tr>
<td><a href="/ratings-and-metrics/wildlife-conservation-society/80">Wildlife Conservation Society</a></td>
<td width="2%">A</td>
</tr></tbody></table><div class="divider"></div><div class="charity_title">ASIA & ASIAN-AMERICAN</div><table class="small" width="100%"><tbody><tr>
<td><a href="/ratings-and-metrics/asia-foundation/81">Asia Foundation</a></td>
<td width="2%">A</td>
</tr><tr>
<td><a href="/ratings-and-metrics/asia-society/82">Asia Society</a></td>
<td width="2%">A-</td>
</tr><tr>
<td><a href="/ratings-and-metrics/asian-american-legal-defense-education-fund/83">Asian American Legal Defense & Education Fund</a></td>
<td width="2%">A-</td>
</tr><tr>
<td><a href="/ratings-and-metrics/japan-society/84">Japan Society</a></td>
<td width="2%">A</td>
</tr></tbody></table><div class="divider"></div><div class="charity_title">BLIND & VISUALLY IMPAIRED</div><table class="small" width="100%"><tbody><tr>
<td><a href="/ratings-and-metrics/guide-dog-foundation-for-the-blind/93">Guide Dog Foundation for the Blind</a></td>
<td width="2%">A</td>
</tr><tr>
<td><a href="/ratings-and-metrics/helen-keller-international/97">Helen Keller International</a></td>
<td width="2%">A</td>
</tr><tr>
<td><a href="/ratings-and-metrics/national-federation-of-the-blind/105">National Federation of the Blind</a></td>
<td width="2%">A-</td>
</tr><tr>
<td><a href="/ratings-and-metrics/prevent-blindness/107">Prevent Blindness</a></td>
<td width="2%">A-</td>
</tr><tr>
<td><a href="/ratings-and-metrics/seva-foundation/435">Seva Foundation</a></td>
<td width="2%">A</td>
</tr></tbody></table><div class="divider"></div><div class="charity_title">CANCER</div><table class="small" width="100%"><tbody><tr>
<td><a href="/ratings-and-metrics/breast-cancer-prevention-partners/114">Breast Cancer Prevention Partners</a></td>
<td width="2%">A-</td>
</tr><tr>
<td><a href="/ratings-and-metrics/breast-cancer-research-foundation/117">Breast Cancer Research Foundation</a></td>
<td width="2%">A+</td>
</tr><tr>
<td><a href="/ratings-and-metrics/cancer-research-institute/123">Cancer Research Institute</a></td>
<td width="2%">A</td>
</tr><tr>
<td><a href="/ratings-and-metrics/entertainment-industry-foundation/149">Entertainment Industry Foundation</a></td>
<td width="2%">A-</td>
</tr><tr>
<td><a href="/ratings-and-metrics/leukemia-lymphoma-society/135">Leukemia & Lymphoma Society</a></td>
<td width="2%">B+</td>
</tr><tr>
<td><a href="/ratings-and-metrics/memorial-sloan-kettering-cancer-center/137">Memorial Sloan Kettering Cancer Center</a></td>
<td width="2%">A-</td>
</tr><tr>
<td><a href="/ratings-and-metrics/multiple-myeloma-research-foundation/138">Multiple Myeloma Research Foundation</a></td>
<td width="2%">A</td>
</tr><tr>
<td><a href="/ratings-and-metrics/national-breast-cancer-coalition-fund/139">National Breast Cancer Coalition Fund</a></td>
<td width="2%">A</td>
</tr><tr>
<td><a href="/ratings-and-metrics/ovarian-cancer-research-fund-alliance/725">Ovarian Cancer Research Fund Alliance</a></td>
<td width="2%">A</td>
</tr><tr>
<td><a href="/ratings-and-metrics/pancreatic-cancer-action-network/721">Pancreatic Cancer Action Network</a></td>
<td width="2%">A</td>
</tr><tr>
<td><a href="/ratings-and-metrics/prevent-cancer-foundation/146">Prevent Cancer Foundation</a></td>
<td width="2%">A-</td>
</tr><tr>
<td><a href="/ratings-and-metrics/prostate-cancer-foundation/147">Prostate Cancer Foundation</a></td>
<td width="2%">A</td>
</tr></tbody></table><div class="divider"></div><div class="charity_title">CHILD PROTECTION</div><table class="small" width="100%"><tbody><tr>
<td><a href="/ratings-and-metrics/child-find-of-america/155">Child Find of America</a></td>
<td width="2%">A+</td>
</tr><tr>
<td><a href="/ratings-and-metrics/childrens-defense-fund/158">Children's Defense Fund</a></td>
<td width="2%">A</td>
</tr><tr>
<td><a href="/ratings-and-metrics/childrens-health-fund/159">Children's Health Fund</a></td>
<td width="2%">A-</td>
</tr><tr>
<td><a href="/ratings-and-metrics/marine-toys-for-tots-foundation/162">Marine Toys for Tots Foundation</a></td>
<td width="2%">A-</td>
</tr><tr>
<td><a href="/ratings-and-metrics/prevent-child-abuse-america-national-office/165">Prevent Child Abuse America (National Office)</a></td>
<td width="2%">A+</td>
</tr><tr>
<td><a href="/ratings-and-metrics/ronald-mcdonald-house-charities-national-office/166">Ronald McDonald House Charities (National Office)</a></td>
<td width="2%">A-</td>
</tr></tbody></table><div class="divider"></div><div class="charity_title">CHILD SPONSORSHIP</div><table class="small" width="100%"><tbody><tr>
<td><a href="/ratings-and-metrics/childfund-international/168">ChildFund International</a></td>
<td width="2%">A-</td>
</tr><tr>
<td><a href="/ratings-and-metrics/children-incorporated/169">Children Incorporated</a></td>
<td width="2%">A</td>
</tr><tr>
<td><a href="/ratings-and-metrics/children-international/170">Children International</a></td>
<td width="2%">A</td>
</tr><tr>
<td><a href="/ratings-and-metrics/compassion-international/172">Compassion International</a></td>
<td width="2%">A</td>
</tr><tr>
<td><a href="/ratings-and-metrics/pearl-s-buck-international/173">Pearl S. Buck International</a></td>
<td width="2%">A</td>
</tr><tr>
<td><a href="/ratings-and-metrics/save-the-children/175">Save the Children</a></td>
<td width="2%">A</td>
</tr><tr>
<td><a href="/ratings-and-metrics/unbound/171">Unbound</a></td>
<td width="2%">A+</td>
</tr><tr>
<td><a href="/ratings-and-metrics/world-vision/176">World Vision</a></td>
<td width="2%">A-</td>
</tr></tbody></table><div class="divider"></div><div class="charity_title">CIVIL RIGHTS & ADVOCACY</div><table class="small" width="100%"><tbody><tr>
<td><a href="/ratings-and-metrics/american-civil-liberties-union-aclu/177">American Civil Liberties Union (ACLU)</a></td>
<td width="2%">A-</td>
</tr><tr>
<td><a href="/ratings-and-metrics/american-civil-liberties-union-aclu-foundation/178">American Civil Liberties Union (ACLU) Foundation</a></td>
<td width="2%">A</td>
</tr><tr>
<td><a href="/ratings-and-metrics/astraea-lesbian-foundation-for-justice/756">Astraea Lesbian Foundation for Justice</a></td>
<td width="2%">A</td>
</tr><tr>
<td><a href="/ratings-and-metrics/center-for-community-change/349">Center for Community Change</a></td>
<td width="2%">A-</td>
</tr><tr>
<td><a href="/ratings-and-metrics/center-for-constitutional-rights/182">Center for Constitutional Rights</a></td>
<td width="2%">A-</td>
</tr><tr>
<td><a href="/ratings-and-metrics/innocence-project/737">Innocence Project</a></td>
<td width="2%">A-</td>
</tr></tbody></table><div class="divider"></div><div class="charity_title">CONSUMER PROTECTION & LEGAL AID</div><table class="small" width="100%"><tbody><tr>
<td><a href="/ratings-and-metrics/action-on-smoking-and-health/196">Action on Smoking and Health</a></td>
<td width="2%">A</td>
</tr><tr>
<td><a href="/ratings-and-metrics/food-and-water-watch/198">Food and Water Watch</a></td>
<td width="2%">B+</td>
</tr><tr>
<td><a href="/ratings-and-metrics/government-accountability-project-gap/682">Government Accountability Project (GAP)</a></td>
<td width="2%">A</td>
</tr><tr>
<td><a href="/ratings-and-metrics/innocence-project/737">Innocence Project</a></td>
<td width="2%">A-</td>
</tr><tr>
<td><a href="/ratings-and-metrics/public-citizen-foundation/205">Public Citizen Foundation</a></td>
<td width="2%">A</td>
</tr></tbody></table><div class="divider"></div><div class="charity_title">CRIME & FIRE PREVENTION</div><table class="small" width="100%"><tbody><tr>
<td><a href="/ratings-and-metrics/concerns-of-police-survivors-cops/211">Concerns of Police Survivors (COPS)</a></td>
<td width="2%">A-</td>
</tr><tr>
<td><a href="/ratings-and-metrics/fortune-society/216">Fortune Society</a></td>
<td width="2%">A-</td>
</tr></tbody></table><div class="divider"></div><div class="charity_title">DISABLED</div><table class="small" width="100%"><tbody><tr>
<td><a href="/ratings-and-metrics/christopher-dana-reeve-foundation/225">Christopher & Dana Reeve Foundation</a></td>
<td width="2%">A-</td>
</tr><tr>
<td><a href="/ratings-and-metrics/goodwill-industries-international-national-office/226">Goodwill Industries International (National Office)</a></td>
<td width="2%">A</td>
</tr></tbody></table><div class="divider"></div><div class="charity_title">DRUG & ALCOHOL ABUSE</div><table class="small" width="100%"><tbody><tr>
<td><a href="/ratings-and-metrics/drug-policy-alliance/229">Drug Policy Alliance</a></td>
<td width="2%">B+</td>
</tr><tr>
<td><a href="/ratings-and-metrics/partnership-for-drug-free-kids/233">Partnership for Drug-Free Kids</a></td>
<td width="2%">A</td>
</tr></tbody></table><div class="divider"></div><div class="charity_title">ENVIRONMENT</div><table class="small" width="100%"><tbody><tr>
<td><a href="/ratings-and-metrics/african-wildlife-foundation/237">African Wildlife Foundation</a></td>
<td width="2%">A-</td>
</tr><tr>
<td><a href="/ratings-and-metrics/alaska-conservation-foundation/238">Alaska Conservation Foundation</a></td>
<td width="2%">A-</td>
</tr><tr>
<td><a href="/ratings-and-metrics/american-bird-conservancy/239">American Bird Conservancy</a></td>
<td width="2%">A</td>
</tr><tr>
<td><a href="/ratings-and-metrics/american-rivers/242">American Rivers</a></td>
<td width="2%">B+</td>
</tr><tr>
<td><a href="/ratings-and-metrics/arbor-day-foundation/261">Arbor Day Foundation</a></td>
<td width="2%">A-</td>
</tr><tr>
<td><a href="/ratings-and-metrics/center-for-biological-diversity/243">Center for Biological Diversity</a></td>
<td width="2%">A</td>
</tr><tr>
<td><a href="/ratings-and-metrics/conservation-fund/245">Conservation Fund</a></td>
<td width="2%">A+</td>
</tr><tr>
<td><a href="/ratings-and-metrics/conservation-international-foundation/246">Conservation International Foundation</a></td>
<td width="2%">A</td>
</tr><tr>
<td><a href="/ratings-and-metrics/earth-island-institute/250">Earth Island Institute</a></td>
<td width="2%">A-</td>
</tr><tr>
<td><a href="/ratings-and-metrics/earthjustice/251">Earthjustice</a></td>
<td width="2%">A</td>
</tr><tr>
<td><a href="/ratings-and-metrics/earthworks/252">Earthworks</a></td>
<td width="2%">A</td>
</tr><tr>
<td><a href="/ratings-and-metrics/environmental-defense-action-fund/731">Environmental Defense Action Fund</a></td>
<td width="2%">A+</td>
</tr><tr>
<td><a href="/ratings-and-metrics/environmental-defense-fund/253">Environmental Defense Fund</a></td>
<td width="2%">A-</td>
</tr><tr>
<td><a href="/ratings-and-metrics/food-and-water-watch/198">Food and Water Watch</a></td>
<td width="2%">B+</td>
</tr><tr>
<td><a href="/ratings-and-metrics/izaak-walton-league-of-america/259">Izaak Walton League of America</a></td>
<td width="2%">B+</td>
</tr><tr>
<td><a href="/ratings-and-metrics/keep-america-beautiful-national-office/260">Keep America Beautiful (National Office)</a></td>
<td width="2%">A</td>
</tr><tr>
<td><a href="/ratings-and-metrics/national-audubon-society/262">National Audubon Society</a></td>
<td width="2%">B+</td>
</tr><tr>
<td><a href="/ratings-and-metrics/national-park-trust/264">National Park Trust</a></td>
<td width="2%">A</td>
</tr><tr>
<td><a href="/ratings-and-metrics/national-wildlife-federation/266">National Wildlife Federation</a></td>
<td width="2%">A</td>
</tr><tr>
<td><a href="/ratings-and-metrics/natural-resources-defense-council/267">Natural Resources Defense Council</a></td>
<td width="2%">A-</td>
</tr><tr>
<td><a href="/ratings-and-metrics/nature-conservancy/268">Nature Conservancy</a></td>
<td width="2%">B+</td>
</tr><tr>
<td><a href="/ratings-and-metrics/rainforest-action-network/271">Rainforest Action Network</a></td>
<td width="2%">A-</td>
</tr><tr>
<td><a href="/ratings-and-metrics/rainforest-alliance/272">Rainforest Alliance</a></td>
<td width="2%">A-</td>
</tr><tr>
<td><a href="/ratings-and-metrics/sierra-club-foundation/277">Sierra Club Foundation</a></td>
<td width="2%">A</td>
</tr><tr>
<td><a href="/ratings-and-metrics/trout-unlimited-national-office/279">Trout Unlimited (National Office)</a></td>
<td width="2%">A-</td>
</tr><tr>
<td><a href="/ratings-and-metrics/trust-for-public-land/280">Trust for Public Land</a></td>
<td width="2%">A-</td>
</tr><tr>
<td><a href="/ratings-and-metrics/union-of-concerned-scientists/281">Union of Concerned Scientists</a></td>
<td width="2%">A-</td>
</tr><tr>
<td><a href="/ratings-and-metrics/waterorg/645">Water.org</a></td>
<td width="2%">A-</td>
</tr><tr>
<td><a href="/ratings-and-metrics/waterkeeper-alliance/282">Waterkeeper Alliance</a></td>
<td width="2%">A+</td>
</tr><tr>
<td><a href="/ratings-and-metrics/wilderness-society/283">Wilderness Society</a></td>
<td width="2%">B+</td>
</tr><tr>
<td><a href="/ratings-and-metrics/world-resources-institute/284">World Resources Institute</a></td>
<td width="2%">A+</td>
</tr><tr>
<td><a href="/ratings-and-metrics/yosemite-conservancy/715">Yosemite Conservancy</a></td>
<td width="2%">A-</td>
</tr></tbody></table><div class="divider"></div><div class="charity_title">GUN CONTROL (PRO/CON )</div><table class="small" width="100%"><tbody><tr>
<td><a href="/ratings-and-metrics/national-rifle-association-nra-foundation/289">National Rifle Association (NRA) Foundation</a></td>
<td width="2%">A+</td>
</tr></tbody></table><div class="divider"></div><div class="charity_title">HEALTH - GENERAL</div><table class="small" width="100%"><tbody><tr>
<td><a href="/ratings-and-metrics/als-association-national-office/290">ALS Association (National Office)</a></td>
<td width="2%">A-</td>
</tr><tr>
<td><a href="/ratings-and-metrics/american-brain-tumor-association/291">American Brain Tumor Association</a></td>
<td width="2%">A-</td>
</tr><tr>
<td><a href="/ratings-and-metrics/american-kidney-fund/295">American Kidney Fund</a></td>
<td width="2%">A+</td>
</tr><tr>
<td><a href="/ratings-and-metrics/american-liver-foundation/297">American Liver Foundation</a></td>
<td width="2%">A-</td>
</tr><tr>
<td><a href="/ratings-and-metrics/american-lung-association-national-office/298">American Lung Association (National Office)</a></td>
<td width="2%">A</td>
</tr><tr>
<td><a href="/ratings-and-metrics/american-red-cross/360">American Red Cross</a></td>
<td width="2%">B+</td>
</tr><tr>
<td><a href="/ratings-and-metrics/city-of-hope-affiliates/302">City of Hope & Affiliates</a></td>
<td width="2%">A-</td>
</tr><tr>
<td><a href="/ratings-and-metrics/cj-first-candle-national-office/312">CJ First Candle (National Office)</a></td>
<td width="2%">A</td>
</tr><tr>
<td><a href="/ratings-and-metrics/clinton-foundation/478">Clinton Foundation</a></td>
<td width="2%">A</td>
</tr><tr>
<td><a href="/ratings-and-metrics/crohns-colitis-foundation-of-america/303">Crohn's & Colitis Foundation of America</a></td>
<td width="2%">A</td>
</tr><tr>
<td><a href="/ratings-and-metrics/cystic-fibrosis-foundation/304">Cystic Fibrosis Foundation</a></td>
<td width="2%">A-</td>
</tr><tr>
<td><a href="/ratings-and-metrics/diabetes-action-research-and-education-foundation/307">Diabetes Action Research and Education Foundation</a></td>
<td width="2%">A</td>
</tr><tr>
<td><a href="/ratings-and-metrics/diabetes-research-institute-foundation/308">Diabetes Research Institute Foundation</a></td>
<td width="2%">B+</td>
</tr><tr>
<td><a href="/ratings-and-metrics/hearing-health-foundation/305">Hearing Health Foundation</a></td>
<td width="2%">A+</td>
</tr><tr>
<td><a href="/ratings-and-metrics/huntingtons-disease-society-of-america/314">Huntington's Disease Society of America</a></td>
<td width="2%">B+</td>
</tr><tr>
<td><a href="/ratings-and-metrics/jdrf-international/315">JDRF International</a></td>
<td width="2%">A-</td>
</tr><tr>
<td><a href="/ratings-and-metrics/michael-j-fox-foundation-for-parkinsons-research/320">Michael J. Fox Foundation for Parkinson's Research</a></td>
<td width="2%">A</td>
</tr><tr>
<td><a href="/ratings-and-metrics/national-hemophilia-foundation-national-office/329">National Hemophilia Foundation (National Office)</a></td>
<td width="2%">A</td>
</tr><tr>
<td><a href="/ratings-and-metrics/national-jewish-health/330">National Jewish Health</a></td>
<td width="2%">A-</td>
</tr><tr>
<td><a href="/ratings-and-metrics/national-kidney-foundation/331">National Kidney Foundation</a></td>
<td width="2%">B+</td>
</tr><tr>
<td><a href="/ratings-and-metrics/national-psoriasis-foundation/695">National Psoriasis Foundation</a></td>
<td width="2%">A-</td>
</tr><tr>
<td><a href="/ratings-and-metrics/parkinsons-foundation-pre-merger-national-parkinson-foundation/334">Parkinson's Foundation (pre-merger, National Parkinson Foundation)</a></td>
<td width="2%">A-</td>
</tr><tr>
<td><a href="/ratings-and-metrics/parkinsons-foundation-pre-merger-parkinsons-disease-foundation/337">Parkinson's Foundation (pre-merger, Parkinson's Disease Foundation)</a></td>
<td width="2%">A-</td>
</tr><tr>
<td><a href="/ratings-and-metrics/partnership-for-a-healthier-america/762">Partnership for a Healthier America</a></td>
<td width="2%">A</td>
</tr><tr>
<td><a href="/ratings-and-metrics/pkd-foundation/338">PKD Foundation</a></td>
<td width="2%">A-</td>
</tr></tbody></table><div class="divider"></div><div class="charity_title">HISPANIC</div><table class="small" width="100%"><tbody><tr>
<td><a href="/ratings-and-metrics/hispanic-scholarship-fund/345">Hispanic Scholarship Fund</a></td>
<td width="2%">A</td>
</tr><tr>
<td><a href="/ratings-and-metrics/latinojustice-prldef/346">LatinoJustice PRLDEF</a></td>
<td width="2%">A-</td>
</tr></tbody></table><div class="divider"></div><div class="charity_title">HOMELESSNESS & HOUSING</div><table class="small" width="100%"><tbody><tr>
<td><a href="/ratings-and-metrics/bowery-residents-committee/348">Bowery Residents' Committee</a></td>
<td width="2%">A</td>
</tr><tr>
<td><a href="/ratings-and-metrics/center-for-community-change/349">Center for Community Change</a></td>
<td width="2%">A-</td>
</tr><tr>
<td><a href="/ratings-and-metrics/coalition-for-the-homeless/350">Coalition for the Homeless</a></td>
<td width="2%">A-</td>
</tr><tr>
<td><a href="/ratings-and-metrics/habitat-for-humanity-international-national-office/351">Habitat for Humanity International (National Office)</a></td>
<td width="2%">B+</td>
</tr><tr>
<td><a href="/ratings-and-metrics/homes-for-our-troops/535">Homes for Our Troops</a></td>
<td width="2%">A</td>
</tr><tr>
<td><a href="/ratings-and-metrics/national-alliance-to-end-homelessness/352">National Alliance to End Homelessness</a></td>
<td width="2%">A+</td>
</tr></tbody></table><div class="divider"></div><div class="charity_title">HUMAN RIGHTS</div><table class="small" width="100%"><tbody><tr>
<td><a href="/ratings-and-metrics/center-for-victims-of-torture/354">Center for Victims of Torture</a></td>
<td width="2%">A-</td>
</tr><tr>
<td><a href="/ratings-and-metrics/committee-to-protect-journalists/355">Committee to Protect Journalists</a></td>
<td width="2%">A-</td>
</tr><tr>
<td><a href="/ratings-and-metrics/human-rights-first/357">Human Rights First </a></td>
<td width="2%">A</td>
</tr><tr>
<td><a href="/ratings-and-metrics/human-rights-watch/358">Human Rights Watch</a></td>
<td width="2%">A-</td>
</tr></tbody></table><div class="divider"></div><div class="charity_title">HUMAN SERVICES</div><table class="small" width="100%"><tbody><tr>
<td><a href="/ratings-and-metrics/american-red-cross/360">American Red Cross</a></td>
<td width="2%">B+</td>
</tr><tr>
<td><a href="/ratings-and-metrics/the-y-national-office/372">The Y (National Office)</a></td>
<td width="2%">A</td>
</tr></tbody></table><div class="divider"></div><div class="charity_title">HUNGER</div><table class="small" width="100%"><tbody><tr>
<td><a href="/ratings-and-metrics/action-against-hunger-usa/374">Action Against Hunger-USA</a></td>
<td width="2%">A</td>
</tr><tr>
<td><a href="/ratings-and-metrics/city-harvest/378">City Harvest </a></td>
<td width="2%">B+</td>
</tr><tr>
<td><a href="/ratings-and-metrics/feed-my-starving-children/760">Feed My Starving Children</a></td>
<td width="2%">A</td>
</tr><tr>
<td><a href="/ratings-and-metrics/feeding-america/381">Feeding America</a></td>
<td width="2%">B+</td>
</tr><tr>
<td><a href="/ratings-and-metrics/food-bank-for-new-york-city/382">Food Bank For New York City</a></td>
<td width="2%">A-</td>
</tr><tr>
<td><a href="/ratings-and-metrics/hunger-project/386">Hunger Project</a></td>
<td width="2%">B+</td>
</tr><tr>
<td><a href="/ratings-and-metrics/meals-on-wheels-america-national-office/733">Meals on Wheels America (National Office)</a></td>
<td width="2%">A-</td>
</tr><tr>
<td><a href="/ratings-and-metrics/one-acre-fund/720">One Acre Fund</a></td>
<td width="2%">A</td>
</tr></tbody></table><div class="divider"></div><div class="charity_title">INTERNATIONAL RELIEF & DEVELOPMENT</div><table class="small" width="100%"><tbody><tr>
<td><a href="/ratings-and-metrics/accion-international/387">Accion International</a></td>
<td width="2%">A-</td>
</tr><tr>
<td><a href="/ratings-and-metrics/actionaid-usa/388">ActionAid USA</a></td>
<td width="2%">A-</td>
</tr><tr>
<td><a href="/ratings-and-metrics/africare/389">Africare</a></td>
<td width="2%">A+</td>
</tr><tr>
<td><a href="/ratings-and-metrics/all-hands-volunteers/767">All Hands Volunteers</a></td>
<td width="2%">A+</td>
</tr><tr>
<td><a href="/ratings-and-metrics/american-jewish-joint-distribution-committee/710">American Jewish Joint Distribution Committee</a></td>
<td width="2%">A+</td>
</tr><tr>
<td><a href="/ratings-and-metrics/american-near-east-refugee-aid-anera/391">American Near East Refugee Aid (ANERA)</a></td>
<td width="2%">A</td>
</tr><tr>
<td><a href="/ratings-and-metrics/american-red-cross/360">American Red Cross</a></td>
<td width="2%">B+</td>
</tr><tr>
<td><a href="/ratings-and-metrics/american-refugee-committee/392">American Refugee Committee</a></td>
<td width="2%">A+</td>
</tr><tr>
<td><a href="/ratings-and-metrics/care-usa/396">CARE USA</a></td>
<td width="2%">A+</td>
</tr><tr>
<td><a href="/ratings-and-metrics/catholic-relief-services/398">Catholic Relief Services</a></td>
<td width="2%">A+</td>
</tr><tr>
<td><a href="/ratings-and-metrics/charity-water/400">charity: water</a></td>
<td width="2%">A</td>
</tr><tr>
<td><a href="/ratings-and-metrics/church-world-service/403">Church World Service</a></td>
<td width="2%">B+</td>
</tr><tr>
<td><a href="/ratings-and-metrics/clinton-foundation/478">Clinton Foundation</a></td>
<td width="2%">A</td>
</tr><tr>
<td><a href="/ratings-and-metrics/direct-relief-direct-relief-foundation/405">Direct Relief & Direct Relief Foundation</a></td>
<td width="2%">A</td>
</tr><tr>
<td><a href="/ratings-and-metrics/doctors-without-borders-usa/406">Doctors Without Borders USA</a></td>
<td width="2%">A</td>
</tr><tr>
<td><a href="/ratings-and-metrics/episcopal-relief-development/407">Episcopal Relief & Development</a></td>
<td width="2%">A</td>
</tr><tr>
<td><a href="/ratings-and-metrics/finca-international/408">FINCA International</a></td>
<td width="2%">A</td>
</tr><tr>
<td><a href="/ratings-and-metrics/fistula-foundation/592">Fistula Foundation</a></td>
<td width="2%">A</td>
</tr><tr>
<td><a href="/ratings-and-metrics/grameen-foundation-usa/409">Grameen Foundation USA</a></td>
<td width="2%">A</td>
</tr><tr>
<td><a href="/ratings-and-metrics/healthright-international/410">HealthRight International </a></td>
<td width="2%">A</td>
</tr><tr>
<td><a href="/ratings-and-metrics/hias/754">HIAS</a></td>
<td width="2%">A</td>
</tr><tr>
<td><a href="/ratings-and-metrics/international-medical-corps/413">International Medical Corps</a></td>
<td width="2%">A</td>
</tr><tr>
<td><a href="/ratings-and-metrics/international-rescue-committee/414">International Rescue Committee</a></td>
<td width="2%">A+</td>
</tr><tr>
<td><a href="/ratings-and-metrics/lutheran-world-relief/416">Lutheran World Relief</a></td>
<td width="2%">A</td>
</tr><tr>
<td><a href="/ratings-and-metrics/map-international/417">MAP International</a></td>
<td width="2%">B+</td>
</tr><tr>
<td><a href="/ratings-and-metrics/medical-teams-international/419">Medical Teams International</a></td>
<td width="2%">B+</td>
</tr><tr>
<td><a href="/ratings-and-metrics/mennonite-central-committee-us/420">Mennonite Central Committee U.S.</a></td>
<td width="2%">A-</td>
</tr><tr>
<td><a href="/ratings-and-metrics/mercy-corps/421">Mercy Corps</a></td>
<td width="2%">A</td>
</tr><tr>
<td><a href="/ratings-and-metrics/one-acre-fund/720">One Acre Fund</a></td>
<td width="2%">A</td>
</tr><tr>
<td><a href="/ratings-and-metrics/operation-usa/422">Operation USA</a></td>
<td width="2%">A-</td>
</tr><tr>
<td><a href="/ratings-and-metrics/opportunity-international/423">Opportunity International</a></td>
<td width="2%">A</td>
</tr><tr>
<td><a href="/ratings-and-metrics/oxfam-america/424">Oxfam-America</a></td>
<td width="2%">A-</td>
</tr><tr>
<td><a href="/ratings-and-metrics/partners-in-health/425">Partners In Health</a></td>
<td width="2%">A+</td>
</tr><tr>
<td><a href="/ratings-and-metrics/project-concern-international/427">Project Concern International</a></td>
<td width="2%">A-</td>
</tr><tr>
<td><a href="/ratings-and-metrics/project-hope/428">Project HOPE</a></td>
<td width="2%">B+</td>
</tr><tr>
<td><a href="/ratings-and-metrics/rotary-foundation-of-rotary-international/430">Rotary Foundation of Rotary International</a></td>
<td width="2%">A+</td>
</tr><tr>
<td><a href="/ratings-and-metrics/samaritans-purse/432">Samaritan's Purse</a></td>
<td width="2%">A-</td>
</tr><tr>
<td><a href="/ratings-and-metrics/save-the-children/175">Save the Children</a></td>
<td width="2%">A</td>
</tr><tr>
<td><a href="/ratings-and-metrics/seva-foundation/435">Seva Foundation</a></td>
<td width="2%">A</td>
</tr><tr>
<td><a href="/ratings-and-metrics/team-rubicon/758">Team Rubicon</a></td>
<td width="2%">A-</td>
</tr><tr>
<td><a href="/ratings-and-metrics/technoserve/436">TechnoServe</a></td>
<td width="2%">A</td>
</tr><tr>
<td><a href="/ratings-and-metrics/unbound/171">Unbound</a></td>
<td width="2%">A+</td>
</tr><tr>
<td><a href="/ratings-and-metrics/united-methodist-committee-on-relief/437">United Methodist Committee on Relief</a></td>
<td width="2%">A+</td>
</tr><tr>
<td><a href="/ratings-and-metrics/united-states-fund-for-unicef/439">United States Fund for UNICEF</a></td>
<td width="2%">A</td>
</tr><tr>
<td><a href="/ratings-and-metrics/waterorg/645">Water.org</a></td>
<td width="2%">A-</td>
</tr><tr>
<td><a href="/ratings-and-metrics/world-vision/176">World Vision</a></td>
<td width="2%">A-</td>
</tr></tbody></table><div class="divider"></div><div class="charity_title">JEWISH & ISRAEL</div><table class="small" width="100%"><tbody><tr>
<td><a href="/ratings-and-metrics/american-jewish-committee/444">American Jewish Committee</a></td>
<td width="2%">B+</td>
</tr><tr>
<td><a href="/ratings-and-metrics/american-jewish-joint-distribution-committee/710">American Jewish Joint Distribution Committee</a></td>
<td width="2%">A+</td>
</tr><tr>
<td><a href="/ratings-and-metrics/american-jewish-world-service/446">American Jewish World Service</a></td>
<td width="2%">A</td>
</tr><tr>
<td><a href="/ratings-and-metrics/anti-defamation-league-foundation/447">Anti-Defamation League & Foundation</a></td>
<td width="2%">B+</td>
</tr><tr>
<td><a href="/ratings-and-metrics/bend-the-arc-a-jewish-partnership-for-justice/452">Bend the Arc - A Jewish Partnership for Justice</a></td>
<td width="2%">B+</td>
</tr><tr>
<td><a href="/ratings-and-metrics/friends-of-the-israel-defense-forces/712">Friends of the Israel Defense Forces</a></td>
<td width="2%">A-</td>
</tr><tr>
<td><a href="/ratings-and-metrics/hadassah/449">Hadassah</a></td>
<td width="2%">A</td>
</tr><tr>
<td><a href="/ratings-and-metrics/hias/754">HIAS</a></td>
<td width="2%">A</td>
</tr><tr>
<td><a href="/ratings-and-metrics/jewish-national-fund/453">Jewish National Fund</a></td>
<td width="2%">A</td>
</tr><tr>
<td><a href="/ratings-and-metrics/new-israel-fund/456">New Israel Fund</a></td>
<td width="2%">A-</td>
</tr><tr>
<td><a href="/ratings-and-metrics/simon-wiesenthal-center/457">Simon Wiesenthal Center</a></td>
<td width="2%">B+</td>
</tr></tbody></table><div class="divider"></div><div class="charity_title">LGBTQ RIGHTS & ADVOCACY</div><table class="small" width="100%"><tbody><tr>
<td><a href="/ratings-and-metrics/astraea-lesbian-foundation-for-justice/756">Astraea Lesbian Foundation for Justice</a></td>
<td width="2%">A</td>
</tr><tr>
<td><a href="/ratings-and-metrics/trevor-project/727">Trevor Project</a></td>
<td width="2%">A</td>
</tr></tbody></table><div class="divider"></div><div class="charity_title">LITERACY</div><table class="small" width="100%"><tbody><tr>
<td><a href="/ratings-and-metrics/proliteracy-worldwide/458">ProLiteracy Worldwide</a></td>
<td width="2%">A-</td>
</tr></tbody></table><div class="divider"></div><div class="charity_title">MENTAL HEALTH & DISABILITIES</div><table class="small" width="100%"><tbody><tr>
<td><a href="/ratings-and-metrics/alzheimers-association-national-office/461">Alzheimer's Association (National Office)</a></td>
<td width="2%">B+</td>
</tr><tr>
<td><a href="/ratings-and-metrics/american-foundation-for-suicide-prevention/464">American Foundation for Suicide Prevention</a></td>
<td width="2%">A</td>
</tr><tr>
<td><a href="/ratings-and-metrics/arc-of-the-united-states-national-office/465">Arc of the United States (National Office)</a></td>
<td width="2%">A-</td>
</tr><tr>
<td><a href="/ratings-and-metrics/brain-behavior-research-foundation/468">Brain & Behavior Research Foundation </a></td>
<td width="2%">A+</td>
</tr><tr>
<td><a href="/ratings-and-metrics/mental-health-america/469">Mental Health America</a></td>
<td width="2%">A-</td>
</tr><tr>
<td><a href="/ratings-and-metrics/nami/470">NAMI </a></td>
<td width="2%">B+</td>
</tr><tr>
<td><a href="/ratings-and-metrics/trevor-project/727">Trevor Project</a></td>
<td width="2%">A</td>
</tr></tbody></table><div class="divider"></div><div class="charity_title">PEACE & INTERNATIONAL RELATIONS</div><table class="small" width="100%"><tbody><tr>
<td><a href="/ratings-and-metrics/afs-usa/472">AFS-USA</a></td>
<td width="2%">B+</td>
</tr><tr>
<td><a href="/ratings-and-metrics/clinton-foundation/478">Clinton Foundation</a></td>
<td width="2%">A</td>
</tr><tr>
<td><a href="/ratings-and-metrics/international-peace-institute/474">International Peace Institute</a></td>
<td width="2%">A</td>
</tr><tr>
<td><a href="/ratings-and-metrics/physicians-for-social-responsibility-national-office/475">Physicians for Social Responsibility (National Office)</a></td>
<td width="2%">B+</td>
</tr></tbody></table><div class="divider"></div><div class="charity_title">PUBLIC POLICY</div><table class="small" width="100%"><tbody><tr>
<td><a href="/ratings-and-metrics/brookings-institution/489">Brookings Institution</a></td>
<td width="2%">A-</td>
</tr><tr>
<td><a href="/ratings-and-metrics/common-cause-education-fund/492">Common Cause Education Fund</a></td>
<td width="2%">A</td>
</tr><tr>
<td><a href="/ratings-and-metrics/government-accountability-project-gap/682">Government Accountability Project (GAP)</a></td>
<td width="2%">A</td>
</tr></tbody></table><div class="divider"></div><div class="charity_title">REPRODUCTIVE HEALTH, FAMILY PLANNING, & ABORTION</div><table class="small" width="100%"><tbody><tr>
<td><a href="/ratings-and-metrics/american-refugee-committee/392">American Refugee Committee</a></td>
<td width="2%">A+</td>
</tr><tr>
<td><a href="/ratings-and-metrics/center-for-reproductive-rights/2">Center for Reproductive Rights</a></td>
<td width="2%">A-</td>
</tr><tr>
<td><a href="/ratings-and-metrics/engenderhealth/3">EngenderHealth </a></td>
<td width="2%">A-</td>
</tr><tr>
<td><a href="/ratings-and-metrics/fistula-foundation/592">Fistula Foundation</a></td>
<td width="2%">A</td>
</tr><tr>
<td><a href="/ratings-and-metrics/friends-of-unfpa/480">Friends of UNFPA</a></td>
<td width="2%">A</td>
</tr><tr>
<td><a href="/ratings-and-metrics/guttmacher-institute/5">Guttmacher Institute</a></td>
<td width="2%">A-</td>
</tr><tr>
<td><a href="/ratings-and-metrics/international-planned-parenthood-federation-western-hemisphere/6">International Planned Parenthood Federation-Western Hemisphere</a></td>
<td width="2%">A-</td>
</tr><tr>
<td><a href="/ratings-and-metrics/pai/483">PAI</a></td>
<td width="2%">A</td>
</tr><tr>
<td><a href="/ratings-and-metrics/pathfinder-international/11">Pathfinder International</a></td>
<td width="2%">A</td>
</tr><tr>
<td><a href="/ratings-and-metrics/pci-media-impact/482">PCI-Media Impact</a></td>
<td width="2%">A</td>
</tr><tr>
<td><a href="/ratings-and-metrics/planned-parenthood-federation-of-america/13">Planned Parenthood Federation of America</a></td>
<td width="2%">A-</td>
</tr><tr>
<td><a href="/ratings-and-metrics/population-connection/484">Population Connection</a></td>
<td width="2%">B+</td>
</tr><tr>
<td><a href="/ratings-and-metrics/population-council/485">Population Council</a></td>
<td width="2%">A</td>
</tr><tr>
<td><a href="/ratings-and-metrics/population-services-international/486">Population Services International</a></td>
<td width="2%">A+</td>
</tr></tbody></table><div class="divider"></div><div class="charity_title">SENIOR CITIZENS</div><table class="small" width="100%"><tbody><tr>
<td><a href="/ratings-and-metrics/meals-on-wheels-america-national-office/733">Meals on Wheels America (National Office)</a></td>
<td width="2%">A-</td>
</tr><tr>
<td><a href="/ratings-and-metrics/national-council-on-aging/503">National Council on Aging</a></td>
<td width="2%">A+</td>
</tr><tr>
<td><a href="/ratings-and-metrics/unbound/171">Unbound</a></td>
<td width="2%">A+</td>
</tr></tbody></table><div class="divider"></div><div class="charity_title">TERMINALLY OR CHRONICALLY ILL</div><table class="small" width="100%"><tbody><tr>
<td><a href="/ratings-and-metrics/compassion-choices/508">Compassion & Choices</a></td>
<td width="2%">B+</td>
</tr><tr>
<td><a href="/ratings-and-metrics/give-kids-the-world/509">Give Kids the World</a></td>
<td width="2%">B+</td>
</tr><tr>
<td><a href="/ratings-and-metrics/starlight-childrens-foundation-national-office/514">Starlight Children's Foundation (National Office)</a></td>
<td width="2%">A</td>
</tr><tr>
<td><a href="/ratings-and-metrics/sunshine-foundation-national-office/515">Sunshine Foundation (National Office)</a></td>
<td width="2%">B+</td>
</tr></tbody></table><div class="divider"></div><div class="charity_title">VETERANS & MILITARY</div><table class="small" width="100%"><tbody><tr>
<td><a href="/ratings-and-metrics/armed-services-ymca-of-the-usa/524">Armed Services YMCA of the USA</a></td>
<td width="2%">A</td>
</tr><tr>
<td><a href="/ratings-and-metrics/bob-woodruff-family-foundation/713">Bob Woodruff Family Foundation</a></td>
<td width="2%">A-</td>
</tr><tr>
<td><a href="/ratings-and-metrics/fisher-house-foundation/531">Fisher House Foundation</a></td>
<td width="2%">A+</td>
</tr><tr>
<td><a href="/ratings-and-metrics/gary-sinise-foundation/745">Gary Sinise Foundation</a></td>
<td width="2%">A</td>
</tr><tr>
<td><a href="/ratings-and-metrics/guide-dog-foundation-for-the-blind/93">Guide Dog Foundation for the Blind</a></td>
<td width="2%">A</td>
</tr><tr>
<td><a href="/ratings-and-metrics/homes-for-our-troops/535">Homes for Our Troops</a></td>
<td width="2%">A</td>
</tr><tr>
<td><a href="/ratings-and-metrics/hope-for-the-warriors/755">Hope For The Warriors</a></td>
<td width="2%">A-</td>
</tr><tr>
<td><a href="/ratings-and-metrics/intrepid-fallen-heroes-fund/537">Intrepid Fallen Heroes Fund</a></td>
<td width="2%">A</td>
</tr><tr>
<td><a href="/ratings-and-metrics/national-military-family-association/540">National Military Family Association</a></td>
<td width="2%">A</td>
</tr><tr>
<td><a href="/ratings-and-metrics/navy-marine-corps-relief-society/545">Navy-Marine Corps Relief Society</a></td>
<td width="2%">A</td>
</tr><tr>
<td><a href="/ratings-and-metrics/operation-homefront/547">Operation Homefront</a></td>
<td width="2%">A</td>
</tr><tr>
<td><a href="/ratings-and-metrics/semper-fi-fund/536">Semper Fi Fund</a></td>
<td width="2%">A+</td>
</tr><tr>
<td><a href="/ratings-and-metrics/team-rubicon/758">Team Rubicon</a></td>
<td width="2%">A-</td>
</tr><tr>
<td><a href="/ratings-and-metrics/tragedy-assistance-program-for-survivors-taps/638">Tragedy Assistance Program for Survivors (TAPS)</a></td>
<td width="2%">A</td>
</tr><tr>
<td><a href="/ratings-and-metrics/wounded-warriors-family-support/750">Wounded Warriors Family Support</a></td>
<td width="2%">A</td>
</tr></tbody></table><div class="divider"></div><div class="charity_title">WOMEN'S HEALTH</div><table class="small" width="100%"><tbody><tr>
<td><a href="/ratings-and-metrics/breast-cancer-prevention-partners/114">Breast Cancer Prevention Partners</a></td>
<td width="2%">A-</td>
</tr><tr>
<td><a href="/ratings-and-metrics/breast-cancer-research-foundation/117">Breast Cancer Research Foundation</a></td>
<td width="2%">A+</td>
</tr><tr>
<td><a href="/ratings-and-metrics/engenderhealth/3">EngenderHealth </a></td>
<td width="2%">A-</td>
</tr><tr>
<td><a href="/ratings-and-metrics/fistula-foundation/592">Fistula Foundation</a></td>
<td width="2%">A</td>
</tr><tr>
<td><a href="/ratings-and-metrics/guttmacher-institute/5">Guttmacher Institute</a></td>
<td width="2%">A-</td>
</tr><tr>
<td><a href="/ratings-and-metrics/international-planned-parenthood-federation-western-hemisphere/6">International Planned Parenthood Federation-Western Hemisphere</a></td>
<td width="2%">A-</td>
</tr><tr>
<td><a href="/ratings-and-metrics/national-breast-cancer-coalition-fund/139">National Breast Cancer Coalition Fund</a></td>
<td width="2%">A</td>
</tr><tr>
<td><a href="/ratings-and-metrics/planned-parenthood-federation-of-america/13">Planned Parenthood Federation of America</a></td>
<td width="2%">A-</td>
</tr></tbody></table><div class="divider"></div><div class="charity_title">WOMEN'S RIGHTS</div><table class="small" width="100%"><tbody><tr>
<td><a href="/ratings-and-metrics/astraea-lesbian-foundation-for-justice/756">Astraea Lesbian Foundation for Justice</a></td>
<td width="2%">A</td>
</tr><tr>
<td><a href="/ratings-and-metrics/center-for-reproductive-rights/2">Center for Reproductive Rights</a></td>
<td width="2%">A-</td>
</tr><tr>
<td><a href="/ratings-and-metrics/global-fund-for-women/561">Global Fund for Women</a></td>
<td width="2%">A</td>
</tr><tr>
<td><a href="/ratings-and-metrics/guttmacher-institute/5">Guttmacher Institute</a></td>
<td width="2%">A-</td>
</tr><tr>
<td><a href="/ratings-and-metrics/women-for-women-international-us/565">Women for Women International U.S.</a></td>
<td width="2%">B+</td>
</tr></tbody></table><div class="divider"></div><div class="charity_title">YOUTH DEVELOPMENT</div><table class="small" width="100%"><tbody><tr>
<td><a href="/ratings-and-metrics/big-brothers-big-sisters-of-america-national-office/567">Big Brothers/Big Sisters of America (National Office)</a></td>
<td width="2%">A</td>
</tr><tr>
<td><a href="/ratings-and-metrics/boy-scouts-of-america-national-office/568">Boy Scouts of America (National Office)</a></td>
<td width="2%">A-</td>
</tr><tr>
<td><a href="/ratings-and-metrics/boys-girls-clubs-of-america-national-office/569">Boys & Girls Clubs of America (National Office)</a></td>
<td width="2%">A-</td>
</tr><tr>
<td><a href="/ratings-and-metrics/camp-fire-national-headquarters/570">Camp Fire National Headquarters</a></td>
<td width="2%">A-</td>
</tr><tr>
<td><a href="/ratings-and-metrics/donorschooseorg/706">DonorsChoose.org</a></td>
<td width="2%">A+</td>
</tr><tr>
<td><a href="/ratings-and-metrics/girls-incorporated-national-office/573">Girls Incorporated (National Office)</a></td>
<td width="2%">A</td>
</tr><tr>
<td><a href="/ratings-and-metrics/junior-achievement-usa-national-office/574">Junior Achievement USA (National Office)</a></td>
<td width="2%">B+</td>
</tr><tr>
<td><a href="/ratings-and-metrics/scholarship-america/576">Scholarship America</a></td>
<td width="2%">A+</td>
</tr></tbody></table><div class="divider"></div><div class="charity_title">YOUTH-RESIDENTIAL</div><table class="small" width="100%"><tbody><tr>
<td><a href="/ratings-and-metrics/cedars/580">CEDARS</a></td>
<td width="2%">A</td>
</tr><tr>
<td><a href="/ratings-and-metrics/covenant-house/582">Covenant House</a></td>
<td width="2%">B+</td>
</tr><tr>
<td><a href="/ratings-and-metrics/sos-childrens-villages-usa/584">SOS Children's Villages - USA</a></td>
<td width="2%">B+</td>
</tr></tbody></table></div>
In [27]:
# 再把这个树形结构里面所有的 a 标签 爬下来
In [5]:
charities_a = charities[0].find_all('a')
In [6]:
charities_a
Out[6]:
[<a href="/ratings-and-metrics/naacp-legal-defense-and-educational-fund/18">NAACP Legal Defense and Educational Fund</a>,
<a href="/ratings-and-metrics/national-urban-league-national-office/19">National Urban League (National Office)</a>,
<a href="/ratings-and-metrics/elizabeth-glaser-pediatric-aids-foundation/24">Elizabeth Glaser Pediatric AIDS Foundation</a>,
<a href="/ratings-and-metrics/foundation-for-aids-research-amfar/25">Foundation for AIDS Research (amfAR)</a>,
<a href="/ratings-and-metrics/american-indian-college-fund/28">American Indian College Fund</a>,
<a href="/ratings-and-metrics/african-wildlife-foundation/237">African Wildlife Foundation</a>,
<a href="/ratings-and-metrics/american-bird-conservancy/239">American Bird Conservancy</a>,
<a href="/ratings-and-metrics/american-humane/44">American Humane</a>,
<a href="/ratings-and-metrics/animal-welfare-institute/47">Animal Welfare Institute</a>,
<a href="/ratings-and-metrics/bat-conservation-international/49">Bat Conservation International</a>,
<a href="/ratings-and-metrics/best-friends-animal-society/50">Best Friends Animal Society</a>,
<a href="/ratings-and-metrics/dian-fossey-gorilla-fund-international/54">Dian Fossey Gorilla Fund International</a>,
<a href="/ratings-and-metrics/friends-of-animals/58">Friends of Animals</a>,
<a href="/ratings-and-metrics/humane-farming-association/62">Humane Farming Association</a>,
<a href="/ratings-and-metrics/jane-goodall-institute/66">Jane Goodall Institute</a>,
<a href="/ratings-and-metrics/marine-mammal-center/68">Marine Mammal Center</a>,
<a href="/ratings-and-metrics/performing-animal-welfare-society/75">Performing Animal Welfare Society</a>,
<a href="/ratings-and-metrics/petsmart-charities/595">PetSmart Charities</a>,
<a href="/ratings-and-metrics/redrover/633">RedRover</a>,
<a href="/ratings-and-metrics/wildlife-conservation-society/80">Wildlife Conservation Society</a>,
<a href="/ratings-and-metrics/asia-foundation/81">Asia Foundation</a>,
<a href="/ratings-and-metrics/asia-society/82">Asia Society</a>,
<a href="/ratings-and-metrics/asian-american-legal-defense-education-fund/83">Asian American Legal Defense & Education Fund</a>,
<a href="/ratings-and-metrics/japan-society/84">Japan Society</a>,
<a href="/ratings-and-metrics/guide-dog-foundation-for-the-blind/93">Guide Dog Foundation for the Blind</a>,
<a href="/ratings-and-metrics/helen-keller-international/97">Helen Keller International</a>,
<a href="/ratings-and-metrics/national-federation-of-the-blind/105">National Federation of the Blind</a>,
<a href="/ratings-and-metrics/prevent-blindness/107">Prevent Blindness</a>,
<a href="/ratings-and-metrics/seva-foundation/435">Seva Foundation</a>,
<a href="/ratings-and-metrics/breast-cancer-prevention-partners/114">Breast Cancer Prevention Partners</a>,
<a href="/ratings-and-metrics/breast-cancer-research-foundation/117">Breast Cancer Research Foundation</a>,
<a href="/ratings-and-metrics/cancer-research-institute/123">Cancer Research Institute</a>,
<a href="/ratings-and-metrics/entertainment-industry-foundation/149">Entertainment Industry Foundation</a>,
<a href="/ratings-and-metrics/leukemia-lymphoma-society/135">Leukemia & Lymphoma Society</a>,
<a href="/ratings-and-metrics/memorial-sloan-kettering-cancer-center/137">Memorial Sloan Kettering Cancer Center</a>,
<a href="/ratings-and-metrics/multiple-myeloma-research-foundation/138">Multiple Myeloma Research Foundation</a>,
<a href="/ratings-and-metrics/national-breast-cancer-coalition-fund/139">National Breast Cancer Coalition Fund</a>,
<a href="/ratings-and-metrics/ovarian-cancer-research-fund-alliance/725">Ovarian Cancer Research Fund Alliance</a>,
<a href="/ratings-and-metrics/pancreatic-cancer-action-network/721">Pancreatic Cancer Action Network</a>,
<a href="/ratings-and-metrics/prevent-cancer-foundation/146">Prevent Cancer Foundation</a>,
<a href="/ratings-and-metrics/prostate-cancer-foundation/147">Prostate Cancer Foundation</a>,
<a href="/ratings-and-metrics/child-find-of-america/155">Child Find of America</a>,
<a href="/ratings-and-metrics/childrens-defense-fund/158">Children's Defense Fund</a>,
<a href="/ratings-and-metrics/childrens-health-fund/159">Children's Health Fund</a>,
<a href="/ratings-and-metrics/marine-toys-for-tots-foundation/162">Marine Toys for Tots Foundation</a>,
<a href="/ratings-and-metrics/prevent-child-abuse-america-national-office/165">Prevent Child Abuse America (National Office)</a>,
<a href="/ratings-and-metrics/ronald-mcdonald-house-charities-national-office/166">Ronald McDonald House Charities (National Office)</a>,
<a href="/ratings-and-metrics/childfund-international/168">ChildFund International</a>,
<a href="/ratings-and-metrics/children-incorporated/169">Children Incorporated</a>,
<a href="/ratings-and-metrics/children-international/170">Children International</a>,
<a href="/ratings-and-metrics/compassion-international/172">Compassion International</a>,
<a href="/ratings-and-metrics/pearl-s-buck-international/173">Pearl S. Buck International</a>,
<a href="/ratings-and-metrics/save-the-children/175">Save the Children</a>,
<a href="/ratings-and-metrics/unbound/171">Unbound</a>,
<a href="/ratings-and-metrics/world-vision/176">World Vision</a>,
<a href="/ratings-and-metrics/american-civil-liberties-union-aclu/177">American Civil Liberties Union (ACLU)</a>,
<a href="/ratings-and-metrics/american-civil-liberties-union-aclu-foundation/178">American Civil Liberties Union (ACLU) Foundation</a>,
<a href="/ratings-and-metrics/astraea-lesbian-foundation-for-justice/756">Astraea Lesbian Foundation for Justice</a>,
<a href="/ratings-and-metrics/center-for-community-change/349">Center for Community Change</a>,
<a href="/ratings-and-metrics/center-for-constitutional-rights/182">Center for Constitutional Rights</a>,
<a href="/ratings-and-metrics/innocence-project/737">Innocence Project</a>,
<a href="/ratings-and-metrics/action-on-smoking-and-health/196">Action on Smoking and Health</a>,
<a href="/ratings-and-metrics/food-and-water-watch/198">Food and Water Watch</a>,
<a href="/ratings-and-metrics/government-accountability-project-gap/682">Government Accountability Project (GAP)</a>,
<a href="/ratings-and-metrics/innocence-project/737">Innocence Project</a>,
<a href="/ratings-and-metrics/public-citizen-foundation/205">Public Citizen Foundation</a>,
<a href="/ratings-and-metrics/concerns-of-police-survivors-cops/211">Concerns of Police Survivors (COPS)</a>,
<a href="/ratings-and-metrics/fortune-society/216">Fortune Society</a>,
<a href="/ratings-and-metrics/christopher-dana-reeve-foundation/225">Christopher & Dana Reeve Foundation</a>,
<a href="/ratings-and-metrics/goodwill-industries-international-national-office/226">Goodwill Industries International (National Office)</a>,
<a href="/ratings-and-metrics/drug-policy-alliance/229">Drug Policy Alliance</a>,
<a href="/ratings-and-metrics/partnership-for-drug-free-kids/233">Partnership for Drug-Free Kids</a>,
<a href="/ratings-and-metrics/african-wildlife-foundation/237">African Wildlife Foundation</a>,
<a href="/ratings-and-metrics/alaska-conservation-foundation/238">Alaska Conservation Foundation</a>,
<a href="/ratings-and-metrics/american-bird-conservancy/239">American Bird Conservancy</a>,
<a href="/ratings-and-metrics/american-rivers/242">American Rivers</a>,
<a href="/ratings-and-metrics/arbor-day-foundation/261">Arbor Day Foundation</a>,
<a href="/ratings-and-metrics/center-for-biological-diversity/243">Center for Biological Diversity</a>,
<a href="/ratings-and-metrics/conservation-fund/245">Conservation Fund</a>,
<a href="/ratings-and-metrics/conservation-international-foundation/246">Conservation International Foundation</a>,
<a href="/ratings-and-metrics/earth-island-institute/250">Earth Island Institute</a>,
<a href="/ratings-and-metrics/earthjustice/251">Earthjustice</a>,
<a href="/ratings-and-metrics/earthworks/252">Earthworks</a>,
<a href="/ratings-and-metrics/environmental-defense-action-fund/731">Environmental Defense Action Fund</a>,
<a href="/ratings-and-metrics/environmental-defense-fund/253">Environmental Defense Fund</a>,
<a href="/ratings-and-metrics/food-and-water-watch/198">Food and Water Watch</a>,
<a href="/ratings-and-metrics/izaak-walton-league-of-america/259">Izaak Walton League of America</a>,
<a href="/ratings-and-metrics/keep-america-beautiful-national-office/260">Keep America Beautiful (National Office)</a>,
<a href="/ratings-and-metrics/national-audubon-society/262">National Audubon Society</a>,
<a href="/ratings-and-metrics/national-park-trust/264">National Park Trust</a>,
<a href="/ratings-and-metrics/national-wildlife-federation/266">National Wildlife Federation</a>,
<a href="/ratings-and-metrics/natural-resources-defense-council/267">Natural Resources Defense Council</a>,
<a href="/ratings-and-metrics/nature-conservancy/268">Nature Conservancy</a>,
<a href="/ratings-and-metrics/rainforest-action-network/271">Rainforest Action Network</a>,
<a href="/ratings-and-metrics/rainforest-alliance/272">Rainforest Alliance</a>,
<a href="/ratings-and-metrics/sierra-club-foundation/277">Sierra Club Foundation</a>,
<a href="/ratings-and-metrics/trout-unlimited-national-office/279">Trout Unlimited (National Office)</a>,
<a href="/ratings-and-metrics/trust-for-public-land/280">Trust for Public Land</a>,
<a href="/ratings-and-metrics/union-of-concerned-scientists/281">Union of Concerned Scientists</a>,
<a href="/ratings-and-metrics/waterorg/645">Water.org</a>,
<a href="/ratings-and-metrics/waterkeeper-alliance/282">Waterkeeper Alliance</a>,
<a href="/ratings-and-metrics/wilderness-society/283">Wilderness Society</a>,
<a href="/ratings-and-metrics/world-resources-institute/284">World Resources Institute</a>,
<a href="/ratings-and-metrics/yosemite-conservancy/715">Yosemite Conservancy</a>,
<a href="/ratings-and-metrics/national-rifle-association-nra-foundation/289">National Rifle Association (NRA) Foundation</a>,
<a href="/ratings-and-metrics/als-association-national-office/290">ALS Association (National Office)</a>,
<a href="/ratings-and-metrics/american-brain-tumor-association/291">American Brain Tumor Association</a>,
<a href="/ratings-and-metrics/american-kidney-fund/295">American Kidney Fund</a>,
<a href="/ratings-and-metrics/american-liver-foundation/297">American Liver Foundation</a>,
<a href="/ratings-and-metrics/american-lung-association-national-office/298">American Lung Association (National Office)</a>,
<a href="/ratings-and-metrics/american-red-cross/360">American Red Cross</a>,
<a href="/ratings-and-metrics/city-of-hope-affiliates/302">City of Hope & Affiliates</a>,
<a href="/ratings-and-metrics/cj-first-candle-national-office/312">CJ First Candle (National Office)</a>,
<a href="/ratings-and-metrics/clinton-foundation/478">Clinton Foundation</a>,
<a href="/ratings-and-metrics/crohns-colitis-foundation-of-america/303">Crohn's & Colitis Foundation of America</a>,
<a href="/ratings-and-metrics/cystic-fibrosis-foundation/304">Cystic Fibrosis Foundation</a>,
<a href="/ratings-and-metrics/diabetes-action-research-and-education-foundation/307">Diabetes Action Research and Education Foundation</a>,
<a href="/ratings-and-metrics/diabetes-research-institute-foundation/308">Diabetes Research Institute Foundation</a>,
<a href="/ratings-and-metrics/hearing-health-foundation/305">Hearing Health Foundation</a>,
<a href="/ratings-and-metrics/huntingtons-disease-society-of-america/314">Huntington's Disease Society of America</a>,
<a href="/ratings-and-metrics/jdrf-international/315">JDRF International</a>,
<a href="/ratings-and-metrics/michael-j-fox-foundation-for-parkinsons-research/320">Michael J. Fox Foundation for Parkinson's Research</a>,
<a href="/ratings-and-metrics/national-hemophilia-foundation-national-office/329">National Hemophilia Foundation (National Office)</a>,
<a href="/ratings-and-metrics/national-jewish-health/330">National Jewish Health</a>,
<a href="/ratings-and-metrics/national-kidney-foundation/331">National Kidney Foundation</a>,
<a href="/ratings-and-metrics/national-psoriasis-foundation/695">National Psoriasis Foundation</a>,
<a href="/ratings-and-metrics/parkinsons-foundation-pre-merger-national-parkinson-foundation/334">Parkinson's Foundation (pre-merger, National Parkinson Foundation)</a>,
<a href="/ratings-and-metrics/parkinsons-foundation-pre-merger-parkinsons-disease-foundation/337">Parkinson's Foundation (pre-merger, Parkinson's Disease Foundation)</a>,
<a href="/ratings-and-metrics/partnership-for-a-healthier-america/762">Partnership for a Healthier America</a>,
<a href="/ratings-and-metrics/pkd-foundation/338">PKD Foundation</a>,
<a href="/ratings-and-metrics/hispanic-scholarship-fund/345">Hispanic Scholarship Fund</a>,
<a href="/ratings-and-metrics/latinojustice-prldef/346">LatinoJustice PRLDEF</a>,
<a href="/ratings-and-metrics/bowery-residents-committee/348">Bowery Residents' Committee</a>,
<a href="/ratings-and-metrics/center-for-community-change/349">Center for Community Change</a>,
<a href="/ratings-and-metrics/coalition-for-the-homeless/350">Coalition for the Homeless</a>,
<a href="/ratings-and-metrics/habitat-for-humanity-international-national-office/351">Habitat for Humanity International (National Office)</a>,
<a href="/ratings-and-metrics/homes-for-our-troops/535">Homes for Our Troops</a>,
<a href="/ratings-and-metrics/national-alliance-to-end-homelessness/352">National Alliance to End Homelessness</a>,
<a href="/ratings-and-metrics/center-for-victims-of-torture/354">Center for Victims of Torture</a>,
<a href="/ratings-and-metrics/committee-to-protect-journalists/355">Committee to Protect Journalists</a>,
<a href="/ratings-and-metrics/human-rights-first/357">Human Rights First </a>,
<a href="/ratings-and-metrics/human-rights-watch/358">Human Rights Watch</a>,
<a href="/ratings-and-metrics/american-red-cross/360">American Red Cross</a>,
<a href="/ratings-and-metrics/the-y-national-office/372">The Y (National Office)</a>,
<a href="/ratings-and-metrics/action-against-hunger-usa/374">Action Against Hunger-USA</a>,
<a href="/ratings-and-metrics/city-harvest/378">City Harvest </a>,
<a href="/ratings-and-metrics/feed-my-starving-children/760">Feed My Starving Children</a>,
<a href="/ratings-and-metrics/feeding-america/381">Feeding America</a>,
<a href="/ratings-and-metrics/food-bank-for-new-york-city/382">Food Bank For New York City</a>,
<a href="/ratings-and-metrics/hunger-project/386">Hunger Project</a>,
<a href="/ratings-and-metrics/meals-on-wheels-america-national-office/733">Meals on Wheels America (National Office)</a>,
<a href="/ratings-and-metrics/one-acre-fund/720">One Acre Fund</a>,
<a href="/ratings-and-metrics/accion-international/387">Accion International</a>,
<a href="/ratings-and-metrics/actionaid-usa/388">ActionAid USA</a>,
<a href="/ratings-and-metrics/africare/389">Africare</a>,
<a href="/ratings-and-metrics/all-hands-volunteers/767">All Hands Volunteers</a>,
<a href="/ratings-and-metrics/american-jewish-joint-distribution-committee/710">American Jewish Joint Distribution Committee</a>,
<a href="/ratings-and-metrics/american-near-east-refugee-aid-anera/391">American Near East Refugee Aid (ANERA)</a>,
<a href="/ratings-and-metrics/american-red-cross/360">American Red Cross</a>,
<a href="/ratings-and-metrics/american-refugee-committee/392">American Refugee Committee</a>,
<a href="/ratings-and-metrics/care-usa/396">CARE USA</a>,
<a href="/ratings-and-metrics/catholic-relief-services/398">Catholic Relief Services</a>,
<a href="/ratings-and-metrics/charity-water/400">charity: water</a>,
<a href="/ratings-and-metrics/church-world-service/403">Church World Service</a>,
<a href="/ratings-and-metrics/clinton-foundation/478">Clinton Foundation</a>,
<a href="/ratings-and-metrics/direct-relief-direct-relief-foundation/405">Direct Relief & Direct Relief Foundation</a>,
<a href="/ratings-and-metrics/doctors-without-borders-usa/406">Doctors Without Borders USA</a>,
<a href="/ratings-and-metrics/episcopal-relief-development/407">Episcopal Relief & Development</a>,
<a href="/ratings-and-metrics/finca-international/408">FINCA International</a>,
<a href="/ratings-and-metrics/fistula-foundation/592">Fistula Foundation</a>,
<a href="/ratings-and-metrics/grameen-foundation-usa/409">Grameen Foundation USA</a>,
<a href="/ratings-and-metrics/healthright-international/410">HealthRight International </a>,
<a href="/ratings-and-metrics/hias/754">HIAS</a>,
<a href="/ratings-and-metrics/international-medical-corps/413">International Medical Corps</a>,
<a href="/ratings-and-metrics/international-rescue-committee/414">International Rescue Committee</a>,
<a href="/ratings-and-metrics/lutheran-world-relief/416">Lutheran World Relief</a>,
<a href="/ratings-and-metrics/map-international/417">MAP International</a>,
<a href="/ratings-and-metrics/medical-teams-international/419">Medical Teams International</a>,
<a href="/ratings-and-metrics/mennonite-central-committee-us/420">Mennonite Central Committee U.S.</a>,
<a href="/ratings-and-metrics/mercy-corps/421">Mercy Corps</a>,
<a href="/ratings-and-metrics/one-acre-fund/720">One Acre Fund</a>,
<a href="/ratings-and-metrics/operation-usa/422">Operation USA</a>,
<a href="/ratings-and-metrics/opportunity-international/423">Opportunity International</a>,
<a href="/ratings-and-metrics/oxfam-america/424">Oxfam-America</a>,
<a href="/ratings-and-metrics/partners-in-health/425">Partners In Health</a>,
<a href="/ratings-and-metrics/project-concern-international/427">Project Concern International</a>,
<a href="/ratings-and-metrics/project-hope/428">Project HOPE</a>,
<a href="/ratings-and-metrics/rotary-foundation-of-rotary-international/430">Rotary Foundation of Rotary International</a>,
<a href="/ratings-and-metrics/samaritans-purse/432">Samaritan's Purse</a>,
<a href="/ratings-and-metrics/save-the-children/175">Save the Children</a>,
<a href="/ratings-and-metrics/seva-foundation/435">Seva Foundation</a>,
<a href="/ratings-and-metrics/team-rubicon/758">Team Rubicon</a>,
<a href="/ratings-and-metrics/technoserve/436">TechnoServe</a>,
<a href="/ratings-and-metrics/unbound/171">Unbound</a>,
<a href="/ratings-and-metrics/united-methodist-committee-on-relief/437">United Methodist Committee on Relief</a>,
<a href="/ratings-and-metrics/united-states-fund-for-unicef/439">United States Fund for UNICEF</a>,
<a href="/ratings-and-metrics/waterorg/645">Water.org</a>,
<a href="/ratings-and-metrics/world-vision/176">World Vision</a>,
<a href="/ratings-and-metrics/american-jewish-committee/444">American Jewish Committee</a>,
<a href="/ratings-and-metrics/american-jewish-joint-distribution-committee/710">American Jewish Joint Distribution Committee</a>,
<a href="/ratings-and-metrics/american-jewish-world-service/446">American Jewish World Service</a>,
<a href="/ratings-and-metrics/anti-defamation-league-foundation/447">Anti-Defamation League & Foundation</a>,
<a href="/ratings-and-metrics/bend-the-arc-a-jewish-partnership-for-justice/452">Bend the Arc - A Jewish Partnership for Justice</a>,
<a href="/ratings-and-metrics/friends-of-the-israel-defense-forces/712">Friends of the Israel Defense Forces</a>,
<a href="/ratings-and-metrics/hadassah/449">Hadassah</a>,
<a href="/ratings-and-metrics/hias/754">HIAS</a>,
<a href="/ratings-and-metrics/jewish-national-fund/453">Jewish National Fund</a>,
<a href="/ratings-and-metrics/new-israel-fund/456">New Israel Fund</a>,
<a href="/ratings-and-metrics/simon-wiesenthal-center/457">Simon Wiesenthal Center</a>,
<a href="/ratings-and-metrics/astraea-lesbian-foundation-for-justice/756">Astraea Lesbian Foundation for Justice</a>,
<a href="/ratings-and-metrics/trevor-project/727">Trevor Project</a>,
<a href="/ratings-and-metrics/proliteracy-worldwide/458">ProLiteracy Worldwide</a>,
<a href="/ratings-and-metrics/alzheimers-association-national-office/461">Alzheimer's Association (National Office)</a>,
<a href="/ratings-and-metrics/american-foundation-for-suicide-prevention/464">American Foundation for Suicide Prevention</a>,
<a href="/ratings-and-metrics/arc-of-the-united-states-national-office/465">Arc of the United States (National Office)</a>,
<a href="/ratings-and-metrics/brain-behavior-research-foundation/468">Brain & Behavior Research Foundation </a>,
<a href="/ratings-and-metrics/mental-health-america/469">Mental Health America</a>,
<a href="/ratings-and-metrics/nami/470">NAMI </a>,
<a href="/ratings-and-metrics/trevor-project/727">Trevor Project</a>,
<a href="/ratings-and-metrics/afs-usa/472">AFS-USA</a>,
<a href="/ratings-and-metrics/clinton-foundation/478">Clinton Foundation</a>,
<a href="/ratings-and-metrics/international-peace-institute/474">International Peace Institute</a>,
<a href="/ratings-and-metrics/physicians-for-social-responsibility-national-office/475">Physicians for Social Responsibility (National Office)</a>,
<a href="/ratings-and-metrics/brookings-institution/489">Brookings Institution</a>,
<a href="/ratings-and-metrics/common-cause-education-fund/492">Common Cause Education Fund</a>,
<a href="/ratings-and-metrics/government-accountability-project-gap/682">Government Accountability Project (GAP)</a>,
<a href="/ratings-and-metrics/american-refugee-committee/392">American Refugee Committee</a>,
<a href="/ratings-and-metrics/center-for-reproductive-rights/2">Center for Reproductive Rights</a>,
<a href="/ratings-and-metrics/engenderhealth/3">EngenderHealth </a>,
<a href="/ratings-and-metrics/fistula-foundation/592">Fistula Foundation</a>,
<a href="/ratings-and-metrics/friends-of-unfpa/480">Friends of UNFPA</a>,
<a href="/ratings-and-metrics/guttmacher-institute/5">Guttmacher Institute</a>,
<a href="/ratings-and-metrics/international-planned-parenthood-federation-western-hemisphere/6">International Planned Parenthood Federation-Western Hemisphere</a>,
<a href="/ratings-and-metrics/pai/483">PAI</a>,
<a href="/ratings-and-metrics/pathfinder-international/11">Pathfinder International</a>,
<a href="/ratings-and-metrics/pci-media-impact/482">PCI-Media Impact</a>,
<a href="/ratings-and-metrics/planned-parenthood-federation-of-america/13">Planned Parenthood Federation of America</a>,
<a href="/ratings-and-metrics/population-connection/484">Population Connection</a>,
<a href="/ratings-and-metrics/population-council/485">Population Council</a>,
<a href="/ratings-and-metrics/population-services-international/486">Population Services International</a>,
<a href="/ratings-and-metrics/meals-on-wheels-america-national-office/733">Meals on Wheels America (National Office)</a>,
<a href="/ratings-and-metrics/national-council-on-aging/503">National Council on Aging</a>,
<a href="/ratings-and-metrics/unbound/171">Unbound</a>,
<a href="/ratings-and-metrics/compassion-choices/508">Compassion & Choices</a>,
<a href="/ratings-and-metrics/give-kids-the-world/509">Give Kids the World</a>,
<a href="/ratings-and-metrics/starlight-childrens-foundation-national-office/514">Starlight Children's Foundation (National Office)</a>,
<a href="/ratings-and-metrics/sunshine-foundation-national-office/515">Sunshine Foundation (National Office)</a>,
<a href="/ratings-and-metrics/armed-services-ymca-of-the-usa/524">Armed Services YMCA of the USA</a>,
<a href="/ratings-and-metrics/bob-woodruff-family-foundation/713">Bob Woodruff Family Foundation</a>,
<a href="/ratings-and-metrics/fisher-house-foundation/531">Fisher House Foundation</a>,
<a href="/ratings-and-metrics/gary-sinise-foundation/745">Gary Sinise Foundation</a>,
<a href="/ratings-and-metrics/guide-dog-foundation-for-the-blind/93">Guide Dog Foundation for the Blind</a>,
<a href="/ratings-and-metrics/homes-for-our-troops/535">Homes for Our Troops</a>,
<a href="/ratings-and-metrics/hope-for-the-warriors/755">Hope For The Warriors</a>,
<a href="/ratings-and-metrics/intrepid-fallen-heroes-fund/537">Intrepid Fallen Heroes Fund</a>,
<a href="/ratings-and-metrics/national-military-family-association/540">National Military Family Association</a>,
<a href="/ratings-and-metrics/navy-marine-corps-relief-society/545">Navy-Marine Corps Relief Society</a>,
<a href="/ratings-and-metrics/operation-homefront/547">Operation Homefront</a>,
<a href="/ratings-and-metrics/semper-fi-fund/536">Semper Fi Fund</a>,
<a href="/ratings-and-metrics/team-rubicon/758">Team Rubicon</a>,
<a href="/ratings-and-metrics/tragedy-assistance-program-for-survivors-taps/638">Tragedy Assistance Program for Survivors (TAPS)</a>,
<a href="/ratings-and-metrics/wounded-warriors-family-support/750">Wounded Warriors Family Support</a>,
<a href="/ratings-and-metrics/breast-cancer-prevention-partners/114">Breast Cancer Prevention Partners</a>,
<a href="/ratings-and-metrics/breast-cancer-research-foundation/117">Breast Cancer Research Foundation</a>,
<a href="/ratings-and-metrics/engenderhealth/3">EngenderHealth </a>,
<a href="/ratings-and-metrics/fistula-foundation/592">Fistula Foundation</a>,
<a href="/ratings-and-metrics/guttmacher-institute/5">Guttmacher Institute</a>,
<a href="/ratings-and-metrics/international-planned-parenthood-federation-western-hemisphere/6">International Planned Parenthood Federation-Western Hemisphere</a>,
<a href="/ratings-and-metrics/national-breast-cancer-coalition-fund/139">National Breast Cancer Coalition Fund</a>,
<a href="/ratings-and-metrics/planned-parenthood-federation-of-america/13">Planned Parenthood Federation of America</a>,
<a href="/ratings-and-metrics/astraea-lesbian-foundation-for-justice/756">Astraea Lesbian Foundation for Justice</a>,
<a href="/ratings-and-metrics/center-for-reproductive-rights/2">Center for Reproductive Rights</a>,
<a href="/ratings-and-metrics/global-fund-for-women/561">Global Fund for Women</a>,
<a href="/ratings-and-metrics/guttmacher-institute/5">Guttmacher Institute</a>,
<a href="/ratings-and-metrics/women-for-women-international-us/565">Women for Women International U.S.</a>,
<a href="/ratings-and-metrics/big-brothers-big-sisters-of-america-national-office/567">Big Brothers/Big Sisters of America (National Office)</a>,
<a href="/ratings-and-metrics/boy-scouts-of-america-national-office/568">Boy Scouts of America (National Office)</a>,
<a href="/ratings-and-metrics/boys-girls-clubs-of-america-national-office/569">Boys & Girls Clubs of America (National Office)</a>,
<a href="/ratings-and-metrics/camp-fire-national-headquarters/570">Camp Fire National Headquarters</a>,
<a href="/ratings-and-metrics/donorschooseorg/706">DonorsChoose.org</a>,
<a href="/ratings-and-metrics/girls-incorporated-national-office/573">Girls Incorporated (National Office)</a>,
<a href="/ratings-and-metrics/junior-achievement-usa-national-office/574">Junior Achievement USA (National Office)</a>,
<a href="/ratings-and-metrics/scholarship-america/576">Scholarship America</a>,
<a href="/ratings-and-metrics/cedars/580">CEDARS</a>,
<a href="/ratings-and-metrics/covenant-house/582">Covenant House</a>,
<a href="/ratings-and-metrics/sos-childrens-villages-usa/584">SOS Children's Villages - USA</a>]
这里我可以用find_all的一些其他的用法,比如说我要用正则表达式去抓href中带有 'ratings-and-metrics' 关键字的结构及其信息,实现同样的效果
In [7]:
charities_ratings_and_metrics = charities[0].find_all(href=re.compile("/ratings-and-metrics"))
In [8]:
charities_ratings_and_metrics
Out[8]:
[<a href="/ratings-and-metrics/naacp-legal-defense-and-educational-fund/18">NAACP Legal Defense and Educational Fund</a>,
<a href="/ratings-and-metrics/national-urban-league-national-office/19">National Urban League (National Office)</a>,
<a href="/ratings-and-metrics/elizabeth-glaser-pediatric-aids-foundation/24">Elizabeth Glaser Pediatric AIDS Foundation</a>,
<a href="/ratings-and-metrics/foundation-for-aids-research-amfar/25">Foundation for AIDS Research (amfAR)</a>,
<a href="/ratings-and-metrics/american-indian-college-fund/28">American Indian College Fund</a>,
<a href="/ratings-and-metrics/african-wildlife-foundation/237">African Wildlife Foundation</a>,
<a href="/ratings-and-metrics/american-bird-conservancy/239">American Bird Conservancy</a>,
<a href="/ratings-and-metrics/american-humane/44">American Humane</a>,
<a href="/ratings-and-metrics/animal-welfare-institute/47">Animal Welfare Institute</a>,
<a href="/ratings-and-metrics/bat-conservation-international/49">Bat Conservation International</a>,
<a href="/ratings-and-metrics/best-friends-animal-society/50">Best Friends Animal Society</a>,
<a href="/ratings-and-metrics/dian-fossey-gorilla-fund-international/54">Dian Fossey Gorilla Fund International</a>,
<a href="/ratings-and-metrics/friends-of-animals/58">Friends of Animals</a>,
<a href="/ratings-and-metrics/humane-farming-association/62">Humane Farming Association</a>,
<a href="/ratings-and-metrics/jane-goodall-institute/66">Jane Goodall Institute</a>,
<a href="/ratings-and-metrics/marine-mammal-center/68">Marine Mammal Center</a>,
<a href="/ratings-and-metrics/performing-animal-welfare-society/75">Performing Animal Welfare Society</a>,
<a href="/ratings-and-metrics/petsmart-charities/595">PetSmart Charities</a>,
<a href="/ratings-and-metrics/redrover/633">RedRover</a>,
<a href="/ratings-and-metrics/wildlife-conservation-society/80">Wildlife Conservation Society</a>,
<a href="/ratings-and-metrics/asia-foundation/81">Asia Foundation</a>,
<a href="/ratings-and-metrics/asia-society/82">Asia Society</a>,
<a href="/ratings-and-metrics/asian-american-legal-defense-education-fund/83">Asian American Legal Defense & Education Fund</a>,
<a href="/ratings-and-metrics/japan-society/84">Japan Society</a>,
<a href="/ratings-and-metrics/guide-dog-foundation-for-the-blind/93">Guide Dog Foundation for the Blind</a>,
<a href="/ratings-and-metrics/helen-keller-international/97">Helen Keller International</a>,
<a href="/ratings-and-metrics/national-federation-of-the-blind/105">National Federation of the Blind</a>,
<a href="/ratings-and-metrics/prevent-blindness/107">Prevent Blindness</a>,
<a href="/ratings-and-metrics/seva-foundation/435">Seva Foundation</a>,
<a href="/ratings-and-metrics/breast-cancer-prevention-partners/114">Breast Cancer Prevention Partners</a>,
<a href="/ratings-and-metrics/breast-cancer-research-foundation/117">Breast Cancer Research Foundation</a>,
<a href="/ratings-and-metrics/cancer-research-institute/123">Cancer Research Institute</a>,
<a href="/ratings-and-metrics/entertainment-industry-foundation/149">Entertainment Industry Foundation</a>,
<a href="/ratings-and-metrics/leukemia-lymphoma-society/135">Leukemia & Lymphoma Society</a>,
<a href="/ratings-and-metrics/memorial-sloan-kettering-cancer-center/137">Memorial Sloan Kettering Cancer Center</a>,
<a href="/ratings-and-metrics/multiple-myeloma-research-foundation/138">Multiple Myeloma Research Foundation</a>,
<a href="/ratings-and-metrics/national-breast-cancer-coalition-fund/139">National Breast Cancer Coalition Fund</a>,
<a href="/ratings-and-metrics/ovarian-cancer-research-fund-alliance/725">Ovarian Cancer Research Fund Alliance</a>,
<a href="/ratings-and-metrics/pancreatic-cancer-action-network/721">Pancreatic Cancer Action Network</a>,
<a href="/ratings-and-metrics/prevent-cancer-foundation/146">Prevent Cancer Foundation</a>,
<a href="/ratings-and-metrics/prostate-cancer-foundation/147">Prostate Cancer Foundation</a>,
<a href="/ratings-and-metrics/child-find-of-america/155">Child Find of America</a>,
<a href="/ratings-and-metrics/childrens-defense-fund/158">Children's Defense Fund</a>,
<a href="/ratings-and-metrics/childrens-health-fund/159">Children's Health Fund</a>,
<a href="/ratings-and-metrics/marine-toys-for-tots-foundation/162">Marine Toys for Tots Foundation</a>,
<a href="/ratings-and-metrics/prevent-child-abuse-america-national-office/165">Prevent Child Abuse America (National Office)</a>,
<a href="/ratings-and-metrics/ronald-mcdonald-house-charities-national-office/166">Ronald McDonald House Charities (National Office)</a>,
<a href="/ratings-and-metrics/childfund-international/168">ChildFund International</a>,
<a href="/ratings-and-metrics/children-incorporated/169">Children Incorporated</a>,
<a href="/ratings-and-metrics/children-international/170">Children International</a>,
<a href="/ratings-and-metrics/compassion-international/172">Compassion International</a>,
<a href="/ratings-and-metrics/pearl-s-buck-international/173">Pearl S. Buck International</a>,
<a href="/ratings-and-metrics/save-the-children/175">Save the Children</a>,
<a href="/ratings-and-metrics/unbound/171">Unbound</a>,
<a href="/ratings-and-metrics/world-vision/176">World Vision</a>,
<a href="/ratings-and-metrics/american-civil-liberties-union-aclu/177">American Civil Liberties Union (ACLU)</a>,
<a href="/ratings-and-metrics/american-civil-liberties-union-aclu-foundation/178">American Civil Liberties Union (ACLU) Foundation</a>,
<a href="/ratings-and-metrics/astraea-lesbian-foundation-for-justice/756">Astraea Lesbian Foundation for Justice</a>,
<a href="/ratings-and-metrics/center-for-community-change/349">Center for Community Change</a>,
<a href="/ratings-and-metrics/center-for-constitutional-rights/182">Center for Constitutional Rights</a>,
<a href="/ratings-and-metrics/innocence-project/737">Innocence Project</a>,
<a href="/ratings-and-metrics/action-on-smoking-and-health/196">Action on Smoking and Health</a>,
<a href="/ratings-and-metrics/food-and-water-watch/198">Food and Water Watch</a>,
<a href="/ratings-and-metrics/government-accountability-project-gap/682">Government Accountability Project (GAP)</a>,
<a href="/ratings-and-metrics/innocence-project/737">Innocence Project</a>,
<a href="/ratings-and-metrics/public-citizen-foundation/205">Public Citizen Foundation</a>,
<a href="/ratings-and-metrics/concerns-of-police-survivors-cops/211">Concerns of Police Survivors (COPS)</a>,
<a href="/ratings-and-metrics/fortune-society/216">Fortune Society</a>,
<a href="/ratings-and-metrics/christopher-dana-reeve-foundation/225">Christopher & Dana Reeve Foundation</a>,
<a href="/ratings-and-metrics/goodwill-industries-international-national-office/226">Goodwill Industries International (National Office)</a>,
<a href="/ratings-and-metrics/drug-policy-alliance/229">Drug Policy Alliance</a>,
<a href="/ratings-and-metrics/partnership-for-drug-free-kids/233">Partnership for Drug-Free Kids</a>,
<a href="/ratings-and-metrics/african-wildlife-foundation/237">African Wildlife Foundation</a>,
<a href="/ratings-and-metrics/alaska-conservation-foundation/238">Alaska Conservation Foundation</a>,
<a href="/ratings-and-metrics/american-bird-conservancy/239">American Bird Conservancy</a>,
<a href="/ratings-and-metrics/american-rivers/242">American Rivers</a>,
<a href="/ratings-and-metrics/arbor-day-foundation/261">Arbor Day Foundation</a>,
<a href="/ratings-and-metrics/center-for-biological-diversity/243">Center for Biological Diversity</a>,
<a href="/ratings-and-metrics/conservation-fund/245">Conservation Fund</a>,
<a href="/ratings-and-metrics/conservation-international-foundation/246">Conservation International Foundation</a>,
<a href="/ratings-and-metrics/earth-island-institute/250">Earth Island Institute</a>,
<a href="/ratings-and-metrics/earthjustice/251">Earthjustice</a>,
<a href="/ratings-and-metrics/earthworks/252">Earthworks</a>,
<a href="/ratings-and-metrics/environmental-defense-action-fund/731">Environmental Defense Action Fund</a>,
<a href="/ratings-and-metrics/environmental-defense-fund/253">Environmental Defense Fund</a>,
<a href="/ratings-and-metrics/food-and-water-watch/198">Food and Water Watch</a>,
<a href="/ratings-and-metrics/izaak-walton-league-of-america/259">Izaak Walton League of America</a>,
<a href="/ratings-and-metrics/keep-america-beautiful-national-office/260">Keep America Beautiful (National Office)</a>,
<a href="/ratings-and-metrics/national-audubon-society/262">National Audubon Society</a>,
<a href="/ratings-and-metrics/national-park-trust/264">National Park Trust</a>,
<a href="/ratings-and-metrics/national-wildlife-federation/266">National Wildlife Federation</a>,
<a href="/ratings-and-metrics/natural-resources-defense-council/267">Natural Resources Defense Council</a>,
<a href="/ratings-and-metrics/nature-conservancy/268">Nature Conservancy</a>,
<a href="/ratings-and-metrics/rainforest-action-network/271">Rainforest Action Network</a>,
<a href="/ratings-and-metrics/rainforest-alliance/272">Rainforest Alliance</a>,
<a href="/ratings-and-metrics/sierra-club-foundation/277">Sierra Club Foundation</a>,
<a href="/ratings-and-metrics/trout-unlimited-national-office/279">Trout Unlimited (National Office)</a>,
<a href="/ratings-and-metrics/trust-for-public-land/280">Trust for Public Land</a>,
<a href="/ratings-and-metrics/union-of-concerned-scientists/281">Union of Concerned Scientists</a>,
<a href="/ratings-and-metrics/waterorg/645">Water.org</a>,
<a href="/ratings-and-metrics/waterkeeper-alliance/282">Waterkeeper Alliance</a>,
<a href="/ratings-and-metrics/wilderness-society/283">Wilderness Society</a>,
<a href="/ratings-and-metrics/world-resources-institute/284">World Resources Institute</a>,
<a href="/ratings-and-metrics/yosemite-conservancy/715">Yosemite Conservancy</a>,
<a href="/ratings-and-metrics/national-rifle-association-nra-foundation/289">National Rifle Association (NRA) Foundation</a>,
<a href="/ratings-and-metrics/als-association-national-office/290">ALS Association (National Office)</a>,
<a href="/ratings-and-metrics/american-brain-tumor-association/291">American Brain Tumor Association</a>,
<a href="/ratings-and-metrics/american-kidney-fund/295">American Kidney Fund</a>,
<a href="/ratings-and-metrics/american-liver-foundation/297">American Liver Foundation</a>,
<a href="/ratings-and-metrics/american-lung-association-national-office/298">American Lung Association (National Office)</a>,
<a href="/ratings-and-metrics/american-red-cross/360">American Red Cross</a>,
<a href="/ratings-and-metrics/city-of-hope-affiliates/302">City of Hope & Affiliates</a>,
<a href="/ratings-and-metrics/cj-first-candle-national-office/312">CJ First Candle (National Office)</a>,
<a href="/ratings-and-metrics/clinton-foundation/478">Clinton Foundation</a>,
<a href="/ratings-and-metrics/crohns-colitis-foundation-of-america/303">Crohn's & Colitis Foundation of America</a>,
<a href="/ratings-and-metrics/cystic-fibrosis-foundation/304">Cystic Fibrosis Foundation</a>,
<a href="/ratings-and-metrics/diabetes-action-research-and-education-foundation/307">Diabetes Action Research and Education Foundation</a>,
<a href="/ratings-and-metrics/diabetes-research-institute-foundation/308">Diabetes Research Institute Foundation</a>,
<a href="/ratings-and-metrics/hearing-health-foundation/305">Hearing Health Foundation</a>,
<a href="/ratings-and-metrics/huntingtons-disease-society-of-america/314">Huntington's Disease Society of America</a>,
<a href="/ratings-and-metrics/jdrf-international/315">JDRF International</a>,
<a href="/ratings-and-metrics/michael-j-fox-foundation-for-parkinsons-research/320">Michael J. Fox Foundation for Parkinson's Research</a>,
<a href="/ratings-and-metrics/national-hemophilia-foundation-national-office/329">National Hemophilia Foundation (National Office)</a>,
<a href="/ratings-and-metrics/national-jewish-health/330">National Jewish Health</a>,
<a href="/ratings-and-metrics/national-kidney-foundation/331">National Kidney Foundation</a>,
<a href="/ratings-and-metrics/national-psoriasis-foundation/695">National Psoriasis Foundation</a>,
<a href="/ratings-and-metrics/parkinsons-foundation-pre-merger-national-parkinson-foundation/334">Parkinson's Foundation (pre-merger, National Parkinson Foundation)</a>,
<a href="/ratings-and-metrics/parkinsons-foundation-pre-merger-parkinsons-disease-foundation/337">Parkinson's Foundation (pre-merger, Parkinson's Disease Foundation)</a>,
<a href="/ratings-and-metrics/partnership-for-a-healthier-america/762">Partnership for a Healthier America</a>,
<a href="/ratings-and-metrics/pkd-foundation/338">PKD Foundation</a>,
<a href="/ratings-and-metrics/hispanic-scholarship-fund/345">Hispanic Scholarship Fund</a>,
<a href="/ratings-and-metrics/latinojustice-prldef/346">LatinoJustice PRLDEF</a>,
<a href="/ratings-and-metrics/bowery-residents-committee/348">Bowery Residents' Committee</a>,
<a href="/ratings-and-metrics/center-for-community-change/349">Center for Community Change</a>,
<a href="/ratings-and-metrics/coalition-for-the-homeless/350">Coalition for the Homeless</a>,
<a href="/ratings-and-metrics/habitat-for-humanity-international-national-office/351">Habitat for Humanity International (National Office)</a>,
<a href="/ratings-and-metrics/homes-for-our-troops/535">Homes for Our Troops</a>,
<a href="/ratings-and-metrics/national-alliance-to-end-homelessness/352">National Alliance to End Homelessness</a>,
<a href="/ratings-and-metrics/center-for-victims-of-torture/354">Center for Victims of Torture</a>,
<a href="/ratings-and-metrics/committee-to-protect-journalists/355">Committee to Protect Journalists</a>,
<a href="/ratings-and-metrics/human-rights-first/357">Human Rights First </a>,
<a href="/ratings-and-metrics/human-rights-watch/358">Human Rights Watch</a>,
<a href="/ratings-and-metrics/american-red-cross/360">American Red Cross</a>,
<a href="/ratings-and-metrics/the-y-national-office/372">The Y (National Office)</a>,
<a href="/ratings-and-metrics/action-against-hunger-usa/374">Action Against Hunger-USA</a>,
<a href="/ratings-and-metrics/city-harvest/378">City Harvest </a>,
<a href="/ratings-and-metrics/feed-my-starving-children/760">Feed My Starving Children</a>,
<a href="/ratings-and-metrics/feeding-america/381">Feeding America</a>,
<a href="/ratings-and-metrics/food-bank-for-new-york-city/382">Food Bank For New York City</a>,
<a href="/ratings-and-metrics/hunger-project/386">Hunger Project</a>,
<a href="/ratings-and-metrics/meals-on-wheels-america-national-office/733">Meals on Wheels America (National Office)</a>,
<a href="/ratings-and-metrics/one-acre-fund/720">One Acre Fund</a>,
<a href="/ratings-and-metrics/accion-international/387">Accion International</a>,
<a href="/ratings-and-metrics/actionaid-usa/388">ActionAid USA</a>,
<a href="/ratings-and-metrics/africare/389">Africare</a>,
<a href="/ratings-and-metrics/all-hands-volunteers/767">All Hands Volunteers</a>,
<a href="/ratings-and-metrics/american-jewish-joint-distribution-committee/710">American Jewish Joint Distribution Committee</a>,
<a href="/ratings-and-metrics/american-near-east-refugee-aid-anera/391">American Near East Refugee Aid (ANERA)</a>,
<a href="/ratings-and-metrics/american-red-cross/360">American Red Cross</a>,
<a href="/ratings-and-metrics/american-refugee-committee/392">American Refugee Committee</a>,
<a href="/ratings-and-metrics/care-usa/396">CARE USA</a>,
<a href="/ratings-and-metrics/catholic-relief-services/398">Catholic Relief Services</a>,
<a href="/ratings-and-metrics/charity-water/400">charity: water</a>,
<a href="/ratings-and-metrics/church-world-service/403">Church World Service</a>,
<a href="/ratings-and-metrics/clinton-foundation/478">Clinton Foundation</a>,
<a href="/ratings-and-metrics/direct-relief-direct-relief-foundation/405">Direct Relief & Direct Relief Foundation</a>,
<a href="/ratings-and-metrics/doctors-without-borders-usa/406">Doctors Without Borders USA</a>,
<a href="/ratings-and-metrics/episcopal-relief-development/407">Episcopal Relief & Development</a>,
<a href="/ratings-and-metrics/finca-international/408">FINCA International</a>,
<a href="/ratings-and-metrics/fistula-foundation/592">Fistula Foundation</a>,
<a href="/ratings-and-metrics/grameen-foundation-usa/409">Grameen Foundation USA</a>,
<a href="/ratings-and-metrics/healthright-international/410">HealthRight International </a>,
<a href="/ratings-and-metrics/hias/754">HIAS</a>,
<a href="/ratings-and-metrics/international-medical-corps/413">International Medical Corps</a>,
<a href="/ratings-and-metrics/international-rescue-committee/414">International Rescue Committee</a>,
<a href="/ratings-and-metrics/lutheran-world-relief/416">Lutheran World Relief</a>,
<a href="/ratings-and-metrics/map-international/417">MAP International</a>,
<a href="/ratings-and-metrics/medical-teams-international/419">Medical Teams International</a>,
<a href="/ratings-and-metrics/mennonite-central-committee-us/420">Mennonite Central Committee U.S.</a>,
<a href="/ratings-and-metrics/mercy-corps/421">Mercy Corps</a>,
<a href="/ratings-and-metrics/one-acre-fund/720">One Acre Fund</a>,
<a href="/ratings-and-metrics/operation-usa/422">Operation USA</a>,
<a href="/ratings-and-metrics/opportunity-international/423">Opportunity International</a>,
<a href="/ratings-and-metrics/oxfam-america/424">Oxfam-America</a>,
<a href="/ratings-and-metrics/partners-in-health/425">Partners In Health</a>,
<a href="/ratings-and-metrics/project-concern-international/427">Project Concern International</a>,
<a href="/ratings-and-metrics/project-hope/428">Project HOPE</a>,
<a href="/ratings-and-metrics/rotary-foundation-of-rotary-international/430">Rotary Foundation of Rotary International</a>,
<a href="/ratings-and-metrics/samaritans-purse/432">Samaritan's Purse</a>,
<a href="/ratings-and-metrics/save-the-children/175">Save the Children</a>,
<a href="/ratings-and-metrics/seva-foundation/435">Seva Foundation</a>,
<a href="/ratings-and-metrics/team-rubicon/758">Team Rubicon</a>,
<a href="/ratings-and-metrics/technoserve/436">TechnoServe</a>,
<a href="/ratings-and-metrics/unbound/171">Unbound</a>,
<a href="/ratings-and-metrics/united-methodist-committee-on-relief/437">United Methodist Committee on Relief</a>,
<a href="/ratings-and-metrics/united-states-fund-for-unicef/439">United States Fund for UNICEF</a>,
<a href="/ratings-and-metrics/waterorg/645">Water.org</a>,
<a href="/ratings-and-metrics/world-vision/176">World Vision</a>,
<a href="/ratings-and-metrics/american-jewish-committee/444">American Jewish Committee</a>,
<a href="/ratings-and-metrics/american-jewish-joint-distribution-committee/710">American Jewish Joint Distribution Committee</a>,
<a href="/ratings-and-metrics/american-jewish-world-service/446">American Jewish World Service</a>,
<a href="/ratings-and-metrics/anti-defamation-league-foundation/447">Anti-Defamation League & Foundation</a>,
<a href="/ratings-and-metrics/bend-the-arc-a-jewish-partnership-for-justice/452">Bend the Arc - A Jewish Partnership for Justice</a>,
<a href="/ratings-and-metrics/friends-of-the-israel-defense-forces/712">Friends of the Israel Defense Forces</a>,
<a href="/ratings-and-metrics/hadassah/449">Hadassah</a>,
<a href="/ratings-and-metrics/hias/754">HIAS</a>,
<a href="/ratings-and-metrics/jewish-national-fund/453">Jewish National Fund</a>,
<a href="/ratings-and-metrics/new-israel-fund/456">New Israel Fund</a>,
<a href="/ratings-and-metrics/simon-wiesenthal-center/457">Simon Wiesenthal Center</a>,
<a href="/ratings-and-metrics/astraea-lesbian-foundation-for-justice/756">Astraea Lesbian Foundation for Justice</a>,
<a href="/ratings-and-metrics/trevor-project/727">Trevor Project</a>,
<a href="/ratings-and-metrics/proliteracy-worldwide/458">ProLiteracy Worldwide</a>,
<a href="/ratings-and-metrics/alzheimers-association-national-office/461">Alzheimer's Association (National Office)</a>,
<a href="/ratings-and-metrics/american-foundation-for-suicide-prevention/464">American Foundation for Suicide Prevention</a>,
<a href="/ratings-and-metrics/arc-of-the-united-states-national-office/465">Arc of the United States (National Office)</a>,
<a href="/ratings-and-metrics/brain-behavior-research-foundation/468">Brain & Behavior Research Foundation </a>,
<a href="/ratings-and-metrics/mental-health-america/469">Mental Health America</a>,
<a href="/ratings-and-metrics/nami/470">NAMI </a>,
<a href="/ratings-and-metrics/trevor-project/727">Trevor Project</a>,
<a href="/ratings-and-metrics/afs-usa/472">AFS-USA</a>,
<a href="/ratings-and-metrics/clinton-foundation/478">Clinton Foundation</a>,
<a href="/ratings-and-metrics/international-peace-institute/474">International Peace Institute</a>,
<a href="/ratings-and-metrics/physicians-for-social-responsibility-national-office/475">Physicians for Social Responsibility (National Office)</a>,
<a href="/ratings-and-metrics/brookings-institution/489">Brookings Institution</a>,
<a href="/ratings-and-metrics/common-cause-education-fund/492">Common Cause Education Fund</a>,
<a href="/ratings-and-metrics/government-accountability-project-gap/682">Government Accountability Project (GAP)</a>,
<a href="/ratings-and-metrics/american-refugee-committee/392">American Refugee Committee</a>,
<a href="/ratings-and-metrics/center-for-reproductive-rights/2">Center for Reproductive Rights</a>,
<a href="/ratings-and-metrics/engenderhealth/3">EngenderHealth </a>,
<a href="/ratings-and-metrics/fistula-foundation/592">Fistula Foundation</a>,
<a href="/ratings-and-metrics/friends-of-unfpa/480">Friends of UNFPA</a>,
<a href="/ratings-and-metrics/guttmacher-institute/5">Guttmacher Institute</a>,
<a href="/ratings-and-metrics/international-planned-parenthood-federation-western-hemisphere/6">International Planned Parenthood Federation-Western Hemisphere</a>,
<a href="/ratings-and-metrics/pai/483">PAI</a>,
<a href="/ratings-and-metrics/pathfinder-international/11">Pathfinder International</a>,
<a href="/ratings-and-metrics/pci-media-impact/482">PCI-Media Impact</a>,
<a href="/ratings-and-metrics/planned-parenthood-federation-of-america/13">Planned Parenthood Federation of America</a>,
<a href="/ratings-and-metrics/population-connection/484">Population Connection</a>,
<a href="/ratings-and-metrics/population-council/485">Population Council</a>,
<a href="/ratings-and-metrics/population-services-international/486">Population Services International</a>,
<a href="/ratings-and-metrics/meals-on-wheels-america-national-office/733">Meals on Wheels America (National Office)</a>,
<a href="/ratings-and-metrics/national-council-on-aging/503">National Council on Aging</a>,
<a href="/ratings-and-metrics/unbound/171">Unbound</a>,
<a href="/ratings-and-metrics/compassion-choices/508">Compassion & Choices</a>,
<a href="/ratings-and-metrics/give-kids-the-world/509">Give Kids the World</a>,
<a href="/ratings-and-metrics/starlight-childrens-foundation-national-office/514">Starlight Children's Foundation (National Office)</a>,
<a href="/ratings-and-metrics/sunshine-foundation-national-office/515">Sunshine Foundation (National Office)</a>,
<a href="/ratings-and-metrics/armed-services-ymca-of-the-usa/524">Armed Services YMCA of the USA</a>,
<a href="/ratings-and-metrics/bob-woodruff-family-foundation/713">Bob Woodruff Family Foundation</a>,
<a href="/ratings-and-metrics/fisher-house-foundation/531">Fisher House Foundation</a>,
<a href="/ratings-and-metrics/gary-sinise-foundation/745">Gary Sinise Foundation</a>,
<a href="/ratings-and-metrics/guide-dog-foundation-for-the-blind/93">Guide Dog Foundation for the Blind</a>,
<a href="/ratings-and-metrics/homes-for-our-troops/535">Homes for Our Troops</a>,
<a href="/ratings-and-metrics/hope-for-the-warriors/755">Hope For The Warriors</a>,
<a href="/ratings-and-metrics/intrepid-fallen-heroes-fund/537">Intrepid Fallen Heroes Fund</a>,
<a href="/ratings-and-metrics/national-military-family-association/540">National Military Family Association</a>,
<a href="/ratings-and-metrics/navy-marine-corps-relief-society/545">Navy-Marine Corps Relief Society</a>,
<a href="/ratings-and-metrics/operation-homefront/547">Operation Homefront</a>,
<a href="/ratings-and-metrics/semper-fi-fund/536">Semper Fi Fund</a>,
<a href="/ratings-and-metrics/team-rubicon/758">Team Rubicon</a>,
<a href="/ratings-and-metrics/tragedy-assistance-program-for-survivors-taps/638">Tragedy Assistance Program for Survivors (TAPS)</a>,
<a href="/ratings-and-metrics/wounded-warriors-family-support/750">Wounded Warriors Family Support</a>,
<a href="/ratings-and-metrics/breast-cancer-prevention-partners/114">Breast Cancer Prevention Partners</a>,
<a href="/ratings-and-metrics/breast-cancer-research-foundation/117">Breast Cancer Research Foundation</a>,
<a href="/ratings-and-metrics/engenderhealth/3">EngenderHealth </a>,
<a href="/ratings-and-metrics/fistula-foundation/592">Fistula Foundation</a>,
<a href="/ratings-and-metrics/guttmacher-institute/5">Guttmacher Institute</a>,
<a href="/ratings-and-metrics/international-planned-parenthood-federation-western-hemisphere/6">International Planned Parenthood Federation-Western Hemisphere</a>,
<a href="/ratings-and-metrics/national-breast-cancer-coalition-fund/139">National Breast Cancer Coalition Fund</a>,
<a href="/ratings-and-metrics/planned-parenthood-federation-of-america/13">Planned Parenthood Federation of America</a>,
<a href="/ratings-and-metrics/astraea-lesbian-foundation-for-justice/756">Astraea Lesbian Foundation for Justice</a>,
<a href="/ratings-and-metrics/center-for-reproductive-rights/2">Center for Reproductive Rights</a>,
<a href="/ratings-and-metrics/global-fund-for-women/561">Global Fund for Women</a>,
<a href="/ratings-and-metrics/guttmacher-institute/5">Guttmacher Institute</a>,
<a href="/ratings-and-metrics/women-for-women-international-us/565">Women for Women International U.S.</a>,
<a href="/ratings-and-metrics/big-brothers-big-sisters-of-america-national-office/567">Big Brothers/Big Sisters of America (National Office)</a>,
<a href="/ratings-and-metrics/boy-scouts-of-america-national-office/568">Boy Scouts of America (National Office)</a>,
<a href="/ratings-and-metrics/boys-girls-clubs-of-america-national-office/569">Boys & Girls Clubs of America (National Office)</a>,
<a href="/ratings-and-metrics/camp-fire-national-headquarters/570">Camp Fire National Headquarters</a>,
<a href="/ratings-and-metrics/donorschooseorg/706">DonorsChoose.org</a>,
<a href="/ratings-and-metrics/girls-incorporated-national-office/573">Girls Incorporated (National Office)</a>,
<a href="/ratings-and-metrics/junior-achievement-usa-national-office/574">Junior Achievement USA (National Office)</a>,
<a href="/ratings-and-metrics/scholarship-america/576">Scholarship America</a>,
<a href="/ratings-and-metrics/cedars/580">CEDARS</a>,
<a href="/ratings-and-metrics/covenant-house/582">Covenant House</a>,
<a href="/ratings-and-metrics/sos-childrens-villages-usa/584">SOS Children's Villages - USA</a>]
那么根据这个列表,我随便找一家基金会,找出它的相信信息网页,并抓出资金信息
In [9]:
sample = charities_ratings_and_metrics[0]
In [10]:
sample['href']
Out[10]:
'/ratings-and-metrics/naacp-legal-defense-and-educational-fund/18'
In [18]:
sample.text
Out[18]:
'NAACP Legal Defense and Educational Fund'
In [11]:
print(sample)
<a href="/ratings-and-metrics/naacp-legal-defense-and-educational-fund/18">NAACP Legal Defense and Educational Fund</a>
In [12]:
sample_url = 'https://www.charitywatch.org' + sample['href']
In [13]:
sample_url
Out[13]:
'https://www.charitywatch.org/ratings-and-metrics/naacp-legal-defense-and-educational-fund/18'
In [14]:
charity_page = requests.get(sample_url).text
In [15]:
bs_charity_page = BeautifulSoup(charity_page,'lxml')
In [16]:
print(bs_charity_page.prettify)
<bound method Tag.prettify of <!DOCTYPE html>
<!-- BEGIN html --><html dir="ltr" lang="en-US">
<!-- BEGIN head -->
<head>
<!-- Meta Tags -->
<meta content="text/html; charset=utf-8" http-equiv="Content-Type"/>
<meta content="width=device-width, initial-scale=1.0" name="viewport"/>
<link href="https://www.charitywatch.org/" rel="canonical"/>
<!-- Title -->
<title>NAACP Legal Defense and Educational Fund | Charity Ratings | America's Most Independent Charity Watchdog | CharityWatch</title>
<meta content="NAACP Legal Defense and Educational Fund | Charity Ratings | America's Most Independent Charity Watchdog | CharityWatch" property="og:title"/><meta content="https://www.charitywatch.org/img/charity_watch_logo.png" property="og:image"/><meta content="https://www.charitywatch.org/ratings-and-metrics/naacp-legal-defense-and-educational-fund/18" property="og:url"/>
<!-- Font -->
<link href="//fonts.googleapis.com/css?family=Lato:400,700" rel="stylesheet" type="text/css"/>
<!-- Stylesheets -->
<link href="//netdna.bootstrapcdn.com/font-awesome/4.0.3/css/font-awesome.css" rel="stylesheet"/>
<link href="/css/foundation.min.css" rel="stylesheet"/>
<!-- <link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css" integrity="sha384-BVYiiSIFeK1dGmJRAkycuHAHRg32OmUcww7on3RYdg4Va+PmSTsz/K68vbdEjh4u" crossorigin="anonymous"> -->
<link href="/css/template_mobile.css?34234224232" rel="stylesheet"/>
<link href="/css/smoothness/jquery-ui-1.10.3.custom.css" rel="stylesheet"/>
<link href="/css/jquery.bxslider.css" rel="stylesheet"/>
<link href="/css/slicknav.min.css" rel="stylesheet"/>
<!-- Scripts -->
<script src="/js/lib/jquery-2.0.3.min.js" type="text/javascript"></script>
<script src="/js/lib/jquery-ui-1.10.3.custom.min.js" type="text/javascript"></script>
<script src="/js/lib/jquery.bxslider.min.js" type="text/javascript"></script>
<script src="/js/lib/jquery.slicknav.min.js" type="text/javascript"></script>
<script src="/js/charitywatch.js" type="text/javascript"></script>
</head>
<body>
<div class="menu_wrapper">
<div id="menu">
<ul id="nav">
<li class="show-for-small-only" onclick="document.location.href='/home'">HOME</li>
<li onclick="document.location.href='/charities'"><a href="/charities">Charity Ratings</a></li><li onclick="document.location.href='/top-rated-charities'"><a href="/top-rated-charities">Top-Rated Charities</a></li><li onclick="document.location.href='/top-charity-salaries'"><a href="/top-charity-salaries">Top Compensation</a></li><li onclick="document.location.href='/high-asset-charities'"><a href="/high-asset-charities">High Assets</a></li><li onclick="document.location.href='/charitywatch-articles'"><a href="/charitywatch-articles">Articles</a></li><li onclick="document.location.href='/about-charitywatch'"><a href="/about-charitywatch">About Us</a></li><li onclick="document.location.href='/charity-donation-links'"><a href="/charity-donation-links">Links</a></li><li onclick="document.location.href='/join'"><a href="/join">Membership</a></li> </ul>
<div class="clear"></div>
</div></div>
<div class="container">
<div class="row padt-lg">
<div class="medium-7 large-8 column hide-for-small-only"> </div>
<div class="small-12 medium-5 large-4 column pull-right">
<div class="input-group">
<span class="input-group-label"><i class="fa fa-search"></i></span>
<input autocomplete="off" class="input-group-field" id="search" name="search" onkeyup="searchSite();" placeholder="SEARCH" type="text"/>
</div>
</div>
</div>
<div id="supmenu">
<ul>
<li class="hide-for-small-only"><a href="/home"><i class="fa fa-home"></i> Home</a></li>
<li class="supmenu-green" id="mnuDonate"><i class="fa fa-gift"></i> Donate</li>
<li><a href="/login"><i class="fa fa-sign-in"></i> Login</a></li>
</ul>
</div>
<div id="logo">
<a href="/home"><img src="/img/charitywatch-logo.png"/></a>
</div>
<div id="twentyfive">
<img src="/img/charitywatch-25-years.png"/>
</div>
<div id="main_wrapper"> <div class="row collapse">
<div class="small-8 column">
<ul id="tabs">
<li id="current">
<a href="#" name="tab1">NAACP Legal Defense and...</a>
</li>
<!--<li><a href="javascript:void(0);" name="tab2" onclick="charity_search_via_categories('2', 'letter_list');">More African-American Charities</a></li>-->
<li class="show-for-large"><a href="javascript:void(0);" name="tab2" onclick="charity_search_same_category('18', 'letter_list');">Charities In The Same Category</a></li>
<li class="show-for-large"><a href="javascript:void(0);" name="tab3" onclick="charity_by_letter('all', 'all_charities');">All Charities</a></li>
</ul>
</div>
<div class="small-4 column text-right">
<div id="fiscal_year">
<span class="hide-for-small-only"><strong><span class="red">CharityWatch</span> REPORT</strong><br/></span>
Issued July 2016 <a href="/charitywatch-criteria-methodology/18#IssuedDate" name="IssuedDate"><span class="question"><i class="fa fa-info-circle"></i></span></a> </div>
</div>
</div>
<div id="tabbed_content">
<div class="tab" id="tab1">
<div id="menu_charity">
<ul id="nav_charity">
<li class="on" onclick="document.location.href='/ratings-and-metrics/naacp-legal-defense-and-educational-fund/18'"><a href="/ratings-and-metrics/naacp-legal-defense-and-educational-fund/18">Ratings & Metrics</a></li>
<li onclick="document.location.href='/governance-and-transparency/naacp-legal-defense-and-educational-fund/18'"><a href="/governance-and-transparency/naacp-legal-defense-and-educational-fund/18">Governance & Transparency</a></li>
<li onclick="document.location.href='/analysts-notes/naacp-legal-defense-and-educational-fund/18'"><a href="/analysts-notes/naacp-legal-defense-and-educational-fund/18">Analysts' Notes</a></li>
<li onclick="document.location.href='/salaries/naacp-legal-defense-and-educational-fund/18'"><a href="/salaries/naacp-legal-defense-and-educational-fund/18">Salaries</a></li>
<li onclick="document.location.href='/articles-and-media/naacp-legal-defense-and-educational-fund/18'"><a href="/articles-and-media/naacp-legal-defense-and-educational-fund/18">Donor Alerts & Articles / Media</a></li>
</ul>
<div class="clear"></div>
</div>
<div class="row charity_row padt">
<div class="small-12 medium-4 column">
<h2 class="nobr">Contact & General Information <a class="normal_link" href="/charitywatch-criteria-methodology/18#address" name="address"><span class="question"><i class="fa fa-info-circle"></i></span></a></h2>
<strong>NAACP Legal Defense and Educational Fund</strong><br/>40 Rector Street<br/>5th Floor<br/>New York, NY 10006<br/><a href="http://www.naacpldf.org" target="_blank">www.naacpldf.org</a><br/>Tax Status: 501(c)3 <a href="/charitywatch-criteria-methodology/18#taxStatus" name="taxStatus"><span class="question"><i class="fa fa-info-circle"></i></span></a> </div>
<div class="small-12 column show-for-small-only"> </div>
<div class="small-12 medium-4 column">
<h2>Other Names <a class="normal_link" href="/charitywatch-criteria-methodology/18#names" name="names"><span class="question"><i class="fa fa-info-circle"></i></span></a></h2>
<div style="margin-bottom:5px;">
<strong>Committee of 100</strong><br/><strong>Earl Warren Legal Training Program</strong><br/><strong>Herbert Lehman Educational Fund</strong><br/> </div>
Charities often solicit donors under multiple names. <span class="red">CharityWatch</span> is aware of this charity soliciting donors using the above names.<br/>
</div>
<div class="small-12 column show-for-small-only"> </div>
<div class="small-12 medium-4 column">
<span class="rating">RATING:</span> <span class="large_rating">A-</span> <a href="/charitywatch-criteria-methodology/18#rating" name="rating"><span class="question"><i class="fa fa-info-circle"></i></span></a><p style="margin-top:5px;">Is this rating different than what you expected based on what the charity reports about itself or what other raters report about this charity? Read about what makes <span class="red">CharityWatch's</span> independent ratings <a href="/about-charitywatch/charitywatch-difference/3113/3118">different</a> from other sources of information.</p> </div>
</div>
<div class="row charity_row padt">
<div class="small-12 column">
<h2>Stated Mission <a class="normal_link" href="/charitywatch-criteria-methodology/18#statedMission" name="statedMission"><span class="question"><i class="fa fa-info-circle"></i></span></a></h2>To support litigation in the areas of poverty and justice, education, voting rights, fair employment, capital punishment, administration of criminal justice, and to increase educational opportunities through scholarships. </div>
</div>
<!--
<div class="charity_row">
<div class="charity_section">
<h2>Stated Mission <a href="/charitywatch-criteria-methodology/18#statedMission" name="statedMission" class="normal_link"><span class="question"><i class="fa fa-info-circle"></i></span></a></h2>To support litigation in the areas of poverty and justice, education, voting rights, fair employment, capital punishment, administration of criminal justice, and to increase educational opportunities through scholarships. </div>
<div class="clear"></div>
</div>
-->
<div class="row charity_row padt">
</div>
<div class="row charity_row padt">
<div class="small-12 column">
<div class="year">Fiscal Year Ended 06/30/15 <a class="normal_link" href="/charitywatch-criteria-methodology/18#fiscalYear3" name="fiscalYear"><span class="question" style="color:#aeaeae;"><i class="fa fa-info-circle"></i></span></a></div>
</div>
</div>
<div class="row charity_row padt">
<div class="small-12 medium-6 column">
<p align="center"><span class="headers_nobreak">Program Percentage </span>: <span class="larger">77 %</span> <a href="/charitywatch-criteria-methodology/18#ProgramPercentage" name="ProgramPercentage"><span class="question"><i class="fa fa-info-circle"></i></span></a></p><div id="chart1"></div><p align="center"><span class="headers_nobreak" style="font-weight:normal;">Calculated Total Expenses (rounded) </span>: <span class="larger" style="font-weight:normal;">$15,000,000 </span></p> <p><em>A charity's <strong>Program %</strong> is the percentage of its cash budget it spends on Programs relative to Overhead (Fundraising and Management & General Expenses)</em></p>
</div>
<div class="small-12 medium-6 column">
<p align="center"><span class="headers_nobreak">Cost to Raise $100 </span>: <span class="larger">$ 13</span> <a href="/charitywatch-criteria-methodology/18#CostToRaise" name="CostToRaise"><span class="question"><i class="fa fa-info-circle"></i></span></a></p><div id="chart2"></div><p align="center"><span class="headers_nobreak" style="font-weight:normal;">Calculated Total Contributions (rounded) </span>: <span class="larger" style="font-weight:normal;">$16,000,000 </span></p> <p><em>Cost to Raise $100 signifies how many dollars a charity spends on Fundraising to raise each $100 of Contributions.</em></p>
</div>
</div>
<div class="row charity_row padt">
<div class="small-12 medium-6 column">
<h2>Government Funding <a class="normal_link" href="/charitywatch-criteria-methodology/18#GovernmentSupport" name="GovernmentSupport"><span class="question"><i class="fa fa-info-circle"></i></span></a></h2>
<span class="red">CharityWatch</span> calculates the percentage of a charity's cash revenue received from government sources for informational purposes for those donors who would like to factor a charity's range of government funding into their giving decisions. Donors should keep in mind that funding from the government does not automatically signal that a charity is well-governed and/or more efficient than other charities.
<p>For the reporting year rated by <span class="red">CharityWatch</span>, this charity received cash grants/contributions from government sources within a range of:</p>
<p class="callout"><strong>0% to 24%</strong></p>
</div>
<div class="small-12 medium-6 column">
<h2>Financial Documents <a class="normal_link" href="/charitywatch-criteria-methodology/18#FinancialDocuments" name="FinancialDocuments"><span class="question"><i class="fa fa-info-circle"></i></span></a></h2>
<strong>NAACP Legal Defense and Educational Fund's</strong> rating is based on <span class="red">CharityWatch's</span> in-depth analysis of the following documents for the fiscal year represented:<br/>
<br/>
<table class="small" width="100%">
<thead>
<tr>
<th>Entity</th>
<th>Document Type</th>
<th>Tax Id #</th>
</tr>
</thead>
<tbody>
<tr>
<td><strong>NAACP Legal Defense & Educational Fund</strong></td>
<td>IRS Form 990</td>
<td>13-1655255</td>
</tr><tr>
<td><strong>NAACP Legal Defense & Educational Fund & Affiliate</strong></td>
<td>Audited Consolidated Financial Statements</td>
<td>Multiple</td>
</tr><tr>
<td><strong>Earl Warren Legal Training Program</strong></td>
<td>IRS Form 990</td>
<td>13-2695683</td>
</tr> </tbody>
</table>
<br/>
<p>See the <a href="/charitywatch-criteria-methodology/18#treatmentOfRelatedOrganizations" name="treatmentOfRelatedOrganizations">CRITERIA</a> to learn why <span class="red">CharityWatch</span> analyzes multiple documents before computing a charity's rating.</p>
</div>
</div>
</div>
<div class="tab" id="tab2">
<div class="charity_title"><div class="row"><div class="small-12 medium-12 large-4 column text-center"><h4 style="margin-top:4px;"><strong>Number Results: <span class="number_results"></span></strong></h4></div><div class="small-12 medium-12 large-4 column"><input class="search_f" id="search_string_more" name="search_string" onfocus="clearDefault(this)" onkeyup="client_search_charities('letter_list','more');" type="text" value=""/></div><div class="small-12 medium-12 large-4 column"><select class="ss" id="category_number_more" name="category_number" onchange="charity_search_via_categories('', 'letter_list','more');" style="width:220px;">
<option value="">Search for charity by category</option>
<option value="2">AFRICAN-AMERICAN</option>
<option value="3">AIDS</option>
<option value="4">AMERICAN INDIAN</option>
<option value="5">ANIMAL & ANIMAL PROTECTION</option>
<option value="6">ASIA & ASIAN-AMERICAN</option>
<option value="7">BLIND & VISUALLY IMPAIRED</option>
<option value="8">CANCER</option>
<option value="9">CHILD PROTECTION</option>
<option value="10">CHILD SPONSORSHIP</option>
<option value="11">CIVIL RIGHTS & ADVOCACY</option>
<option value="12">CONSUMER PROTECTION & LEGAL AID</option>
<option value="13">CRIME & FIRE PREVENTION</option>
<option value="14">DISABLED</option>
<option value="15">DRUG & ALCOHOL ABUSE</option>
<option value="39">EDUCATION</option>
<option value="16">ENVIRONMENT</option>
<option value="17">GUN CONTROL (PRO/CON )</option>
<option value="18">HEALTH - GENERAL</option>
<option value="19">HISPANIC</option>
<option value="20">HOMELESSNESS & HOUSING</option>
<option value="21">HUMAN RIGHTS</option>
<option value="22">HUMAN SERVICES</option>
<option value="23">HUNGER</option>
<option value="24">INTERNATIONAL RELIEF & DEVELOPMENT</option>
<option value="25">JEWISH & ISRAEL</option>
<option value="41">LGBTQ RIGHTS & ADVOCACY</option>
<option value="26">LITERACY</option>
<option value="27">MENTAL HEALTH & DISABILITIES</option>
<option value="28">PEACE & INTERNATIONAL RELATIONS</option>
<option value="30">PUBLIC POLICY</option>
<option value="40">REPRODUCTIVE HEALTH, FAMILY PLANNING, & ABORTION</option>
<option value="31">SENIOR CITIZENS</option>
<option value="32">TERMINALLY OR CHRONICALLY ILL</option>
<option value="33">VETERANS & MILITARY</option>
<option value="38">WOMEN'S HEALTH</option>
<option value="34">WOMEN'S RIGHTS</option>
<option value="35">YOUTH DEVELOPMENT</option>
<option value="36">YOUTH-RESIDENTIAL</option>
</select></div></div></div> <div id="letter_list"></div>
</div>
<div class="tab" id="tab3">
<div class="charity_title"><div class="row"><div class="small-12 medium-12 large-4 column text-center"><h4 style="margin-top:4px;"><strong>Number Results: <span class="number_results"></span></strong></h4></div><div class="small-12 medium-12 large-4 column"><input class="search_f" id="search_string" name="search_string" onfocus="clearDefault(this)" onkeyup="client_search_charities('all_charities');" type="text" value=""/></div><div class="small-12 medium-12 large-4 column"><select class="ss" id="category_number" name="category_number" onchange="charity_search_via_categories('', 'all_charities');" style="width:220px;">
<option value="">Search for charity by category</option>
<option value="2">AFRICAN-AMERICAN</option>
<option value="3">AIDS</option>
<option value="4">AMERICAN INDIAN</option>
<option value="5">ANIMAL & ANIMAL PROTECTION</option>
<option value="6">ASIA & ASIAN-AMERICAN</option>
<option value="7">BLIND & VISUALLY IMPAIRED</option>
<option value="8">CANCER</option>
<option value="9">CHILD PROTECTION</option>
<option value="10">CHILD SPONSORSHIP</option>
<option value="11">CIVIL RIGHTS & ADVOCACY</option>
<option value="12">CONSUMER PROTECTION & LEGAL AID</option>
<option value="13">CRIME & FIRE PREVENTION</option>
<option value="14">DISABLED</option>
<option value="15">DRUG & ALCOHOL ABUSE</option>
<option value="39">EDUCATION</option>
<option value="16">ENVIRONMENT</option>
<option value="17">GUN CONTROL (PRO/CON )</option>
<option value="18">HEALTH - GENERAL</option>
<option value="19">HISPANIC</option>
<option value="20">HOMELESSNESS & HOUSING</option>
<option value="21">HUMAN RIGHTS</option>
<option value="22">HUMAN SERVICES</option>
<option value="23">HUNGER</option>
<option value="24">INTERNATIONAL RELIEF & DEVELOPMENT</option>
<option value="25">JEWISH & ISRAEL</option>
<option value="41">LGBTQ RIGHTS & ADVOCACY</option>
<option value="26">LITERACY</option>
<option value="27">MENTAL HEALTH & DISABILITIES</option>
<option value="28">PEACE & INTERNATIONAL RELATIONS</option>
<option value="30">PUBLIC POLICY</option>
<option value="40">REPRODUCTIVE HEALTH, FAMILY PLANNING, & ABORTION</option>
<option value="31">SENIOR CITIZENS</option>
<option value="32">TERMINALLY OR CHRONICALLY ILL</option>
<option value="33">VETERANS & MILITARY</option>
<option value="38">WOMEN'S HEALTH</option>
<option value="34">WOMEN'S RIGHTS</option>
<option value="35">YOUTH DEVELOPMENT</option>
<option value="36">YOUTH-RESIDENTIAL</option>
</select></div></div></div> <div id="all_charities"></div>
</div>
</div>
<script src="https://www.google.com/jsapi" type="text/javascript"></script>
<script type="text/javascript">
google.load("visualization", "1", {packages:["corechart"]});
google.setOnLoadCallback(drawChart1);
function drawChart1() {
var data = google.visualization.arrayToDataTable([
['Task', 'Fundraising & Overhead %'],
['Program %',77],
['Overhead %', 23]
]);
var options = {
title: '',
colors: ['#169aec', '#c10e0e'],
'tooltip': {trigger: 'none'}
};
var chart1 = new google.visualization.PieChart(document.getElementById('chart1'));
chart1.draw(data, options);
}
google.load("visualization", "1", {packages:["corechart"]});
google.setOnLoadCallback(drawChart2);
function drawChart2() {
var data = google.visualization.arrayToDataTable([
['Task', 'Amount it cost to raise $100'],
['Cost to raise $100',13],
['$87', 87]
]);
var options = {
//title: 'Amount it cost to raise $100',
pieSliceBorderColor: 'white',
pieSliceText: 'value',
legend: {position: 'none'},
'tooltip' : { trigger: 'none' },
colors: ['#169aec', '#c10e0e'],
slices: {1: {textStyle: {color: '#c10e0e'}}}
};
var formatter = new google.visualization.NumberFormat({
fractionDigits: 0,
prefix: '$'
});
formatter.format(data, 1); // Apply formatter to second column.
var chart2 = new google.visualization.PieChart(document.getElementById('chart2'));
chart2.draw(data, options);
}
</script>
</div>
<div id="footer">
<div class="row">
<div class="small-12 column text-center">
© 1995 - 2017 CharityWatch | <a href="/privacy-tos">Privacy Policy & Terms of Use</a> <br class="show-for-small-only"/>
<a href="/charities">Charity Ratings</a> | <a href="/top-rated-charities">Top-Rated Charities</a> | <a href="/top-charity-salaries">Top Compensation</a> | <a href="/high-asset-charities">High Assets</a> | <a href="/charitywatch-articles">Articles</a> | <a href="/about-charitywatch">About Us</a> | <a href="/charity-donation-links">Links</a> | <a href="/join">Membership</a><div class="clear"></div>
</div>
</div>
</div>
</div> <!-- end container -->
<script type="text/javascript">
jQuery( document ).ready( function()
{
jQuery('#mnuDonate, #joinToday, #join, #gift, #additional, #renew').click(function() {
var this_click_item = jQuery(this).attr('id');
jQuery("#checkoutDialog").remove();
var $div = jQuery( "<div id='checkoutDialog'></div>" );
jQuery('body').append($div);
$div.load('/checkout/index.php', function() {
$div.dialog({
autoOpen: false,
show: {
effect: "fade",
duration: 750
},
hide: {
effect: "fade",
duration: 750
},
title: 'Thank you for supporting CharityWatch',
resizable: false,
width: '100%',
maxWidth: 750,
// height: 800,
modal: true,
close: function(event, ui) {
jQuery(this).empty();
jQuery(this).dialog('destroy');
location.reload();
}
});
$div.dialog('open');
if (this_click_item == 'gift') {
jQuery('#giftMembership').attr('checked', 'checked');
} else if (this_click_item == 'additional') {
jQuery('#additionalSupport').attr('checked', 'checked');
} else if (this_click_item == 'renew') {
jQuery('#renewMembership').attr('checked', 'checked');
}
});
return false;
});
});
</script>
<script>
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
})(window,document,'script','//www.google-analytics.com/analytics.js','ga');
ga('create', 'UA-27062591-1', 'auto');
ga('send', 'pageview');
</script>
</body>
</html>>
In [83]:
bs_charity_page.find_all('span',class_="larger",style="font-weight:normal;")
Out[83]:
[<span class="larger" style="font-weight:normal;">$15,000,000 </span>,
<span class="larger" style="font-weight:normal;">$16,000,000 </span>]
在第一个span标签中的内容是我们需要的
以下我们来把整个流程都串起来
In [ ]:
In [31]:
charity = charities_ratings_and_metrics[0]
charity['href']
Out[31]:
'/ratings-and-metrics/naacp-legal-defense-and-educational-fund/18'
In [64]:
results = dict()
for charity in charities_ratings_and_metrics:
url = 'https://www.charitywatch.org' + charity['href']
print(url)
charity_page = requests.get(url).text
bs_charity_page = BeautifulSoup(charity_page,'lxml')
fundings = bs_charity_page.find_all('span',class_="larger",style="font-weight:normal;")
funding = fundings[0]
name = charity.text
results[name] = funding.get_text()
https://www.charitywatch.org/ratings-and-metrics/naacp-legal-defense-and-educational-fund/18
https://www.charitywatch.org/ratings-and-metrics/national-urban-league-national-office/19
https://www.charitywatch.org/ratings-and-metrics/elizabeth-glaser-pediatric-aids-foundation/24
https://www.charitywatch.org/ratings-and-metrics/foundation-for-aids-research-amfar/25
https://www.charitywatch.org/ratings-and-metrics/american-indian-college-fund/28
https://www.charitywatch.org/ratings-and-metrics/african-wildlife-foundation/237
https://www.charitywatch.org/ratings-and-metrics/american-bird-conservancy/239
https://www.charitywatch.org/ratings-and-metrics/american-humane/44
https://www.charitywatch.org/ratings-and-metrics/animal-welfare-institute/47
https://www.charitywatch.org/ratings-and-metrics/bat-conservation-international/49
https://www.charitywatch.org/ratings-and-metrics/best-friends-animal-society/50
https://www.charitywatch.org/ratings-and-metrics/dian-fossey-gorilla-fund-international/54
https://www.charitywatch.org/ratings-and-metrics/friends-of-animals/58
https://www.charitywatch.org/ratings-and-metrics/humane-farming-association/62
https://www.charitywatch.org/ratings-and-metrics/jane-goodall-institute/66
https://www.charitywatch.org/ratings-and-metrics/marine-mammal-center/68
https://www.charitywatch.org/ratings-and-metrics/performing-animal-welfare-society/75
https://www.charitywatch.org/ratings-and-metrics/petsmart-charities/595
https://www.charitywatch.org/ratings-and-metrics/redrover/633
https://www.charitywatch.org/ratings-and-metrics/wildlife-conservation-society/80
https://www.charitywatch.org/ratings-and-metrics/asia-foundation/81
https://www.charitywatch.org/ratings-and-metrics/asia-society/82
https://www.charitywatch.org/ratings-and-metrics/asian-american-legal-defense-education-fund/83
https://www.charitywatch.org/ratings-and-metrics/japan-society/84
https://www.charitywatch.org/ratings-and-metrics/guide-dog-foundation-for-the-blind/93
https://www.charitywatch.org/ratings-and-metrics/helen-keller-international/97
https://www.charitywatch.org/ratings-and-metrics/national-federation-of-the-blind/105
https://www.charitywatch.org/ratings-and-metrics/prevent-blindness/107
https://www.charitywatch.org/ratings-and-metrics/seva-foundation/435
https://www.charitywatch.org/ratings-and-metrics/breast-cancer-prevention-partners/114
https://www.charitywatch.org/ratings-and-metrics/breast-cancer-research-foundation/117
https://www.charitywatch.org/ratings-and-metrics/cancer-research-institute/123
https://www.charitywatch.org/ratings-and-metrics/entertainment-industry-foundation/149
https://www.charitywatch.org/ratings-and-metrics/leukemia-lymphoma-society/135
https://www.charitywatch.org/ratings-and-metrics/memorial-sloan-kettering-cancer-center/137
https://www.charitywatch.org/ratings-and-metrics/multiple-myeloma-research-foundation/138
https://www.charitywatch.org/ratings-and-metrics/national-breast-cancer-coalition-fund/139
https://www.charitywatch.org/ratings-and-metrics/ovarian-cancer-research-fund-alliance/725
https://www.charitywatch.org/ratings-and-metrics/pancreatic-cancer-action-network/721
https://www.charitywatch.org/ratings-and-metrics/prevent-cancer-foundation/146
https://www.charitywatch.org/ratings-and-metrics/prostate-cancer-foundation/147
https://www.charitywatch.org/ratings-and-metrics/child-find-of-america/155
https://www.charitywatch.org/ratings-and-metrics/childrens-defense-fund/158
https://www.charitywatch.org/ratings-and-metrics/childrens-health-fund/159
https://www.charitywatch.org/ratings-and-metrics/marine-toys-for-tots-foundation/162
https://www.charitywatch.org/ratings-and-metrics/prevent-child-abuse-america-national-office/165
https://www.charitywatch.org/ratings-and-metrics/ronald-mcdonald-house-charities-national-office/166
https://www.charitywatch.org/ratings-and-metrics/childfund-international/168
https://www.charitywatch.org/ratings-and-metrics/children-incorporated/169
https://www.charitywatch.org/ratings-and-metrics/children-international/170
https://www.charitywatch.org/ratings-and-metrics/compassion-international/172
https://www.charitywatch.org/ratings-and-metrics/pearl-s-buck-international/173
https://www.charitywatch.org/ratings-and-metrics/save-the-children/175
https://www.charitywatch.org/ratings-and-metrics/unbound/171
https://www.charitywatch.org/ratings-and-metrics/world-vision/176
https://www.charitywatch.org/ratings-and-metrics/american-civil-liberties-union-aclu/177
https://www.charitywatch.org/ratings-and-metrics/american-civil-liberties-union-aclu-foundation/178
https://www.charitywatch.org/ratings-and-metrics/astraea-lesbian-foundation-for-justice/756
https://www.charitywatch.org/ratings-and-metrics/center-for-community-change/349
https://www.charitywatch.org/ratings-and-metrics/center-for-constitutional-rights/182
https://www.charitywatch.org/ratings-and-metrics/innocence-project/737
https://www.charitywatch.org/ratings-and-metrics/action-on-smoking-and-health/196
https://www.charitywatch.org/ratings-and-metrics/food-and-water-watch/198
https://www.charitywatch.org/ratings-and-metrics/government-accountability-project-gap/682
https://www.charitywatch.org/ratings-and-metrics/innocence-project/737
https://www.charitywatch.org/ratings-and-metrics/public-citizen-foundation/205
https://www.charitywatch.org/ratings-and-metrics/concerns-of-police-survivors-cops/211
https://www.charitywatch.org/ratings-and-metrics/fortune-society/216
https://www.charitywatch.org/ratings-and-metrics/christopher-dana-reeve-foundation/225
https://www.charitywatch.org/ratings-and-metrics/goodwill-industries-international-national-office/226
https://www.charitywatch.org/ratings-and-metrics/drug-policy-alliance/229
https://www.charitywatch.org/ratings-and-metrics/partnership-for-drug-free-kids/233
https://www.charitywatch.org/ratings-and-metrics/african-wildlife-foundation/237
https://www.charitywatch.org/ratings-and-metrics/alaska-conservation-foundation/238
https://www.charitywatch.org/ratings-and-metrics/american-bird-conservancy/239
https://www.charitywatch.org/ratings-and-metrics/american-rivers/242
https://www.charitywatch.org/ratings-and-metrics/arbor-day-foundation/261
https://www.charitywatch.org/ratings-and-metrics/center-for-biological-diversity/243
https://www.charitywatch.org/ratings-and-metrics/conservation-fund/245
https://www.charitywatch.org/ratings-and-metrics/conservation-international-foundation/246
https://www.charitywatch.org/ratings-and-metrics/earth-island-institute/250
https://www.charitywatch.org/ratings-and-metrics/earthjustice/251
https://www.charitywatch.org/ratings-and-metrics/earthworks/252
https://www.charitywatch.org/ratings-and-metrics/environmental-defense-action-fund/731
https://www.charitywatch.org/ratings-and-metrics/environmental-defense-fund/253
https://www.charitywatch.org/ratings-and-metrics/food-and-water-watch/198
https://www.charitywatch.org/ratings-and-metrics/izaak-walton-league-of-america/259
https://www.charitywatch.org/ratings-and-metrics/keep-america-beautiful-national-office/260
https://www.charitywatch.org/ratings-and-metrics/national-audubon-society/262
https://www.charitywatch.org/ratings-and-metrics/national-park-trust/264
https://www.charitywatch.org/ratings-and-metrics/national-wildlife-federation/266
https://www.charitywatch.org/ratings-and-metrics/natural-resources-defense-council/267
https://www.charitywatch.org/ratings-and-metrics/nature-conservancy/268
https://www.charitywatch.org/ratings-and-metrics/rainforest-action-network/271
https://www.charitywatch.org/ratings-and-metrics/rainforest-alliance/272
https://www.charitywatch.org/ratings-and-metrics/sierra-club-foundation/277
https://www.charitywatch.org/ratings-and-metrics/trout-unlimited-national-office/279
https://www.charitywatch.org/ratings-and-metrics/trust-for-public-land/280
https://www.charitywatch.org/ratings-and-metrics/union-of-concerned-scientists/281
https://www.charitywatch.org/ratings-and-metrics/waterorg/645
https://www.charitywatch.org/ratings-and-metrics/waterkeeper-alliance/282
https://www.charitywatch.org/ratings-and-metrics/wilderness-society/283
https://www.charitywatch.org/ratings-and-metrics/world-resources-institute/284
https://www.charitywatch.org/ratings-and-metrics/yosemite-conservancy/715
https://www.charitywatch.org/ratings-and-metrics/national-rifle-association-nra-foundation/289
https://www.charitywatch.org/ratings-and-metrics/als-association-national-office/290
https://www.charitywatch.org/ratings-and-metrics/american-brain-tumor-association/291
https://www.charitywatch.org/ratings-and-metrics/american-kidney-fund/295
https://www.charitywatch.org/ratings-and-metrics/american-liver-foundation/297
https://www.charitywatch.org/ratings-and-metrics/american-lung-association-national-office/298
https://www.charitywatch.org/ratings-and-metrics/american-red-cross/360
https://www.charitywatch.org/ratings-and-metrics/city-of-hope-affiliates/302
https://www.charitywatch.org/ratings-and-metrics/cj-first-candle-national-office/312
https://www.charitywatch.org/ratings-and-metrics/clinton-foundation/478
https://www.charitywatch.org/ratings-and-metrics/crohns-colitis-foundation-of-america/303
https://www.charitywatch.org/ratings-and-metrics/cystic-fibrosis-foundation/304
https://www.charitywatch.org/ratings-and-metrics/diabetes-action-research-and-education-foundation/307
https://www.charitywatch.org/ratings-and-metrics/diabetes-research-institute-foundation/308
https://www.charitywatch.org/ratings-and-metrics/hearing-health-foundation/305
https://www.charitywatch.org/ratings-and-metrics/huntingtons-disease-society-of-america/314
https://www.charitywatch.org/ratings-and-metrics/jdrf-international/315
https://www.charitywatch.org/ratings-and-metrics/michael-j-fox-foundation-for-parkinsons-research/320
https://www.charitywatch.org/ratings-and-metrics/national-hemophilia-foundation-national-office/329
https://www.charitywatch.org/ratings-and-metrics/national-jewish-health/330
https://www.charitywatch.org/ratings-and-metrics/national-kidney-foundation/331
https://www.charitywatch.org/ratings-and-metrics/national-psoriasis-foundation/695
https://www.charitywatch.org/ratings-and-metrics/parkinsons-foundation-pre-merger-national-parkinson-foundation/334
https://www.charitywatch.org/ratings-and-metrics/parkinsons-foundation-pre-merger-parkinsons-disease-foundation/337
https://www.charitywatch.org/ratings-and-metrics/partnership-for-a-healthier-america/762
https://www.charitywatch.org/ratings-and-metrics/pkd-foundation/338
https://www.charitywatch.org/ratings-and-metrics/hispanic-scholarship-fund/345
https://www.charitywatch.org/ratings-and-metrics/latinojustice-prldef/346
https://www.charitywatch.org/ratings-and-metrics/bowery-residents-committee/348
https://www.charitywatch.org/ratings-and-metrics/center-for-community-change/349
https://www.charitywatch.org/ratings-and-metrics/coalition-for-the-homeless/350
https://www.charitywatch.org/ratings-and-metrics/habitat-for-humanity-international-national-office/351
https://www.charitywatch.org/ratings-and-metrics/homes-for-our-troops/535
https://www.charitywatch.org/ratings-and-metrics/national-alliance-to-end-homelessness/352
https://www.charitywatch.org/ratings-and-metrics/center-for-victims-of-torture/354
https://www.charitywatch.org/ratings-and-metrics/committee-to-protect-journalists/355
https://www.charitywatch.org/ratings-and-metrics/human-rights-first/357
https://www.charitywatch.org/ratings-and-metrics/human-rights-watch/358
https://www.charitywatch.org/ratings-and-metrics/american-red-cross/360
https://www.charitywatch.org/ratings-and-metrics/the-y-national-office/372
https://www.charitywatch.org/ratings-and-metrics/action-against-hunger-usa/374
https://www.charitywatch.org/ratings-and-metrics/city-harvest/378
https://www.charitywatch.org/ratings-and-metrics/feed-my-starving-children/760
https://www.charitywatch.org/ratings-and-metrics/feeding-america/381
https://www.charitywatch.org/ratings-and-metrics/food-bank-for-new-york-city/382
https://www.charitywatch.org/ratings-and-metrics/hunger-project/386
https://www.charitywatch.org/ratings-and-metrics/meals-on-wheels-america-national-office/733
https://www.charitywatch.org/ratings-and-metrics/one-acre-fund/720
https://www.charitywatch.org/ratings-and-metrics/accion-international/387
https://www.charitywatch.org/ratings-and-metrics/actionaid-usa/388
https://www.charitywatch.org/ratings-and-metrics/africare/389
https://www.charitywatch.org/ratings-and-metrics/all-hands-volunteers/767
https://www.charitywatch.org/ratings-and-metrics/american-jewish-joint-distribution-committee/710
https://www.charitywatch.org/ratings-and-metrics/american-near-east-refugee-aid-anera/391
https://www.charitywatch.org/ratings-and-metrics/american-red-cross/360
https://www.charitywatch.org/ratings-and-metrics/american-refugee-committee/392
https://www.charitywatch.org/ratings-and-metrics/care-usa/396
https://www.charitywatch.org/ratings-and-metrics/catholic-relief-services/398
https://www.charitywatch.org/ratings-and-metrics/charity-water/400
https://www.charitywatch.org/ratings-and-metrics/church-world-service/403
https://www.charitywatch.org/ratings-and-metrics/clinton-foundation/478
https://www.charitywatch.org/ratings-and-metrics/direct-relief-direct-relief-foundation/405
https://www.charitywatch.org/ratings-and-metrics/doctors-without-borders-usa/406
https://www.charitywatch.org/ratings-and-metrics/episcopal-relief-development/407
https://www.charitywatch.org/ratings-and-metrics/finca-international/408
https://www.charitywatch.org/ratings-and-metrics/fistula-foundation/592
https://www.charitywatch.org/ratings-and-metrics/grameen-foundation-usa/409
https://www.charitywatch.org/ratings-and-metrics/healthright-international/410
https://www.charitywatch.org/ratings-and-metrics/hias/754
https://www.charitywatch.org/ratings-and-metrics/international-medical-corps/413
https://www.charitywatch.org/ratings-and-metrics/international-rescue-committee/414
https://www.charitywatch.org/ratings-and-metrics/lutheran-world-relief/416
https://www.charitywatch.org/ratings-and-metrics/map-international/417
https://www.charitywatch.org/ratings-and-metrics/medical-teams-international/419
https://www.charitywatch.org/ratings-and-metrics/mennonite-central-committee-us/420
https://www.charitywatch.org/ratings-and-metrics/mercy-corps/421
https://www.charitywatch.org/ratings-and-metrics/one-acre-fund/720
https://www.charitywatch.org/ratings-and-metrics/operation-usa/422
https://www.charitywatch.org/ratings-and-metrics/opportunity-international/423
https://www.charitywatch.org/ratings-and-metrics/oxfam-america/424
https://www.charitywatch.org/ratings-and-metrics/partners-in-health/425
https://www.charitywatch.org/ratings-and-metrics/project-concern-international/427
https://www.charitywatch.org/ratings-and-metrics/project-hope/428
https://www.charitywatch.org/ratings-and-metrics/rotary-foundation-of-rotary-international/430
https://www.charitywatch.org/ratings-and-metrics/samaritans-purse/432
https://www.charitywatch.org/ratings-and-metrics/save-the-children/175
https://www.charitywatch.org/ratings-and-metrics/seva-foundation/435
https://www.charitywatch.org/ratings-and-metrics/team-rubicon/758
https://www.charitywatch.org/ratings-and-metrics/technoserve/436
https://www.charitywatch.org/ratings-and-metrics/unbound/171
https://www.charitywatch.org/ratings-and-metrics/united-methodist-committee-on-relief/437
https://www.charitywatch.org/ratings-and-metrics/united-states-fund-for-unicef/439
https://www.charitywatch.org/ratings-and-metrics/waterorg/645
https://www.charitywatch.org/ratings-and-metrics/world-vision/176
https://www.charitywatch.org/ratings-and-metrics/american-jewish-committee/444
https://www.charitywatch.org/ratings-and-metrics/american-jewish-joint-distribution-committee/710
https://www.charitywatch.org/ratings-and-metrics/american-jewish-world-service/446
https://www.charitywatch.org/ratings-and-metrics/anti-defamation-league-foundation/447
https://www.charitywatch.org/ratings-and-metrics/bend-the-arc-a-jewish-partnership-for-justice/452
https://www.charitywatch.org/ratings-and-metrics/friends-of-the-israel-defense-forces/712
https://www.charitywatch.org/ratings-and-metrics/hadassah/449
https://www.charitywatch.org/ratings-and-metrics/hias/754
https://www.charitywatch.org/ratings-and-metrics/jewish-national-fund/453
https://www.charitywatch.org/ratings-and-metrics/new-israel-fund/456
https://www.charitywatch.org/ratings-and-metrics/simon-wiesenthal-center/457
https://www.charitywatch.org/ratings-and-metrics/astraea-lesbian-foundation-for-justice/756
https://www.charitywatch.org/ratings-and-metrics/trevor-project/727
https://www.charitywatch.org/ratings-and-metrics/proliteracy-worldwide/458
https://www.charitywatch.org/ratings-and-metrics/alzheimers-association-national-office/461
https://www.charitywatch.org/ratings-and-metrics/american-foundation-for-suicide-prevention/464
https://www.charitywatch.org/ratings-and-metrics/arc-of-the-united-states-national-office/465
https://www.charitywatch.org/ratings-and-metrics/brain-behavior-research-foundation/468
https://www.charitywatch.org/ratings-and-metrics/mental-health-america/469
https://www.charitywatch.org/ratings-and-metrics/nami/470
https://www.charitywatch.org/ratings-and-metrics/trevor-project/727
https://www.charitywatch.org/ratings-and-metrics/afs-usa/472
https://www.charitywatch.org/ratings-and-metrics/clinton-foundation/478
https://www.charitywatch.org/ratings-and-metrics/international-peace-institute/474
https://www.charitywatch.org/ratings-and-metrics/physicians-for-social-responsibility-national-office/475
https://www.charitywatch.org/ratings-and-metrics/brookings-institution/489
https://www.charitywatch.org/ratings-and-metrics/common-cause-education-fund/492
https://www.charitywatch.org/ratings-and-metrics/government-accountability-project-gap/682
https://www.charitywatch.org/ratings-and-metrics/american-refugee-committee/392
https://www.charitywatch.org/ratings-and-metrics/center-for-reproductive-rights/2
https://www.charitywatch.org/ratings-and-metrics/engenderhealth/3
https://www.charitywatch.org/ratings-and-metrics/fistula-foundation/592
https://www.charitywatch.org/ratings-and-metrics/friends-of-unfpa/480
https://www.charitywatch.org/ratings-and-metrics/guttmacher-institute/5
https://www.charitywatch.org/ratings-and-metrics/international-planned-parenthood-federation-western-hemisphere/6
https://www.charitywatch.org/ratings-and-metrics/pai/483
https://www.charitywatch.org/ratings-and-metrics/pathfinder-international/11
https://www.charitywatch.org/ratings-and-metrics/pci-media-impact/482
https://www.charitywatch.org/ratings-and-metrics/planned-parenthood-federation-of-america/13
https://www.charitywatch.org/ratings-and-metrics/population-connection/484
https://www.charitywatch.org/ratings-and-metrics/population-council/485
https://www.charitywatch.org/ratings-and-metrics/population-services-international/486
https://www.charitywatch.org/ratings-and-metrics/meals-on-wheels-america-national-office/733
https://www.charitywatch.org/ratings-and-metrics/national-council-on-aging/503
https://www.charitywatch.org/ratings-and-metrics/unbound/171
https://www.charitywatch.org/ratings-and-metrics/compassion-choices/508
https://www.charitywatch.org/ratings-and-metrics/give-kids-the-world/509
https://www.charitywatch.org/ratings-and-metrics/starlight-childrens-foundation-national-office/514
https://www.charitywatch.org/ratings-and-metrics/sunshine-foundation-national-office/515
https://www.charitywatch.org/ratings-and-metrics/armed-services-ymca-of-the-usa/524
https://www.charitywatch.org/ratings-and-metrics/bob-woodruff-family-foundation/713
https://www.charitywatch.org/ratings-and-metrics/fisher-house-foundation/531
https://www.charitywatch.org/ratings-and-metrics/gary-sinise-foundation/745
https://www.charitywatch.org/ratings-and-metrics/guide-dog-foundation-for-the-blind/93
https://www.charitywatch.org/ratings-and-metrics/homes-for-our-troops/535
https://www.charitywatch.org/ratings-and-metrics/hope-for-the-warriors/755
https://www.charitywatch.org/ratings-and-metrics/intrepid-fallen-heroes-fund/537
https://www.charitywatch.org/ratings-and-metrics/national-military-family-association/540
https://www.charitywatch.org/ratings-and-metrics/navy-marine-corps-relief-society/545
https://www.charitywatch.org/ratings-and-metrics/operation-homefront/547
https://www.charitywatch.org/ratings-and-metrics/semper-fi-fund/536
https://www.charitywatch.org/ratings-and-metrics/team-rubicon/758
https://www.charitywatch.org/ratings-and-metrics/tragedy-assistance-program-for-survivors-taps/638
https://www.charitywatch.org/ratings-and-metrics/wounded-warriors-family-support/750
https://www.charitywatch.org/ratings-and-metrics/breast-cancer-prevention-partners/114
https://www.charitywatch.org/ratings-and-metrics/breast-cancer-research-foundation/117
https://www.charitywatch.org/ratings-and-metrics/engenderhealth/3
https://www.charitywatch.org/ratings-and-metrics/fistula-foundation/592
https://www.charitywatch.org/ratings-and-metrics/guttmacher-institute/5
https://www.charitywatch.org/ratings-and-metrics/international-planned-parenthood-federation-western-hemisphere/6
https://www.charitywatch.org/ratings-and-metrics/national-breast-cancer-coalition-fund/139
https://www.charitywatch.org/ratings-and-metrics/planned-parenthood-federation-of-america/13
https://www.charitywatch.org/ratings-and-metrics/astraea-lesbian-foundation-for-justice/756
https://www.charitywatch.org/ratings-and-metrics/center-for-reproductive-rights/2
https://www.charitywatch.org/ratings-and-metrics/global-fund-for-women/561
https://www.charitywatch.org/ratings-and-metrics/guttmacher-institute/5
https://www.charitywatch.org/ratings-and-metrics/women-for-women-international-us/565
https://www.charitywatch.org/ratings-and-metrics/big-brothers-big-sisters-of-america-national-office/567
https://www.charitywatch.org/ratings-and-metrics/boy-scouts-of-america-national-office/568
https://www.charitywatch.org/ratings-and-metrics/boys-girls-clubs-of-america-national-office/569
https://www.charitywatch.org/ratings-and-metrics/camp-fire-national-headquarters/570
https://www.charitywatch.org/ratings-and-metrics/donorschooseorg/706
https://www.charitywatch.org/ratings-and-metrics/girls-incorporated-national-office/573
https://www.charitywatch.org/ratings-and-metrics/junior-achievement-usa-national-office/574
https://www.charitywatch.org/ratings-and-metrics/scholarship-america/576
https://www.charitywatch.org/ratings-and-metrics/cedars/580
https://www.charitywatch.org/ratings-and-metrics/covenant-house/582
https://www.charitywatch.org/ratings-and-metrics/sos-childrens-villages-usa/584
In [65]:
results
Out[65]:
{'AFS-USA': '$38,000,000\xa0',
'ALS Association (National Office)': '$39,000,000\xa0',
'Accion International': '$43,000,000\xa0',
'Action Against Hunger-USA': '$57,000,000\xa0',
'Action on Smoking and Health': '$2,200,000\xa0',
'ActionAid USA': '$4,800,000\xa0',
'African Wildlife Foundation': '$27,000,000\xa0',
'Africare': '$49,000,000\xa0',
'Alaska Conservation Foundation': '$3,800,000\xa0',
'All Hands Volunteers': '$5,000,000\xa0',
"Alzheimer's Association (National Office)": '$165,000,000\xa0',
'American Bird Conservancy': '$11,000,000\xa0',
'American Brain Tumor Association': '$5,200,000\xa0',
'American Civil Liberties Union (ACLU)': '$42,000,000\xa0',
'American Civil Liberties Union (ACLU) Foundation': '$85,000,000\xa0',
'American Foundation for Suicide Prevention': '$18,000,000\xa0',
'American Humane': '$14,000,000\xa0',
'American Indian College Fund': '$21,000,000\xa0',
'American Jewish Committee': '$47,000,000\xa0',
'American Jewish Joint Distribution Committee': '$328,000,000\xa0',
'American Jewish World Service': '$61,000,000\xa0',
'American Kidney Fund': '$229,000,000\xa0',
'American Liver Foundation': '$8,500,000\xa0',
'American Lung Association (National Office)': '$19,000,000\xa0',
'American Near East Refugee Aid (ANERA)': '$24,000,000\xa0',
'American Red Cross': '$2,660,000,000\xa0',
'American Refugee Committee': '$45,000,000\xa0',
'American Rivers': '$14,000,000\xa0',
'Animal Welfare Institute': '$3,100,000\xa0',
'Anti-Defamation League & Foundation': '$61,000,000\xa0',
'Arbor Day Foundation': '$40,000,000\xa0',
'Arc of the United States (National Office)': '$8,200,000\xa0',
'Armed Services YMCA of the USA': '$16,000,000\xa0',
'Asia Foundation': '$108,000,000\xa0',
'Asia Society': '$31,000,000\xa0',
'Asian American Legal Defense & Education Fund': '$1,600,000\xa0',
'Astraea Lesbian Foundation for Justice': '$7,300,000\xa0',
'Bat Conservation International': '$4,000,000\xa0',
'Bend the Arc - A Jewish Partnership for Justice': '$4,700,000\xa0',
'Best Friends Animal Society': '$72,000,000\xa0',
'Big Brothers/Big Sisters of America (National Office)': '$13,000,000\xa0',
'Bob Woodruff Family Foundation': '$6,400,000\xa0',
"Bowery Residents' Committee": '$71,000,000\xa0',
'Boy Scouts of America (National Office)': '$242,000,000\xa0',
'Boys & Girls Clubs of America (National Office)': '$142,000,000\xa0',
'Brain & Behavior Research Foundation ': '$27,000,000\xa0',
'Breast Cancer Prevention Partners': '$3,000,000\xa0',
'Breast Cancer Research Foundation': '$63,000,000\xa0',
'Brookings Institution': '$102,000,000\xa0',
'CARE USA': '$494,000,000\xa0',
'CEDARS': '$12,000,000\xa0',
'CJ First Candle (National Office)': '$1,100,000\xa0',
'Camp Fire National Headquarters': '$3,000,000\xa0',
'Cancer Research Institute': '$31,000,000\xa0',
'Catholic Relief Services': '$700,000,000\xa0',
'Center for Biological Diversity': '$11,000,000\xa0',
'Center for Community Change': '$21,000,000\xa0',
'Center for Constitutional Rights': '$7,400,000\xa0',
'Center for Reproductive Rights': '$21,000,000\xa0',
'Center for Victims of Torture': '$14,000,000\xa0',
'Child Find of America': '$500,000\xa0',
'ChildFund International': '$211,000,000\xa0',
'Children Incorporated': '$3,900,000\xa0',
'Children International': '$90,000,000\xa0',
"Children's Defense Fund": '$21,000,000\xa0',
"Children's Health Fund": '$12,000,000\xa0',
'Christopher & Dana Reeve Foundation': '$14,000,000\xa0',
'Church World Service': '$77,000,000\xa0',
'City Harvest ': '$28,000,000\xa0',
'City of Hope & Affiliates': '$1,303,000,000\xa0',
'Clinton Foundation': '$242,000,000\xa0',
'Coalition for the Homeless': '$11,000,000\xa0',
'Committee to Protect Journalists': '$5,400,000\xa0',
'Common Cause Education Fund': '$7,300,000\xa0',
'Compassion & Choices': '$15,000,000\xa0',
'Compassion International': '$775,000,000\xa0',
'Concerns of Police Survivors (COPS)': '$3,500,000\xa0',
'Conservation Fund': '$117,000,000\xa0',
'Conservation International Foundation': '$124,000,000\xa0',
'Covenant House': '$155,000,000\xa0',
"Crohn's & Colitis Foundation of America": '$67,000,000\xa0',
'Cystic Fibrosis Foundation': '$202,000,000\xa0',
'Diabetes Action Research and Education Foundation': '$700,000\xa0',
'Diabetes Research Institute Foundation': '$11,000,000\xa0',
'Dian Fossey Gorilla Fund International': '$2,900,000\xa0',
'Direct Relief & Direct Relief Foundation': '$22,000,000\xa0',
'Doctors Without Borders USA': '$296,000,000\xa0',
'DonorsChoose.org': '$78,000,000\xa0',
'Drug Policy Alliance': '$12,000,000\xa0',
'Earth Island Institute': '$11,000,000\xa0',
'Earthjustice': '$43,000,000\xa0',
'Earthworks': '$2,100,000\xa0',
'Elizabeth Glaser Pediatric AIDS Foundation': '$126,000,000\xa0',
'EngenderHealth ': '$54,000,000\xa0',
'Entertainment Industry Foundation': '$55,000,000\xa0',
'Environmental Defense Action Fund': '$9,200,000\xa0',
'Environmental Defense Fund': '$136,000,000\xa0',
'Episcopal Relief & Development': '$19,000,000\xa0',
'FINCA International': '$391,000,000\xa0',
'Feed My Starving Children': '$35,000,000\xa0',
'Feeding America': '$135,000,000\xa0',
'Fisher House Foundation': '$58,000,000\xa0',
'Fistula Foundation': '$7,300,000\xa0',
'Food Bank For New York City': '$44,000,000\xa0',
'Food and Water Watch': '$16,000,000\xa0',
'Fortune Society': '$24,000,000\xa0',
'Foundation for AIDS Research (amfAR)': '$41,000,000\xa0',
'Friends of Animals': '$5,000,000\xa0',
'Friends of UNFPA': '$2,900,000\xa0',
'Friends of the Israel Defense Forces': '$72,000,000\xa0',
'Gary Sinise Foundation': '$12,000,000\xa0',
'Girls Incorporated (National Office)': '$8,900,000\xa0',
'Give Kids the World': '$18,000,000\xa0',
'Global Fund for Women': '$14,000,000\xa0',
'Goodwill Industries International (National Office)': '$32,000,000\xa0',
'Government Accountability Project (GAP)': '$2,800,000\xa0',
'Grameen Foundation USA': '$18,000,000\xa0',
'Guide Dog Foundation for the Blind': '$12,000,000\xa0',
'Guttmacher Institute': '$19,000,000\xa0',
'HIAS': '$36,000,000\xa0',
'Habitat for Humanity International (National Office)': '$211,000,000\xa0',
'Hadassah': '$695,000,000\xa0',
'HealthRight International ': '$2,100,000\xa0',
'Hearing Health Foundation': '$3,000,000\xa0',
'Helen Keller International': '$69,000,000\xa0',
'Hispanic Scholarship Fund': '$46,000,000\xa0',
'Homes for Our Troops': '$17,000,000\xa0',
'Hope For The Warriors': '$5,200,000\xa0',
'Human Rights First ': '$14,000,000\xa0',
'Human Rights Watch': '$73,000,000\xa0',
'Humane Farming Association': '$2,600,000\xa0',
'Hunger Project': '$18,000,000\xa0',
"Huntington's Disease Society of America": '$7,800,000\xa0',
'Innocence Project': '$11,000,000\xa0',
'International Medical Corps': '$203,000,000\xa0',
'International Peace Institute': '$11,000,000\xa0',
'International Planned Parenthood Federation-Western Hemisphere': '$26,000,000\xa0',
'International Rescue Committee': '$659,000,000\xa0',
'Intrepid Fallen Heroes Fund': '$6,000,000\xa0',
'Izaak Walton League of America': '$2,600,000\xa0',
'JDRF International': '$189,000,000\xa0',
'Jane Goodall Institute': '$11,000,000\xa0',
'Japan Society': '$19,000,000\xa0',
'Jewish National Fund': '$71,000,000\xa0',
'Junior Achievement USA (National Office)': '$20,000,000\xa0',
'Keep America Beautiful (National Office)': '$8,000,000\xa0',
'LatinoJustice PRLDEF': '$3,000,000\xa0',
'Leukemia & Lymphoma Society': '$329,000,000\xa0',
'Lutheran World Relief': '$38,000,000\xa0',
'MAP International': '$10,000,000\xa0',
'Marine Mammal Center': '$7,500,000\xa0',
'Marine Toys for Tots Foundation': '$51,000,000\xa0',
'Meals on Wheels America (National Office)': '$6,200,000\xa0',
'Medical Teams International': '$24,000,000\xa0',
'Memorial Sloan Kettering Cancer Center': '$3,505,000,000\xa0',
'Mennonite Central Committee U.S.': '$27,000,000\xa0',
'Mental Health America': '$3,400,000\xa0',
'Mercy Corps': '$429,000,000\xa0',
"Michael J. Fox Foundation for Parkinson's Research": '$84,000,000\xa0',
'Multiple Myeloma Research Foundation': '$30,000,000\xa0',
'NAACP Legal Defense and Educational Fund': '$15,000,000\xa0',
'NAMI ': '$11,000,000\xa0',
'National Alliance to End Homelessness': '$4,000,000\xa0',
'National Audubon Society': '$92,000,000\xa0',
'National Breast Cancer Coalition Fund': '$3,700,000\xa0',
'National Council on Aging': '$46,000,000\xa0',
'National Federation of the Blind': '$27,000,000\xa0',
'National Hemophilia Foundation (National Office)': '$18,000,000\xa0',
'National Jewish Health': '$241,000,000\xa0',
'National Kidney Foundation': '$35,000,000\xa0',
'National Military Family Association': '$5,100,000\xa0',
'National Park Trust': '$1,800,000\xa0',
'National Psoriasis Foundation': '$11,000,000\xa0',
'National Rifle Association (NRA) Foundation': '$45,000,000\xa0',
'National Urban League (National Office)': '$50,000,000\xa0',
'National Wildlife Federation': '$56,000,000\xa0',
'Natural Resources Defense Council': '$125,000,000\xa0',
'Nature Conservancy': '$737,000,000\xa0',
'Navy-Marine Corps Relief Society': '$28,000,000\xa0',
'New Israel Fund': '$31,000,000\xa0',
'One Acre Fund': '$37,000,000\xa0',
'Operation Homefront': '$21,000,000\xa0',
'Operation USA': '$1,900,000\xa0',
'Opportunity International': '$131,000,000\xa0',
'Ovarian Cancer Research Fund Alliance': '$8,200,000\xa0',
'Oxfam-America': '$81,000,000\xa0',
'PAI': '$7,300,000\xa0',
'PCI-Media Impact': '$5,000,000\xa0',
'PKD Foundation': '$6,400,000\xa0',
'Pancreatic Cancer Action Network': '$25,000,000\xa0',
"Parkinson's Foundation (pre-merger, National Parkinson Foundation)": '$13,000,000\xa0',
"Parkinson's Foundation (pre-merger, Parkinson's Disease Foundation)": '$9,800,000\xa0',
'Partners In Health': '$143,000,000\xa0',
'Partnership for Drug-Free Kids': '$7,000,000\xa0',
'Partnership for a Healthier America': '$10,000,000\xa0',
'Pathfinder International': '$132,000,000\xa0',
'Pearl S. Buck International': '$2,100,000\xa0',
'Performing Animal Welfare Society': '$3,200,000\xa0',
'PetSmart Charities': '$46,000,000\xa0',
'Physicians for Social Responsibility (National Office)': '$1,600,000\xa0',
'Planned Parenthood Federation of America': '$199,000,000\xa0',
'Population Connection': '$7,600,000\xa0',
'Population Council': '$87,000,000\xa0',
'Population Services International': '$542,000,000\xa0',
'Prevent Blindness': '$11,000,000\xa0',
'Prevent Cancer Foundation': '$6,000,000\xa0',
'Prevent Child Abuse America (National Office)': '$4,500,000\xa0',
'ProLiteracy Worldwide': '$8,500,000\xa0',
'Project Concern International': '$50,000,000\xa0',
'Project HOPE': '$45,000,000\xa0',
'Prostate Cancer Foundation': '$43,000,000\xa0',
'Public Citizen Foundation': '$10,000,000\xa0',
'Rainforest Action Network': '$5,300,000\xa0',
'Rainforest Alliance': '$47,000,000\xa0',
'RedRover': '$2,200,000\xa0',
'Ronald McDonald House Charities (National Office)': '$41,000,000\xa0',
'Rotary Foundation of Rotary International': '$266,000,000\xa0',
"SOS Children's Villages - USA": '$11,000,000\xa0',
"Samaritan's Purse": '$297,000,000\xa0',
'Save the Children': '$559,000,000\xa0',
'Scholarship America': '$128,000,000\xa0',
'Semper Fi Fund': '$28,000,000\xa0',
'Seva Foundation': '$5,900,000\xa0',
'Sierra Club Foundation': '$63,000,000\xa0',
'Simon Wiesenthal Center': '$27,000,000\xa0',
"Starlight Children's Foundation (National Office)": '$4,900,000\xa0',
'Sunshine Foundation (National Office)': '$1,100,000\xa0',
'Team Rubicon': '$6,700,000\xa0',
'TechnoServe': '$77,000,000\xa0',
'The Y (National Office)': '$101,000,000\xa0',
'Tragedy Assistance Program for Survivors (TAPS)': '$9,400,000\xa0',
'Trevor Project': '$5,100,000\xa0',
'Trout Unlimited (National Office)': '$49,000,000\xa0',
'Trust for Public Land': '$119,000,000\xa0',
'Unbound': '$122,000,000\xa0',
'Union of Concerned Scientists': '$28,000,000\xa0',
'United Methodist Committee on Relief': '$47,000,000\xa0',
'United States Fund for UNICEF': '$420,000,000\xa0',
'Water.org': '$13,000,000\xa0',
'Waterkeeper Alliance': '$11,000,000\xa0',
'Wilderness Society': '$28,000,000\xa0',
'Wildlife Conservation Society': '$244,000,000\xa0',
'Women for Women International U.S.': '$22,000,000\xa0',
'World Resources Institute': '$90,000,000\xa0',
'World Vision': '$664,000,000\xa0',
'Wounded Warriors Family Support': '$3,000,000\xa0',
'Yosemite Conservancy': '$15,000,000\xa0',
'charity: water': '$36,000,000\xa0'}
In [ ]:
results.
In [66]:
pd.DataFrame(results)
---------------------------------------------------------------------------
ValueError Traceback (most recent call last)
<ipython-input-66-df31c4a743a0> in <module>()
----> 1 pd.DataFrame(results)
/Users/xiaolichen/anaconda/lib/python3.6/site-packages/pandas/core/frame.py in __init__(self, data, index, columns, dtype, copy)
264 dtype=dtype, copy=copy)
265 elif isinstance(data, dict):
--> 266 mgr = self._init_dict(data, index, columns, dtype=dtype)
267 elif isinstance(data, ma.MaskedArray):
268 import numpy.ma.mrecords as mrecords
/Users/xiaolichen/anaconda/lib/python3.6/site-packages/pandas/core/frame.py in _init_dict(self, data, index, columns, dtype)
400 arrays = [data[k] for k in keys]
401
--> 402 return _arrays_to_mgr(arrays, data_names, index, columns, dtype=dtype)
403
404 def _init_ndarray(self, values, index, columns, dtype=None, copy=False):
/Users/xiaolichen/anaconda/lib/python3.6/site-packages/pandas/core/frame.py in _arrays_to_mgr(arrays, arr_names, index, columns, dtype)
5396 # figure out the index, if necessary
5397 if index is None:
-> 5398 index = extract_index(arrays)
5399 else:
5400 index = _ensure_index(index)
/Users/xiaolichen/anaconda/lib/python3.6/site-packages/pandas/core/frame.py in extract_index(data)
5435
5436 if not indexes and not raw_lengths:
-> 5437 raise ValueError('If using all scalar values, you must pass'
5438 ' an index')
5439
ValueError: If using all scalar values, you must pass an index
In [ ]:
Content source: xiaoli-chen/Godel
Similar notebooks: