Skip to content

Commit

Permalink
Add Dates reference
Browse files Browse the repository at this point in the history
  • Loading branch information
kashav committed May 16, 2016
1 parent e5834bd commit 2a432e2
Showing 1 changed file with 62 additions and 0 deletions.
62 changes: 62 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,9 @@ This is a library of scrapers for various University of Toronto websites. It is
- [Shuttle Bus Schedule](#shuttles)
- [Events](#events)
- [Libraries](#libraries)
- [Dates](#Dates)
- [UTSG Dates](#utsg-dates)
- [UTM Dates](#utm-dates)

## Requirements
- [python3](https://www.python.org/download/releases/3.5.1)
Expand Down Expand Up @@ -692,3 +695,62 @@ https://onesearch.library.utoronto.ca/
}
}
```

--------------------------------------------------------------------------------

### Dates

##### Class name
```python
uoftscrapers.Dates
```

##### Scraper source
- [UTSG Dates](#utsg-dates)
- [UTM Dates](#utm-dates)

##### Output format
```js
{
"date": String,
"events": [{
"end_date": String,
"session": String,
"campus": String,
"description": String
}]
}
```

----------------------------------------

### UTSG Dates

##### Class name
```python
uoftscrapers.UTSGDates
```

##### Scraper source
http://www.artsci.utoronto.ca/current/course/timetable/
http://www.undergrad.engineering.utoronto.ca/About/Dates_Deadlines.htm

##### Output format
Refer to [Exams](#exams)

--------------------

### UTM Dates

##### Class name
```python
uoftscrapers.UTMDates
```

##### Scraper source
http://m.utm.utoronto.ca/importantDates.php

##### Output format
Refer to [Exams](#exams)

--------------------------------------------------------------------------------

0 comments on commit 2a432e2

Please sign in to comment.