'https://api.congress.gov/v3/bill/117/hr/21/text' This API returns, text of the specified Bill Bill subjects
(client)
| 155 | |
| 156 | |
| 157 | def 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 | |
| 167 | def get_bill_titles(client): |