OFA Crawler - ActoKids/web-crawler GitHub Wiki

The OFACrawler opens the calendar from a website https://outdoorsforall.org/events-news/calendar/ and crawls the events' data from this website for 3 consecutive months from the current month and generates a json file with the results.

Dependencies -

Python - https://www.python.org/downloads/
Pip - https://pip.pypa.io/en/stable/installing/
Beautiful Soup 4 - pip install beautifulsoup4
dateutil - pip install python-dateutil
datetime - pip install DateTime

How it works

Opens the website https://outdoorsforall.org/events-news/calendar/ and parses three months of events from the current month. Produce a list of events' data and outout json file. Displays timestamp of start time and end time, logs connecting to link successful or failed, links of events found.

Running the crawler

Make sure ALL dependencies are installed before running AND that you have ran OFASraper.py first. Once done simply run the OFAScraper.py script and wait until it finishes creating the json.

Example of output

Following is the JSON generated -
OFA Crawler


{
	"https://localendar.com/event?DAM=PublishedEvent&m=333899&event_id=1428&calendar_id=333899&more_info=N&export_date=Jan%2027,%202019&category=8": {
		"URL": "https://localendar.com/event?DAM=PublishedEvent&m=333899&event_id=1428&calendar_id=333899&more_info=N&export_date=Jan%2027,%202019&category=8",
		"Title": "Summit Sundays",
		"Time": "9-11am 9am-2pm 12-2pm ",
		"Location": "The Summit at Snoqualmie",
		"Description": "This series is open to participants of all abilities, with all levels of ski or snowboard experience. Lessons take place over the course of seven consecutive weekends in January and February.9-11am9am-2pm12-2pm",
		"Date": "2019-01-27 00:00:00"
	},
	"https://localendar.com/event?DAM=PublishedEvent&m=333899&event_id=1429&calendar_id=333899&more_info=N&export_date=Jan%2027,%202019&category=8": {
		"URL": "https://localendar.com/event?DAM=PublishedEvent&m=333899&event_id=1429&calendar_id=333899&more_info=N&export_date=Jan%2027,%202019&category=8",
		"Title": "Steven's Sundays",
		"Time": "9-11am 9am-2pm 12-2pm ",
		"Location": "Steven's Pass",
		"Description": "This series is open to participants of all abilities, with all levels of ski or snowboard experience. Lessons take place over the course of seven consecutive weekends in January and February. Lessons DO NOT meet on January 20th, February 3rd, or February 17th.9-11am9am-2pm12-2pm",
		"Date": "2019-01-27 00:00:00"
	},
	"https://localendar.com/event?DAM=PublishedEvent&m=333899&event_id=1430&calendar_id=333899&more_info=N&export_date=Jan%2030,%202019&category=8": {
		"URL": "https://localendar.com/event?DAM=PublishedEvent&m=333899&event_id=1430&calendar_id=333899&more_info=N&export_date=Jan%2030,%202019&category=8",
		"Title": "Downhill Skihawks",
		"Time": "Unknown",
		"Location": "The Summit at Snoqualmie",
		"Description": "The Skihawks are a racing team that is comprised of athletes with intellectual disabilities who train with Outdoors for All and compete in the Special Olympics."
	},
		"https://localendar.com/event?DAM=PublishedEvent&m=333899&event_id=1422&calendar_id=333899&more_info=N&export_date=Feb%2023,%202019&category=8": {
		"URL": "https://localendar.com/event?DAM=PublishedEvent&m=333899&event_id=1422&calendar_id=333899&more_info=N&export_date=Feb%2023,%202019&category=8",
		"Title": "Steven's Saturdays",
		"Time": "9-11am 9am-2pm 12-2pm ",
		"Location": "Steven's Pass",
		"Description": "This series is open to participants of all abilities, with all levels of ski or snowboard experience. Lessons take place over the course of seven consecutive weekends in January and February. Lessons DO NOT meet on January 19th, February 2nd, or February 16th.9-11am9am-2pm12-2pm",
		"Date": "2019-02-23 00:00:00"
	},
	"https://localendar.com/event?DAM=PublishedEvent&m=333899&event_id=1429&calendar_id=333899&more_info=N&export_date=Feb%2024,%202019&category=8": {
		"URL": "https://localendar.com/event?DAM=PublishedEvent&m=333899&event_id=1429&calendar_id=333899&more_info=N&export_date=Feb%2024,%202019&category=8",
		"Title": "Steven's Sundays",
		"Time": "9-11am 9am-2pm 12-2pm ",
		"Location": "Steven's Pass",
		"Description": "This series is open to participants of all abilities, with all levels of ski or snowboard experience. Lessons take place over the course of seven consecutive weekends in January and February. Lessons DO NOT meet on January 20th, February 3rd, or February 17th.9-11am9am-2pm12-2pm",
		"Date": "2019-02-24 00:00:00"
	},
		"https://localendar.com/event?DAM=PublishedEvent&m=333899&event_id=1429&calendar_id=333899&more_info=N&export_date=Mar%2010,%202019&category=8": {
		"URL": "https://localendar.com/event?DAM=PublishedEvent&m=333899&event_id=1429&calendar_id=333899&more_info=N&export_date=Mar%2010,%202019&category=8",
		"Title": "Steven's Sundays",
		"Time": "9-11am 9am-2pm 12-2pm ",
		"Location": "Steven's Pass",
		"Description": "This series is open to participants of all abilities, with all levels of ski or snowboard experience. Lessons take place over the course of seven consecutive weekends in January and February. Lessons DO NOT meet on January 20th, February 3rd, or February 17th.9-11am9am-2pm12-2pm",
		"Date": "2019-03-10 00:00:00"
	}
}