Skip to content

Commit

Permalink
SD: 2024 Session (#4762)
Browse files Browse the repository at this point in the history
  • Loading branch information
showerst authored Dec 20, 2023
1 parent 18472d8 commit 7129791
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 1 deletion.
10 changes: 9 additions & 1 deletion scrapers/sd/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -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/"
Expand Down
2 changes: 2 additions & 0 deletions scrapers/sd/bills.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,13 +6,15 @@

from utils import LXMLMixin

# via https://sdlegislature.gov/api/Sessions
SESSION_IDS = {
"2021": "44",
"2020": "43",
"2021r": "65",
"2021i": "66",
"2022": "64",
"2023": "68",
"2024": "69",
}


Expand Down

0 comments on commit 7129791

Please sign in to comment.