Metadata-Version: 1.1
Name: css2json
Version: 0.0.1
Summary: Convert style sheets to json.
Home-page: https://github.com/kaiix/css2json.py
Author: kaiix
Author-email: kvn.hou@gmail.com
License: MIT
Description: css2json.py
        ===========
        
        Convert style sheets to json. Python clone of kesla/css2json
        
        Install
        ~~~~~~~
        
        ``pip install css2json``
        
        Usage
        ~~~~~
        
        ::
        
            >>> import css2json
            >>> css2json.css2json("""
            ... p {
            ...     color: #222;
            ...     margin: 10px;
            ... }
            ... """)
            '{"p": {"color": "#222", "margin": "10px"}}'
            >>>
        
        
Platform: UNKNOWN
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 2
Classifier: Programming Language :: Python :: 2.7
Classifier: Topic :: Software Development :: Libraries :: Python Modules
