Skip to main content

Tool to convert ODK-style XLSForms into Django models or use with wq (https://wq.io/)

Project description

xlsform-converter (xlsconv)

xlsform-converter converts surveys defined via the XLSForm standard into Django models and configuration. This makes it possible to re-use the powerful form building tools provided by the Open Data Kit ecosystem, while leveraging Django's robust support for relational databases like PostgreSQL.

xlsform-converter is designed to facilitate the rapid development of offline-capable data collection apps via the wq framework. The ultimate goal is to provide full compatibility with the form authoring tools provided by ODK and KoboToolbox (etc.). Note that this is not the same as full XForm compatibility: the client and server components of wq (wq.app and wq.db) use a JSON-based REST API to exchange data and are not directly compatible with their ODK Analogues (ODK Collect and ODK Aggregate, respectively).

For the database itself, the key distinction from other XLSForm tools (including those powered by Django, like KoboToolbox) is that xlsform-converter converts the xlsform fields directly into a Django model definition, rather than representing the entire XForm standard within Django. This means that each row in an XLSForm "survey" tab is mapped to (usually) a single column in a simple relational database table. Repeat questions are handled by creating a second model with a ForeignKey to the parent survey model.

For a more thorough comparison of XLSForm tools, see https://wq.io/overview/survey123-vs-kobotoolbox-vs-wq.

xlsform-converter also supports a couple of additional "constraints" that are not part of the XLSForm standard:

  • wq:ForeignKey('app.ModelName'): Create a foreign key to an existing Django model (presumably not defined in the spreadsheet). This is effectively a more relational version of select_one_external.
  • wq:initial(3): Very similar to repeat_count, but only set for new records.
  • wq:length(5): Text field maximum length (similar to a string-length constraint)

Latest PyPI Release Release Notes License GitHub Stars GitHub Forks GitHub Issues

Tests Python Support

Included Templates

xlsform-converter uses ASTs and templates to generate the following Django/wq project files from a given XLSForm (for example, this file).

Django Apps

Usage

If you are using wq, you may be interested in wq.create, which uses xlsconv internally for the wq addform command. Otherwise, you can use xlsconv directly with the following command-line API:

# Recommended: create virtual environment
# python3 -m venv venv
# . venv/bin/activate

# Install xlsconv
pip install xlsconv

# Use the default models.py template
xls2django my-odk-survey.xls > myapp/models.py

# Use the rest.py template (or admin.py, or serializers.py)
xls2django my-odk-survey.xls rest > myapp/models.py

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

xlsconv-2.0.0.tar.gz (20.9 kB view hashes)

Uploaded Source

Built Distribution

xlsconv-2.0.0-py3-none-any.whl (10.4 kB view hashes)

Uploaded Python 3

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page