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
Add some documentation for the options that can be passed to default_configuration:
parts = item.split() if len(parts) == 2 and parts[0].lower() == "skiprows" and isint(parts[1]): configuration["skipRows"] = max(int(parts[1]), 0) if len(parts) == 2 and parts[0].lower() == "headerrows" and isint(parts[1]): configuration["headerRows"] = max(int(parts[1]), 1) if len(parts) == 1 and parts[0].lower() == "ignore": configuration["ignore"] = True if len(parts) == 1 and parts[0].lower() in ("hashcomments", "hashcomment"): configuration["hashcomments"] = True if len(parts) == 2 and parts[0].lower() == "xmlroottag": configuration["XMLRootTag"] = parts[1] if len(parts) == 2 and parts[0].lower() == "rootlistpath": configuration["RootListPath"] = parts[1] if len(parts) == 2 and parts[0].lower() == "idname": configuration["IDName"] = parts[1] return configuration
The text was updated successfully, but these errors were encountered:
Current (limited) documentation of this is at https://flatten-tool.readthedocs.io/en/latest/unflatten/#configuration-properties-skip-and-header-rows
Sorry, something went wrong.
No branches or pull requests
Add some documentation for the options that can be passed to default_configuration:
The text was updated successfully, but these errors were encountered: