This Python package provides a streamlined solution for NYU students to collaborate on Qualtrics surveys. It simplifies the process of adding collaborators to a survey and managing access.
Here's a quick guide on how to use this package:
-
Import the Client: Begin by importing the
CollaborationClient
class from the package.from qualtrics_collaboration import CollaborationClient
-
Create a Client Instance: Create an instance of
CollaborationClient
.client = CollaborationClient()
-
Login: Log in to your Qualtrics account through the client.
client.login()
-
Add a Collaborator: Add a collaborator to your survey by providing the survey ID and the collaborator's username or email.
client.add_collaborator(survey_id='SV_SURVEY_ID', collaboration_username='USERNAME/EMAIL')
-
Enter Collaboration Code: If you have a collaboration code for an existing survey, enter it to join the survey.
client.enter_collaboration_code(code='COLLABORATION_CODE')
Contributions are welcome! Please feel free to submit pull requests, report bugs, or suggest features.