htmllisting-parser
                                
                                
                                
                                    htmllisting-parser copied to clipboard
                            
                            
                            
                        locale issue
Hei, Just a comment which one might add to documentation. I'm from Finland and reading data from US. So my local is set by Finland.
This leads to problems, because when one reads from USA time.strptime uses Finnish words so when one receives time stamp like "12-May-2015 17:46" It is not recognized because the month is in english and not in finnish.
Solution: before calling htmllistparse.fetch_listing
put in your code:
 locale.setlocale(
    locale.LC_ALL, "C"
)  # to get file time formatting right for htmllistparse
And thank's for a wondefull library! Terveisin, Markus