Ole Martin Bjørndalen
Ole Martin Bjørndalen
Sorry it's taken me so long reply. I hope you have found a solution in the meantime. What could the value 'F' mean in a numeric field? Boolean fields often...
Thank you! :) Reading from streams could be useful, but there are a few hurdles: - The DBF class opens and closes the file when reading the header and opens...
This would be nice to have. We will first have to add support for reading from a file object (see issue #53) but once that is in place this is...
This is either a corrupt file or a field type I haven't come across before. If it's a new field type the first step is to find out what's in...
It's hard to say what has happened in the file. You could try to open it in a hex editor and see what it looks like. A normal DBF file...
Thanks! Could you give me an example of the value you're getting? It looks to me like you could have null bytes inside the value? Some notes: * There's no...
Could you test @william-andre's fix in pull request #35? His solution is even simpler. I hope it will work for you as well. ``` if data.strip(b' 0\0') == b'' ```
We're trying out GitHub actions in Mido: If that works well (which it seems to do) I'll use the same setup for dbfread.
Thanks for reporting this. This is the first time I see a binary N field. I would add your changes but I'm worried that it would cause other files to...
Yes, it's expecting YYYYMMDD but getting something with slashes. Could you run it again with `DBF(filename, raw=True)` and tell me what the whole date looks like?