@@ -8,14 +8,20 @@ PyQualtrics
88
99Unofficial python SDK for Qualtrics API
1010
11+ # API Documentation
12+
13+ The Qualtrics REST API allows you to query our system using a simple URL syntax. All requests are simple GET or POST requests that return XML or JSON.
14+ Official API documenation is available on https://survey.qualtrics.com/WRAPI/ControlPanel/docs.php
15+ This library uses API v2.5
16+
1117# System requirements
1218
1319Python 2.7 only. Requires setuptools.
1420Run ` python ez_setup.py ` command if you do not have setuptools installed in your virtual environment.
1521
1622# Installation
1723
18- Install using pip:
24+ Install the latest release using pip:
1925
2026` pip install pyqualtrics `
2127
@@ -31,6 +37,9 @@ Access is available for your account.
3137Please refer to http://www.qualtrics.com/university/researchsuite/developer-tools/api-integration/qualtrics-rest-api/
3238for information on how to get your API Token and other Qualtrics IDs.
3339
40+ This is how you get get list of all responses to a survey. A python dictionary is returned by getLegacyResponseData
41+ function
42+
3443``` python
3544from pyqualtrics import Qualtrics
3645
@@ -56,7 +65,7 @@ QUALTRICS_LIBRARY_ID - Library ID
5665
5766Please refer to https://survey.qualtrics.com/WRAPI/ControlPanel/docs.php#authentication_2.5 for additional information
5867on how to get your API Token. Library ID can be found in the 'Qualtrics IDs' section.
59- If either of these variables is not defined, tests won't start at all.
68+ If one of these variables is not defined, tests won't start at all.
6069
6170If you want to run full test suite, you may want to create a survey, a message and one response in your Qualtrics account.
6271QUALTRICS_SURVEY_ID, QUALTRICS_RESPONSE_ID and QUALTRICS_MESSAGE_ID variable should be set to activate those tests
0 commit comments