A .slk files parser
SLK format : https://en.wikipedia.org/wiki/SYmbolic_LinK_(SYLK)
Largely inspired by : https://github.com/smontanaro/python-bits/blob/master/sylk.py
From Python code
from io import StringIO
from sylk_parser import SylkParser
parser = SylkParser("somefile.slk")
fbuf = StringIO()
parser.to_csv(fbuf)
test_results = fbuf.getvalue()
print test_results
Dates in Sylk files are non standard offsets. We try to find the good offset regarding the "ID" field.
See :sylk_parser.sylk.SYLK._id_field method