pyfloip

Converts FLOIP Results data package to XForm


Keywords
FLOIP, ODK, XForm, pyxform, XLSForm
License
Other
Install
pip install pyfloip==0.0.1

Documentation

pyfloip

travis

A library for converting the questions in a FLOIP Data Package descriptor to an ODK XForm.

Getting Started

$ pip install pyfloip
$ floip data/flow-results-example-1.json

Example

Reading a FLOIP results data package and generating the XML ODK XForm.

from floip import FloipSurvey
suvey = FloipSurvey('data/flow-results-example-1.json')
print(survey.xml())

Testing

$ pip install -r requirements.txt
$ py.test --pylint

Documentation

FloipSurvey

A class that converts a FLOIP results data package to an ODK XForm.