-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Support Winter 2024 courses in Hotseat! (#113)
* wip * Remove old Fall 2023 file
- Loading branch information
1 parent
63ce67c
commit 4f09f34
Showing
6 changed files
with
323 additions
and
298 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
# Adding a term | ||
|
||
1. Scrape the enrollment appointments | ||
2. Scrape the subject areas, courses, and sections | ||
|
||
## Scrape the enrollment appointments | ||
|
||
Every quarter, the UCLA registrar publishes the enrollment appointments for the next quarter. We download this page/file manually and scrape it in order to calculate when enrollment is. | ||
|
||
Check out the enrollment appointment [readme](/lib/scrapedata/enrollment_appointments/README.md) for more detail on how to download and scrape this file. | ||
|
||
## Scrape the subject areas, courses, and sections | ||
|
||
Go to the `lambdas/` directory and update the `currentTerm` payload to match the new term. Make sure that the `term` and `id` match the database! | ||
|
||
Once this update is made, run `make deploy` to deploy the lambdas on the new schedule. You may also want to run `fetch-subject-areas` and `fetch-courses` manually so that `fetch-sections` has all the data it needs on a run. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
{ | ||
"term": { | ||
"term": "23F", | ||
"id": 75 | ||
"term": "24W", | ||
"id": 76 | ||
}, | ||
"shouldInsertEnrollmentData": true | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
293 changes: 293 additions & 0 deletions
293
lib/scrapedata/enrollment_appointments/Fall 2023-Winter 2024.html
Large diffs are not rendered by default.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters