diffx-python 0.4.2__tar.gz → 0.4.3__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {diffx_python-0.4.2 → diffx_python-0.4.3}/PKG-INFO +1 -17
- {diffx_python-0.4.2 → diffx_python-0.4.3}/README.md +0 -16
- {diffx_python-0.4.2 → diffx_python-0.4.3}/pyproject.toml +1 -1
- {diffx_python-0.4.2 → diffx_python-0.4.3}/src/diffx/installer.py +1 -1
- {diffx_python-0.4.2 → diffx_python-0.4.3}/.gitignore +0 -0
- {diffx_python-0.4.2 → diffx_python-0.4.3}/src/diffx/__init__.py +0 -0
- {diffx_python-0.4.2 → diffx_python-0.4.3}/src/diffx/compat.py +0 -0
- {diffx_python-0.4.2 → diffx_python-0.4.3}/src/diffx/diffx.py +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: diffx-python
|
|
3
|
-
Version: 0.4.
|
|
3
|
+
Version: 0.4.3
|
|
4
4
|
Summary: Python wrapper for diffx - semantic diffing of JSON, YAML, TOML, XML, INI, and CSV files. Focuses on structural meaning rather than formatting.
|
|
5
5
|
Project-URL: Homepage, https://github.com/kako-jun/diffx
|
|
6
6
|
Project-URL: Repository, https://github.com/kako-jun/diffx
|
|
@@ -46,8 +46,6 @@ This will automatically download the appropriate `diffx` binary for your system
|
|
|
46
46
|
|
|
47
47
|
## Usage
|
|
48
48
|
|
|
49
|
-
### Modern API (Recommended)
|
|
50
|
-
|
|
51
49
|
```python
|
|
52
50
|
import diffx
|
|
53
51
|
|
|
@@ -84,20 +82,6 @@ string_result = diffx.diff_string(
|
|
|
84
82
|
)
|
|
85
83
|
```
|
|
86
84
|
|
|
87
|
-
### Legacy API (Backward Compatibility)
|
|
88
|
-
|
|
89
|
-
```python
|
|
90
|
-
from diffx import run_diffx
|
|
91
|
-
|
|
92
|
-
# Compare two JSON files (legacy)
|
|
93
|
-
result = run_diffx(["file1.json", "file2.json"])
|
|
94
|
-
|
|
95
|
-
if result.returncode == 0:
|
|
96
|
-
print("No differences found.")
|
|
97
|
-
else:
|
|
98
|
-
print("Differences found:")
|
|
99
|
-
print(result.stdout)
|
|
100
|
-
```
|
|
101
85
|
|
|
102
86
|
## Features
|
|
103
87
|
|
|
@@ -12,8 +12,6 @@ This will automatically download the appropriate `diffx` binary for your system
|
|
|
12
12
|
|
|
13
13
|
## Usage
|
|
14
14
|
|
|
15
|
-
### Modern API (Recommended)
|
|
16
|
-
|
|
17
15
|
```python
|
|
18
16
|
import diffx
|
|
19
17
|
|
|
@@ -50,20 +48,6 @@ string_result = diffx.diff_string(
|
|
|
50
48
|
)
|
|
51
49
|
```
|
|
52
50
|
|
|
53
|
-
### Legacy API (Backward Compatibility)
|
|
54
|
-
|
|
55
|
-
```python
|
|
56
|
-
from diffx import run_diffx
|
|
57
|
-
|
|
58
|
-
# Compare two JSON files (legacy)
|
|
59
|
-
result = run_diffx(["file1.json", "file2.json"])
|
|
60
|
-
|
|
61
|
-
if result.returncode == 0:
|
|
62
|
-
print("No differences found.")
|
|
63
|
-
else:
|
|
64
|
-
print("Differences found:")
|
|
65
|
-
print(result.stdout)
|
|
66
|
-
```
|
|
67
51
|
|
|
68
52
|
## Features
|
|
69
53
|
|
|
@@ -4,7 +4,7 @@ build-backend = "hatchling.build"
|
|
|
4
4
|
|
|
5
5
|
[project]
|
|
6
6
|
name = "diffx-python"
|
|
7
|
-
version = "0.4.
|
|
7
|
+
version = "0.4.3"
|
|
8
8
|
description = "Python wrapper for diffx - semantic diffing of JSON, YAML, TOML, XML, INI, and CSV files. Focuses on structural meaning rather than formatting."
|
|
9
9
|
readme = "README.md"
|
|
10
10
|
license = "MIT"
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|