Git Product home page Git Product logo

contentteam's Introduction

Backend of the Course Scheduler

Current Status

There is a script that can scrape the CSE department of UCSD for courses, their names, number of unites, descriptions, and requirements. After scraping, a database is created. The scraping is implemented in the file scrape.pl and can be run as a script from the command line:

$ swipl -s builddb.pl

This creates a "database" file, db.pl, used by the backend.

At the moment, the backend exposes one predicate, courses/1. It can be used to get a list of all courses. The result is a list with one element per course. Each element is a term course/5, with arguments:

  1. Course ID, an atom
  2. Course Title, an SWI7-style string
  3. Units, a term (see below)
  4. Text description, an SWI7-style string
  5. Prerequisites, an atom (for now)

Units are represented as one of three terms:

  • exactly(Units): a course is worth Units units (an integer)
  • from_to(From, To): a course is worth anything from From to To units
  • one_of(List): a course is worth one of the integer values in List

The user should decide how to represent these for a human reader.

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.