researchdata.ands.org.au Python 3 API
python3 -m pip install ResearchDataAU
from researchdata_au import ResearchData
rd = ResearchData()
json_ = rd.query(q='unemployment')
from researchdata_au import ResearchData
rd = ResearchData()
json_ = rd.query(q='unemployment',
rows = 30,
year_from=1991,
year_to=2016,
group=['Central Queensland University', 'Australian National Corpus'])
from researchdata_au import ResearchData
rd = ResearchData()
gen_ = rd.query_for_docs(q='unemployment', rows=100)
from researchdata_au import ResearchData
rd = ResearchData(q='income', rows=30)
list_ = rd.get_titles_and_ids()
from researchdata_au import ResearchData
rd = ResearchData()
json_ = rd.object_details(object_id=444926)
from researchdata_au import ResearchData
rd = ResearchData()
tup_ = rd.get_external_link(object_id=444926)
from researchdata_au import ResearchData
rd = ResearchData(q='income')
json_ = rd.filter_by_subject()