Generally I work with CSV files but for this project I need to support XLS too. Does anyone have experience reading XLS files on GAE with Python?
2 possible alternatives I am considering:
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
xlrd saves you the network round-trip implied by the use of Google Docs; if you don’t need to keep the document stored (which would be a substantial plus for Google Docs), this might incline you towards xlrd. I believe they’re both high-quality.
However, for both speed and accuracy of “translation”, there’s really no alternative to benchmarking them both on a range of files reflecting your specific needs and interests.