Spaces:
Running on CPU Upgrade
Running on CPU Upgrade
File size: 14,592 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 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 | # Data Integration Examples
This directory contains working examples and documentation for all major data integrations in the Open Navigator platform.
## π― Available Integrations
### 1. Federal Grant Opportunities (Grants.gov)
**What it does**: Track federal grant opportunities and match them to eligible nonprofits
**Files**:
- `demo_grants_gov.py` - Working demo
- `GRANTS_GOV_VALUE.md` - Data comparison and value proposition
**Quick start**:
```bash
python examples/demo_grants_gov.py
```
**Documentation**: [website/docs/integrations/grants-gov-api.md](../website/docs/integrations/grants-gov-api.md)
**Key value**: Alert nonprofits BEFORE deadlines instead of just showing who got funded AFTER
---
### 2. Political Contributions (FEC)
**What it does**: Track political donations by nonprofit leadership and analyze influence on grant awards
**Files**:
- `demo_political_influence.py` - Working demo
- `POLITICAL_INFLUENCE_INTEGRATION.md` - Complete analysis guide
- `POLITICAL_FINANCE_QUICK_START.md` - Quick start guide
**Quick start**:
```bash
# Get free API key at: https://api.data.gov/signup/
python examples/demo_political_influence.py --api-key YOUR_KEY
```
**Documentation**: [website/docs/integrations/fec-political-contributions.md](../website/docs/integrations/fec-political-contributions.md)
**Key value**: Reveal political-financial connections with full transparency
---
### 3. Complete Data Ecosystem
All integrations work together:
```
ββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
β OPEN NAVIGATOR DATA ECOSYSTEM β
ββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ€
β β
β EXISTING DATA NEW INTEGRATIONS β
β ββββββββββββββ ββββββββββββββββ β
β β
β IRS Form 990 Grants.gov API β
β β’ 3M+ nonprofits βββ> β’ Grant opportunities β
β β’ Officers β’ Deadlines β
β β’ Financials β’ Eligibility β
β β’ Past grants β β
β β β
β Jurisdictions β FEC API β
β β’ 90k+ cities βββββββββββ΄βββ> β’ Political $$$ β
β β’ Meetings β’ Donor networks β
β β’ Contacts β’ Influence β
β β
β UNIQUE VALUE: Complete political-financial picture β
β β’ Who donated β Which campaigns β Grant awards β
β β’ Timeline analysis: Donation β Policy β Funding β
β β’ Transparency through data β
β β
ββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
```
## π Quick Start (5 Minutes)
### Step 1: Get API Keys
**FEC API** (Required for political data):
```
Visit: https://api.data.gov/signup/
Enter email β Receive key instantly
```
**Grants.gov** (No key needed!):
```
Public API - just run the demos
```
### Step 2: Run Demos
```bash
# 1. Federal grant opportunities (no key needed)
python examples/demo_grants_gov.py
# 2. Political contributions (requires FEC key)
python examples/demo_political_influence.py --api-key YOUR_FEC_KEY
```
### Step 3: Review Output
```bash
# Check generated data
ls -lh data/gold/grants/
ls -lh data/gold/fec/
ls -lh data/gold/states/MA/
# View results
python -c "
import pandas as pd
grants = pd.read_parquet('data/gold/grants/oral_health_opportunities.parquet')
print(f'Found {len(grants):,} federal grant opportunities')
print(grants[['opportunityTitle', 'agencyName', 'openDate']].head())
"
```
## π Documentation Guide
### For Quick Reference
Start here:
1. **[POLITICAL_FINANCE_QUICK_START.md](POLITICAL_FINANCE_QUICK_START.md)** - Overview and quick start
2. **[GRANTS_GOV_VALUE.md](GRANTS_GOV_VALUE.md)** - What Grants.gov adds to your data
### For Complete Analysis
Deep dives:
1. **[POLITICAL_INFLUENCE_INTEGRATION.md](POLITICAL_INFLUENCE_INTEGRATION.md)** - Complete political analysis guide
2. **[../website/docs/integrations/grants-gov-api.md](../website/docs/integrations/grants-gov-api.md)** - Full Grants.gov docs
3. **[../website/docs/integrations/fec-political-contributions.md](../website/docs/integrations/fec-political-contributions.md)** - Full FEC docs
### For Implementation
Code references:
1. **[../discovery/grants_gov_integration.py](../discovery/grants_gov_integration.py)** - Grants.gov client
2. **[../discovery/fec_integration.py](../discovery/fec_integration.py)** - FEC client
3. **[../discovery/voter_data_integration.py](../discovery/voter_data_integration.py)** - Voter data client
## π― Use Case Examples
### 1. Grant Opportunity Dashboard
**Goal**: Alert nonprofits about relevant funding
**Implementation**:
```python
from discovery.grants_gov_integration import GrantsGovAPI, GrantMatcher
import pandas as pd
# Find oral health grants
api = GrantsGovAPI()
matcher = GrantMatcher(api)
grants = matcher.find_oral_health_grants(opp_statuses="posted")
# Match to MA nonprofits
nonprofits = pd.read_parquet("data/gold/states/MA/nonprofits_organizations.parquet")
matches = matcher.match_grants_to_state("MA", grants, nonprofits)
# Email alerts
for _, match in matches.iterrows():
send_email(
to=nonprofits[nonprofits['EIN'] == match['ein']]['EMAIL'],
subject=f"NEW Grant: {match['opportunity_title']}",
body=f"Deadline: {match['close_date']}\nAward: {match['award_amount']}"
)
```
### 2. Political Transparency Widget
**Goal**: Show political connections on nonprofit profiles
**Implementation**:
```python
from discovery.fec_integration import OpenFECAPI, PoliticalContributionMatcher
# Load nonprofit officers
officers = pd.read_parquet("data/gold/states/MA/nonprofits_officers.parquet")
# Find their political contributions
api = OpenFECAPI(api_key="your_key")
matcher = PoliticalContributionMatcher(api)
contributions = matcher.find_nonprofit_leadership_contributions(
officers_df=officers,
state_code="MA",
min_amount=200
)
# Display on profile
for ein in nonprofits['EIN'].unique():
org_contributions = contributions[contributions['nonprofit_ein'] == ein]
if len(org_contributions) > 0:
display_political_connections_widget(ein, org_contributions)
```
### 3. Influence Analysis
**Goal**: Research political influence on grant awards
**Implementation**:
```python
# Load all data
grants = pd.read_parquet("data/gold/states/MA/grants_revenue_sources.parquet")
contributions = pd.read_parquet("data/gold/fec/political_contributions.parquet")
# Analyze
influence = matcher.analyze_political_influence(contributions, grants)
# Report
print(f"Politically active orgs: {len(influence):,}")
print(f"Avg grant (politically active): ${influence['total_grants_received'].mean():,.0f}")
print(f"Avg grant (not active): ${nonprofits_without_donations['grants'].mean():,.0f}")
```
## π Data Schema Reference
### Federal Grant Opportunities (Grants.gov)
```python
{
'id': 289999,
'opportunityNumber': 'HRSA-24-123',
'opportunityTitle': 'Oral Health Workforce Development',
'agencyCode': 'HHS-HRSA',
'agencyName': 'Health Resources & Services Administration',
'openDate': '2024-10-15',
'closeDate': '2024-12-31',
'opportunityStatus': 'posted',
'cfdaList': [{'cfdaNumber': '93.224'}],
'fundingCategories': 'HL'
}
```
### Political Contributions (FEC)
```python
{
'contributor_name': 'John Smith',
'contributor_city': 'Boston',
'contributor_state': 'MA',
'contributor_employer': 'MA Dental Health Clinic',
'contributor_occupation': 'Executive Director',
'contribution_receipt_amount': 2500.00,
'contribution_receipt_date': '2024-06-15',
'committee_name': 'Smith for Senate',
'candidate_name': 'Jane Doe'
}
```
### IRS Form 990 (Your Existing Data)
```python
{
'EIN': '12-3456789',
'NAME': 'MA Dental Health Clinic',
'STATE': 'MA',
'NTEE_CD': 'E32', # Dental Clinic
'INCOME_AMT': 2000000,
'ASSET_AMT': 5000000,
'REVENUE_AMT': 2000000
}
```
## π Analysis Examples
### Question 1: Political Influence on Grant Awards?
```python
# Compare nonprofits with/without politically active leadership
politically_active = contributions['nonprofit_ein'].unique()
active_orgs = nonprofits[nonprofits['EIN'].isin(politically_active)]
inactive_orgs = nonprofits[~nonprofits['EIN'].isin(politically_active)]
print(f"With political activity: Avg grant = ${active_orgs['government_grants'].mean():,.0f}")
print(f"Without: Avg grant = ${inactive_orgs['government_grants'].mean():,.0f}")
# Statistical test
from scipy import stats
t_stat, p_value = stats.ttest_ind(
active_orgs['government_grants'].dropna(),
inactive_orgs['government_grants'].dropna()
)
print(f"Statistical significance: p={p_value:.4f}")
```
### Question 2: Which Candidates Get Health Sector Donations?
```python
# Filter to health sector
health_contributions = contributions[
contributions['contributor_employer'].str.contains(
'health|dental|clinic|hospital',
case=False,
na=False
)
]
# Top recipients
top_recipients = health_contributions.groupby('committee_name').agg({
'contribution_amount': 'sum',
'contributor_name': 'count'
}).sort_values('contribution_amount', ascending=False)
print("Top 10 Recipients of Health Sector Donations:")
print(top_recipients.head(10))
```
### Question 3: Grant Opportunity Matching
```python
# Which MA oral health orgs are eligible for current grants?
health_orgs = nonprofits[nonprofits['NTEE_CD'].str.startswith('E', na=False)]
grants = pd.read_parquet("data/gold/grants/oral_health_opportunities.parquet")
matches = matcher.match_grants_to_state("MA", grants, health_orgs)
print(f"{len(matches):,} grant opportunities for {len(health_orgs):,} MA health orgs")
print(f"Total potential funding: ${matches['award_ceiling'].sum():,.0f}")
```
## π οΈ Troubleshooting
### "No API key" Error
**Problem**: FEC API requires authentication
**Solution**:
```bash
# Get free key at: https://api.data.gov/signup/
python examples/demo_political_influence.py --api-key YOUR_KEY
# Or use DEMO_KEY for testing (limited to 30 requests/hour)
python examples/demo_political_influence.py --api-key DEMO_KEY
```
### "File not found" Error
**Problem**: Data files haven't been generated yet
**Solution**:
```bash
# Run demos to generate data first
python examples/demo_grants_gov.py
python examples/demo_political_influence.py --api-key YOUR_KEY
# Or generate specific state data
python -c "
from discovery.irs_bmf_ingestion import IRSBMFIngestion
bmf = IRSBMFIngestion()
ma_df = bmf.download_state_file('MA')
ma_df.to_parquet('data/gold/states/MA/nonprofits_organizations.parquet')
"
```
### "No results found" Error
**Problem**: Search parameters too restrictive
**Solution**:
```python
# Try broader search
results = api.search_individual_contributions(
contributor_state="MA", # Remove employer filter
min_amount=100, # Lower minimum
per_page=100 # More results
)
# Or try different keywords
grants = api.search_to_dataframe(
keyword="health", # Broader than "oral health"
funding_categories="HL"
)
```
## π Performance Tips
### Rate Limiting
**FEC API**:
- With API key: 1,000 requests/hour
- DEMO_KEY: 30 requests/hour
- Built-in delays: 0.2s between requests
**Grants.gov**:
- No authentication required
- No published rate limits
- Recommended: 0.5s between requests
### Large Data Sets
**Bulk downloads**:
```python
# FEC bulk files are 1-5 GB
# Use filters to reduce memory:
from discovery.fec_integration import FECBulkDataLoader
loader = FECBulkDataLoader()
zip_file = loader.download_individual_contributions(cycle="2024")
# Parse with filters
contributions_df = loader.parse_individual_contributions(
zip_path=zip_file,
state_filter="MA", # Reduce by 98%
employer_filter="health", # Further reduction
min_amount=200 # Only significant donations
)
```
### Caching
```python
# Cache grant opportunities (update daily)
from pathlib import Path
import pandas as pd
from datetime import datetime, timedelta
cache_file = Path("data/cache/grants_cache.parquet")
if cache_file.exists():
cache_age = datetime.now() - datetime.fromtimestamp(cache_file.stat().st_mtime)
if cache_age < timedelta(days=1):
# Use cache
grants = pd.read_parquet(cache_file)
else:
# Refresh
grants = fetch_fresh_grants()
grants.to_parquet(cache_file)
else:
grants = fetch_fresh_grants()
grants.to_parquet(cache_file)
```
## π Learning Resources
### API Documentation
- **Grants.gov API**: https://www.grants.gov/api
- **OpenFEC API**: https://api.open.fec.gov/developers/
- **FEC Bulk Data**: https://www.fec.gov/data/browse-data/?tab=bulk-data
### Research & Analysis
- **OpenSecrets.org**: Campaign finance research
- **FollowTheMoney.org**: State-level money tracking
- **USAspending.gov**: Federal spending database
- **ProPublica Nonprofit Explorer**: IRS 990 data
### Related Projects
- **OpenStates**: State legislator data
- **Google Civic API**: Local elected officials
- **MIT Election Lab**: Election results
- **Ballotpedia**: Comprehensive political data
## π― Next Steps
1. **Run the demos** (see Quick Start above)
2. **Review output files** in `data/gold/`
3. **Try analysis examples** (see Analysis Examples above)
4. **Read documentation** (see Documentation Guide above)
5. **Build features** (see Use Case Examples above)
## π Support
- Check documentation in `website/docs/integrations/`
- Review examples in this directory
- Read API documentation linked above
- Check error messages and logs
**You now have everything you need to integrate political finance data into your civic engagement platform!** π
|