File size: 989 Bytes
6986d7c d8b2c33 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 |
---
language:
- zh
---
# National Taiwan Normal University Course Catalog
Range: 109-1 ~ 112-1
## Data
Each dataset is an array of objects, each object represents a course:
```ts
interface Course {
serial: number
code: string
name: string
ename: string
type: string
department: string
form: string
credit: number
duration: string
gu_domain: string
description: string
goals: [goal: string, capability: string][]
teacher: string[]
schedule: string
methods: [method: string, description: string][]
evaluations: [weight: number, type: string, description: string][]
material: string
enrollment: number
limit: number
schedules: {
day: number
period: [from: number, to: number]
location: string
classroom: string
}[]
programs: string[]
comment: string
restriction: string
}
```
## Copyright
The copyright is owned by National Taiwan Normal University.
Source: <https://courseap2.itc.ntnu.edu.tw/acadmOpenCourse/index.jsp>
|