css2json

Convert style sheets to json.


License
MIT
Install
pip install css2json==0.0.1

Documentation

css2json.py

PyPI version

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"}}'
>>>