#!/usr/bin/env python
# Copyright (c) 2012 Paul Tagliamonte <paultag@sunlightfoundation.com>
# under the terms of the LICENSE file

from __future__ import print_function
from sunlight import openstates

vt_agro_bills = openstates.bills(
    q='agriculture',
    state='vt',
    chamber='upper'
)

for bill in vt_agro_bills:
    print( bill['title'] )
