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
If a source file has multiple periods in the filename, calling save_output drops all parts of the filename after the first period
save_output
To Reproduce Process a file named sample.file.1.jpg. Call .save_output(path, output_format="csv"). Results in sample.csv being produced.
sample.file.1.jpg
.save_output(path, output_format="csv")
sample.csv
Expected behavior Calling save_output in the outlined scenario should produce sample.file.1.csv.
sample.file.1.csv
The text was updated successfully, but these errors were encountered:
akshowhini
No branches or pull requests
If a source file has multiple periods in the filename, calling
save_output
drops all parts of the filename after the first periodTo Reproduce
Process a file named
sample.file.1.jpg
. Call.save_output(path, output_format="csv")
. Results insample.csv
being produced.Expected behavior
Calling
save_output
in the outlined scenario should producesample.file.1.csv
.The text was updated successfully, but these errors were encountered: