calremmel / snakemonkey

A library for easily downloading and parsing surveys from SurveyMonkey.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

snakemonkey

A python library for retrieving and parsing SurveyMonkey surveys. Made for researchers and analysts.

Report Bug · Request Feature

Getting Started

Installation

The easiest way to install snakemonkey is with pip:

pip install git+https://github.com/calremmel/snakemonkey

Usage

To download a survey:

from snakemonkey.client import Client

client = Client(token="my-token")
survey = client.get_survey("123456789")

To parse a survey with sensible defaults.

survey.parse_survey()

To export survey as a .csv file.

survey.to_csv("output.csv")

Roadmap

  • Use snakemonkey as at the command line
  • Allow caching of previously downloaded surveys
  • Export surveys to parquet

About

A library for easily downloading and parsing surveys from SurveyMonkey.


Languages

Language:Python 100.0%