Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/jin10086/cssstyle2dict


https://github.com/jin10086/cssstyle2dict

Last synced: 1 day ago
JSON representation

Awesome Lists containing this project

README

        

cssstyle2dict
===========

方便查找css style里面的属性,css反爬虫用的比较多

Sample Code
-----------

```python
>>> from cssstyle2dict import styleParsel
>>> css = '.a { float:left } .b { margin-right:-1em } .c { float:left } .a { position:relative }'
>>> style_dict = styleParsel(css)
>>> print(style_dict)
{'a': {'float': 'left', 'position': 'relative'},
'b': {'margin-right': '-1em'},
'c': {'float': 'left'}}
```
Installation
------------
* `pip install cssstyle2dict`