Skip to content
This repository has been archived by the owner on Jun 6, 2022. It is now read-only.

Latest commit

 

History

History
38 lines (26 loc) · 1.41 KB

README.md

File metadata and controls

38 lines (26 loc) · 1.41 KB

INHA_TIMETABLE

인하대학교 수강신청 시간표 크롤러

npm npm

JavaScript Style Guide

설치

npm install --save inha-timetable

사용

const fs = require('fs')
const { getTimeTable, getDeptCode } = require('inha-timetable')

getTimeTable(getDeptCode('정보통신공학과'), '전공')
  .then(courses => {
    console.log(courses)
    fs.writeFileSync('courses.json', JSON.stringify(courses, null, 4))
  })
  .catch(e => console.error(e))

getTimeTable(deptCode, category) ⇒ Array

시간표를 인하대학교 수강신청에서 가져옵니다.

Returns: Array - 시간표 배열을 반환합니다.

Param Type Description
deptCode string 학과 코드
category string 필수(전공+교양필수), 전공, 교양필수, 영어, 핵심교양, 일반교양