ATAR results/reveal thread (2 Viewers)

JCosmos

New Member
Joined
Jul 18, 2021
Messages
4
Gender
Male
HSC
2022
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.
Code:
import requests
import pandas as pd

SCHOOLS = {}

def fetchTable(url):
    r = requests.get(url)
    df_list = pd.read_html(r.text)
    df = df_list[0]
    b = df.values.tolist()
    return b[1:]

base = "https://educationstandards.nsw.edu.au/wps/portal/nesa/about/events/merit-lists/distinguished-achievers/2022/"
for surname in "abcdefghijklmnopqrstuvwxyz":
    print(surname)
    l = fetchTable(base + surname)
    for result in l:
        school = result[1]
        subjects = result[2].split("  ")
        if school not in SCHOOLS:
            SCHOOLS[school] = {}

        for s in subjects:
            subject = s.split("-")[1].strip()
            if subject in SCHOOLS[school]:
                SCHOOLS[school][subject] += 1
            else:
                SCHOOLS[school][subject] = 1

inp = "."
while inp:
    inp = input("School: ")
    if inp in SCHOOLS:
        for sub in SCHOOLS[inp]:
            print(f"{sub}: {SCHOOLS[inp][sub]}")
            print("")
    print("")
    print("")
 

Etho_x

Joined
Jun 21, 2019
Messages
824
Location
Sydney
Gender
Male
HSC
N/A
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.
Code:
import requests
import pandas as pd

SCHOOLS = {}

def fetchTable(url):
    r = requests.get(url)
    df_list = pd.read_html(r.text)
    df = df_list[0]
    b = df.values.tolist()
    return b[1:]

base = "https://educationstandards.nsw.edu.au/wps/portal/nesa/about/events/merit-lists/distinguished-achievers/2022/"
for surname in "abcdefghijklmnopqrstuvwxyz":
    print(surname)
    l = fetchTable(base + surname)
    for result in l:
        school = result[1]
        subjects = result[2].split("  ")
        if school not in SCHOOLS:
            SCHOOLS[school] = {}

        for s in subjects:
            subject = s.split("-")[1].strip()
            if subject in SCHOOLS[school]:
                SCHOOLS[school][subject] += 1
            else:
                SCHOOLS[school][subject] = 1

inp = "."
while inp:
    inp = input("School: ")
    if inp in SCHOOLS:
        for sub in SCHOOLS[inp]:
            print(f"{sub}: {SCHOOLS[inp][sub]}")
            print("")
    print("")
    print("")
Love the Python haha. How long have you been coding for out of interest?
 

Lunelle

New Member
Joined
Dec 15, 2022
Messages
12
Gender
Female
HSC
2023
Just want to congratulate anyone that got their marks today! Everyone worked super hard, and there was a lot of blood, sweat and tears involved. I know that in my household, we were stressed as a family for the marks but it turned out alright in the end :)

Special shout out to anyone that accelerated this year!!
 

tgone

Active Member
Joined
Mar 2, 2022
Messages
172
Gender
Male
HSC
2022
i'm late, but 99.95, am ecstatic :))))

if any 2023' need motivation, i procrastinated a massive amount and took many many full day breaks - prioritise resting, relaxing, and taking lots of time for yourself. I definitely didn't study during the summer holidays before our hsc year if that's reassuring, but i certainly recommend it... good luck to everyone doing the hsc next year!
 
Last edited:

cooljames044

New Member
Joined
Jun 26, 2019
Messages
6
Gender
Male
HSC
2022
On the contrary, I logged into this long disused account for the first time in almost two years to say that my ATAR is 33.85. Oh well, it's not like I care anyways.
 

cooljames044

New Member
Joined
Jun 26, 2019
Messages
6
Gender
Male
HSC
2022
i'm late, but 99.95, am ecstatic :))))

if any 2023' need motivation, i procrastinated a massive amount and took many many full day breaks - prioritise resting, relaxing, and taking lots of time for yourself. I definitely didn't study during the summer holidays before our hsc year if that's reassuring, but i certainly recommend it... good luck to everyone doing the hsc next year!
If you're actually telling the truth, then god damn, that's an incredible achievement. Nice one mate.
 

cooljames044

New Member
Joined
Jun 26, 2019
Messages
6
Gender
Male
HSC
2022
Don't miss high school much lmao
I'll definitely miss it, it's unlikely i'll ever be able to repeat making mudslides, cutting chairs into pieces, throwing food and sandwich bags filled with water at the year 8's, sneaking out during the wet weather bell and breaking shit in the same fun teenage way like in high school.

(you can probably see how I got my atar)
 
Joined
Nov 1, 2020
Messages
39
Gender
Male
HSC
2028
How can you check which schools ranked top in certain subjects? Like ancient history or English etc?
 

Users Who Are Viewing This Thread (Users: 0, Guests: 2)

Top