Skip to content

Commit 32f4561

Browse files
committed
Preparing for release
1 parent 686eeac commit 32f4561

File tree

3 files changed

+16
-3
lines changed

3 files changed

+16
-3
lines changed

CHANGELOG.txt

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
0.3.0 01/14/2016
2+
* Renamed parameters for consistency: library_id to LibraryID, panel_id to PanelID, name to Name
3+
* New example: create panel, add recipient, send survey, delete panel
4+
15
0.2.0 01/05/2016
26
* Improved test coverage up to 80%
37
* importPanel function now automatically computes Email, LastName, FirstName and ExternalRef parameters

README.md

Lines changed: 11 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,14 +8,20 @@ PyQualtrics
88

99
Unofficial 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

1319
Python 2.7 only. Requires setuptools.
1420
Run `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.
3137
Please refer to http://www.qualtrics.com/university/researchsuite/developer-tools/api-integration/qualtrics-rest-api/
3238
for 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
3544
from pyqualtrics import Qualtrics
3645

@@ -56,7 +65,7 @@ QUALTRICS_LIBRARY_ID - Library ID
5665

5766
Please refer to https://survey.qualtrics.com/WRAPI/ControlPanel/docs.php#authentication_2.5 for additional information
5867
on 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

6170
If you want to run full test suite, you may want to create a survey, a message and one response in your Qualtrics account.
6271
QUALTRICS_SURVEY_ID, QUALTRICS_RESPONSE_ID and QUALTRICS_MESSAGE_ID variable should be set to activate those tests

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@
2828

2929
setup(
3030
name="pyqualtrics",
31-
version="0.2.0",
31+
version="0.3.0",
3232
author="Alex Vyushkov",
3333
author_email="[email protected]",
3434
description="Unofficial python SDK for Qualtrics API",

0 commit comments

Comments
 (0)