Distinguished Achievers List (with sortable Excel file) (1 Viewer)

Maxwell

bow peasants
Joined
Aug 1, 2013
Messages
394
Location
not near u coz u aint hot enough
Gender
Male
HSC
2014
Re: Distinguished Achievers List

Same here! I go to a low ranked school (band 6's are scarce) and we managed to get 6 band 6's this year! Yay!
I know this feeling - our school is ranked 600+ and we managed 10+ b6 :D Hopefully our school goes up the rankings :p

She was so excited! One of my teachers actually cried because someone finally received a band 6! AHAHA!
I think my Legal teacher would've jizzed his pants considering last year his highest mark was 83. LOL
 

barkbarkbarkbark

New Member
Joined
Oct 21, 2014
Messages
14
Gender
Undisclosed
HSC
N/A
Re: Distinguished Achievers List

If someone can let me know what 15235 is I should have a table ready.
 

Halfasian

New Member
Joined
Apr 3, 2012
Messages
9
Gender
Male
HSC
2012
Re: Distinguished Achievers List

I'll do it when I get home. I'll also rip out other stats etc. Are school band6 ranks out yet?
 

futuremidwife

Well-Known Member
Joined
Jul 26, 2013
Messages
1,021
Gender
Female
HSC
2012
Uni Grad
2017
Re: Distinguished Achievers List

No, my school had 7 band 6's! My mistake!
 

epz

Member
Joined
Dec 10, 2012
Messages
66
Location
the internet
Gender
Male
HSC
2013
Re: Distinguished Achievers List

When do we get the sortable excel file? I'm guessing that was user-made and not from BOSTES?
I made a quick python script to scrape it all into a single HTML file. You can view this here: https://static.shubh.am/hsc/results.html

For those interested about the script, here it is:

Code:
from bs4 import BeautifulSoup
import requests
r = requests.get('http://www.boardofstudies.nsw.edu.au/ebos/static/DSACH_2014_12.html')
links_data = r.text.encode('utf8')
soup = BeautifulSoup(links_data)
urls_to_scrape = []

for ptag in soup.findAll("td"):
	for atag in ptag.findAll("a"):
		urls_to_scrape.append(atag['href'])

for i in urls_to_scrape:
	r = requests.get("http://www.boardofstudies.nsw.edu.au/ebos/static/" + i)
	page_data = r.text.encode('utf8')
	soup = BeautifulSoup(page_data)
	for group in soup.findAll("tr"):
		print(group)
 

Rafy

Retired
Joined
Sep 30, 2004
Messages
10,719
Gender
Female
HSC
2005
Uni Grad
2008
Re: Distinguished Achievers List

Sortable excel file is going up now
 

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

Top