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

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

License

Notifications You must be signed in to change notification settings

int-i/inha_timetable

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

28 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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 필수(전공+교양필수), 전공, 교양필수, 영어, 핵심교양, 일반교양

Releases

No releases published

Packages

No packages published