Metadata-Version: 2.1
Name: cookie2json
Version: 1.1
Summary: format cookies from chrome or firefox to json.
Home-page: https://github.com/mlzxgzy/cookie2json/
Author: Kami
Author-email: kami@kdajv.com
License: MIT
Platform: UNKNOWN
Description-Content-Type: text/markdown

# Cookie2Json

这是一个将Chrome里的cookie文本转为Json的程序
使用方法：
```python
# Usage:
import cookie2json
cookie2json.format(<PutCookieHere>)
```
Cookie格式：
```
# Cookie Format
cookie: aa:11; ccc:22
```

另一种用法：
```bash
# Another Usage
python -m cookie2json "<PutCookieHere>"
```

