-
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
Events scraper #36
Comments
Proposed schema: {
"id": String,
"title": String,
"date": {
"start": String,
"end": String,
},
"url": String,
"description": String,
"campus": String,
"address": String,
"audience": [String]
} |
@qasim I'm down to work it. :V |
@g3wanghc Awesome. Here's a little tweaked schema that I had in mind, keeping with conventions from other scrapers: {
"id": String,
"title": String,
"date": String,
"start_time": String,
"end_time": String
"url": String,
"description": String,
"campus": String,
"address": String,
"audience": [String]
}
My thinking is each scraper run should go through all the pages of events (so every event currently listed) and then open each link inside to grab the more detailed information to complete the schema. Let me know what you think! |
Sure, looks like fun. 👍 |
@qasim Do we care about Admission Price, Contact Info, Website and Event Sponsor? |
https://www.events.utoronto.ca/
The text was updated successfully, but these errors were encountered: