We Are One - A Global Film Festival's HTML page parser to create an ICS file containing details for each film (date/hour/summary/etc).
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
theo1 ff2a0fd82b Corrected for timezones and event duration. The script is now functional. 3 years ago
html Corrected for timezones and event duration. The script is now functional. 3 years ago
.gitignore First commit of a python parser 3 years ago
README.md Corrected for timezones and event duration. The script is now functional. 3 years ago
parser.py Corrected for timezones and event duration. The script is now functional. 3 years ago
requirements.txt First commit of a python parser 3 years ago

README.md

We Are One : A Global Film Festival parser

What does it do ?

This short scripts parses HTML pages from the official WAOFF schedule webpage (http://www.weareoneglobalfestival.com/schedule) in order to create an iCalendar-formatted file, that you can directly import in your calendar app.

Usage :

python3 parser.py

Note : the webpage is JS-based, which means you can’t just wget it to extract the HTML page. You’ll need to browse to the schedule page you want, go to the console, and type :

console.log(document.getElementsByTagName('html')[0].innerHTML);

, then copy-paste it to and html file locally, that you’ll browse with the script.