Skip to content

Instantly share code, notes, and snippets.

View johnhawkinson's full-sized avatar

John Hawkinson johnhawkinson

  • MIT
  • Cambridge, MA
View GitHub Profile
@johnhawkinson
johnhawkinson / durhamcounty.py
Last active February 24, 2017 04:13 — forked from pallih/durhamcounty.py
Durham County NYC - Inmate Population Search
#!/usr/bin/python
import mechanize
import lxml.html
BASE_URL = "http://www2.durhamcountync.gov/sheriff/ips/default.aspx"
def parse_names(root):
# finds the names and prints
names = root.xpath("//a[@class='rvsnavy-bold']")