Hide keyboard shortcuts

Hot-keys on this page

r m x p   toggle line displays

j k   next/prev highlighted chunk

0   (zero) top of page

1   (one) first highlighted chunk

1#!/usr/bin/env python 

2# -*- coding: utf-8 -*- 

3 

4__author__ = 'Scott Burns <scott.s.burns@gmail.com>' 

5__license__ = 'MIT' 

6__copyright__ = '2014, Vanderbilt University' 

7__version__ = '1.0.2' 

8 

9""" 

10This module exposes the REDCap API through the Project class. Instantiate the 

11class with the URL to your REDCap system along with an API key, probably 

12generated for you by a REDCap administrator. 

13 

14With a Project object, you can view the metadata and export/import data. 

15 

16Other API requests are available, such as exporting users & Form-Event Mappings. 

17 

18""" 

19 

20from .project import Project 

21from .request import RCRequest, RCAPIError, RedcapError