In [1]:
import requests
page = requests.get("http://www.rwth-aachen.de/go/id/pzpc").text
key = "Letzte Aktualisierung: "
update = page[page.find(key) + len(key) : 
              page.find(key) + len(key) + 10] != '04.06.2018'
print("Update!!" if update else "Nope")
Nope