opencivicdata / scrapers-us-municipal

Scrapers for US municipal governments.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Metro: Import oversight committees

hancush opened this issue · comments

There are several new oversight committees that will soon begin to appear on the Metro event calendar. They are of the Independent Taxpayer Oversight Committee body type.

The Metro people scraper only imports regular committees.

for body in self.bodies():
if body['BodyTypeId'] == body_types['Committee']:
organization_name = body['BodyName'].strip()
o = Organization(organization_name,
classification='committee',
parent_id={'name' : 'Board of Directors'})

Update it to also import these new oversight committees.