forked from move-coop/parsons
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Alchemer: Update Class Name (move-coop#470)
* Update class name. * Lint. * Change class construction. * Little lint.
- Loading branch information
Showing
8 changed files
with
87 additions
and
39 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
Alchemer | ||
======== | ||
|
||
******** | ||
Overview | ||
******** | ||
|
||
`Alchemer <https://www.alchemer.com/>`_ is an online research tool that allows users to field surveys. This Parsons | ||
class allows users to retrieve surveys and survey results. | ||
|
||
.. note:: | ||
Alchemer was formerly known as SurveyGizmo. | ||
|
||
.. note:: | ||
Authentication | ||
To use the class, you need to provide an Alchemer API token and API token secret. For more information, | ||
see Alchemer API `authentication documentation <https://apihelp.alchemer.com/help/authentication>`_. | ||
|
||
*********** | ||
Quick Start | ||
*********** | ||
|
||
To instantiate the ``Alchemer`` class, you can either store your API token and API secret | ||
token as environmental variables (``SURVEYGIZMO_API_TOKEN`` and ``SURVEYGIZMO_API_TOKEN_SECRET``, | ||
respectively) or pass in the tokens arguments: |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -168,6 +168,7 @@ Indices and tables | |
action_kit | ||
action_network | ||
airtable | ||
alchemer | ||
aws | ||
azure | ||
bill_com | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
from parsons.alchemer.alchemer import Alchemer, SurveyGizmo | ||
|
||
__all__ = ['SurveyGizmo', 'Alchemer'] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
22 changes: 11 additions & 11 deletions
22
test/test_surveygizmo/test_getresponses.py → test/test_alchemer/test_getresponses.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
24 changes: 12 additions & 12 deletions
24
test/test_surveygizmo/test_getsurveys.py → test/test_alchemer/test_getsurveys.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters