Metadata-Version: 1.1
Name: ResearchDataAU
Version: 0.1.2
Summary: A Python 3 API for researchdata.ands.org.au
Home-page: https://github.com/dawoudt/Research-Data-Australia-API
Author: Dawoud Tabboush
Author-email: dtabboush@gmail.com
License: MIT
Description: 
        # Research-Data-Australia-API
        
        researchdata.ands.org.au Python 3 API
        
        ## How To 
        
        #### Install
        
        python3 -m pip install ResearchDataAU
        
        #### Simple Query of Research Data Australia
        
        from researchdata_au import ResearchData
        
        rd = ResearchData()
        
        json_ = rd.query(q='unemployment')
        
        
        #### A little more complex query 
        
        
        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'])
        
        
        #### Get a generator of 100 document items
        
        
        from researchdata_au import ResearchData
        
        rd = ResearchData()
        
        gen_ = rd.query_for_docs(q='unemployment', rows=100)
        
        
        #### Get a list of title/id tuples
        
        
        from researchdata_au import ResearchData
        
        rd = ResearchData(q='income', rows=30)
        
        list_ = rd.get_titles_and_ids()
        
        
        
        #### Look at an items details
        
        
        from researchdata_au import ResearchData
        
        rd = ResearchData()
        
        json_ = rd.object_details(object_id=444926)
        
        
        
        #### Get external link of article
        
        
        from researchdata_au import ResearchData
        
        rd = ResearchData()
        
        tup_ = rd.get_external_link(object_id=444926)
        
        
        
        #### Filter by subject/area of research
        
        
        from researchdata_au import ResearchData
        
        rd = ResearchData(q='income')
        
        json_ = rd.filter_by_subject()
        
        
        
        ##### Note: Object Id is the id for each article
Keywords: research data Australia academic university
Platform: any
Classifier: Development Status :: 4 - Beta
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3
Classifier: Topic :: Software Development :: Libraries :: Python Modules
