File size: 1,455 Bytes
61d29fc
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
# IRS Nonprofit Data Scripts

Scripts for working with IRS Tax Exempt Organization data (Form 990).

## Data Source

- **Website**: https://www.irs.gov/charities-non-profits
- **Form 990 Data**: https://www.irs.gov/charities-non-profits/form-990-series-downloads
- **Business Master File**: https://www.irs.gov/charities-non-profits/exempt-organizations-business-master-file-extract-eo-bmf
- **Coverage**: 1.8M+ tax-exempt organizations
- **Data Types**: Financials, officers, governance, programs

## Scripts

- `irs_bmf_ingestion.py` - Ingest IRS Business Master File (BMF)
- `create_nonprofit_officer_contacts.py` - Extract officer contacts from Form 990
- `manage_nonprofits.py` - Manage nonprofit organization data

## Key Data

### Business Master File (BMF)
- Organization name, EIN
- Address, ruling date
- NTEE classification
- Deductibility status

### Form 990
- Revenue, expenses, assets
- Officer compensation
- Program service accomplishments
- Grants paid

## Related Scripts

See also `scripts/enrichment/` for nonprofit enrichment scripts:
- `enrich_nonprofits_form990.py`
- `enrich_nonprofits_propublica.py`
- `batch_download_990s.py`

## Usage Examples

```bash
# Ingest BMF data
python irs_bmf_ingestion.py --state MA

# Extract officer contacts
python create_nonprofit_officer_contacts.py --state MA

# Manage nonprofit data
python manage_nonprofits.py update --state MA
```

## Data License

IRS public data is in the public domain.