Skip to content
New issue

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

added code to parse xml file to csv output #8

Closed
wants to merge 1 commit into from

Conversation

victoriasoesanto
Copy link
Contributor

No description provided.

@victoriasoesanto victoriasoesanto linked an issue Feb 23, 2022 that may be closed by this pull request
3 tasks
@click.option("--input", "-i", "in_file", required=True,
help="Path to csv file to be processed.",
type=click.Path(exists=True, dir_okay=False, readable=True))
@click.option("--output-file", "-o", default="./output.xlsx",
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

default should be tsv (in particular, babelon conformant tsv), but no worries now :)

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I should have been more clear on the pull request comment and not include files that aren't finished, this PR is only for updating the xml parser code - notebook (I have not updated the CLI code yet). I will update this PR.

"""
input = read_csv(in_file)
output = process_csv(input)
write_excel(output, out_file)
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

where are these methods defined? I dont see them in this PR?

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants