vavalomi / ssaw

Python Wrapper for Survey Solutions API

Home Page:https://ssaw.readthedocs.io

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

SSAW: Python wrapper for the Survey Solutions HTTP API

Python package codecov PyPI version Documentation Status

SSAW is a Python library to access the Survey Solutions API. This library enables you to manage resources such as creating assignments, users, maps; as well as perform workflow actions, like approving interviews, reassigning workspaces etc in your Python applications.

import ssaw

# First, initialize connection with the server
client = ssaw.Client('https://demo.mysurvey.solutions', 'api_user', 'api_password')

# Get list of questionnaires
for q in ssaw.QuestionnairesApi(client).get_list():
    print(q.title)

# Download the latest exported data in SPSS format
filename = ssaw.ExportApi(client).get(export_type="SPSS",        
    questionnaire_identity="64136490cbc24a71a1df10f4b7115599$1")

Complete documentation at https://ssaw.readthedocs.io
Details on API at https://demo.mysurvey.solutions/apidocs

Read more about Survey Solutions at https://mysurvey.solutions

About

Python Wrapper for Survey Solutions API

https://ssaw.readthedocs.io

License:MIT License


Languages

Language:Python 98.3%Language:Shell 1.5%Language:Batchfile 0.1%