Skip to content

Instantly share code, notes, and snippets.

@bsmithgall
Created February 5, 2014 05:42
Show Gist options
  • Save bsmithgall/8817994 to your computer and use it in GitHub Desktop.
Save bsmithgall/8817994 to your computer and use it in GitHub Desktop.
Neighboring Districts with Metadata
# get congress members from govtrack api, parse for use in d3 topojson map
import requests
import json
GOVTRACK_MEMBER_LIST_URL = 'https://www.govtrack.us/api/v2/role?current=true&limit=541'
raw_data = requests.get(GOVTRACK_MEMBER_LIST_URL).json()
STATELOOKUP = {'AL': 1,'AK': 2,'AZ': 4,'AR': 5,'CA': 6,'CO': 8,'CT': 9,'DE': 10,'DC': 11,'FL': 12,'GA': 13,'HI': 15,'ID': 16,'IL': 17,'IN': 18,'IA': 19,'KS': 20,'KY': 21,'LA': 22,'ME': 23,'MD': 24,'MA': 25,'MI': 26,'MN': 27,'MS': 28,'MO': 29,'MT': 30,'NE': 31,'NV': 32,'NH': 33,'NJ': 34,'NM': 35,'NY': 36,'NC': 37,'ND': 38,'OH': 39,'OK': 40,'OR': 41,'PA': 42,'RI': 44,'SC': 45,'SD': 46,'TN': 47,'TX': 48,'UT': 49,'VT': 50,'VA': 51,'WA': 53,'WV': 54,'WI': 55,'WY': 56,'AS': 60,'FM': 64,'GU': 66,'MH': 68,'MP': 69,'PW': 70,'PR': 72,'UM': 74,'VI': 78}
def base_two(inputint):
if inputint < 10:
return '0' + str(inputint)
else:
return str(inputint)
members = {}
for i in raw_data['objects']:
if 'Representative' not in i['description']:
continue
else:
geo_lookup = int(str(STATELOOKUP[i['state']]) + base_two(i['district']))
member_dict = {
'district': i['district'],
'party': i['party'],
'state': i['state'],
'firstname': i['person']['firstname'],
'lastname': i['person']['lastname'],
'twitterid': i['person']['twitterid'],
'website': i['website'],
'geoid': int(str(STATELOOKUP[i['state']]) + base_two(i['district']))
}
members[geo_lookup] = member_dict
print json.dumps(members)
# usage: python get_members.py | tee > members.json
<!DOCTYPE html>
<meta charset="utf-8">
<style>
.districts {
fill: #bbb;
}
.district-boundaries {
pointer-events: none;
fill: none;
stroke: #fff;
stroke-width: .5px;
stroke-linejoin: round;
}
.neighbor {
fill: orange;
}
.hover {
fill: red;
}
div.tooltip {
right:0;
bottom:30px;
padding-top:50px;
position: absolute;
text-align: center;
width: auto;
height: auto;
padding: 2px;
font: 10px sans-serif;
border: 0px;
border-radius: 8px;
pointer-events: none;
}
</style>
<body>
<script src="http://d3js.org/d3.v3.min.js" charset="utf-8"></script>
<script src="http://d3js.org/topojson.v1.min.js"></script>
<script>
var width = 960,
height = 500;
var path = d3.geo.path();
var svg = d3.select("body").append("svg")
.attr("width", width)
.attr("height", height);
var div = d3.select('body').append('div')
.attr('class','tooltip')
.style('opacity', 0);
d3.json("us-congress-113.json", function(error, geojson) {
d3.json('members.json', function(error, json) {
var districts = geojson.objects.districts,
neighbors = topojson.neighbors(districts.geometries);
var district = svg.append("g")
.attr("class", "districts")
.selectAll("path")
.data(topojson.feature(geojson, districts).features)
.enter().append("path")
.attr('id', function(d) { d.id })
.attr("d", path);
district
.each(function(d, i) { d.neighbors = d3.selectAll(neighbors[i].map(function(j) { return district[0][j]; })); })
.on("mouseover", mouseover)
.on("mouseout", mouseout);
svg.append("path")
.attr("class", "district-boundaries")
.datum(topojson.mesh(geojson, districts, function(a, b) { return a !== b; }))
.attr("d", path);
function mouseover(d) {
// class neighbors
d.neighbors.classed('neighbor', true)
d3.select(this).classed('hover', true)
// attach other information to the dom
div.transition().duration(0).style('opacity',1)
neighborHtml = []
d.neighbors[0].forEach(function(n) { neighborHtml.push(getNeighborHtml(n)); })
div.html(
'<div><strong>Selected: '+json[d.id].firstname+ ' '+json[d.id].lastname+'</strong>'+
'<br />'+json[d.id].party+' ('+json[d.id].state+'-'+json[d.id].district+')'+
'<br />Website: <a href="'+json[d.id].website+'">'+json[d.id].website+
'<br /></a> Twitter: @'+json[d.id].twitterid+
'<br /><br />Neighbors: '+neighborHtml.join('')
+'</div>'
)
}
function mouseout(d) {
// class neighbors
d.neighbors.classed('neighbor', false)
d3.selectAll('.hover').classed('hover', false)
div.transition().duration(0).style('opacity',0)
// remove information from the dom
}
function getNeighborHtml(n) {
var neighbor = n.__data__.id;
return '<span><strong>'+json[neighbor].firstname+' '+json[neighbor].lastname+'</strong>: '+
json[neighbor].party+' ('+json[neighbor].state+'-'+json[neighbor].district+')<br />'
}
});
});
</script>
</body>
</html>
{"409": {"website": "http://sinema.house.gov", "state": "AZ", "firstname": "Kyrsten", "district": 9, "lastname": "Sinema", "party": "Democrat", "twitterid": "RepSinema", "geoid": 409}, "4101": {"website": "http://bonamici.house.gov", "state": "OR", "firstname": "Suzanne", "district": 1, "lastname": "Bonamici", "party": "Democrat", "twitterid": "RepBonamici", "geoid": 4101}, "4102": {"website": "http://walden.house.gov", "state": "OR", "firstname": "Greg", "district": 2, "lastname": "Walden", "party": "Republican", "twitterid": "RepGregWalden", "geoid": 4102}, "4103": {"website": "http://blumenauer.house.gov", "state": "OR", "firstname": "Earl", "district": 3, "lastname": "Blumenauer", "party": "Democrat", "twitterid": "BlumenauerMedia", "geoid": 4103}, "4104": {"website": "http://www.defazio.house.gov", "state": "OR", "firstname": "Peter", "district": 4, "lastname": "DeFazio", "party": "Democrat", "twitterid": "RepPeterDeFazio", "geoid": 4104}, "4105": {"website": "http://schrader.house.gov", "state": "OR", "firstname": "Kurt", "district": 5, "lastname": "Schrader", "party": "Democrat", "twitterid": "RepSchrader", "geoid": 4105}, "2101": {"website": "http://whitfield.house.gov", "state": "KY", "firstname": "Ed", "district": 1, "lastname": "Whitfield", "party": "Republican", "twitterid": "RepEdWhitfield", "geoid": 2101}, "2102": {"website": "http://guthrie.house.gov", "state": "KY", "firstname": "Brett", "district": 2, "lastname": "Guthrie", "party": "Republican", "twitterid": "RepGuthrie", "geoid": 2102}, "2103": {"website": "http://yarmuth.house.gov", "state": "KY", "firstname": "John", "district": 3, "lastname": "Yarmuth", "party": "Democrat", "twitterid": "RepJohnYarmuth", "geoid": 2103}, "2104": {"website": "http://massie.house.gov", "state": "KY", "firstname": "Thomas", "district": 4, "lastname": "Massie", "party": "Republican", "twitterid": "RepThomasMassie", "geoid": 2104}, "2105": {"website": "http://halrogers.house.gov", "state": "KY", "firstname": "Harold", "district": 5, "lastname": "Rogers", "party": "Republican", "twitterid": "RepHalRogers", "geoid": 2105}, "2106": {"website": "http://barr.house.gov", "state": "KY", "firstname": "Garland", "district": 6, "lastname": "Barr", "party": "Republican", "twitterid": "RepAndyBarr", "geoid": 2106}, "101": {"website": "", "state": "AL", "firstname": "Bradley", "district": 1, "lastname": "Byrne", "party": "Republican", "twitterid": null, "geoid": 101}, "102": {"website": "http://roby.house.gov", "state": "AL", "firstname": "Martha", "district": 2, "lastname": "Roby", "party": "Republican", "twitterid": "RepMarthaRoby", "geoid": 102}, "103": {"website": "http://mike-rogers.house.gov/", "state": "AL", "firstname": "Mike", "district": 3, "lastname": "Rogers", "party": "Republican", "twitterid": "RepMikeRogersAL", "geoid": 103}, "104": {"website": "http://aderholt.house.gov", "state": "AL", "firstname": "Robert", "district": 4, "lastname": "Aderholt", "party": "Republican", "twitterid": "Robert_Aderholt", "geoid": 104}, "105": {"website": "http://brooks.house.gov", "state": "AL", "firstname": "Mo", "district": 5, "lastname": "Brooks", "party": "Republican", "twitterid": "RepMoBrooks", "geoid": 105}, "4202": {"website": "http://www.house.gov/fattah", "state": "PA", "firstname": "Chaka", "district": 2, "lastname": "Fattah", "party": "Democrat", "twitterid": "ChakaFattah", "geoid": 4202}, "4203": {"website": "http://kelly.house.gov", "state": "PA", "firstname": "Mike", "district": 3, "lastname": "Kelly", "party": "Republican", "twitterid": "MikeKellyPA", "geoid": 4203}, "4204": {"website": "http://perry.house.gov", "state": "PA", "firstname": "Scott", "district": 4, "lastname": "Perry", "party": "Republican", "twitterid": "RepScottPerry", "geoid": 4204}, "4205": {"website": "http://thompson.house.gov", "state": "PA", "firstname": "Glenn", "district": 5, "lastname": "Thompson", "party": "Republican", "twitterid": "CongressmanGT", "geoid": 4205}, "4206": {"website": "http://gerlach.house.gov", "state": "PA", "firstname": "Jim", "district": 6, "lastname": "Gerlach", "party": "Republican", "twitterid": "JimGerlach", "geoid": 4206}, "4207": {"website": "http://meehan.house.gov", "state": "PA", "firstname": "Patrick", "district": 7, "lastname": "Meehan", "party": "Republican", "twitterid": "RepMeehan", "geoid": 4207}, "4208": {"website": "http://fitzpatrick.house.gov", "state": "PA", "firstname": "Michael", "district": 8, "lastname": "Fitzpatrick", "party": "Republican", "twitterid": "RepFitzpatrick", "geoid": 4208}, "4209": {"website": "http://www.house.gov/shuster", "state": "PA", "firstname": "Bill", "district": 9, "lastname": "Shuster", "party": "Republican", "twitterid": "RepBillShuster", "geoid": 4209}, "4210": {"website": "http://marino.house.gov", "state": "PA", "firstname": "Tom", "district": 10, "lastname": "Marino", "party": "Republican", "twitterid": "RepTomMarino", "geoid": 4210}, "4211": {"website": "http://barletta.house.gov", "state": "PA", "firstname": "Lou", "district": 11, "lastname": "Barletta", "party": "Republican", "twitterid": "RepLouBarletta", "geoid": 4211}, "4212": {"website": "http://rothfus.house.gov", "state": "PA", "firstname": "Keith", "district": 12, "lastname": "Rothfus", "party": "Republican", "twitterid": "KeithRothfus", "geoid": 4212}, "4213": {"website": "http://www.house.gov/schwartz", "state": "PA", "firstname": "Allyson", "district": 13, "lastname": "Schwartz", "party": "Democrat", "twitterid": null, "geoid": 4213}, "4214": {"website": "http://doyle.house.gov", "state": "PA", "firstname": "Michael", "district": 14, "lastname": "Doyle", "party": "Democrat", "twitterid": "USRepMikeDoyle", "geoid": 4214}, "4215": {"website": "http://dent.house.gov", "state": "PA", "firstname": "Charles", "district": 15, "lastname": "Dent", "party": "Republican", "twitterid": null, "geoid": 4215}, "4216": {"website": "http://pitts.house.gov/", "state": "PA", "firstname": "Joseph", "district": 16, "lastname": "Pitts", "party": "Republican", "twitterid": "RepJoePitts", "geoid": 4216}, "4217": {"website": "http://cartwright.house.gov", "state": "PA", "firstname": "Matthew", "district": 17, "lastname": "Cartwright", "party": "Democrat", "twitterid": "RepCartwright", "geoid": 4217}, "4218": {"website": "http://murphy.house.gov", "state": "PA", "firstname": "Tim", "district": 18, "lastname": "Murphy", "party": "Republican", "twitterid": "RepTimMurphy", "geoid": 4218}, "2201": {"website": "http://scalise.house.gov", "state": "LA", "firstname": "Steve", "district": 1, "lastname": "Scalise", "party": "Republican", "twitterid": "SteveScalise", "geoid": 2201}, "2202": {"website": "http://richmond.house.gov", "state": "LA", "firstname": "Cedric", "district": 2, "lastname": "Richmond", "party": "Democrat", "twitterid": "RepRichmond", "geoid": 2202}, "2203": {"website": "http://www.house.gov/boustany", "state": "LA", "firstname": "Charles", "district": 3, "lastname": "Boustany", "party": "Republican", "twitterid": "RepBoustany", "geoid": 2203}, "2204": {"website": "http://fleming.house.gov", "state": "LA", "firstname": "John", "district": 4, "lastname": "Fleming", "party": "Republican", "twitterid": "RepFleming", "geoid": 2204}, "2205": {"website": "http://mcallister.house.gov", "state": "LA", "firstname": "Vance", "district": 5, "lastname": "McAllister", "party": "Republican", "twitterid": "RepMcAllister", "geoid": 2205}, "2206": {"website": "http://cassidy.house.gov", "state": "LA", "firstname": "Bill", "district": 6, "lastname": "Cassidy", "party": "Republican", "twitterid": null, "geoid": 2206}, "200": {"website": "http://donyoung.house.gov", "state": "AK", "firstname": "Don", "district": 0, "lastname": "Young", "party": "Republican", "twitterid": "RepDonYoung", "geoid": 200}, "2301": {"website": "http://pingree.house.gov", "state": "ME", "firstname": "Chellie", "district": 1, "lastname": "Pingree", "party": "Democrat", "twitterid": "ChelliePingree", "geoid": 2301}, "2302": {"website": "http://michaud.house.gov", "state": "ME", "firstname": "Michael", "district": 2, "lastname": "Michaud", "party": "Democrat", "twitterid": "RepMikeMichaud", "geoid": 2302}, "4401": {"website": "http://cicilline.house.gov", "state": "RI", "firstname": "David", "district": 1, "lastname": "Cicilline", "party": "Democrat", "twitterid": "RepCicilline", "geoid": 4401}, "4402": {"website": "http://langevin.house.gov", "state": "RI", "firstname": "James", "district": 2, "lastname": "Langevin", "party": "Democrat", "twitterid": "JimLangevin", "geoid": 4402}, "2401": {"website": "http://harris.house.gov", "state": "MD", "firstname": "Andy", "district": 1, "lastname": "Harris", "party": "Republican", "twitterid": "RepAndyHarrisMD", "geoid": 2401}, "2402": {"website": "http://www.house.gov/ruppersberger", "state": "MD", "firstname": "C.", "district": 2, "lastname": "Ruppersberger", "party": "Democrat", "twitterid": "Call_Me_Dutch", "geoid": 2402}, "2403": {"website": "http://sarbanes.house.gov", "state": "MD", "firstname": "John", "district": 3, "lastname": "Sarbanes", "party": "Democrat", "twitterid": "RepJohnSarbanes", "geoid": 2403}, "2404": {"website": "http://www.house.gov/donnaedwards", "state": "MD", "firstname": "Donna", "district": 4, "lastname": "Edwards", "party": "Democrat", "twitterid": "RepDonnaEdwards", "geoid": 2404}, "2405": {"website": "http://hoyer.house.gov", "state": "MD", "firstname": "Steny", "district": 5, "lastname": "Hoyer", "party": "Democrat", "twitterid": "WhipHoyer", "geoid": 2405}, "2406": {"website": "http://delaney.house.gov", "state": "MD", "firstname": "John", "district": 6, "lastname": "Delaney", "party": "Democrat", "twitterid": "RepJohnDelaney", "geoid": 2406}, "2407": {"website": "http://www.house.gov/cummings", "state": "MD", "firstname": "Elijah", "district": 7, "lastname": "Cummings", "party": "Democrat", "twitterid": "ElijahECummings", "geoid": 2407}, "2408": {"website": "http://vanhollen.house.gov", "state": "MD", "firstname": "Chris", "district": 8, "lastname": "Van Hollen", "party": "Democrat", "twitterid": "ChrisVanHollen", "geoid": 2408}, "4501": {"website": "http://sanford.house.gov/", "state": "SC", "firstname": "Marshall", "district": 1, "lastname": "Sanford", "party": "Republican", "twitterid": "RepSanfordSC", "geoid": 4501}, "4502": {"website": "http://joewilson.house.gov", "state": "SC", "firstname": "Joe", "district": 2, "lastname": "Wilson", "party": "Republican", "twitterid": "USRepJoeWilson", "geoid": 4502}, "407": {"website": "http://www.house.gov/pastor", "state": "AZ", "firstname": "Ed", "district": 7, "lastname": "Pastor", "party": "Democrat", "twitterid": null, "geoid": 407}, "401": {"website": "http://kirkpatrick.house.gov", "state": "AZ", "firstname": "Ann", "district": 1, "lastname": "Kirkpatrick", "party": "Democrat", "twitterid": "RepKirkpatrick", "geoid": 401}, "402": {"website": "http://barber.house.gov", "state": "AZ", "firstname": "Ron", "district": 2, "lastname": "Barber", "party": "Democrat", "twitterid": "RepRonBarber", "geoid": 402}, "403": {"website": "http://grijalva.house.gov", "state": "AZ", "firstname": "Ra\u00fal", "district": 3, "lastname": "Grijalva", "party": "Democrat", "twitterid": "RepraulGrijalva", "geoid": 403}, "404": {"website": "http://gosar.house.gov", "state": "AZ", "firstname": "Paul", "district": 4, "lastname": "Gosar", "party": "Republican", "twitterid": "RepGosar", "geoid": 404}, "405": {"website": "http://salmon.house.gov", "state": "AZ", "firstname": "Matt", "district": 5, "lastname": "Salmon", "party": "Republican", "twitterid": "RepMattSalmon", "geoid": 405}, "406": {"website": "http://schweikert.house.gov", "state": "AZ", "firstname": "David", "district": 6, "lastname": "Schweikert", "party": "Republican", "twitterid": "RepDavid", "geoid": 406}, "4503": {"website": "http://jeffduncan.house.gov", "state": "SC", "firstname": "Jeff", "district": 3, "lastname": "Duncan", "party": "Republican", "twitterid": "RepJeffDuncan", "geoid": 4503}, "4504": {"website": "http://gowdy.house.gov", "state": "SC", "firstname": "Trey", "district": 4, "lastname": "Gowdy", "party": "Republican", "twitterid": "TGowdySC", "geoid": 4504}, "4505": {"website": "http://mulvaney.house.gov", "state": "SC", "firstname": "Mick", "district": 5, "lastname": "Mulvaney", "party": "Republican", "twitterid": "RepMickMulvaney", "geoid": 4505}, "4506": {"website": "http://clyburn.house.gov", "state": "SC", "firstname": "James", "district": 6, "lastname": "Clyburn", "party": "Democrat", "twitterid": "Clyburn", "geoid": 4506}, "4507": {"website": "http://rice.house.gov", "state": "SC", "firstname": "Tom", "district": 7, "lastname": "Rice", "party": "Republican", "twitterid": "RepTomRice", "geoid": 4507}, "2501": {"website": "http://neal.house.gov", "state": "MA", "firstname": "Richard", "district": 1, "lastname": "Neal", "party": "Democrat", "twitterid": "RepRichardNeal", "geoid": 2501}, "2502": {"website": "http://mcgovern.house.gov", "state": "MA", "firstname": "James", "district": 2, "lastname": "McGovern", "party": "Democrat", "twitterid": "RepMcGovern", "geoid": 2502}, "2503": {"website": "http://tsongas.house.gov", "state": "MA", "firstname": "Niki", "district": 3, "lastname": "Tsongas", "party": "Democrat", "twitterid": "NikiInTheHouse", "geoid": 2503}, "2504": {"website": "http://kennedy.house.gov", "state": "MA", "firstname": "Joseph", "district": 4, "lastname": "Kennedy", "party": "Democrat", "twitterid": "RepJoeKennedy", "geoid": 2504}, "2505": {"website": "http://katherineclark.house.gov", "state": "MA", "firstname": "Katherine", "district": 5, "lastname": "Clark", "party": "Democrat", "twitterid": null, "geoid": 2505}, "2506": {"website": "http://tierney.house.gov", "state": "MA", "firstname": "John", "district": 6, "lastname": "Tierney", "party": "Democrat", "twitterid": "RepTierney", "geoid": 2506}, "2507": {"website": "http://www.house.gov/capuano", "state": "MA", "firstname": "Michael", "district": 7, "lastname": "Capuano", "party": "Democrat", "twitterid": null, "geoid": 2507}, "2508": {"website": "http://lynch.house.gov", "state": "MA", "firstname": "Stephen", "district": 8, "lastname": "Lynch", "party": "Democrat", "twitterid": "RepStephenLynch", "geoid": 2508}, "2509": {"website": "http://keating.house.gov", "state": "MA", "firstname": "William", "district": 9, "lastname": "Keating", "party": "Democrat", "twitterid": "USRepKeating", "geoid": 2509}, "501": {"website": "http://crawford.house.gov", "state": "AR", "firstname": "Eric", "district": 1, "lastname": "Crawford", "party": "Republican", "twitterid": "RepRickCrawford", "geoid": 501}, "502": {"website": "http://griffin.house.gov", "state": "AR", "firstname": "Tim", "district": 2, "lastname": "Griffin", "party": "Republican", "twitterid": "RepTimGriffin", "geoid": 502}, "503": {"website": "http://womack.house.gov", "state": "AR", "firstname": "Steve", "district": 3, "lastname": "Womack", "party": "Republican", "twitterid": "Rep_SteveWomack", "geoid": 503}, "4600": {"website": "http://noem.house.gov", "state": "SD", "firstname": "Kristi", "district": 0, "lastname": "Noem", "party": "Republican", "twitterid": "RepKristiNoem", "geoid": 4600}, "2601": {"website": "http://benishek.house.gov", "state": "MI", "firstname": "Dan", "district": 1, "lastname": "Benishek", "party": "Republican", "twitterid": "CongressmanDan", "geoid": 2601}, "2602": {"website": "http://huizenga.house.gov", "state": "MI", "firstname": "Bill", "district": 2, "lastname": "Huizenga", "party": "Republican", "twitterid": "RepHuizenga", "geoid": 2602}, "2603": {"website": "http://amash.house.gov", "state": "MI", "firstname": "Justin", "district": 3, "lastname": "Amash", "party": "Republican", "twitterid": "RepJustinAmash", "geoid": 2603}, "2604": {"website": "http://camp.house.gov", "state": "MI", "firstname": "Dave", "district": 4, "lastname": "Camp", "party": "Republican", "twitterid": "RepDaveCamp", "geoid": 2604}, "2605": {"website": "http://danielkildee.house.gov", "state": "MI", "firstname": "Daniel", "district": 5, "lastname": "Kildee", "party": "Democrat", "twitterid": "RepDanKildee", "geoid": 2605}, "2606": {"website": "http://www.house.gov/upton", "state": "MI", "firstname": "Fred", "district": 6, "lastname": "Upton", "party": "Republican", "twitterid": "RepFredUpton", "geoid": 2606}, "2607": {"website": "http://walberg.house.gov", "state": "MI", "firstname": "Tim", "district": 7, "lastname": "Walberg", "party": "Republican", "twitterid": "RepWalberg", "geoid": 2607}, "2608": {"website": "http://mikerogers.house.gov", "state": "MI", "firstname": "Mike", "district": 8, "lastname": "Rogers", "party": "Republican", "twitterid": "RepMikeRogers", "geoid": 2608}, "2609": {"website": "http://levin.house.gov", "state": "MI", "firstname": "Sander", "district": 9, "lastname": "Levin", "party": "Democrat", "twitterid": "RepSandyLevin", "geoid": 2609}, "2610": {"website": "http://candicemiller.house.gov", "state": "MI", "firstname": "Candice", "district": 10, "lastname": "Miller", "party": "Republican", "twitterid": "CandiceMiller", "geoid": 2610}, "2611": {"website": "http://bentivolio.house.gov", "state": "MI", "firstname": "Kerry", "district": 11, "lastname": "Bentivolio", "party": "Republican", "twitterid": "RepKerryB", "geoid": 2611}, "2612": {"website": "http://www.house.gov/dingell", "state": "MI", "firstname": "John", "district": 12, "lastname": "Dingell", "party": "Democrat", "twitterid": "John_Dingell", "geoid": 2612}, "2613": {"website": "http://www.house.gov/conyers", "state": "MI", "firstname": "John", "district": 13, "lastname": "Conyers", "party": "Democrat", "twitterid": "RepJohnConyers", "geoid": 2613}, "2614": {"website": "http://peters.house.gov", "state": "MI", "firstname": "Gary", "district": 14, "lastname": "Peters", "party": "Democrat", "twitterid": "RepGaryPeters", "geoid": 2614}, "601": {"website": "http://lamalfa.house.gov", "state": "CA", "firstname": "Doug", "district": 1, "lastname": "LaMalfa", "party": "Republican", "twitterid": "RepLaMalfa", "geoid": 601}, "602": {"website": "http://huffman.house.gov", "state": "CA", "firstname": "Jared", "district": 2, "lastname": "Huffman", "party": "Democrat", "twitterid": "RepHuffman", "geoid": 602}, "603": {"website": "http://garamendi.house.gov", "state": "CA", "firstname": "John", "district": 3, "lastname": "Garamendi", "party": "Democrat", "twitterid": "RepGaramendi", "geoid": 603}, "604": {"website": "http://mcclintock.house.gov", "state": "CA", "firstname": "Tom", "district": 4, "lastname": "McClintock", "party": "Republican", "twitterid": "RepMcClintock", "geoid": 604}, "4701": {"website": "http://roe.house.gov", "state": "TN", "firstname": "David", "district": 1, "lastname": "Roe", "party": "Republican", "twitterid": "DrPhilRoe", "geoid": 4701}, "606": {"website": "http://matsui.house.gov", "state": "CA", "firstname": "Doris", "district": 6, "lastname": "Matsui", "party": "Democrat", "twitterid": "DorisMatsui", "geoid": 606}, "4703": {"website": "http://fleischmann.house.gov", "state": "TN", "firstname": "Charles", "district": 3, "lastname": "Fleischmann", "party": "Republican", "twitterid": "RepChuck", "geoid": 4703}, "4704": {"website": "http://desjarlais.house.gov", "state": "TN", "firstname": "Scott", "district": 4, "lastname": "DesJarlais", "party": "Republican", "twitterid": "DesJarlaisTN04", "geoid": 4704}, "609": {"website": "http://mcnerney.house.gov", "state": "CA", "firstname": "Jerry", "district": 9, "lastname": "McNerney", "party": "Democrat", "twitterid": "RepMcNerney", "geoid": 609}, "610": {"website": "http://denham.house.gov", "state": "CA", "firstname": "Jeff", "district": 10, "lastname": "Denham", "party": "Republican", "twitterid": "RepJeffDenham", "geoid": 610}, "611": {"website": "http://georgemiller.house.gov", "state": "CA", "firstname": "George", "district": 11, "lastname": "Miller", "party": "Democrat", "twitterid": "AskGeorge", "geoid": 611}, "4708": {"website": "http://fincher.house.gov", "state": "TN", "firstname": "Stephen", "district": 8, "lastname": "Fincher", "party": "Republican", "twitterid": "RepFincherTN08", "geoid": 4708}, "4709": {"website": "http://cohen.house.gov", "state": "TN", "firstname": "Steve", "district": 9, "lastname": "Cohen", "party": "Democrat", "twitterid": "RepCohen", "geoid": 4709}, "614": {"website": "http://speier.house.gov", "state": "CA", "firstname": "Jackie", "district": 14, "lastname": "Speier", "party": "Democrat", "twitterid": "RepSpeier", "geoid": 614}, "615": {"website": "http://swalwell.house.gov", "state": "CA", "firstname": "Eric", "district": 15, "lastname": "Swalwell", "party": "Democrat", "twitterid": "RepSwalwell", "geoid": 615}, "616": {"website": "http://costa.house.gov", "state": "CA", "firstname": "Jim", "district": 16, "lastname": "Costa", "party": "Democrat", "twitterid": "RepJimCosta", "geoid": 616}, "617": {"website": "http://www.house.gov/honda", "state": "CA", "firstname": "Michael", "district": 17, "lastname": "Honda", "party": "Democrat", "twitterid": "RepMikeHonda", "geoid": 617}, "618": {"website": "http://eshoo.house.gov", "state": "CA", "firstname": "Anna", "district": 18, "lastname": "Eshoo", "party": "Democrat", "twitterid": "RepAnnaEshoo", "geoid": 618}, "619": {"website": "http://lofgren.house.gov/", "state": "CA", "firstname": "Zoe", "district": 19, "lastname": "Lofgren", "party": "Democrat", "twitterid": "RepZoeLofgren", "geoid": 619}, "620": {"website": "http://www.house.gov/farr", "state": "CA", "firstname": "Sam", "district": 20, "lastname": "Farr", "party": "Democrat", "twitterid": "RepSamFarr", "geoid": 620}, "621": {"website": "http://valadao.house.gov", "state": "CA", "firstname": "David", "district": 21, "lastname": "Valadao", "party": "Republican", "twitterid": "RepDavidValadao", "geoid": 621}, "622": {"website": "http://nunes.house.gov", "state": "CA", "firstname": "Devin", "district": 22, "lastname": "Nunes", "party": "Republican", "twitterid": "Rep_DevinNunes", "geoid": 622}, "623": {"website": "http://kevinmccarthy.house.gov", "state": "CA", "firstname": "Kevin", "district": 23, "lastname": "McCarthy", "party": "Republican", "twitterid": "GOPWhip", "geoid": 623}, "624": {"website": "http://capps.house.gov", "state": "CA", "firstname": "Lois", "district": 24, "lastname": "Capps", "party": "Democrat", "twitterid": "RepLoisCapps", "geoid": 624}, "625": {"website": "http://mckeon.house.gov", "state": "CA", "firstname": "Howard", "district": 25, "lastname": "McKeon", "party": "Republican", "twitterid": "BuckMcKeon", "geoid": 625}, "626": {"website": "http://juliabrownley.house.gov", "state": "CA", "firstname": "Julia", "district": 26, "lastname": "Brownley", "party": "Democrat", "twitterid": "JuliaBrownley26", "geoid": 626}, "627": {"website": "http://chu.house.gov", "state": "CA", "firstname": "Judy", "district": 27, "lastname": "Chu", "party": "Democrat", "twitterid": "RepJudyChu", "geoid": 627}, "628": {"website": "http://schiff.house.gov", "state": "CA", "firstname": "Adam", "district": 28, "lastname": "Schiff", "party": "Democrat", "twitterid": "RepAdamSchiff", "geoid": 628}, "629": {"website": "http://cardenas.house.gov", "state": "CA", "firstname": "Tony", "district": 29, "lastname": "C\u00e1rdenas", "party": "Democrat", "twitterid": "RepCardenas", "geoid": 629}, "630": {"website": "http://bradsherman.house.gov", "state": "CA", "firstname": "Brad", "district": 30, "lastname": "Sherman", "party": "Democrat", "twitterid": "BradSherman", "geoid": 630}, "631": {"website": "http://garymiller.house.gov", "state": "CA", "firstname": "Gary", "district": 31, "lastname": "Miller", "party": "Republican", "twitterid": "RepGaryMiller", "geoid": 631}, "632": {"website": "http://napolitano.house.gov", "state": "CA", "firstname": "Grace", "district": 32, "lastname": "Napolitano", "party": "Democrat", "twitterid": "GraceNapolitano", "geoid": 632}, "633": {"website": "http://www.henrywaxman.house.gov", "state": "CA", "firstname": "Henry", "district": 33, "lastname": "Waxman", "party": "Democrat", "twitterid": "WaxmanClimate", "geoid": 633}, "634": {"website": "http://becerra.house.gov", "state": "CA", "firstname": "Xavier", "district": 34, "lastname": "Becerra", "party": "Democrat", "twitterid": "RepBecerra", "geoid": 634}, "635": {"website": "http://negretemcleod.house.gov", "state": "CA", "firstname": "Gloria", "district": 35, "lastname": "Negrete McLeod", "party": "Democrat", "twitterid": "RepMcLeod", "geoid": 635}, "636": {"website": "http://ruiz.house.gov", "state": "CA", "firstname": "Raul", "district": 36, "lastname": "Ruiz", "party": "Democrat", "twitterid": "CongressmanRuiz", "geoid": 636}, "637": {"website": "http://bass.house.gov", "state": "CA", "firstname": "Karen", "district": 37, "lastname": "Bass", "party": "Democrat", "twitterid": "RepKarenBass", "geoid": 637}, "638": {"website": "http://lindasanchez.house.gov", "state": "CA", "firstname": "Linda", "district": 38, "lastname": "S\u00e1nchez", "party": "Democrat", "twitterid": "RepLindaSanchez", "geoid": 638}, "639": {"website": "http://royce.house.gov/", "state": "CA", "firstname": "Edward", "district": 39, "lastname": "Royce", "party": "Republican", "twitterid": "RepEdRoyce", "geoid": 639}, "640": {"website": "http://www.house.gov/roybal-allard", "state": "CA", "firstname": "Lucille", "district": 40, "lastname": "Roybal-Allard", "party": "Democrat", "twitterid": "RepRoybalAllard", "geoid": 640}, "641": {"website": "http://takano.house.gov", "state": "CA", "firstname": "Mark", "district": 41, "lastname": "Takano", "party": "Democrat", "twitterid": "RepMarkTakano", "geoid": 641}, "642": {"website": "http://calvert.house.gov", "state": "CA", "firstname": "Ken", "district": 42, "lastname": "Calvert", "party": "Republican", "twitterid": "KenCalvert", "geoid": 642}, "107": {"website": "http://sewell.house.gov", "state": "AL", "firstname": "Terri", "district": 7, "lastname": "Sewell", "party": "Democrat", "twitterid": "RepTerriSewell", "geoid": 107}, "644": {"website": "http://hahn.house.gov", "state": "CA", "firstname": "Janice", "district": 44, "lastname": "Hahn", "party": "Democrat", "twitterid": "Rep_JaniceHahn", "geoid": 644}, "645": {"website": "http://www.campbell.house.gov", "state": "CA", "firstname": "John", "district": 45, "lastname": "Campbell", "party": "Republican", "twitterid": "RepJohnCampbell", "geoid": 645}, "646": {"website": "http://www.lorettasanchez.house.gov", "state": "CA", "firstname": "Loretta", "district": 46, "lastname": "Sanchez", "party": "Democrat", "twitterid": "LorettaSanchez", "geoid": 646}, "647": {"website": "http://lowenthal.house.gov", "state": "CA", "firstname": "Alan", "district": 47, "lastname": "Lowenthal", "party": "Democrat", "twitterid": "RepLowenthal", "geoid": 647}, "648": {"website": "http://rohrabacher.house.gov", "state": "CA", "firstname": "Dana", "district": 48, "lastname": "Rohrabacher", "party": "Republican", "twitterid": null, "geoid": 648}, "649": {"website": "http://issa.house.gov/", "state": "CA", "firstname": "Darrell", "district": 49, "lastname": "Issa", "party": "Republican", "twitterid": "DarrellIssa", "geoid": 649}, "650": {"website": "http://hunter.house.gov", "state": "CA", "firstname": "Duncan", "district": 50, "lastname": "Hunter", "party": "Republican", "twitterid": "Rep_Hunter", "geoid": 650}, "651": {"website": "http://vargas.house.gov", "state": "CA", "firstname": "Juan", "district": 51, "lastname": "Vargas", "party": "Democrat", "twitterid": "RepJuanVargas", "geoid": 651}, "652": {"website": "http://scottpeters.house.gov", "state": "CA", "firstname": "Scott", "district": 52, "lastname": "Peters", "party": "Democrat", "twitterid": "RepScottPeters", "geoid": 652}, "2701": {"website": "http://walz.house.gov", "state": "MN", "firstname": "Timothy", "district": 1, "lastname": "Walz", "party": "Democrat", "twitterid": "RepTimWalz", "geoid": 2701}, "2702": {"website": "http://kline.house.gov", "state": "MN", "firstname": "John", "district": 2, "lastname": "Kline", "party": "Republican", "twitterid": "RepJohnKline", "geoid": 2702}, "2703": {"website": "http://paulsen.house.gov", "state": "MN", "firstname": "Erik", "district": 3, "lastname": "Paulsen", "party": "Republican", "twitterid": "RepErikPaulsen", "geoid": 2703}, "2704": {"website": "http://www.house.gov/mccollum", "state": "MN", "firstname": "Betty", "district": 4, "lastname": "McCollum", "party": "Democrat", "twitterid": "BettyMcCollum04", "geoid": 2704}, "2705": {"website": "http://ellison.house.gov", "state": "MN", "firstname": "Keith", "district": 5, "lastname": "Ellison", "party": "Democrat", "twitterid": "KeithEllison", "geoid": 2705}, "2706": {"website": "http://bachmann.house.gov", "state": "MN", "firstname": "Michele", "district": 6, "lastname": "Bachmann", "party": "Republican", "twitterid": "MicheleBachmann", "geoid": 2706}, "2707": {"website": "http://collinpeterson.house.gov", "state": "MN", "firstname": "Collin", "district": 7, "lastname": "Peterson", "party": "Democrat", "twitterid": null, "geoid": 2707}, "2708": {"website": "http://nolan.house.gov", "state": "MN", "firstname": "Richard", "district": 8, "lastname": "Nolan", "party": "Democrat", "twitterid": "USRepRickNolan", "geoid": 2708}, "4801": {"website": "http://gohmert.house.gov", "state": "TX", "firstname": "Louie", "district": 1, "lastname": "Gohmert", "party": "Republican", "twitterid": "RepLouieGohmert", "geoid": 4801}, "4802": {"website": "http://poe.house.gov/", "state": "TX", "firstname": "Ted", "district": 2, "lastname": "Poe", "party": "Republican", "twitterid": "JudgeTedPoe", "geoid": 4802}, "4803": {"website": "http://samjohnson.house.gov", "state": "TX", "firstname": "Sam", "district": 3, "lastname": "Johnson", "party": "Republican", "twitterid": "SamsPressShop", "geoid": 4803}, "4804": {"website": "http://ralphhall.house.gov/", "state": "TX", "firstname": "Ralph", "district": 4, "lastname": "Hall", "party": "Republican", "twitterid": "RalphHallPress", "geoid": 4804}, "4805": {"website": "http://hensarling.house.gov/", "state": "TX", "firstname": "Jeb", "district": 5, "lastname": "Hensarling", "party": "Republican", "twitterid": "RepHensarling", "geoid": 4805}, "4806": {"website": "http://joebarton.house.gov", "state": "TX", "firstname": "Joe", "district": 6, "lastname": "Barton", "party": "Republican", "twitterid": "RepJoeBarton", "geoid": 4806}, "4807": {"website": "http://culberson.house.gov", "state": "TX", "firstname": "John", "district": 7, "lastname": "Culberson", "party": "Republican", "twitterid": "CongCulberson", "geoid": 4807}, "4808": {"website": "http://kevinbrady.house.gov", "state": "TX", "firstname": "Kevin", "district": 8, "lastname": "Brady", "party": "Republican", "twitterid": "RepKevinBrady", "geoid": 4808}, "4809": {"website": "http://www.house.gov/algreen", "state": "TX", "firstname": "Al", "district": 9, "lastname": "Green", "party": "Democrat", "twitterid": "RepAlGreen", "geoid": 4809}, "4810": {"website": "http://mccaul.house.gov/", "state": "TX", "firstname": "Michael", "district": 10, "lastname": "McCaul", "party": "Republican", "twitterid": "McCaulPressShop", "geoid": 4810}, "4811": {"website": "http://conaway.house.gov", "state": "TX", "firstname": "K.", "district": 11, "lastname": "Conaway", "party": "Republican", "twitterid": "ConawayTX11", "geoid": 4811}, "4812": {"website": "http://kaygranger.house.gov", "state": "TX", "firstname": "Kay", "district": 12, "lastname": "Granger", "party": "Republican", "twitterid": "RepKayGranger", "geoid": 4812}, "4813": {"website": "http://thornberry.house.gov/", "state": "TX", "firstname": "Mac", "district": 13, "lastname": "Thornberry", "party": "Republican", "twitterid": "MacTXPress", "geoid": 4813}, "4814": {"website": "http://weber.house.gov", "state": "TX", "firstname": "Randy", "district": 14, "lastname": "Weber", "party": "Republican", "twitterid": "TXRandy14", "geoid": 4814}, "4815": {"website": "http://www.house.gov/hinojosa", "state": "TX", "firstname": "Rub\u00e9n", "district": 15, "lastname": "Hinojosa", "party": "Democrat", "twitterid": "USRepRHinojosa", "geoid": 4815}, "4816": {"website": "http://orourke.house.gov", "state": "TX", "firstname": "Beto", "district": 16, "lastname": "O'Rourke", "party": "Democrat", "twitterid": "BetooRourkeTX16", "geoid": 4816}, "4817": {"website": "http://flores.house.gov", "state": "TX", "firstname": "Bill", "district": 17, "lastname": "Flores", "party": "Republican", "twitterid": "RepBillFlores", "geoid": 4817}, "4818": {"website": "http://jacksonlee.house.gov", "state": "TX", "firstname": "Sheila", "district": 18, "lastname": "Jackson Lee", "party": "Democrat", "twitterid": "JacksonLeeTX18", "geoid": 4818}, "4819": {"website": "http://randy.house.gov", "state": "TX", "firstname": "Randy", "district": 19, "lastname": "Neugebauer", "party": "Republican", "twitterid": "RandyNeugebauer", "geoid": 4819}, "4820": {"website": "http://castro.house.gov", "state": "TX", "firstname": "Joaquin", "district": 20, "lastname": "Castro", "party": "Democrat", "twitterid": "JoaquinCastrotx", "geoid": 4820}, "4821": {"website": "http://lamarsmith.house.gov", "state": "TX", "firstname": "Lamar", "district": 21, "lastname": "Smith", "party": "Republican", "twitterid": "LamarSmithTX21", "geoid": 4821}, "4822": {"website": "http://olson.house.gov", "state": "TX", "firstname": "Pete", "district": 22, "lastname": "Olson", "party": "Republican", "twitterid": "OlsonPressShop", "geoid": 4822}, "4823": {"website": "http://gallego.house.gov", "state": "TX", "firstname": "Pete", "district": 23, "lastname": "Gallego", "party": "Democrat", "twitterid": "RepPeteGallego", "geoid": 4823}, "4824": {"website": "http://marchant.house.gov/", "state": "TX", "firstname": "Kenny", "district": 24, "lastname": "Marchant", "party": "Republican", "twitterid": "RepKenMarchant", "geoid": 4824}, "4825": {"website": "http://williams.house.gov", "state": "TX", "firstname": "Roger", "district": 25, "lastname": "Williams", "party": "Republican", "twitterid": "RepRWilliams", "geoid": 4825}, "4826": {"website": "http://burgess.house.gov", "state": "TX", "firstname": "Michael", "district": 26, "lastname": "Burgess", "party": "Republican", "twitterid": "MichaelCBurgess", "geoid": 4826}, "4827": {"website": "http://farenthold.house.gov", "state": "TX", "firstname": "Blake", "district": 27, "lastname": "Farenthold", "party": "Republican", "twitterid": "Farenthold", "geoid": 4827}, "4828": {"website": "http://cuellar.house.gov", "state": "TX", "firstname": "Henry", "district": 28, "lastname": "Cuellar", "party": "Democrat", "twitterid": "RepCuellar", "geoid": 4828}, "4829": {"website": "http://green.house.gov", "state": "TX", "firstname": "Gene", "district": 29, "lastname": "Green", "party": "Democrat", "twitterid": "RepGeneGreen", "geoid": 4829}, "4830": {"website": "http://ebjohnson.house.gov", "state": "TX", "firstname": "Eddie", "district": 30, "lastname": "Johnson", "party": "Democrat", "twitterid": "RepEBJ", "geoid": 4830}, "4831": {"website": "http://carter.house.gov", "state": "TX", "firstname": "John", "district": 31, "lastname": "Carter", "party": "Republican", "twitterid": "JudgeCarter", "geoid": 4831}, "4832": {"website": "http://sessions.house.gov/", "state": "TX", "firstname": "Pete", "district": 32, "lastname": "Sessions", "party": "Republican", "twitterid": "PeteSessions", "geoid": 4832}, "4833": {"website": "http://veasey.house.gov", "state": "TX", "firstname": "Marc", "district": 33, "lastname": "Veasey", "party": "Democrat", "twitterid": "RepVeasey", "geoid": 4833}, "4834": {"website": "http://vela.house.gov", "state": "TX", "firstname": "Filemon", "district": 34, "lastname": "Vela", "party": "Democrat", "twitterid": "RepFilemonVela", "geoid": 4834}, "4835": {"website": "http://doggett.house.gov", "state": "TX", "firstname": "Lloyd", "district": 35, "lastname": "Doggett", "party": "Democrat", "twitterid": "RepLloydDoggett", "geoid": 4835}, "4836": {"website": "http://stockman.house.gov", "state": "TX", "firstname": "Steve", "district": 36, "lastname": "Stockman", "party": "Republican", "twitterid": "SteveStockmanTX", "geoid": 4836}, "4902": {"website": "http://stewart.house.gov", "state": "UT", "firstname": "Chris", "district": 2, "lastname": "Stewart", "party": "Republican", "twitterid": "RepChrisStewart", "geoid": 4902}, "4903": {"website": "http://chaffetz.house.gov", "state": "UT", "firstname": "Jason", "district": 3, "lastname": "Chaffetz", "party": "Republican", "twitterid": "JasonInTheHouse", "geoid": 4903}, "2801": {"website": "http://nunnelee.house.gov", "state": "MS", "firstname": "Alan", "district": 1, "lastname": "Nunnelee", "party": "Republican", "twitterid": "RepAlanNunnelee", "geoid": 2801}, "2802": {"website": "http://benniethompson.house.gov", "state": "MS", "firstname": "Bennie", "district": 2, "lastname": "Thompson", "party": "Democrat", "twitterid": "BennieGThompson", "geoid": 2802}, "2803": {"website": "http://harper.house.gov", "state": "MS", "firstname": "Gregg", "district": 3, "lastname": "Harper", "party": "Republican", "twitterid": "GreggHarper", "geoid": 2803}, "2804": {"website": "http://palazzo.house.gov", "state": "MS", "firstname": "Steven", "district": 4, "lastname": "Palazzo", "party": "Republican", "twitterid": "CongPalazzo", "geoid": 2804}, "801": {"website": "http://degette.house.gov/", "state": "CO", "firstname": "Diana", "district": 1, "lastname": "DeGette", "party": "Democrat", "twitterid": "RepDianaDeGette", "geoid": 801}, "802": {"website": "http://polis.house.gov", "state": "CO", "firstname": "Jared", "district": 2, "lastname": "Polis", "party": "Democrat", "twitterid": "JaredPolis", "geoid": 802}, "803": {"website": "http://tipton.house.gov", "state": "CO", "firstname": "Scott", "district": 3, "lastname": "Tipton", "party": "Republican", "twitterid": "RepTipton", "geoid": 803}, "804": {"website": "http://gardner.house.gov", "state": "CO", "firstname": "Cory", "district": 4, "lastname": "Gardner", "party": "Republican", "twitterid": "RepCoryGardner", "geoid": 804}, "805": {"website": "http://lamborn.house.gov", "state": "CO", "firstname": "Doug", "district": 5, "lastname": "Lamborn", "party": "Republican", "twitterid": "RepDLamborn", "geoid": 805}, "806": {"website": "http://coffman.house.gov", "state": "CO", "firstname": "Mike", "district": 6, "lastname": "Coffman", "party": "Republican", "twitterid": "RepMikeCoffman", "geoid": 806}, "807": {"website": "http://perlmutter.house.gov", "state": "CO", "firstname": "Ed", "district": 7, "lastname": "Perlmutter", "party": "Democrat", "twitterid": "RepPerlmutter", "geoid": 807}, "4904": {"website": "http://matheson.house.gov", "state": "UT", "firstname": "Jim", "district": 4, "lastname": "Matheson", "party": "Democrat", "twitterid": "RepJimMatheson", "geoid": 4904}, "2901": {"website": "http://lacyclay.house.gov", "state": "MO", "firstname": "Wm.", "district": 1, "lastname": "Clay", "party": "Democrat", "twitterid": null, "geoid": 2901}, "2902": {"website": "http://wagner.house.gov", "state": "MO", "firstname": "Ann", "district": 2, "lastname": "Wagner", "party": "Republican", "twitterid": "RepAnnWagner", "geoid": 2902}, "2903": {"website": "http://luetkemeyer.house.gov", "state": "MO", "firstname": "Blaine", "district": 3, "lastname": "Luetkemeyer", "party": "Republican", "twitterid": "RepBlainePress", "geoid": 2903}, "2904": {"website": "http://hartzler.house.gov", "state": "MO", "firstname": "Vicky", "district": 4, "lastname": "Hartzler", "party": "Republican", "twitterid": "RepHartzler", "geoid": 2904}, "2905": {"website": "http://cleaver.house.gov", "state": "MO", "firstname": "Emanuel", "district": 5, "lastname": "Cleaver", "party": "Democrat", "twitterid": "RepCleaver", "geoid": 2905}, "2906": {"website": "http://graves.house.gov", "state": "MO", "firstname": "Sam", "district": 6, "lastname": "Graves", "party": "Republican", "twitterid": null, "geoid": 2906}, "2907": {"website": "http://long.house.gov", "state": "MO", "firstname": "Billy", "district": 7, "lastname": "Long", "party": "Republican", "twitterid": "USRepLong", "geoid": 2907}, "2908": {"website": "http://jasonsmith.house.gov", "state": "MO", "firstname": "Jason", "district": 8, "lastname": "Smith", "party": "Republican", "twitterid": "RepJasonSmith", "geoid": 2908}, "901": {"website": "http://www.larson.house.gov", "state": "CT", "firstname": "John", "district": 1, "lastname": "Larson", "party": "Democrat", "twitterid": "RepJohnLarson", "geoid": 901}, "902": {"website": "http://courtney.house.gov", "state": "CT", "firstname": "Joe", "district": 2, "lastname": "Courtney", "party": "Democrat", "twitterid": "RepJoeCourtney", "geoid": 902}, "903": {"website": "http://delauro.house.gov", "state": "CT", "firstname": "Rosa", "district": 3, "lastname": "DeLauro", "party": "Democrat", "twitterid": "RosaDeLauro", "geoid": 903}, "904": {"website": "http://himes.house.gov", "state": "CT", "firstname": "James", "district": 4, "lastname": "Himes", "party": "Democrat", "twitterid": "JAHimes", "geoid": 904}, "905": {"website": "http://esty.house.gov", "state": "CT", "firstname": "Elizabeth", "district": 5, "lastname": "Esty", "party": "Democrat", "twitterid": "RepEsty", "geoid": 905}, "3000": {"website": "http://daines.house.gov", "state": "MT", "firstname": "Steve", "district": 0, "lastname": "Daines", "party": "Republican", "twitterid": "SteveDaines", "geoid": 3000}, "504": {"website": "http://cotton.house.gov", "state": "AR", "firstname": "Tom", "district": 4, "lastname": "Cotton", "party": "Republican", "twitterid": "RepTomCotton", "geoid": 504}, "1000": {"website": "http://johncarney.house.gov", "state": "DE", "firstname": "John", "district": 0, "lastname": "Carney", "party": "Democrat", "twitterid": "JohnCarneyde", "geoid": 1000}, "5101": {"website": "http://www.wittman.house.gov", "state": "VA", "firstname": "Robert", "district": 1, "lastname": "Wittman", "party": "Republican", "twitterid": "RobWittman", "geoid": 5101}, "5102": {"website": "http://rigell.house.gov", "state": "VA", "firstname": "E.", "district": 2, "lastname": "Rigell", "party": "Republican", "twitterid": "RepScottRigell", "geoid": 5102}, "5103": {"website": "http://www.house.gov/scott", "state": "VA", "firstname": "Robert", "district": 3, "lastname": "Scott", "party": "Democrat", "twitterid": "RepBobbyScott", "geoid": 5103}, "5104": {"website": "http://forbes.house.gov/", "state": "VA", "firstname": "J.", "district": 4, "lastname": "Forbes", "party": "Republican", "twitterid": "Randy_Forbes", "geoid": 5104}, "5105": {"website": "http://hurt.house.gov", "state": "VA", "firstname": "Robert", "district": 5, "lastname": "Hurt", "party": "Republican", "twitterid": "RepRobertHurt", "geoid": 5105}, "5106": {"website": "http://goodlatte.house.gov/", "state": "VA", "firstname": "Bob", "district": 6, "lastname": "Goodlatte", "party": "Republican", "twitterid": "RepGoodlatte", "geoid": 5106}, "5107": {"website": "http://cantor.house.gov", "state": "VA", "firstname": "Eric", "district": 7, "lastname": "Cantor", "party": "Republican", "twitterid": "GOPLeader", "geoid": 5107}, "5108": {"website": "http://moran.house.gov", "state": "VA", "firstname": "James", "district": 8, "lastname": "Moran", "party": "Democrat", "twitterid": "Jim_Moran", "geoid": 5108}, "5109": {"website": "http://morgangriffith.house.gov", "state": "VA", "firstname": "H.", "district": 9, "lastname": "Griffith", "party": "Republican", "twitterid": "RepMGriffith", "geoid": 5109}, "5110": {"website": "http://wolf.house.gov", "state": "VA", "firstname": "Frank", "district": 10, "lastname": "Wolf", "party": "Republican", "twitterid": "RepWOLFPress", "geoid": 5110}, "5111": {"website": "http://connolly.house.gov", "state": "VA", "firstname": "Gerald", "district": 11, "lastname": "Connolly", "party": "Democrat", "twitterid": "GerryConnolly", "geoid": 5111}, "3101": {"website": "http://fortenberry.house.gov", "state": "NE", "firstname": "Jeff", "district": 1, "lastname": "Fortenberry", "party": "Republican", "twitterid": "JeffFortenberry", "geoid": 3101}, "3102": {"website": "http://leeterry.house.gov", "state": "NE", "firstname": "Lee", "district": 2, "lastname": "Terry", "party": "Republican", "twitterid": "LEETERRYNE", "geoid": 3102}, "3103": {"website": "http://adriansmith.house.gov/", "state": "NE", "firstname": "Adrian", "district": 3, "lastname": "Smith", "party": "Republican", "twitterid": "RepAdrianSmith", "geoid": 3103}, "1205": {"website": "http://corrinebrown.house.gov", "state": "FL", "firstname": "Corrine", "district": 5, "lastname": "Brown", "party": "Democrat", "twitterid": "RepCorrineBrown", "geoid": 1205}, "5302": {"website": "http://larsen.house.gov", "state": "WA", "firstname": "Rick", "district": 2, "lastname": "Larsen", "party": "Democrat", "twitterid": "RepRickLarsen", "geoid": 5302}, "5303": {"website": "http://herrerabeutler.house.gov", "state": "WA", "firstname": "Jaime", "district": 3, "lastname": "Herrera Beutler", "party": "Republican", "twitterid": "HerreraBeutler", "geoid": 5303}, "5304": {"website": "http://hastings.house.gov", "state": "WA", "firstname": "Doc", "district": 4, "lastname": "Hastings", "party": "Republican", "twitterid": "DocHastings", "geoid": 5304}, "1209": {"website": "http://grayson.house.gov", "state": "FL", "firstname": "Alan", "district": 9, "lastname": "Grayson", "party": "Democrat", "twitterid": null, "geoid": 1209}, "5306": {"website": "http://kilmer.house.gov", "state": "WA", "firstname": "Derek", "district": 6, "lastname": "Kilmer", "party": "Democrat", "twitterid": "RepDerekKilmer", "geoid": 5306}, "1211": {"website": "http://nugent.house.gov", "state": "FL", "firstname": "Richard", "district": 11, "lastname": "Nugent", "party": "Republican", "twitterid": "RepRichNugent", "geoid": 1211}, "5308": {"website": "http://reichert.house.gov", "state": "WA", "firstname": "David", "district": 8, "lastname": "Reichert", "party": "Republican", "twitterid": "DaveReichert", "geoid": 5308}, "1214": {"website": "http://castor.house.gov", "state": "FL", "firstname": "Kathy", "district": 14, "lastname": "Castor", "party": "Democrat", "twitterid": "USRepKCastor", "geoid": 1214}, "3201": {"website": "http://titus.house.gov", "state": "NV", "firstname": "Dina", "district": 1, "lastname": "Titus", "party": "Democrat", "twitterid": "RepDinaTitus", "geoid": 3201}, "3202": {"website": "http://amodei.house.gov", "state": "NV", "firstname": "Mark", "district": 2, "lastname": "Amodei", "party": "Republican", "twitterid": "MarkAmodeiNV2", "geoid": 3202}, "3203": {"website": "http://heck.house.gov", "state": "NV", "firstname": "Joseph", "district": 3, "lastname": "Heck", "party": "Republican", "twitterid": "RepJoeHeck", "geoid": 3203}, "3204": {"website": "http://horsford.house.gov", "state": "NV", "firstname": "Steven", "district": 4, "lastname": "Horsford", "party": "Democrat", "twitterid": "RepHorsford", "geoid": 3204}, "1201": {"website": "http://jeffmiller.house.gov/", "state": "FL", "firstname": "Jeff", "district": 1, "lastname": "Miller", "party": "Republican", "twitterid": null, "geoid": 1201}, "1202": {"website": "http://southerland.house.gov", "state": "FL", "firstname": "Steve", "district": 2, "lastname": "Southerland", "party": "Republican", "twitterid": "Rep_Southerland", "geoid": 1202}, "1203": {"website": "http://yoho.house.gov", "state": "FL", "firstname": "Ted", "district": 3, "lastname": "Yoho", "party": "Republican", "twitterid": "RepTedYoho", "geoid": 1203}, "1204": {"website": "http://crenshaw.house.gov", "state": "FL", "firstname": "Ander", "district": 4, "lastname": "Crenshaw", "party": "Republican", "twitterid": "AnderCrenshaw", "geoid": 1204}, "5301": {"website": "http://delbene.house.gov", "state": "WA", "firstname": "Suzan", "district": 1, "lastname": "DelBene", "party": "Democrat", "twitterid": "RepDelBene", "geoid": 5301}, "1206": {"website": "http://desantis.house.gov", "state": "FL", "firstname": "Ron", "district": 6, "lastname": "DeSantis", "party": "Republican", "twitterid": "RepDeSantis", "geoid": 1206}, "1207": {"website": "http://mica.house.gov", "state": "FL", "firstname": "John", "district": 7, "lastname": "Mica", "party": "Republican", "twitterid": null, "geoid": 1207}, "1208": {"website": "http://posey.house.gov", "state": "FL", "firstname": "Bill", "district": 8, "lastname": "Posey", "party": "Republican", "twitterid": "CongBillPosey", "geoid": 1208}, "5305": {"website": "http://mcmorris.house.gov", "state": "WA", "firstname": "Cathy", "district": 5, "lastname": "McMorris Rodgers", "party": "Republican", "twitterid": "CathyMcMorris", "geoid": 5305}, "1210": {"website": "http://webster.house.gov", "state": "FL", "firstname": "Daniel", "district": 10, "lastname": "Webster", "party": "Republican", "twitterid": "RepWebster", "geoid": 1210}, "5307": {"website": "http://mcdermott.house.gov", "state": "WA", "firstname": "Jim", "district": 7, "lastname": "McDermott", "party": "Democrat", "twitterid": "RepJimMcDermott", "geoid": 5307}, "1212": {"website": "http://bilirakis.house.gov", "state": "FL", "firstname": "Gus", "district": 12, "lastname": "Bilirakis", "party": "Republican", "twitterid": "RepGusBilirakis", "geoid": 1212}, "5309": {"website": "http://www.house.gov/adamsmith", "state": "WA", "firstname": "Adam", "district": 9, "lastname": "Smith", "party": "Democrat", "twitterid": "RepAdamSmith", "geoid": 5309}, "5310": {"website": "http://dennyheck.house.gov", "state": "WA", "firstname": "Denny", "district": 10, "lastname": "Heck", "party": "Democrat", "twitterid": "RepDennyHeck", "geoid": 5310}, "1215": {"website": "http://dennisross.house.gov", "state": "FL", "firstname": "Dennis", "district": 15, "lastname": "Ross", "party": "Republican", "twitterid": "RepDennisRoss", "geoid": 1215}, "1216": {"website": "http://buchanan.house.gov", "state": "FL", "firstname": "Vern", "district": 16, "lastname": "Buchanan", "party": "Republican", "twitterid": "VernBuchanan", "geoid": 1216}, "1217": {"website": "http://rooney.house.gov", "state": "FL", "firstname": "Thomas", "district": 17, "lastname": "Rooney", "party": "Republican", "twitterid": "TomRooney", "geoid": 1217}, "1218": {"website": "http://patrickmurphy.house.gov", "state": "FL", "firstname": "Patrick", "district": 18, "lastname": "Murphy", "party": "Democrat", "twitterid": "RepMurphyFL", "geoid": 1218}, "1219": {"website": "http://radel.house.gov", "state": "FL", "firstname": "Trey", "district": 19, "lastname": "Radel", "party": "Republican", "twitterid": "TreyRadel", "geoid": 1219}, "1220": {"website": "http://www.alceehastings.house.gov", "state": "FL", "firstname": "Alcee", "district": 20, "lastname": "Hastings", "party": "Democrat", "twitterid": null, "geoid": 1220}, "1221": {"website": "http://teddeutch.house.gov", "state": "FL", "firstname": "Theodore", "district": 21, "lastname": "Deutch", "party": "Democrat", "twitterid": "RepTedDeutch", "geoid": 1221}, "1222": {"website": "http://frankel.house.gov", "state": "FL", "firstname": "Lois", "district": 22, "lastname": "Frankel", "party": "Democrat", "twitterid": "RepLoisFrankel", "geoid": 1222}, "1223": {"website": "http://wassermanschultz.house.gov", "state": "FL", "firstname": "Debbie", "district": 23, "lastname": "Wasserman Schultz", "party": "Democrat", "twitterid": "RepDWStweets", "geoid": 1223}, "1224": {"website": "http://wilson.house.gov", "state": "FL", "firstname": "Frederica", "district": 24, "lastname": "Wilson", "party": "Democrat", "twitterid": "RepWilson", "geoid": 1224}, "1225": {"website": "http://mariodiazbalart.house.gov", "state": "FL", "firstname": "Mario", "district": 25, "lastname": "Diaz-Balart", "party": "Republican", "twitterid": "MarioDB", "geoid": 1225}, "1226": {"website": "http://garcia.house.gov", "state": "FL", "firstname": "Joe", "district": 26, "lastname": "Garcia", "party": "Democrat", "twitterid": "RepJoeGarcia", "geoid": 1226}, "1227": {"website": "http://ros-lehtinen.house.gov", "state": "FL", "firstname": "Ileana", "district": 27, "lastname": "Ros-Lehtinen", "party": "Republican", "twitterid": "RosLehtinen", "geoid": 1227}, "4201": {"website": "http://www.brady.house.gov", "state": "PA", "firstname": "Robert", "district": 1, "lastname": "Brady", "party": "Democrat", "twitterid": "RepBrady", "geoid": 4201}, "3301": {"website": "http://shea-porter.house.gov", "state": "NH", "firstname": "Carol", "district": 1, "lastname": "Shea-Porter", "party": "Democrat", "twitterid": "RepSheaPorter", "geoid": 3301}, "3302": {"website": "http://kuster.house.gov", "state": "NH", "firstname": "Ann", "district": 2, "lastname": "Kuster", "party": "Democrat", "twitterid": "RepAnnieKuster", "geoid": 3302}, "1301": {"website": "http://kingston.house.gov", "state": "GA", "firstname": "Jack", "district": 1, "lastname": "Kingston", "party": "Republican", "twitterid": "JackKingston", "geoid": 1301}, "1302": {"website": "http://bishop.house.gov", "state": "GA", "firstname": "Sanford", "district": 2, "lastname": "Bishop", "party": "Democrat", "twitterid": "SanfordBishop", "geoid": 1302}, "1303": {"website": "http://westmoreland.house.gov/", "state": "GA", "firstname": "Lynn", "district": 3, "lastname": "Westmoreland", "party": "Republican", "twitterid": "RepWestmoreland", "geoid": 1303}, "1304": {"website": "http://hankjohnson.house.gov", "state": "GA", "firstname": "Henry", "district": 4, "lastname": "Johnson", "party": "Democrat", "twitterid": "RepHankJohnson", "geoid": 1304}, "5401": {"website": "http://mckinley.house.gov", "state": "WV", "firstname": "David", "district": 1, "lastname": "McKinley", "party": "Republican", "twitterid": "RepMcKinley", "geoid": 5401}, "1306": {"website": "http://tomprice.house.gov", "state": "GA", "firstname": "Tom", "district": 6, "lastname": "Price", "party": "Republican", "twitterid": "RepTomPrice", "geoid": 1306}, "5403": {"website": "http://www.rahall.house.gov", "state": "WV", "firstname": "Nick", "district": 3, "lastname": "Rahall", "party": "Democrat", "twitterid": null, "geoid": 5403}, "1308": {"website": "http://austinscott.house.gov", "state": "GA", "firstname": "Austin", "district": 8, "lastname": "Scott", "party": "Republican", "twitterid": "AustinScottGA08", "geoid": 1308}, "1309": {"website": "http://dougcollins.house.gov", "state": "GA", "firstname": "Doug", "district": 9, "lastname": "Collins", "party": "Republican", "twitterid": "RepDougCollins", "geoid": 1309}, "1310": {"website": "http://broun.house.gov", "state": "GA", "firstname": "Paul", "district": 10, "lastname": "Broun", "party": "Republican", "twitterid": "RepPaulBrounMD", "geoid": 1310}, "1311": {"website": "http://gingrey.house.gov/", "state": "GA", "firstname": "Phil", "district": 11, "lastname": "Gingrey", "party": "Republican", "twitterid": "RepPhilGingrey", "geoid": 1311}, "1312": {"website": "http://barrow.house.gov", "state": "GA", "firstname": "John", "district": 12, "lastname": "Barrow", "party": "Democrat", "twitterid": "RepJohnBarrow", "geoid": 1312}, "1313": {"website": "http://davidscott.house.gov", "state": "GA", "firstname": "David", "district": 13, "lastname": "Scott", "party": "Democrat", "twitterid": "RepDavidScott", "geoid": 1313}, "1314": {"website": "http://tomgraves.house.gov", "state": "GA", "firstname": "Tom", "district": 14, "lastname": "Graves", "party": "Republican", "twitterid": "RepTomGraves", "geoid": 1314}, "5000": {"website": "http://www.welch.house.gov", "state": "VT", "firstname": "Peter", "district": 0, "lastname": "Welch", "party": "Democrat", "twitterid": "PeterWelch", "geoid": 5000}, "3401": {"website": "http://andrews.house.gov", "state": "NJ", "firstname": "Robert", "district": 1, "lastname": "Andrews", "party": "Democrat", "twitterid": null, "geoid": 3401}, "3402": {"website": "http://lobiondo.house.gov", "state": "NJ", "firstname": "Frank", "district": 2, "lastname": "LoBiondo", "party": "Republican", "twitterid": "RepLoBiondo", "geoid": 3402}, "3403": {"website": "http://runyan.house.gov", "state": "NJ", "firstname": "Jon", "district": 3, "lastname": "Runyan", "party": "Republican", "twitterid": "RepJonRunyan", "geoid": 3403}, "3404": {"website": "http://chrissmith.house.gov", "state": "NJ", "firstname": "Christopher", "district": 4, "lastname": "Smith", "party": "Republican", "twitterid": "RepChrisSmith", "geoid": 3404}, "3405": {"website": "http://garrett.house.gov", "state": "NJ", "firstname": "Scott", "district": 5, "lastname": "Garrett", "party": "Republican", "twitterid": "RepGarrett", "geoid": 3405}, "3406": {"website": "http://pallone.house.gov", "state": "NJ", "firstname": "Frank", "district": 6, "lastname": "Pallone", "party": "Democrat", "twitterid": "FrankPallone", "geoid": 3406}, "3407": {"website": "http://lance.house.gov", "state": "NJ", "firstname": "Leonard", "district": 7, "lastname": "Lance", "party": "Republican", "twitterid": "RepLanceNJ7", "geoid": 3407}, "3408": {"website": "http://sires.house.gov", "state": "NJ", "firstname": "Albio", "district": 8, "lastname": "Sires", "party": "Democrat", "twitterid": "Rep_Albio_Sires", "geoid": 3408}, "3409": {"website": "http://pascrell.house.gov", "state": "NJ", "firstname": "Bill", "district": 9, "lastname": "Pascrell", "party": "Democrat", "twitterid": "BillPascrell", "geoid": 3409}, "3410": {"website": "http://payne.house.gov", "state": "NJ", "firstname": "Donald", "district": 10, "lastname": "Payne", "party": "Democrat", "twitterid": "RepDonaldPayne", "geoid": 3410}, "3411": {"website": "http://frelinghuysen.house.gov", "state": "NJ", "firstname": "Rodney", "district": 11, "lastname": "Frelinghuysen", "party": "Republican", "twitterid": "USRepRodney", "geoid": 3411}, "3412": {"website": "http://holt.house.gov", "state": "NJ", "firstname": "Rush", "district": 12, "lastname": "Holt", "party": "Democrat", "twitterid": null, "geoid": 3412}, "5501": {"website": "http://paulryan.house.gov", "state": "WI", "firstname": "Paul", "district": 1, "lastname": "Ryan", "party": "Republican", "twitterid": "RepPaulRyan", "geoid": 5501}, "5502": {"website": "http://pocan.house.gov", "state": "WI", "firstname": "Mark", "district": 2, "lastname": "Pocan", "party": "Democrat", "twitterid": "RepMarkPocan", "geoid": 5502}, "5503": {"website": "http://kind.house.gov", "state": "WI", "firstname": "Ron", "district": 3, "lastname": "Kind", "party": "Democrat", "twitterid": "RepRonKind", "geoid": 5503}, "5504": {"website": "http://gwenmoore.house.gov", "state": "WI", "firstname": "Gwen", "district": 4, "lastname": "Moore", "party": "Democrat", "twitterid": "RepGwenMoore", "geoid": 5504}, "5505": {"website": "http://sensenbrenner.house.gov", "state": "WI", "firstname": "F.", "district": 5, "lastname": "Sensenbrenner", "party": "Republican", "twitterid": "JimPressOffice", "geoid": 5505}, "5506": {"website": "http://petri.house.gov", "state": "WI", "firstname": "Thomas", "district": 6, "lastname": "Petri", "party": "Republican", "twitterid": null, "geoid": 5506}, "5507": {"website": "http://duffy.house.gov", "state": "WI", "firstname": "Sean", "district": 7, "lastname": "Duffy", "party": "Republican", "twitterid": "RepSeanDuffy", "geoid": 5507}, "5508": {"website": "http://ribble.house.gov", "state": "WI", "firstname": "Reid", "district": 8, "lastname": "Ribble", "party": "Republican", "twitterid": "RepRibble", "geoid": 5508}, "1601": {"website": "http://labrador.house.gov", "state": "ID", "firstname": "Ra\u00fal", "district": 1, "lastname": "Labrador", "party": "Republican", "twitterid": "Raul_Labrador", "geoid": 1601}, "3501": {"website": "http://lujangrisham.house.gov", "state": "NM", "firstname": "Michelle", "district": 1, "lastname": "Lujan Grisham", "party": "Democrat", "twitterid": "RepLujanGrisham", "geoid": 3501}, "3502": {"website": "http://pearce.house.gov", "state": "NM", "firstname": "Stevan", "district": 2, "lastname": "Pearce", "party": "Republican", "twitterid": "RepStevePearce", "geoid": 3502}, "3503": {"website": "http://lujan.house.gov", "state": "NM", "firstname": "Ben", "district": 3, "lastname": "Luj\u00e1n", "party": "Democrat", "twitterid": "RepBenRayLujan", "geoid": 3503}, "1501": {"website": "http://hanabusa.house.gov", "state": "HI", "firstname": "Colleen", "district": 1, "lastname": "Hanabusa", "party": "Democrat", "twitterid": "RepHanabusa", "geoid": 1501}, "1502": {"website": "http://gabbard.house.gov", "state": "HI", "firstname": "Tulsi", "district": 2, "lastname": "Gabbard", "party": "Democrat", "twitterid": "TulsiPress", "geoid": 1502}, "5600": {"website": "http://lummis.house.gov", "state": "WY", "firstname": "Cynthia", "district": 0, "lastname": "Lummis", "party": "Republican", "twitterid": "CynthiaLummis", "geoid": 5600}, "3601": {"website": "http://timbishop.house.gov", "state": "NY", "firstname": "Timothy", "district": 1, "lastname": "Bishop", "party": "Democrat", "twitterid": "TimBishopNY", "geoid": 3601}, "3602": {"website": "http://peteking.house.gov", "state": "NY", "firstname": "Peter", "district": 2, "lastname": "King", "party": "Republican", "twitterid": "RepPeteKing", "geoid": 3602}, "3603": {"website": "http://israel.house.gov", "state": "NY", "firstname": "Steve", "district": 3, "lastname": "Israel", "party": "Democrat", "twitterid": "RepSteveIsrael", "geoid": 3603}, "3604": {"website": "http://www.house.gov/carolynmccarthy", "state": "NY", "firstname": "Carolyn", "district": 4, "lastname": "McCarthy", "party": "Democrat", "twitterid": "RepMcCarthyNY", "geoid": 3604}, "3605": {"website": "http://meeks.house.gov", "state": "NY", "firstname": "Gregory", "district": 5, "lastname": "Meeks", "party": "Democrat", "twitterid": "GregoryMeeks", "geoid": 3605}, "3606": {"website": "http://meng.house.gov", "state": "NY", "firstname": "Grace", "district": 6, "lastname": "Meng", "party": "Democrat", "twitterid": "RepGraceMeng", "geoid": 3606}, "3607": {"website": "http://velazquez.house.gov", "state": "NY", "firstname": "Nydia", "district": 7, "lastname": "Vel\u00e1zquez", "party": "Democrat", "twitterid": "NydiaVelazquez", "geoid": 3607}, "3608": {"website": "http://jeffries.house.gov", "state": "NY", "firstname": "Hakeem", "district": 8, "lastname": "Jeffries", "party": "Democrat", "twitterid": "HakeemJeffries", "geoid": 3608}, "3609": {"website": "http://clarke.house.gov", "state": "NY", "firstname": "Yvette", "district": 9, "lastname": "Clarke", "party": "Democrat", "twitterid": "YvetteClarke", "geoid": 3609}, "3610": {"website": "http://nadler.house.gov", "state": "NY", "firstname": "Jerrold", "district": 10, "lastname": "Nadler", "party": "Democrat", "twitterid": "RepJerryNadler", "geoid": 3610}, "3611": {"website": "http://grimm.house.gov", "state": "NY", "firstname": "Michael", "district": 11, "lastname": "Grimm", "party": "Republican", "twitterid": "RepMichaelGrimm", "geoid": 3611}, "3612": {"website": "http://maloney.house.gov", "state": "NY", "firstname": "Carolyn", "district": 12, "lastname": "Maloney", "party": "Democrat", "twitterid": "RepMaloney", "geoid": 3612}, "3613": {"website": "http://rangel.house.gov", "state": "NY", "firstname": "Charles", "district": 13, "lastname": "Rangel", "party": "Democrat", "twitterid": "CBRangel", "geoid": 3613}, "3614": {"website": "http://crowley.house.gov", "state": "NY", "firstname": "Joseph", "district": 14, "lastname": "Crowley", "party": "Democrat", "twitterid": "RepJoeCrowley", "geoid": 3614}, "3615": {"website": "http://serrano.house.gov", "state": "NY", "firstname": "Jos\u00e9", "district": 15, "lastname": "Serrano", "party": "Democrat", "twitterid": "RepJoseSerrano", "geoid": 3615}, "3616": {"website": "http://www.house.gov/engel", "state": "NY", "firstname": "Eliot", "district": 16, "lastname": "Engel", "party": "Democrat", "twitterid": "RepEliotEngel", "geoid": 3616}, "3617": {"website": "http://www.house.gov/lowey", "state": "NY", "firstname": "Nita", "district": 17, "lastname": "Lowey", "party": "Democrat", "twitterid": "NitaLowey", "geoid": 3617}, "3618": {"website": "http://seanmaloney.house.gov", "state": "NY", "firstname": "Sean", "district": 18, "lastname": "Maloney", "party": "Democrat", "twitterid": "RepSeanMaloney", "geoid": 3618}, "3619": {"website": "http://gibson.house.gov", "state": "NY", "firstname": "Christopher", "district": 19, "lastname": "Gibson", "party": "Republican", "twitterid": "RepChrisGibson", "geoid": 3619}, "3620": {"website": "http://tonko.house.gov", "state": "NY", "firstname": "Paul", "district": 20, "lastname": "Tonko", "party": "Democrat", "twitterid": "PaulTonko", "geoid": 3620}, "3621": {"website": "http://owens.house.gov", "state": "NY", "firstname": "William", "district": 21, "lastname": "Owens", "party": "Democrat", "twitterid": "BillOwensNY", "geoid": 3621}, "3622": {"website": "http://hanna.house.gov", "state": "NY", "firstname": "Richard", "district": 22, "lastname": "Hanna", "party": "Republican", "twitterid": "RepRichardHanna", "geoid": 3622}, "3623": {"website": "http://reed.house.gov", "state": "NY", "firstname": "Tom", "district": 23, "lastname": "Reed", "party": "Republican", "twitterid": "RepTomReed", "geoid": 3623}, "3624": {"website": "http://maffei.house.gov", "state": "NY", "firstname": "Daniel", "district": 24, "lastname": "Maffei", "party": "Democrat", "twitterid": "RepDanMaffei", "geoid": 3624}, "3625": {"website": "http://louise.house.gov", "state": "NY", "firstname": "Louise", "district": 25, "lastname": "Slaughter", "party": "Democrat", "twitterid": "LouiseSlaughter", "geoid": 3625}, "3626": {"website": "http://www.house.gov/higgins", "state": "NY", "firstname": "Brian", "district": 26, "lastname": "Higgins", "party": "Democrat", "twitterid": "RepBrianHiggins", "geoid": 3626}, "3627": {"website": "http://chriscollins.house.gov", "state": "NY", "firstname": "Chris", "district": 27, "lastname": "Collins", "party": "Republican", "twitterid": "RepChrisCollins", "geoid": 3627}, "605": {"website": "http://mikethompson.house.gov", "state": "CA", "firstname": "Mike", "district": 5, "lastname": "Thompson", "party": "Democrat", "twitterid": "RepThompson", "geoid": 605}, "4702": {"website": "http://duncan.house.gov", "state": "TN", "firstname": "John", "district": 2, "lastname": "Duncan", "party": "Republican", "twitterid": "RepJohnDuncanJr", "geoid": 4702}, "607": {"website": "http://bera.house.gov", "state": "CA", "firstname": "Ami", "district": 7, "lastname": "Bera", "party": "Democrat", "twitterid": "RepBera", "geoid": 607}, "608": {"website": "http://cook.house.gov", "state": "CA", "firstname": "Paul", "district": 8, "lastname": "Cook", "party": "Republican", "twitterid": "RepPaulCook", "geoid": 608}, "1602": {"website": "http://simpson.house.gov", "state": "ID", "firstname": "Michael", "district": 2, "lastname": "Simpson", "party": "Republican", "twitterid": "CongMikeSimpson", "geoid": 1602}, "4705": {"website": "http://cooper.house.gov", "state": "TN", "firstname": "Jim", "district": 5, "lastname": "Cooper", "party": "Democrat", "twitterid": "RepJimCooper", "geoid": 4705}, "106": {"website": "http://bachus.house.gov", "state": "AL", "firstname": "Spencer", "district": 6, "lastname": "Bachus", "party": "Republican", "twitterid": "BachusAL06", "geoid": 106}, "4706": {"website": "http://black.house.gov", "state": "TN", "firstname": "Diane", "district": 6, "lastname": "Black", "party": "Republican", "twitterid": "RepDianeBlack", "geoid": 4706}, "4707": {"website": "http://blackburn.house.gov", "state": "TN", "firstname": "Marsha", "district": 7, "lastname": "Blackburn", "party": "Republican", "twitterid": "MarshaBlackburn", "geoid": 4707}, "612": {"website": "http://pelosi.house.gov", "state": "CA", "firstname": "Nancy", "district": 12, "lastname": "Pelosi", "party": "Democrat", "twitterid": "NancyPelosi", "geoid": 612}, "613": {"website": "http://lee.house.gov", "state": "CA", "firstname": "Barbara", "district": 13, "lastname": "Lee", "party": "Democrat", "twitterid": "RepBarbaraLee", "geoid": 613}, "3701": {"website": "http://butterfield.house.gov", "state": "NC", "firstname": "George", "district": 1, "lastname": "Butterfield", "party": "Democrat", "twitterid": "GKButterfield", "geoid": 3701}, "3702": {"website": "http://ellmers.house.gov", "state": "NC", "firstname": "Renee", "district": 2, "lastname": "Ellmers", "party": "Republican", "twitterid": "RepReneeEllmers", "geoid": 3702}, "3703": {"website": "http://jones.house.gov", "state": "NC", "firstname": "Walter", "district": 3, "lastname": "Jones", "party": "Republican", "twitterid": "RepWalterJones", "geoid": 3703}, "3704": {"website": "http://price.house.gov", "state": "NC", "firstname": "David", "district": 4, "lastname": "Price", "party": "Democrat", "twitterid": "RepDavidEPrice", "geoid": 3704}, "3705": {"website": "http://foxx.house.gov", "state": "NC", "firstname": "Virginia", "district": 5, "lastname": "Foxx", "party": "Republican", "twitterid": "VirginiaFoxx", "geoid": 3705}, "3706": {"website": "http://www.house.gov/coble", "state": "NC", "firstname": "Howard", "district": 6, "lastname": "Coble", "party": "Republican", "twitterid": "HowardCoble", "geoid": 3706}, "3707": {"website": "http://www.house.gov/mcintyre", "state": "NC", "firstname": "Mike", "district": 7, "lastname": "McIntyre", "party": "Democrat", "twitterid": "RepMikeMcIntyre", "geoid": 3707}, "3708": {"website": "http://hudson.house.gov", "state": "NC", "firstname": "Richard", "district": 8, "lastname": "Hudson", "party": "Republican", "twitterid": "RepRichHudson", "geoid": 3708}, "3709": {"website": "http://pittenger.house.gov", "state": "NC", "firstname": "Robert", "district": 9, "lastname": "Pittenger", "party": "Republican", "twitterid": "RepPittenger", "geoid": 3709}, "3710": {"website": "http://mchenry.house.gov/", "state": "NC", "firstname": "Patrick", "district": 10, "lastname": "McHenry", "party": "Republican", "twitterid": "PatrickMcHenry", "geoid": 3710}, "3711": {"website": "http://meadows.house.gov", "state": "NC", "firstname": "Mark", "district": 11, "lastname": "Meadows", "party": "Republican", "twitterid": "RepMarkMeadows", "geoid": 3711}, "3713": {"website": "http://holding.house.gov", "state": "NC", "firstname": "George", "district": 13, "lastname": "Holding", "party": "Republican", "twitterid": "RepHolding", "geoid": 3713}, "1305": {"website": "http://johnlewis.house.gov", "state": "GA", "firstname": "John", "district": 5, "lastname": "Lewis", "party": "Democrat", "twitterid": "RepJohnLewis", "geoid": 1305}, "5402": {"website": "http://capito.house.gov", "state": "WV", "firstname": "Shelley", "district": 2, "lastname": "Capito", "party": "Republican", "twitterid": "RepShelley", "geoid": 5402}, "1307": {"website": "http://woodall.house.gov", "state": "GA", "firstname": "Rob", "district": 7, "lastname": "Woodall", "party": "Republican", "twitterid": null, "geoid": 1307}, "1701": {"website": "http://rush.house.gov", "state": "IL", "firstname": "Bobby", "district": 1, "lastname": "Rush", "party": "Democrat", "twitterid": "RepBobbyRush", "geoid": 1701}, "1702": {"website": "http://robinkelly.house.gov", "state": "IL", "firstname": "Robin", "district": 2, "lastname": "Kelly", "party": "Democrat", "twitterid": "RepRobinKelly", "geoid": 1702}, "1703": {"website": "http://www.lipinski.house.gov", "state": "IL", "firstname": "Daniel", "district": 3, "lastname": "Lipinski", "party": "Democrat", "twitterid": "RepLipinski", "geoid": 1703}, "1704": {"website": "http://gutierrez.house.gov", "state": "IL", "firstname": "Luis", "district": 4, "lastname": "Guti\u00e9rrez", "party": "Democrat", "twitterid": "LuisGutierrez", "geoid": 1704}, "1705": {"website": "http://quigley.house.gov", "state": "IL", "firstname": "Mike", "district": 5, "lastname": "Quigley", "party": "Democrat", "twitterid": "RepMikeQuigley", "geoid": 1705}, "1706": {"website": "http://roskam.house.gov", "state": "IL", "firstname": "Peter", "district": 6, "lastname": "Roskam", "party": "Republican", "twitterid": "PeterRoskam", "geoid": 1706}, "1707": {"website": "http://www.house.gov/davis", "state": "IL", "firstname": "Danny", "district": 7, "lastname": "Davis", "party": "Democrat", "twitterid": null, "geoid": 1707}, "1708": {"website": "http://duckworth.house.gov", "state": "IL", "firstname": "Tammy", "district": 8, "lastname": "Duckworth", "party": "Democrat", "twitterid": "RepDuckworth", "geoid": 1708}, "1709": {"website": "http://schakowsky.house.gov", "state": "IL", "firstname": "Janice", "district": 9, "lastname": "Schakowsky", "party": "Democrat", "twitterid": "JanSchakowsky", "geoid": 1709}, "1710": {"website": "http://schneider.house.gov", "state": "IL", "firstname": "Bradley", "district": 10, "lastname": "Schneider", "party": "Democrat", "twitterid": "RepSchneider", "geoid": 1710}, "1711": {"website": "http://foster.house.gov", "state": "IL", "firstname": "Bill", "district": 11, "lastname": "Foster", "party": "Democrat", "twitterid": "RepBillFoster", "geoid": 1711}, "1712": {"website": "http://enyart.house.gov", "state": "IL", "firstname": "William", "district": 12, "lastname": "Enyart", "party": "Democrat", "twitterid": "RepBillEnyart", "geoid": 1712}, "1713": {"website": "http://rodneydavis.house.gov", "state": "IL", "firstname": "Rodney", "district": 13, "lastname": "Davis", "party": "Republican", "twitterid": "RodneyDavis", "geoid": 1713}, "1714": {"website": "http://hultgren.house.gov", "state": "IL", "firstname": "Randy", "district": 14, "lastname": "Hultgren", "party": "Republican", "twitterid": "RepHultgren", "geoid": 1714}, "1715": {"website": "http://shimkus.house.gov", "state": "IL", "firstname": "John", "district": 15, "lastname": "Shimkus", "party": "Republican", "twitterid": "RepShimkus", "geoid": 1715}, "1716": {"website": "http://kinzinger.house.gov", "state": "IL", "firstname": "Adam", "district": 16, "lastname": "Kinzinger", "party": "Republican", "twitterid": "RepKinzinger", "geoid": 1716}, "1717": {"website": "http://bustos.house.gov", "state": "IL", "firstname": "Cheri", "district": 17, "lastname": "Bustos", "party": "Democrat", "twitterid": "RepCheri", "geoid": 1717}, "1718": {"website": "http://schock.house.gov", "state": "IL", "firstname": "Aaron", "district": 18, "lastname": "Schock", "party": "Republican", "twitterid": "RepAaronSchock", "geoid": 1718}, "3800": {"website": "http://cramer.house.gov", "state": "ND", "firstname": "Kevin", "district": 0, "lastname": "Cramer", "party": "Republican", "twitterid": "RepKevinCramer", "geoid": 3800}, "4901": {"website": "http://robbishop.house.gov", "state": "UT", "firstname": "Rob", "district": 1, "lastname": "Bishop", "party": "Republican", "twitterid": "RepRobBishop", "geoid": 4901}, "1801": {"website": "http://visclosky.house.gov", "state": "IN", "firstname": "Peter", "district": 1, "lastname": "Visclosky", "party": "Democrat", "twitterid": "RepVisclosky", "geoid": 1801}, "1802": {"website": "http://walorski.house.gov", "state": "IN", "firstname": "Jackie", "district": 2, "lastname": "Walorski", "party": "Republican", "twitterid": "RepWalorski", "geoid": 1802}, "1803": {"website": "http://stutzman.house.gov", "state": "IN", "firstname": "Marlin", "district": 3, "lastname": "Stutzman", "party": "Republican", "twitterid": "RepStutzman", "geoid": 1803}, "1804": {"website": "http://rokita.house.gov", "state": "IN", "firstname": "Todd", "district": 4, "lastname": "Rokita", "party": "Republican", "twitterid": "ToddRokita", "geoid": 1804}, "1805": {"website": "http://susanwbrooks.house.gov", "state": "IN", "firstname": "Susan", "district": 5, "lastname": "Brooks", "party": "Republican", "twitterid": "SusanWBrooks", "geoid": 1805}, "1806": {"website": "http://messer.house.gov", "state": "IN", "firstname": "Luke", "district": 6, "lastname": "Messer", "party": "Republican", "twitterid": "RepLukeMesser", "geoid": 1806}, "1807": {"website": "http://carson.house.gov", "state": "IN", "firstname": "Andr\u00e9", "district": 7, "lastname": "Carson", "party": "Democrat", "twitterid": "RepAndreCarson", "geoid": 1807}, "1808": {"website": "http://bucshon.house.gov", "state": "IN", "firstname": "Larry", "district": 8, "lastname": "Bucshon", "party": "Republican", "twitterid": "RepLarryBucshon", "geoid": 1808}, "1809": {"website": "http://toddyoung.house.gov", "state": "IN", "firstname": "Todd", "district": 9, "lastname": "Young", "party": "Republican", "twitterid": "RepToddYoung", "geoid": 1809}, "643": {"website": "http://waters.house.gov", "state": "CA", "firstname": "Maxine", "district": 43, "lastname": "Waters", "party": "Democrat", "twitterid": "MaxineWaters", "geoid": 643}, "3901": {"website": "http://chabot.house.gov", "state": "OH", "firstname": "Steve", "district": 1, "lastname": "Chabot", "party": "Republican", "twitterid": "RepSteveChabot", "geoid": 3901}, "3902": {"website": "http://wenstrup.house.gov", "state": "OH", "firstname": "Brad", "district": 2, "lastname": "Wenstrup", "party": "Republican", "twitterid": "RepBradWenstrup", "geoid": 3902}, "3903": {"website": "http://beatty.house.gov", "state": "OH", "firstname": "Joyce", "district": 3, "lastname": "Beatty", "party": "Democrat", "twitterid": "RepBeatty", "geoid": 3903}, "3904": {"website": "http://jordan.house.gov", "state": "OH", "firstname": "Jim", "district": 4, "lastname": "Jordan", "party": "Republican", "twitterid": "Jim_Jordan", "geoid": 3904}, "3905": {"website": "http://latta.house.gov", "state": "OH", "firstname": "Robert", "district": 5, "lastname": "Latta", "party": "Republican", "twitterid": "BobLatta", "geoid": 3905}, "3906": {"website": "http://billjohnson.house.gov", "state": "OH", "firstname": "Bill", "district": 6, "lastname": "Johnson", "party": "Republican", "twitterid": "RepBillJohnson", "geoid": 3906}, "3907": {"website": "http://gibbs.house.gov", "state": "OH", "firstname": "Bob", "district": 7, "lastname": "Gibbs", "party": "Republican", "twitterid": "RepBobGibbs", "geoid": 3907}, "3908": {"website": "http://johnboehner.house.gov", "state": "OH", "firstname": "John", "district": 8, "lastname": "Boehner", "party": "Republican", "twitterid": "SpeakerBoehner", "geoid": 3908}, "3909": {"website": "http://kaptur.house.gov", "state": "OH", "firstname": "Marcy", "district": 9, "lastname": "Kaptur", "party": "Democrat", "twitterid": "RepMarcyKaptur", "geoid": 3909}, "3910": {"website": "http://turner.house.gov/", "state": "OH", "firstname": "Michael", "district": 10, "lastname": "Turner", "party": "Republican", "twitterid": "RepMikeTurner", "geoid": 3910}, "3911": {"website": "http://fudge.house.gov", "state": "OH", "firstname": "Marcia", "district": 11, "lastname": "Fudge", "party": "Democrat", "twitterid": "RepMarciaFudge", "geoid": 3911}, "3912": {"website": "http://tiberi.house.gov", "state": "OH", "firstname": "Patrick", "district": 12, "lastname": "Tiberi", "party": "Republican", "twitterid": "TiberiPress", "geoid": 3912}, "3913": {"website": "http://timryan.house.gov", "state": "OH", "firstname": "Tim", "district": 13, "lastname": "Ryan", "party": "Democrat", "twitterid": "RepTimRyan", "geoid": 3913}, "3914": {"website": "http://joyce.house.gov", "state": "OH", "firstname": "David", "district": 14, "lastname": "Joyce", "party": "Republican", "twitterid": "RepDaveJoyce", "geoid": 3914}, "3915": {"website": "http://stivers.house.gov", "state": "OH", "firstname": "Steve", "district": 15, "lastname": "Stivers", "party": "Republican", "twitterid": "RepSteveStivers", "geoid": 3915}, "3916": {"website": "http://renacci.house.gov", "state": "OH", "firstname": "James", "district": 16, "lastname": "Renacci", "party": "Republican", "twitterid": "RepJimRenacci", "geoid": 3916}, "653": {"website": "http://www.house.gov/susandavis", "state": "CA", "firstname": "Susan", "district": 53, "lastname": "Davis", "party": "Democrat", "twitterid": "RepSusanDavis", "geoid": 653}, "1901": {"website": "http://braley.house.gov", "state": "IA", "firstname": "Bruce", "district": 1, "lastname": "Braley", "party": "Democrat", "twitterid": "BruceBraley", "geoid": 1901}, "1902": {"website": "http://loebsack.house.gov", "state": "IA", "firstname": "David", "district": 2, "lastname": "Loebsack", "party": "Democrat", "twitterid": "DaveLoebsack", "geoid": 1902}, "1903": {"website": "http://www.house.gov/latham", "state": "IA", "firstname": "Tom", "district": 3, "lastname": "Latham", "party": "Republican", "twitterid": "TomLatham", "geoid": 1903}, "1904": {"website": "http://steveking.house.gov", "state": "IA", "firstname": "Steve", "district": 4, "lastname": "King", "party": "Republican", "twitterid": "SteveKingIA", "geoid": 1904}, "4001": {"website": "http://bridenstine.house.gov", "state": "OK", "firstname": "Jim", "district": 1, "lastname": "Bridenstine", "party": "Republican", "twitterid": "RepJBridenstine", "geoid": 4001}, "4002": {"website": "http://mullin.house.gov", "state": "OK", "firstname": "Markwayne", "district": 2, "lastname": "Mullin", "party": "Republican", "twitterid": "RepMullin", "geoid": 4002}, "4003": {"website": "http://lucas.house.gov/", "state": "OK", "firstname": "Frank", "district": 3, "lastname": "Lucas", "party": "Republican", "twitterid": "RepFrankLucas", "geoid": 4003}, "4004": {"website": "http://cole.house.gov", "state": "OK", "firstname": "Tom", "district": 4, "lastname": "Cole", "party": "Republican", "twitterid": "TomColeOK04", "geoid": 4004}, "4005": {"website": "http://lankford.house.gov", "state": "OK", "firstname": "James", "district": 5, "lastname": "Lankford", "party": "Republican", "twitterid": "RepLankford", "geoid": 4005}, "2001": {"website": "http://huelskamp.house.gov", "state": "KS", "firstname": "Tim", "district": 1, "lastname": "Huelskamp", "party": "Republican", "twitterid": "CongHuelskamp", "geoid": 2001}, "2002": {"website": "http://lynnjenkins.house.gov", "state": "KS", "firstname": "Lynn", "district": 2, "lastname": "Jenkins", "party": "Republican", "twitterid": "RepLynnJenkins", "geoid": 2002}, "2003": {"website": "http://yoder.house.gov", "state": "KS", "firstname": "Kevin", "district": 3, "lastname": "Yoder", "party": "Republican", "twitterid": "RepKevinYoder", "geoid": 2003}, "2004": {"website": "http://pompeo.house.gov", "state": "KS", "firstname": "Mike", "district": 4, "lastname": "Pompeo", "party": "Republican", "twitterid": "RepMikePompeo", "geoid": 2004}, "408": {"website": "http://franks.house.gov/", "state": "AZ", "firstname": "Trent", "district": 8, "lastname": "Franks", "party": "Republican", "twitterid": "RepTrentFranks", "geoid": 408}}
Display the source blob
Display the rendered blob
Raw
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment