If people want here's a little bit of code that allows you to access subjects/numbers of band 6/e4 for any school. Just jerryrigged it together, it works for me.
import requests
import pandas as pd
SCHOOLS = {}
def fetchTable(url):
r = requests.get(url)
df_list = pd.read_html(r.text)...