-
Notifications
You must be signed in to change notification settings - Fork 14
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
UTM athletics scraper #34
Comments
Proposed schema (for each type of athletics): {
"id": String,
"name": String,
"location": String,
"building_id": String,
"date": String,
"start_time": String,
"end_time": String
} |
Started working on this, scrapes all events for the given month. Here's the current schema: {
"date": String,
"events": [{
"title": String,
"location": String,
"start_time": String,
"end_time": String,
}]
} This one may work as well (using event titles as IDs): {
"id": String,
"sessions": [{
"location": String,
"date": String,
"start_time": String,
"end_time": String
}]
} As far as I can tell, all athletic events happen in the same building, the Recreation, Athletic & Wellness Centre (building |
@kshvmdn we can leave We can go with the former schema to match how our data looks for shuttles. LGTM! |
@kshvmdn I merged a few refactors / small overhaul of scraper layout, let me know if you're able to merge master properly. |
UTSC scraper, awesome! Let's hope UTSG gives us standardized info on their stuff soon. |
https://m.utm.utoronto.ca/physed.php
Scrape everything that shows up on that page.
In the meanwhile, I will try and get in contact with UTSG athletics to see if they can give their internal drop-in calendar to the public (I know it exists! I've seen it!).
As for UTSC, anyone from there can help out if they know any information about UTSC athletics.
The text was updated successfully, but these errors were encountered: