-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdata.yml
More file actions
45 lines (45 loc) · 1.51 KB
/
data.yml
File metadata and controls
45 lines (45 loc) · 1.51 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
libraries:
- name: jsonpatch
pypi_url: https://pypi.org/project/jsonpatch/
supported_data_structures:
- JSON-ish
patch_output_formats:
- JSON Patch (RFC 6902)
can_apply_patches: true
diffing_time_complexity: "?"
- name: DeepDiff
pypi_url: https://pypi.org/project/deepdiff/
supported_data_structures:
- JSON-ish
- "arbitrary Python objects that define <code>__slots__</code> or <code>__dict__</code>"
patch_output_formats:
- "<code>DeepDiff</code> objects"
- "dict representation of <code>DeepDiff</code>"
- "JSON representation of <code>DeepDiff</code>"
can_apply_patches: false
diffing_time_complexity: O(n) when not ignoring order, otherwise ?
- name: jycm
pypi_url: https://pypi.org/project/jycm/
supported_data_structures:
- JSON-ish
patch_output_formats:
- own JSON-ish format
can_apply_patches: false
diffing_time_complexity: "?"
- name: jsondiff
pypi_url: https://pypi.org/project/jsondiff/
supported_data_structures:
- JSON-ish
patch_output_formats:
- own JSON-ish format
can_apply_patches: ✔ (undocumented)
diffing_time_complexity: "?"
excluded_libraries:
- name: json-diff
pypi_url: https://pypi.org/project/json-diff/
reason: Is just a CLI tool with no (documented) API.
- name: json-diff-patch
pypi_url: https://github.com/apack1001/json-diff-patch
reason: >
Is just a CLI tool with no (documented) API (yet). Also not
released to PyPI yet.