From 71297919999afd380b232b4e9475c897db1e255d Mon Sep 17 00:00:00 2001 From: showerst Date: Wed, 20 Dec 2023 11:43:08 -0500 Subject: [PATCH] SD: 2024 Session (#4762) --- scrapers/sd/__init__.py | 10 +++++++++- scrapers/sd/bills.py | 2 ++ 2 files changed, 11 insertions(+), 1 deletion(-) diff --git a/scrapers/sd/__init__.py b/scrapers/sd/__init__.py index a258bcd093..7febad0125 100644 --- a/scrapers/sd/__init__.py +++ b/scrapers/sd/__init__.py @@ -165,10 +165,18 @@ class SouthDakota(State): "name": "2023 Regular Session", "start_date": "2023-01-10", "end_date": "2023-03-27", + "active": False, + }, + { + "_scraped_name": "2024", + "identifier": "2024", + "name": "2024 Regular Session", + "start_date": "2024-01-09", + "end_date": "2024-03-25", "active": True, }, ] - ignored_scraped_sessions = ["2024"] + ignored_scraped_sessions = [] def get_session_list(self): api_url = "https://sdlegislature.gov/api/Sessions/" diff --git a/scrapers/sd/bills.py b/scrapers/sd/bills.py index ffaf3a55d1..3716835f11 100644 --- a/scrapers/sd/bills.py +++ b/scrapers/sd/bills.py @@ -6,6 +6,7 @@ from utils import LXMLMixin +# via https://sdlegislature.gov/api/Sessions SESSION_IDS = { "2021": "44", "2020": "43", @@ -13,6 +14,7 @@ "2021i": "66", "2022": "64", "2023": "68", + "2024": "69", }