GitHub - kaiix/css2json.py: Convert style sheets to json. Python clone of kesla/css2json

Skip to content

Navigation Menu

Sign in

Appearance settings

This repository was archived by the owner on May 23, 2023. It is now read-only.

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