Metadata-Version: 2.1
Name: str-to-json
Version: 0.0.2
Summary: Convert string on clipboard to JSON
Home-page: https://github.com/danggrianto/str-to-json/
Author: Daniel Anggrianto
Author-email: d.anggrianto@gmail.com
License: UNKNOWN
Platform: UNKNOWN
Classifier: Programming Language :: Python
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Environment :: Win32 (MS Windows)
Classifier: Environment :: X11 Applications
Classifier: Environment :: MacOS X
Classifier: Intended Audience :: Developers
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Description-Content-Type: text/markdown
Requires-Dist: pyperclip (==1.7.0)

# str-to-json

a simple script that format JSON string in the clipboard and formatted it
prettier.

## Installation

Using pip

`pip install str-to-json`

## Usage

Copy a JSON string to your clipboard. Example:
`{"id": "uo-ca-en-CA-5729e0a833e541939d1da60a8a783e4d", "action": "delete"}`

run the script
`str-to-json`

Paste. It will turn your clipboard to
```
{
    "action": "delete",
    "id": "uo-ca-en-CA-5729e0a833e541939d1da60a8a783e4d"
}
```



