rpi-crisis / scraper

Web scrapers for the RCOS project Correcting Rensselaer's Insufferable SIS (CRISIS)
https://rpicrisis.org
3 stars 0 forks source link

Update documentation to reflect needs from frontend #8

Closed ghost closed 2 years ago

ghost commented 2 years ago

According to Trevor, the following is the "ideal" template, which diverges from what is documented in this repository. Updating the documentation is the first step towards improving our scrapers since we can be certain of the format we want.

[
  {
    "department": "CSCI",
    "id": 1100,
    "name": "COMPUTER SCIENCE I",
    "description": "--description--",
    "prereqs": "--prerequesites--",
    "coreqs": "--corequesites--",
    "crosslistings": "--crosslistings--",
    "sections": [
      {
        "crn": "50039",
        "section": "01",
        "meetings": [
          {
            "time": "2:00 pm - 3:20 pm",
            "days": "MR",
            "location": "Online ",
            "type": "Lecture",
            "instructors": "Wesley D Turner, Shianne M. Hulbert"
          },
          {
            "time": "10:00 am - 11:50 am",
            "days": "T",
            "location": "Low Center for Industrial Inn. 3116",
            "type": "Lecture",
            "instructors": "Wesley D Turner, Shianne M. Hulbert"
          },
          {
            "time": "6:00 pm - 7:50 pm",
            "days": "R",
            "location": "Darrin Communications Center 308",
            "type": "Lecture",
            "instructors": "Wesley D Turner, Shianne M. Hulbert"
          }
        ],
        "capacity": 30,
        "enrolled": 25,
        "remaining": 5
      },
      {
        "crn": "50373",
        "section": "02",
        "meetings": [
          {
            "time": "2:00 pm - 3:20 pm",
            "days": "MR",
            "location": "Online ",
            "type": "Lecture",
            "instructors": "Wesley D Turner, Shianne M. Hulbert"
          },
          {
            "time": "10:00 am - 11:50 am",
            "days": "T",
            "location": "Carnegie Building 208",
            "type": "Lecture",
            "instructors": "Wesley D Turner, Shianne M. Hulbert"
          },
          {
            "time": "6:00 pm - 7:50 pm",
            "days": "R",
            "location": "Darrin Communications Center 308",
            "type": "Lecture",
            "instructors": "Wesley D Turner, Shianne M. Hulbert"
          }
        ],
        "capacity": 36,
        "enrolled": 29,
        "remaining": 7
      }
    ]
  }
]