Closed nigelbabu closed 11 years ago
See https://gist.github.com/4502515 for the test cases, https://github.com/okfn/messytables/blob/master/horror/simple.xls is the xls file, and https://github.com/okfn/messytables/blob/master/horror/simple.csv is the csv file used.
Both when running messytest2.py with latest messytables or messytest1.py with 0.3.0 (when DateType worked albeit slowly), it returns
[String, Integer, String]
However, when I run messytest3.py (which runs type_guess on simple.csv) it correctly returns the following
type_guess
[DateUtil, Integer, String]
You probably added guess_types to https://gist.github.com/nigelbabu/4502515#file-messytest2-py-L11, right?
guess_types
Indeed, sorry about that.
See https://gist.github.com/4502515 for the test cases, https://github.com/okfn/messytables/blob/master/horror/simple.xls is the xls file, and https://github.com/okfn/messytables/blob/master/horror/simple.csv is the csv file used.
Both when running messytest2.py with latest messytables or messytest1.py with 0.3.0 (when DateType worked albeit slowly), it returns
However, when I run messytest3.py (which runs
type_guess
on simple.csv) it correctly returns the following