We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Re: #81 / https://github.com/XLSForm/pyxform/pull/712/files
Maybe XLSForm-online could use the new code? E.g. in views.py
views.py
from pyxform.xls2xform import convert converted = convert(xlsform=request.FILES["file"]) with open(xml_path, "w") as f: f.write(converted.xform) if converted.itemsets is not None: itemsets_csv = os.path.join(temp_dir, "itemsets.csv") with open(itemsets_csv, "w") as f: f.write(converted.itemsets)
Warnings is available in converted.warnings.
converted.warnings
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Re: #81 / https://github.com/XLSForm/pyxform/pull/712/files
Maybe XLSForm-online could use the new code? E.g. in
views.py
Warnings is available in
converted.warnings
.The text was updated successfully, but these errors were encountered: