Convert from XLSForm to YAML and back
yxf (short for YAML XLSForms) is a converter between XLSForms and YAML files. With yxf, you can store forms as text-files. This brings a number of advantages to managing many forms. For example, you can store forms in version control, view differences between two forms, and easily share updates between multiple forms.
Usage
To convert an XLSForm to a YAML file: python -m yxf form.xlsx.
By default, the result will be called form.yaml, in other words, the same name
as the input file with the extension changed to .yaml. You can specify a
different output file name using the --output othername.yaml option.
To convert a YAML file to an XLSForm: python -m yxf form.yaml.
Here's a screenshot showing the YAML and XLSForm version of a form side-by-side:
Using Markdown
yxf can generate and read Markdown instead of YAML. The format is taken from md2xlsform. This can be useful if you would like something more compact than YAML, e.g., to paste into a community forum.
To use Markdown, add a --markdown argument to the yxf invocation:
# Will generate form.md
python -m yxf --markdown form.xlsx
Installation
Get the latest version from the GitHub repo:
python -m pip install yxf
Features
Comments in forms
yxf encourages adding comments to XLSForms. It uses a special column labeled #
to that end. Other tools ignore this column, so that it can be used for
explanations that are useful to the readers of the .xlsx or .yaml files.
Pretty spreadsheets
yxf tries hard to make the XLSForm files look pretty:
- Groups and repeats are highlighted. Each top-level group gets its own color, and groups nested inside it get darker shades of that color. Blank rows separate each group from what surrounds it.
- HTML markup inside labels and hints is shown in a dimmed, fixed-width font, so that the text a respondent will actually read stands out from the tags.
- Columns that hold expressions, names, and comments each get their own style, and column widths are set to fit their content.
It is possible to use yxf just for that purpose, without intending to store forms as YAML files. To do so, simply convert a form to YAML and back:
python -m yxf form.xlsx
python -m yxf -o form-pretty.xlsx form.yaml
Supported sheets
yxf converts the survey, choices, settings, entities and
external_choices sheets. Any other sheet in a workbook, such as the
documentation sheet in the template from xlsform.org, is ignored.
Validating the form
yxf does not deeply validate forms. If you'd like to make sure that a form is
semantically valid, you can use the xls2xform command from the pyxform
package:
python -m pip install pyxform
xls2xform form.xlsx
Development
yxf is still being developed. Feedback and contributions are welcome. Please open issues in the issue tracker.
Please run all of the following before committing:
- Format the code:
black . - Run unit tests:
pytest - See lint warnings (and please fix them :)):
pylint yxf
To publish on PyPI:
- Increment the version number in
pyproject.toml. - Run
uv build. - Upload using
python -m twine upload dist/*.
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file yxf-1.1.0.tar.gz.
File metadata
- Download URL: yxf-1.1.0.tar.gz
- Upload date:
- Size: 158.7 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via:
twine/6.2.0 CPython/3.12.9
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
73abfa6bcfd47975d197934a48db0967b9d86526f9e394edc757d648b49d0b83
|
|
| MD5 |
57cc80c7b039fe1ae0adf5f568746880
|
|
| BLAKE2b-256 |
0ebeac4b169c64fca2281bddf1358a1de77f6d350c761c8d7fcf4c6171584170
|
File details
Details for the file yxf-1.1.0-py3-none-any.whl.
File metadata
- Download URL: yxf-1.1.0-py3-none-any.whl
- Upload date:
- Size: 17.2 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via:
twine/6.2.0 CPython/3.12.9
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
92e3071af6e53b058292fdddc3b256f6fafab17fc7ffae3d40804e333938c353
|
|
| MD5 |
911e8fe0c1d910fe6ae328289759154e
|
|
| BLAKE2b-256 |
ad6138ad29cdacfab9004c8891414f47f99844dd2a09fbfa50e7f5e2be180ff3
|