mirror of
https://github.com/unitedstates/congress.git
synced 2026-03-25 14:00:05 -04:00
10 lines
205 B
Python
10 lines
205 B
Python
import bill_info
|
|
|
|
|
|
def open_bill(bill_id):
|
|
return open("test/fixtures/bills/%s/information.html" % bill_id).read()
|
|
|
|
|
|
def bill(bill_id):
|
|
return bill_info.parse_bill(bill_id, open_bill(bill_id), {})
|