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

WI: update session names #5017

Merged
merged 1 commit into from
Aug 28, 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
21 changes: 10 additions & 11 deletions scrapers/wi/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,31 +14,31 @@ class Wisconsin(State):
"_scraped_name": "2009 Regular Session",
"classification": "primary",
"identifier": "2009 Regular Session",
"name": "2009 Regular Session",
"name": "2009-2010 Regular Session",
"start_date": "2009-01-13",
"end_date": "2011-01-03",
},
{
"_scraped_name": "2011 Regular Session",
"classification": "primary",
"identifier": "2011 Regular Session",
"name": "2011 Regular Session",
"name": "2011-2012 Regular Session",
"start_date": "2011-01-11",
"end_date": "2013-01-07",
},
{
"_scraped_name": "2013 Regular Session",
"classification": "primary",
"identifier": "2013 Regular Session",
"name": "2013 Regular Session",
"name": "2013-2014 Regular Session",
"start_date": "2013-01-07",
"end_date": "2014-01-13",
},
{
"_scraped_name": "2015 Regular Session",
"classification": "primary",
"identifier": "2015 Regular Session",
"name": "2015 Regular Session",
"name": "2015-2016 Regular Session",
"start_date": "2015-01-05",
"end_date": "2016-01-11",
},
Expand Down Expand Up @@ -118,7 +118,7 @@ class Wisconsin(State):
"_scraped_name": "2017 Regular Session",
"classification": "primary",
"identifier": "2017 Regular Session",
"name": "2017 Regular Session",
"name": "2017-2018 Regular Session",
"start_date": "2017-01-03",
"end_date": "2018-05-09",
},
Expand All @@ -142,15 +142,15 @@ class Wisconsin(State):
"_scraped_name": "2019 Regular Session",
"classification": "primary",
"identifier": "2019",
"name": "2019 Regular Session",
"name": "2019-2020 Regular Session",
"start_date": "2019-01-07",
"end_date": "2020-05-27",
},
{
"_scraped_name": "2021 Regular Session",
"classification": "primary",
"identifier": "2021",
"name": "2021 Regular Session",
"name": "2021-2022 Regular Session",
"start_date": "2021-01-04",
"end_date": "2022-05-27",
"active": False,
Expand All @@ -168,7 +168,7 @@ class Wisconsin(State):
"_scraped_name": "2023 Regular Session",
"classification": "primary",
"identifier": "2023",
"name": "2023 Regular Session",
"name": "2023-2024 Regular Session",
"start_date": "2023-01-03",
"end_date": "2024-05-25",
"active": True,
Expand All @@ -178,10 +178,9 @@ class Wisconsin(State):
"classification": "special",
"identifier": "2023S1",
"name": "September 2023 Special Session",
"start_date": "2023-09-21",
# TODO: correct end date
"start_date": "2023-09-20",
"end_date": "2023-09-22",
"active": True,
"active": False,
},
]
ignored_scraped_sessions = [
Expand Down
Loading