Skip to content

Commit

Permalink
WA: adjust session list selector, add 2025 session (inactive)
Browse files Browse the repository at this point in the history
  • Loading branch information
jessemortenson committed Nov 27, 2024
1 parent 4df5311 commit 711ffb9
Showing 1 changed file with 10 additions and 1 deletion.
11 changes: 10 additions & 1 deletion scrapers/wa/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -71,6 +71,15 @@ class Washington(State):
"end_date": "2024-03-07",
"active": True,
},
{
"_scraped_name": "2025-26",
"classification": "primary",
"identifier": "2025-2026",
"name": "2025-2026 Regular Session",
"start_date": "2025-01-13",
"end_date": "2026-03-06",
"active": False,
},
]
ignored_scraped_sessions = [
"2007-08",
Expand All @@ -92,6 +101,6 @@ def get_session_list(self):

return url_xpath(
"https://apps.leg.wa.gov/billinfo/",
'//select[@id="biennia"]/option/@value',
'//select[@id="biennium"]/option/text()',
verify=False,
)

0 comments on commit 711ffb9

Please sign in to comment.