Spaces:
Running on CPU Upgrade
Running on CPU Upgrade
File size: 13,406 Bytes
896453f | 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 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 | # π RUNNING DISCOVERY FOR ALL U.S. CITIES AND COUNTIES
**Automated discovery pipeline for 22,000+ jurisdictions nationwide**
---
## π SCALE
**Target Coverage:**
- **3,143 U.S. Counties** (from NACo database)
- **19,000+ Cities** (from U.S. Census Bureau)
- **Total: ~22,000 jurisdictions**
**What Gets Discovered Per Jurisdiction:**
1. Official government website(s)
2. YouTube channels (with subscriber/video counts)
3. Vimeo and other video platforms
4. Meeting platforms (Legistar, SuiteOne, Granicus, etc.)
5. Social media accounts (Facebook, Twitter)
6. Agenda portals and document systems
7. Historical coverage depth
**Output:**
- JSON with complete details
- CSV summary for analysis
- Completeness scores (0-100%)
---
## π QUICK START
### 1. Test with a Single State (Alabama)
```bash
cd /home/developer/projects/open-navigator
# Activate environment
source venv/bin/activate
# Run discovery for all Alabama cities/counties
python discovery/comprehensive_discovery_pipeline.py --state AL
```
**Expected Output:**
```
Starting batch discovery for 67 jurisdictions (Alabama counties)
Discovering: Birmingham, AL (city)
Step 1/6: Finding website
Step 2/6: Finding YouTube channels
...
β Birmingham: 85% complete
β Mobile: 72% complete
β Tuscaloosa: 90% complete
...
DISCOVERY COMPLETE!
Total jurisdictions: 67
Successful: 65 (97%)
Average completeness: 78%
```
### 2. Top 100 U.S. Cities
```bash
# Discover data for top 100 cities by population
python discovery/comprehensive_discovery_pipeline.py --top 100
```
**Use Case:** Get started quickly with major cities
### 3. All Jurisdictions (Full National Scale)
```bash
# Process ALL 22,000+ jurisdictions
python discovery/comprehensive_discovery_pipeline.py --all
# WARNING: This will take 24-48 hours!
# Recommend running on server/cloud instance
```
---
## βοΈ CONFIGURATION OPTIONS
### Rate Limiting
```bash
# Control concurrent requests (prevent rate limiting)
python discovery/comprehensive_discovery_pipeline.py \
--max-concurrent 5 \
--state CA
# Default: 10 concurrent (safe for most networks)
# Lower to 5 for slower connections
# Increase to 20 if you have fast connection + server
```
### YouTube API Key (Recommended)
```bash
# Get free API key: https://console.cloud.google.com/
# Set environment variable
export YOUTUBE_API_KEY="AIza..."
# Or pass directly
python discovery/comprehensive_discovery_pipeline.py \
--youtube-api-key "AIza..." \
--state AL
```
**Why Use API Key:**
- β
Accurate video counts
- β
Exact subscriber numbers
- β
View counts, upload dates
- β
Channel verification status
- π FREE (10,000 units/day = ~3,000 channels)
**Without API Key:**
- β οΈ HTML scraping (less accurate)
- β οΈ Approximate statistics
- β
Still finds all channels
---
## π OUTPUT FILES
### File Locations
```
data/bronze/discovered_sources/
βββ discovery_results_batch_100_20260422_143022.json # Detailed results
βββ discovery_results_final_20260422_150145.json # Final complete
βββ discovery_summary_batch_100_20260422_143022.csv # Summary table
βββ discovery_summary_final_20260422_150145.csv # Final summary
```
### JSON Structure (Detailed)
```json
{
"jurisdiction": {
"name": "Tuscaloosa",
"state_code": "AL",
"type": "city",
"population": 99600
},
"discovery_timestamp": "2026-04-22T14:30:00",
"websites": [
{
"url": "https://www.tuscaloosa.com",
"final_url": "https://www.tuscaloosa.com/",
"status": "active",
"discovery_method": "pattern_match"
}
],
"youtube_channels": [
{
"channel_url": "https://www.youtube.com/@TuscaloosaCityAL",
"channel_id": "UCxxx",
"channel_title": "City of Tuscaloosa",
"video_count": 245,
"subscriber_count": 382,
"view_count": 50000,
"discovery_method": "pattern_match"
}
],
"meeting_platforms": [
{
"type": "suiteone",
"url": "https://tuscaloosaal.suiteonemedia.com",
"method": "url_test"
}
],
"agenda_portals": [
{
"url": "https://tuscaloosaal.suiteonemedia.com/Web/Home.aspx",
"link_text": "agendas and synopses",
"discovery_method": "homepage_scrape"
}
],
"social_media": {
"facebook": ["https://www.facebook.com/163854056994765"],
"twitter": ["https://x.com/tuscaloosacity"],
"vimeo": ["https://vimeo.com/tuscaloosacity"]
},
"completeness_score": 0.90,
"status": "success"
}
```
### CSV Structure (Summary)
```csv
name,state,type,population,website,youtube_channels,meeting_platforms,agenda_portals,completeness,status
Tuscaloosa,AL,city,99600,https://www.tuscaloosa.com,2,1,1,0.90,success
Birmingham,AL,city,200733,https://www.birminghamal.gov,1,1,0,0.75,success
Mobile,AL,city,187041,https://www.cityofmobile.org,1,2,1,0.85,success
...
```
---
## π EXAMPLE: Alabama Discovery
Let's run discovery for all Alabama jurisdictions and analyze results:
### Step 1: Run Discovery
```bash
source venv/bin/activate
# Discover all Alabama cities and counties
python discovery/comprehensive_discovery_pipeline.py --state AL \
--youtube-api-key "$YOUTUBE_API_KEY"
```
### Step 2: Analyze Results
```python
import pandas as pd
# Load results
df = pd.read_csv('data/bronze/discovered_sources/discovery_summary_final_20260422.csv')
# Alabama statistics
al_data = df[df['state'] == 'AL']
print(f"Alabama Jurisdictions: {len(al_data)}")
print(f"With websites: {(al_data['website'] != '').sum()}")
print(f"With YouTube: {(al_data['youtube_channels'] > 0).sum()}")
print(f"With agendas: {(al_data['agenda_portals'] > 0).sum()}")
print(f"Average completeness: {al_data['completeness'].mean():.1%}")
# Top performing cities
top_al = al_data.nlargest(10, 'completeness')
print("\nTop 10 Alabama cities by data completeness:")
print(top_al[['name', 'youtube_channels', 'meeting_platforms', 'completeness']])
```
**Expected Output:**
```
Alabama Jurisdictions: 67
With websites: 64 (96%)
With YouTube: 18 (27%)
With agendas: 42 (63%)
Average completeness: 71%
Top 10 Alabama cities by data completeness:
name youtube_channels meeting_platforms completeness
0 Tuscaloosa 2 1 0.90
1 Birmingham 1 1 0.85
2 Mobile 1 2 0.85
3 Montgomery 1 1 0.80
...
```
---
## π― RECOMMENDED STRATEGY
### Phase 1: Test (1 Day)
```bash
# Test with your home state
python discovery/comprehensive_discovery_pipeline.py --state AL
# Review results, adjust parameters
# Check completeness scores
```
### Phase 2: Major Cities (1 Week)
```bash
# Top 100 cities (80% of population)
python discovery/comprehensive_discovery_pipeline.py --top 100
# Top 500 cities
python discovery/comprehensive_discovery_pipeline.py --top 500
```
### Phase 3: Regional (1 Month)
```bash
# Process by region to distribute load
# South
python discovery/comprehensive_discovery_pipeline.py --states AL,GA,FL,SC,NC
# Midwest
python discovery/comprehensive_discovery_pipeline.py --states IL,IN,OH,MI,WI
# West
python discovery/comprehensive_discovery_pipeline.py --states CA,WA,OR,AZ,NV
# Northeast
python discovery/comprehensive_discovery_pipeline.py --states NY,NJ,PA,MA,CT
```
### Phase 4: Complete National (1-2 Months)
```bash
# Full 22,000+ jurisdictions
python discovery/comprehensive_discovery_pipeline.py --all
# Run on cloud server (AWS, GCP, Azure)
# Estimated time: 24-48 hours
# Cost: ~$20-50 (if using cloud compute)
```
---
## β‘ PERFORMANCE OPTIMIZATION
### For Faster Discovery
**1. Use Cloud Server**
```bash
# AWS EC2 t3.medium or larger
# Better network = faster requests
# Can increase --max-concurrent to 20-50
```
**2. Parallel State Processing**
```bash
# Run multiple states in parallel on different terminals
# Terminal 1
python discovery/comprehensive_discovery_pipeline.py --state AL
# Terminal 2
python discovery/comprehensive_discovery_pipeline.py --state GA
# Terminal 3
python discovery/comprehensive_discovery_pipeline.py --state FL
```
**3. YouTube API Key**
```bash
# ALWAYS use API key for accuracy + speed
export YOUTUBE_API_KEY="your-key-here"
# Without key: 2-3 requests per channel (slower)
# With key: 1 request per channel (faster + accurate)
```
### For Reliability
**1. Auto-Resume**
```python
# The pipeline saves every 100 jurisdictions
# If it crashes, you can resume from last save
# Manual resume:
completed_ids = load_completed_from_csv('discovery_summary_batch_100.csv')
remaining = [j for j in jurisdictions if j['id'] not in completed_ids]
pipeline.discover_batch(remaining)
```
**2. Error Handling**
```python
# Failed jurisdictions are marked status='error'
# Re-run just the failures:
df = pd.read_csv('discovery_summary_final.csv')
failures = df[df['status'] == 'error']
# Extract jurisdiction info and retry
retry_list = failures.to_dict('records')
pipeline.discover_batch(retry_list)
```
---
## π EXPECTED RESULTS (National Scale)
### Coverage Estimates
**Websites:** 85-90% (17,000-19,000)
- Most cities have websites
- Some very small towns may not
**YouTube Channels:** 20-30% (4,000-6,000)
- Larger cities more likely
- Growing trend (30%+ for cities >50k pop)
**Meeting Platforms:**
- **Legistar:** 15-20% (~3,000-4,000)
- **SuiteOne:** 5-10% (~1,000-2,000)
- **Granicus:** 10-15% (~2,000-3,000)
- **Other/Custom:** 30-40% (~6,000-8,000)
**Agenda Portals:** 60-70% (13,000-15,000)
- Required by law in most states
- Varying levels of digitization
**Social Media:** 70-80% (15,000-18,000)
- Facebook most common
- Twitter second
- LinkedIn, Instagram less common for gov
### Completeness by Jurisdiction Size
| Population | Avg Completeness | YouTube | Agendas |
|-----------|------------------|---------|---------|
| 1M+ | 95% | 90% | 95% |
| 500k-1M | 90% | 75% | 90% |
| 100k-500k | 85% | 50% | 85% |
| 50k-100k | 75% | 30% | 75% |
| 10k-50k | 65% | 15% | 65% |
| <10k | 50% | 5% | 50% |
---
## π NEXT STEPS AFTER DISCOVERY
### 1. Analyze Results
```python
# Load all results
df = pd.read_csv('discovery_summary_final.csv')
# Find best sources for oral health research
high_quality = df[df['completeness'] > 0.8]
# Prioritize by population + data quality
df['priority_score'] = df['population'] * df['completeness']
top_targets = df.nlargest(100, 'priority_score')
print("Top 100 jurisdictions for analysis:")
print(top_targets[['name', 'state', 'population', 'completeness']])
```
### 2. Begin Content Scraping
```python
# For each high-priority jurisdiction, scrape actual content
from agents.scraper import ScraperAgent
for _, row in top_targets.iterrows():
# Get their agenda portal URL from discovery results
jurisdiction_data = load_discovery_json(row['name'], row['state'])
if jurisdiction_data['meeting_platforms']:
platform = jurisdiction_data['meeting_platforms'][0]
# Scrape agendas
scraper = ScraperAgent()
docs = await scraper.scrape(
url=platform['url'],
municipality=row['name'],
state=row['state'],
platform=platform['type']
)
```
### 3. Search for Oral Health Content
```python
# Search agenda text for keywords
keywords = [
'fluoride', 'fluoridation', 'water treatment',
'dental', 'oral health', 'tooth decay',
'dental clinic', 'school dental'
]
# Filter to relevant meetings
relevant_docs = []
for doc in all_documents:
doc_text = doc['content'].lower()
if any(kw in doc_text for kw in keywords):
relevant_docs.append(doc)
print(f"Found {len(relevant_docs)} relevant meetings across all jurisdictions")
```
---
## β
SUCCESS METRICS
**After running national discovery, you should have:**
β
**~19,000 government websites** discovered
β
**~5,000 YouTube channels** with statistics
β
**~3,000 Legistar** API endpoints
β
**~10,000 agenda portals** cataloged
β
**~15,000 social media** accounts
β
**Completeness scores** for prioritization
**This gives you complete coverage of where to find oral health policy discussions across the entire United States!**
---
## π TROUBLESHOOTING
### Common Issues
**1. Rate Limiting / Timeouts**
```bash
# Reduce concurrent requests
python discovery/comprehensive_discovery_pipeline.py \
--max-concurrent 3 \
--state AL
```
**2. YouTube API Quota Exceeded**
```
Error: YouTube API quota exceeded
Solution: Wait 24 hours (quota resets daily)
Or: Create additional API keys and rotate
Or: Continue without API key (less accurate stats)
```
**3. Out of Memory**
```bash
# Process in smaller batches
# Instead of --all, do state by state
for state in AL GA FL SC NC; do
python discovery/comprehensive_discovery_pipeline.py --state $state
done
```
---
## π SUPPORT
**Questions?**
- Check logs: `logs/discovery_pipeline.log`
- Review errors in CSV: `status='error'` rows
- Test single jurisdiction first before batch
**Need Help?**
- Create GitHub issue with error details
- Include: state, error message, logs
- Provide sample jurisdiction that failed
---
**Bottom Line:** You can now discover data sources for ALL 22,000+ U.S. cities and counties automatically! Start with Alabama (67 jurisdictions) to test, then scale nationwide. π
|