Metadata-Version: 1.1
Name: sylk-parser
Version: 0.3.1
Summary: Basic SLK (sylk) to CSV parser
Home-page: https://github.com/majerteam/sylk_parser
Author: Majerti
Author-email: equipe@majerti.fr
License: GPLv3
Description-Content-Type: UNKNOWN
Description: sylk parser
        ==============
        
        .. image::
            https://secure.travis-ci.org/majerteam/sylk_parser.png?branch=master
           :target: http://travis-ci.org/majerteam/sylk_parser
           :alt: Travis-ci: continuous integration status.
        
        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
        
        Installation
        -------------
        
        .. code-block: console
        
            pip install sylk_parser
        
        
        Usage
        ------
        
        From python code
        
        .. code-block:: python
        
            from sylk_parser import SylkParser
        
            parser = SylkParser(filepath)
            with open("/tmp/result.csv", "wb") as fbuf:
                parser.to_csv(fbuf)
        
Keywords: parser csv slk sylk
Platform: UNKNOWN
Classifier: License :: OSI Approved :: GNU General Public License v3 (GPLv3)
Classifier: Programming Language :: Python
Classifier: Framework :: Pyramid
Classifier: Topic :: Internet :: WWW/HTTP
Classifier: Topic :: Internet :: WWW/HTTP :: WSGI :: Application
