Coverage for /home/martinb/.local/share/virtualenvs/camcops/lib/python3.6/site-packages/redcap/__init__.py : 100%

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 -*-
4__author__ = 'Scott Burns <scott.s.burns@gmail.com>'
5__license__ = 'MIT'
6__copyright__ = '2014, Vanderbilt University'
7__version__ = '1.0.2'
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.
14With a Project object, you can view the metadata and export/import data.
16Other API requests are available, such as exporting users & Form-Event Mappings.
18"""
20from .project import Project
21from .request import RCRequest, RCAPIError, RedcapError