Skip to content

A Python Library for interacting with examinations.ie

Notifications You must be signed in to change notification settings

LearnFocused/ExaminationsPy

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

11 Commits
 
 
 
 
 
 

Repository files navigation

ExaminationsPy

A python library for interacting with examinations.ie

Usage

Import the library

import ExaminationsPy as ex

Check which subjects are available

Examinations = ex.Examinations("lc")
subjects = Examinations.subjects()

Check which years are available

years = Examinations.years()

Get the url for the 2019 Higher Level Accounting Paper

papers = Examinations.papers("Accounting", year = 2019, level = "Higher Level")
print(papers[0].url)

Get the url for the 2019 Higher Level Accounting Marking Scheme

schemes = Examinations.schemes("Accounting", year = 2019, level = "Higher Level")
print(schemes[0].url)

Get all the Accounting Higher Level Papers

papers = Examinations.papers(subject = "Accounting", level = "Higher Level")

About

A Python Library for interacting with examinations.ie

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages