-
Notifications
You must be signed in to change notification settings - Fork 92
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
Feature xlsx #57
Feature xlsx #57
Conversation
@@ -47,7 +61,10 @@ def say(*arg): | |||
|
|||
def isExtensionSupported(filename): | |||
result = False | |||
extensions = [".xml",".csv",".txt",".tsv",".html"] | |||
if xlsxwriter_available: |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I would have a default extensions array, and then optionally append '.xlsx' if xlsxwriter_available is True
Hi @Ximi1970 thanks for adding this feature! Please have a look at my review notes above. |
Hi @SchrodingersGat, I cleaned up the extension handling and also removed the "missing module" message. |
@Ximi1970 awesome, thanks for the contribution |
Optional XLSX output format support. Automatically detects XlsxWriter module.