Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

WA: adjust session list selector, add 2025 session (inactive) #5101

Merged
merged 1 commit into from
Nov 27, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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,
)