MCPcopy Create free account
hub / github.com/LibraryOfCongress/api.congress.gov / get_bill_text

Function get_bill_text

api_client/python/bill_example.py:157–164  ·  view source on GitHub ↗

'https://api.congress.gov/v3/bill/117/hr/21/text' This API returns, text of the specified Bill Bill subjects

(client)

Source from the content-addressed store, hash-verified

155
156
157def get_bill_text(client):
158 """
159 'https://api.congress.gov/v3/bill/117/hr/21/text'
160 This API returns, text of the specified Bill
161 Bill subjects
162 """
163 endpoint = f"{BILL_PATH}/{CONGRESS}/{BILL_HR}/{BILL_NUM}/text"
164 client.get(endpoint)
165
166
167def get_bill_titles(client):

Callers 1

bill_example.pyFile · 0.70

Calls

no outgoing calls

Tested by

no test coverage detected