You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.rst
+11-3Lines changed: 11 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -6,14 +6,22 @@ A port of the `JSON-minify` utility to the Python language.
6
6
Overview
7
7
--------
8
8
9
-
`JSON-minify` minifies blocks of JSON-like content into valid JSON by removing all whitespace *and* JS-style comments (single-line `//` and multiline `/* .. */`).
9
+
`JSON-minify` minifies blocks of JSON-like content into valid JSON by removing
10
+
all whitespace *and* JS-style comments (single-line `//` and multi-line
11
+
`/* .. */`).
10
12
11
-
With `JSON-minify`, you can maintain developer-friendly JSON documents, but minify them before parsing or transmitting them over-the-wire.
13
+
With `JSON-minify`, you can maintain developer-friendly JSON documents, but
14
+
minify them before parsing or transmitting them over-the-wire.
12
15
13
16
Installation
14
17
------------
15
18
16
-
This package is currently not hosted on PyPI. You can install it using pip as follows::
19
+
You can install using pip as follows::
20
+
21
+
pip install JSON-minify
22
+
23
+
If you wish to use the development version fo JSON-minify, you can install it
0 commit comments