Spaces:
Running on CPU Upgrade
Running on CPU Upgrade
File size: 11,138 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 | #!/usr/bin/env python3
"""
Organize meetings and contacts data by state for HuggingFace.
Structure:
- data/gold/states/{STATE}/meetings.parquet
- data/gold/states/{STATE}/contacts_local_officials.parquet
- data/gold/states/{STATE}/contacts_meeting_attendance.parquet
"""
import shutil
from pathlib import Path
import pandas as pd
from loguru import logger
# State name to abbreviation mapping
STATE_ABBREV = {
'Alabama': 'AL', 'Alaska': 'AK', 'Arizona': 'AZ', 'Arkansas': 'AR',
'California': 'CA', 'Colorado': 'CO', 'Connecticut': 'CT', 'Delaware': 'DE',
'Florida': 'FL', 'Georgia': 'GA', 'Hawaii': 'HI', 'Idaho': 'ID',
'Illinois': 'IL', 'Indiana': 'IN', 'Iowa': 'IA', 'Kansas': 'KS',
'Kentucky': 'KY', 'Louisiana': 'LA', 'Maine': 'ME', 'Maryland': 'MD',
'Massachusetts': 'MA', 'Michigan': 'MI', 'Minnesota': 'MN', 'Mississippi': 'MS',
'Missouri': 'MO', 'Montana': 'MT', 'Nebraska': 'NE', 'Nevada': 'NV',
'New Hampshire': 'NH', 'New Jersey': 'NJ', 'New Mexico': 'NM', 'New York': 'NY',
'North Carolina': 'NC', 'North Dakota': 'ND', 'Ohio': 'OH', 'Oklahoma': 'OK',
'Oregon': 'OR', 'Pennsylvania': 'PA', 'Rhode Island': 'RI', 'South Carolina': 'SC',
'South Dakota': 'SD', 'Tennessee': 'TN', 'Texas': 'TX', 'Utah': 'UT',
'Vermont': 'VT', 'Virginia': 'VA', 'Washington': 'WA', 'West Virginia': 'WV',
'Wisconsin': 'WI', 'Wyoming': 'WY',
'District of Columbia': 'DC', 'Puerto Rico': 'PR'
}
def load_all_meetings() -> pd.DataFrame:
"""Load and consolidate all meeting data from cache."""
logger.info("π Loading all meeting data from cache...")
cache_dir = Path("data/cache/localview")
meeting_files = sorted(cache_dir.glob("meetings.*.parquet"))
if not meeting_files:
logger.error(f"No meeting files found in {cache_dir}")
return pd.DataFrame()
logger.info(f" Found {len(meeting_files)} year files (2006-2023)")
dfs = []
total_rows = 0
for file in meeting_files:
year = file.stem.split('.')[1]
df = pd.read_parquet(file)
dfs.append(df)
total_rows += len(df)
logger.info(f" {year}: {len(df):,} meetings")
combined_df = pd.concat(dfs, ignore_index=True)
logger.success(f" β
Loaded {total_rows:,} total meetings")
return combined_df
def add_state_code(df: pd.DataFrame) -> pd.DataFrame:
"""Add state abbreviation column."""
logger.info("πΊοΈ Mapping state names to abbreviations...")
if 'state_name' not in df.columns:
logger.error("No 'state_name' column found!")
return df
df['state'] = df['state_name'].map(STATE_ABBREV)
# Check for unmapped states
unmapped = df[df['state'].isna()]['state_name'].unique()
if len(unmapped) > 0:
logger.warning(f" β οΈ Unmapped states: {unmapped}")
# Drop rows with no state mapping
before = len(df)
df = df.dropna(subset=['state'])
after = len(df)
if before > after:
logger.warning(f" Dropped {before - after:,} rows with unmapped states")
logger.success(f" β
Mapped {len(df):,} meetings to state codes")
return df
def split_meetings_by_state(df: pd.DataFrame, output_dir: Path):
"""Split meetings into state directories."""
logger.info("\nπ Splitting meetings by state...")
states = sorted(df['state'].unique())
logger.info(f" Found {len(states)} states with meeting data")
total_size = 0
state_counts = {}
for state in states:
state_df = df[df['state'] == state]
# Create state directory
state_dir = output_dir / state
state_dir.mkdir(parents=True, exist_ok=True)
# Save meetings
output_file = state_dir / "meetings.parquet"
state_df.to_parquet(output_file, index=False, compression='snappy')
size = output_file.stat().st_size
total_size += size
state_counts[state] = len(state_df)
logger.info(f" β
{state}: {len(state_df):,} meetings β {output_file.relative_to(output_dir.parent)} ({size / 1024 / 1024:.1f} MB)")
logger.success(f" π¦ Total: {len(states)} states, {total_size / 1024 / 1024:.1f} MB")
return state_counts
def create_national_meetings(df: pd.DataFrame, output_dir: Path):
"""Create consolidated national meetings file."""
logger.info("\nπ Creating national meetings file...")
national_dir = output_dir / "national"
national_dir.mkdir(parents=True, exist_ok=True)
output_file = national_dir / "meetings.parquet"
df.to_parquet(output_file, index=False, compression='snappy')
size = output_file.stat().st_size
logger.success(f" β
Created {output_file.relative_to(output_dir.parent)} ({size / 1024 / 1024:.1f} MB)")
logger.info(f" {len(df):,} total meetings from {len(df['state'].unique())} states")
def update_readmes(output_dir: Path, state_counts: dict):
"""Update README files with meetings information."""
logger.info("\nπ Updating README files...")
# Update national README
national_readme = output_dir / "national" / "README.md"
if national_readme.exists():
content = national_readme.read_text()
# Add meetings section if not present
if "meetings.parquet" not in content:
addition = """
## Meetings Data
- **meetings.parquet** - 153K+ government meeting transcripts (2006-2023)
- City council meetings, county board meetings, etc.
- Columns: state, jurisdiction, meeting_date, transcript, demographics, etc.
- Source: LocalView project
"""
# Insert before the Example section
if "## Example" in content:
content = content.replace("## Example", addition + "\n## Example")
else:
content += addition
national_readme.write_text(content)
logger.success(f" β
Updated {national_readme.relative_to(output_dir.parent)}")
# Update states README
states_readme = output_dir / "states" / "README.md"
if states_readme.exists():
content = states_readme.read_text()
# Add meetings to structure if not present
if "meetings.parquet" not in content:
# Find the structure section and add meetings
content = content.replace(
"β βββ nonprofits_programs.parquet",
"""β βββ nonprofits_programs.parquet
β βββ meetings.parquet"""
)
# Add to datasets section
datasets_addition = """
5. **meetings.parquet** - Government meeting transcripts (where available)
"""
if "## π Datasets" in content:
content = content.replace(
"4. **nonprofits_programs.parquet**",
"4. **nonprofits_programs.parquet**" + datasets_addition
)
states_readme.write_text(content)
logger.success(f" β
Updated {states_readme.relative_to(output_dir.parent)}")
# Create meetings-specific README
meetings_readme = output_dir / "states" / "MEETINGS_README.md"
# Build state coverage table
top_states = sorted(state_counts.items(), key=lambda x: x[1], reverse=True)[:20]
state_table = "\n".join([f"| {state} | {count:,} |" for state, count in top_states])
meetings_readme.write_text(f"""# Government Meetings Data by State
Local government meeting transcripts from the LocalView project (2006-2023).
## Coverage
**Total:** 153,000+ meetings across {len(state_counts)} states
**Top 20 States by Meeting Count:**
| State | Meetings |
|-------|----------|
{state_table}
## Data Structure
Each state directory contains:
- `meetings.parquet` - Meeting transcripts for that state
## Columns
- **state** - State abbreviation
- **state_name** - Full state name
- **place_name** - City/jurisdiction name
- **meeting_date** - Date of meeting
- **caption_text** - Full meeting transcript
- **channel_title** - Government channel (e.g., "City Council")
- **vid_upload_date** - When video was uploaded
- **Demographics** - Census data (acs_18_* columns)
- And more...
## Usage Examples
### Load meetings for a single state
```python
import pandas as pd
# California meetings
ca_meetings = pd.read_parquet('states/CA/meetings.parquet')
print(f"California meetings: {{len(ca_meetings):,}}")
print(f"Jurisdictions: {{ca_meetings['place_name'].nunique()}}")
```
### Search across multiple states
```python
import pandas as pd
import glob
# Load West Coast meetings
states = ['CA', 'OR', 'WA']
dfs = [pd.read_parquet(f'states/{{s}}/meetings.parquet') for s in states]
west_coast = pd.concat(dfs)
# Search for topic
dental_meetings = west_coast[
west_coast['caption_text'].str.contains('dental|oral health', case=False, na=False)
]
print(f"Found {{len(dental_meetings)}} meetings mentioning oral health")
```
### Load national dataset
```python
import pandas as pd
# All meetings in one file
all_meetings = pd.read_parquet('national/meetings.parquet')
print(f"Total meetings: {{len(all_meetings):,}}")
print(f"Date range: {{all_meetings['meeting_date'].min()}} to {{all_meetings['meeting_date'].max()}}")
```
## Data Source
LocalView project - automated scraping of government meeting videos and transcripts from municipal YouTube channels.
**Years:** 2006-2023
**Coverage:** 153K+ meetings
**States:** {len(state_counts)} states with data
## Notes
- Not all states have equal coverage (depends on jurisdictions publishing to YouTube)
- Transcript quality varies by jurisdiction's captioning practices
- Some meetings may have incomplete transcripts
- Demographics linked via Census tract data
""")
logger.success(f" β
Created {meetings_readme.relative_to(output_dir.parent)}")
def main():
"""Main execution."""
logger.info("=" * 70)
logger.info("π Organizing meetings data by state for HuggingFace")
logger.info("=" * 70)
output_dir = Path("data/gold")
# Load all meetings
df = load_all_meetings()
if df.empty:
logger.error("No meeting data found. Exiting.")
return
# Add state codes
df = add_state_code(df)
# Split by state
state_counts = split_meetings_by_state(df, output_dir / "states")
# Create national file
create_national_meetings(df, output_dir)
# Update READMEs
update_readmes(output_dir, state_counts)
# Summary
logger.info("\n" + "=" * 70)
logger.success("β
COMPLETE: Meetings data organized by state")
logger.info("=" * 70)
logger.info(f"\nπ Structure:")
logger.info(f" data/gold/national/meetings.parquet - All {len(df):,} meetings")
logger.info(f" data/gold/states/{{STATE}}/meetings.parquet - State-specific")
logger.info(f"\nπ Coverage: {len(state_counts)} states")
logger.info(f" Top states: {', '.join(sorted(state_counts.keys())[:10])}")
if __name__ == "__main__":
main()
|