Skip to content
This repository has been archived by the owner on Mar 10, 2023. It is now read-only.

erinhengel/Requests-NBER

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

11 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Requests-NBER

Requests-NBER is a custom Requests class to log onto NBER.org, the website of the National Bureau of Economic Research.

Installation

$ pip install requests_nber

Documentation

Detailed documentation available at www.erinhengel.com/software/requests-nber.

Quickstart

The NBER class logs onto NBER.org and establishes a connection with the host. Contains a session attribute that returns a Request Session object with all the methods of the main Requests API.

>>> import requests_nber

# Establish NBER connection object.
>>> deets = {'username': 'someuser', 'password': 'XXXX'}
>>> conn = requests_nber.NBER(login=deets)

# Download the HTML of the paper with document id t1.
>>> doc_id = 't1'
>>> html = conn.html(id=doc_id)

# Download the document PDF.
>>> pdf = conn.pdf(id=doc_id, file='article.pdf')

# Download the bibliographic information.
>>> biblio = conn.ref(id=doc_id)
>>> biblio['doi']
'10.3386/t0001'
>>> biblio['author']
'Seppo Honkapohja and Takatoshi Ito'

Releases

No releases published

Packages

No packages published

Languages